diff --git a/CLAUDE.md b/CLAUDE.md
index b7bd77baf..7068f1ec0 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -550,6 +550,21 @@ No test files exist in the `shared` package.
> **Maintainer note:** E2E test coverage is between "bad and moderate" — roughly 50% of happy paths, with no edge case or error coverage. They've been problematic over the years. Unit tests are well-maintained and passing. If we ever migrate off CRA, E2E tests will become much more important and we'll need to write more.
+### Visual Regression (templates)
+
+Pixel-diffs all 13 templates' rendered graphs against committed golden images — the rendering half of the safety net (the logic half is the characterization tests in `app/src/lib/*.characterization.test.ts`). Runs via its own config (`app/playwright.visual.config.ts`), NOT the e2e config. See `app/e2e/visual/README.md`.
+
+> **⚠️ RUN THIS ON ANY VISUALLY SIGNIFICANT CHANGE.** It is currently a **local, manual gate — NOT wired to CI** (goldens are macOS-specific; Linux goldens via the Playwright Docker image is a follow-up). So CI will NOT catch a rendering regression for you. If you touch anything that can change how a chart renders — `toTheme.ts`, `graphUtilityClasses.ts`, `getSize.ts`, `preprocessStyle.ts`, the Cytoscape style/layout pipeline, `FFTheme`, or any template file — you must run it yourself.
+
+```bash
+# the app must be served; if :3000 is taken by another project, use another port:
+BROWSER=none PORT=3001 pnpm -F app dev
+E2E_START_URL=http://localhost:3001 pnpm -F app visual # compare against goldens
+E2E_START_URL=http://localhost:3001 pnpm -F app visual:update # regenerate after an INTENTIONAL change
+```
+
+After an intentional visual change: regenerate goldens, **eyeball the diff**, then commit the updated `*.png` goldens. The 3 force-directed mindmap templates use frozen-position fixtures (`pnpm -F app visual:fixtures`); regenerate those only if their content/theme changes.
+
## CI/CD
- **GitHub Actions:**
diff --git a/app/e2e/pro.spec.ts b/app/e2e/pro.spec.ts
index d929b05ed..2e2f6256d 100644
--- a/app/e2e/pro.spec.ts
+++ b/app/e2e/pro.spec.ts
@@ -153,11 +153,18 @@ test("Create chart from imported data", async () => {
.selectOption("Connector Label");
await page.getByTestId("import-submit-button").click();
+ // Import parsing + preview can be slow against the Vercel preview, so give
+ // the confirmation dialog generous time rather than the 5s default (this
+ // assertion has flaked at the default timeout).
await expect(
page.getByText("You are about to add 9 nodes and 10 edges to your graph.")
- ).toBeVisible();
+ ).toBeVisible({ timeout: 30000 });
- await page.getByTestId("import-confirm-button").click();
+ // Wait for the confirm button to be actionable before clicking — this click
+ // has hung to the test timeout when the dialog was still settling.
+ const confirmButton = page.getByTestId("import-confirm-button");
+ await confirmButton.waitFor({ state: "visible", timeout: 30000 });
+ await confirmButton.click();
} catch (error) {
console.error(error);
throw error;
diff --git a/app/e2e/visual/README.md b/app/e2e/visual/README.md
new file mode 100644
index 000000000..0d604cf93
--- /dev/null
+++ b/app/e2e/visual/README.md
@@ -0,0 +1,52 @@
+# Visual regression
+
+Pixel-diffs the rendered graph for every template against committed golden
+images. This is the **rendering half of the safety net**: a refactor, a
+framework migration, or a deliberate fix to a render bug that changes how a
+chart looks will fail here loudly — and you review the diff before accepting a
+new golden.
+
+## Running
+
+Requires the flowchart-fun dev server. If something else owns `:3000`, run it
+elsewhere and point the tests at it with `E2E_START_URL`:
+
+```bash
+# start the app (client-only is enough — visual tests hit no /api routes)
+BROWSER=none PORT=3001 pnpm -F app dev
+
+# compare current render against goldens
+E2E_START_URL=http://localhost:3001 pnpm -F app visual
+
+# (re)generate goldens — do this after an intentional visual change, and review the diff
+E2E_START_URL=http://localhost:3001 pnpm -F app visual:update
+```
+
+## Deterministic vs frozen templates
+
+Most templates use deterministic layouts (dagre/layered/mrtree/radial, and even
+the cose network-diagrams converge stably) and are rendered live — so the test
+covers **both layout and rendering**.
+
+Three mindmap templates use a force-directed layout that re-randomizes node
+positions every render. They are listed in `frozen-templates.ts` and rendered
+from a committed fixture (`fixtures/{name}.doc.txt`) with `meta.nodePositions`
+baked in, so geometry is fixed via a `preset` layout and the test
+deterministically checks **rendering** (not layout). The flaky set was found
+empirically (failed two consecutive comparison runs), not assumed from layout
+name.
+
+Regenerate fixtures if a frozen template's content/theme changes:
+
+```bash
+E2E_START_URL=http://localhost:3001 pnpm -F app visual:fixtures
+# then regenerate those goldens:
+E2E_START_URL=http://localhost:3001 pnpm -F app visual:update -- -g mindmap
+```
+
+## Not yet wired to CI
+
+Playwright goldens are platform-specific (suffixed `-darwin` here). CI is Linux,
+so running this in CI needs Linux-generated goldens (e.g. via the Playwright
+Docker image). That's a deliberate follow-up — today this is a **local**
+pre-migration / pre-render-fix tool, like `scripts/screenshot-templates.mjs`.
diff --git a/app/e2e/visual/fixtures/mindmap-dark.doc.txt b/app/e2e/visual/fixtures/mindmap-dark.doc.txt
new file mode 100644
index 000000000..8b851e59e
--- /dev/null
+++ b/app/e2e/visual/fixtures/mindmap-dark.doc.txt
@@ -0,0 +1,14 @@
+Universe .color_blue .shape_ellipse
+ Stars .color_yellow
+ Sun .shape_circle
+ Planets .color_green
+ Earth .shape_roundrectangle
+ Moon .color_grey .shape_circle
+ Mars .color_red .shape_circle
+ Galaxies .color_purple
+ Milky Way .shape_star
+ Black Holes .color_black .shape_octagon
+
+=====
+{"themeEditor":{"layoutName":"cose","spacingFactor":1,"background":"#111827","fontFamily":"Space Grotesk","shape":"roundrectangle","nodeBackground":"#1f2937","nodeForeground":"#f3f4f6","padding":15,"borderWidth":2,"borderColor":"#4b5563","textMaxWidth":100,"lineHeight":1.3,"textMarginY":0,"useFixedHeight":false,"curveStyle":"bezier","edgeWidth":2,"edgeColor":"#6b7280","sourceArrowShape":"none","targetArrowShape":"none","sourceDistanceFromNode":5,"targetDistanceFromNode":5,"edgeTextSize":1,"rotateEdgeLabel":false,"direction":"DOWN","fixedHeight":300,"arrowScale":1},"cytoscapeStyle":"\n$bg-dark: #111827;\n$bg-light: #1f2937;\n$text-light: #f3f4f6;\n$text-dark: #9ca3af;\n$accent-blue: #3b82f6;\n$accent-yellow: #fbbf24;\n$accent-green: #10b981;\n$accent-red: #ef4444;\n$accent-purple: #8b5cf6;\n$accent-grey: #6b7280;\n$accent-black: #000000;\n\nnode {\n font-weight: 400;\n text-halign: center;\n text-valign: center;\n color: $text-light;\n background-color: $bg-light;\n border-color: $text-dark;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);\n text-outline-color: $bg-dark;\n text-outline-width: 1px;\n text-outline-opacity: 0.5;\n}\n\nedge {\n curve-style: bezier;\n line-color: $text-dark;\n width: 2px;\n opacity: 0.8;\n}\n\n:parent {\n background-color: rgba(29, 78, 216, 0.15);\n border-color: $accent-blue;\n border-width: 2px;\n border-style: dashed;\n}\n\n:childless {\n padding: 12px;\n font-size: 14px;\n text-wrap: wrap;\n text-max-width: 90px;\n}\n\n.color_blue { background-color: $accent-blue; }\n.color_yellow { background-color: $accent-yellow; color: $bg-dark; }\n.color_green { background-color: $accent-green; }\n.color_red { background-color: $accent-red; }\n.color_purple { background-color: $accent-purple; }\n.color_grey { background-color: $accent-grey; }\n.color_black { background-color: $accent-black; }\n\n.shape_circle { shape: circle; }\n.shape_ellipse { shape: ellipse; }\n.shape_roundrectangle { shape: roundrectangle; }\n.shape_star { shape: star; }\n.shape_octagon { shape: octagon; }\n\n#Universe {\n font-size: 18px;\n font-weight: bold;\n text-max-width: 120px;\n border-width: 3px;\n border-color: $accent-yellow;\n}\n\n:childless[depth = 1] {\n font-weight: 700;\n}\n\n:childless:selected,\n:parent:selected {\n border-color: $accent-yellow;\n border-width: 3px;\n border-style: solid;\n box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.4);\n}\n\nedge:selected {\n width: 4px;\n line-color: $accent-yellow;\n}\n","expires":"2026-05-30T05:15:18.481Z","customCssOnly":false,"nodePositions":{"n1":{"x":90.67366458040678,"y":-11.956547958492905},"n2":{"x":123.27758161762398,"y":80.78059141462374},"n3":{"x":92.78993602175682,"y":232.28754556266546},"n4":{"x":42.97874508916401,"y":-101.13440975012406},"n5":{"x":41.63073908276477,"y":-196.17265159894208},"n6":{"x":36.65882349396908,"y":-290.28754556266546},"n7":{"x":-166.95238074430725,"y":-116.91847656696797},"n8":{"x":-92.41263496731636,"y":42.73202943040194},"n9":{"x":-299.48551400430085,"y":57.35070103967438},"n10":{"x":299.48551400430085,"y":-17.722130573523543}}}
+=====
\ No newline at end of file
diff --git a/app/e2e/visual/fixtures/mindmap.doc.txt b/app/e2e/visual/fixtures/mindmap.doc.txt
new file mode 100644
index 000000000..886c94677
--- /dev/null
+++ b/app/e2e/visual/fixtures/mindmap.doc.txt
@@ -0,0 +1,16 @@
+Mind Mapping .size_lg
+ Learning Style .color_blue
+ Read .color_blue
+ Listen .color_blue
+ Summarize .color_blue
+ Motivation .color_orange
+ Tips .color_orange
+ Roadmap .color_orange
+ Review .color_green
+ Notes .color_green
+ Method .color_green
+ Discuss .color_green
+
+=====
+{"themeEditor":{"layoutName":"cose","direction":"RIGHT","spacingFactor":0.95,"lineHeight":1.2,"shape":"ellipse","background":"#ffffff","textMaxWidth":100,"padding":17,"fontFamily":"Kalam","curveStyle":"bezier","textMarginY":2,"borderWidth":0,"edgeTextSize":0.8,"edgeWidth":2,"sourceArrowShape":"none","targetArrowShape":"triangle-backcurve","edgeColor":"#314137","borderColor":"#000000","nodeBackground":"#ffffff","nodeForeground":"#314137","sourceDistanceFromNode":0,"targetDistanceFromNode":7,"arrowScale":1.25,"rotateEdgeLabel":false,"useFixedHeight":false,"fixedHeight":130},"cytoscapeStyle":"$green: #ddff75;\n$blue: #bde2ff;\n$orange: #ffe253;\n$pink: #ffb6bc;\n$grey: #f2f0ea;\n\n:childless.size_lg {\n font-size: 30;\n width: 150;\n line-height: 1;\n text-max-width: 130;\n}\n\n:childless.color_orange {\n background-color: $orange;\n}\n:childless.color_green {\n background-color: $green;\n}\n:childless.color_pink {\n background-color: $pink;\n}\n:childless.color_grey {\n background-color: $grey;\n}\n:childless.color_blue {\n background-color: $blue;\n}","expires":"2026-05-30T05:15:07.598Z","customCssOnly":false,"nodePositions":{"n1":{"x":88.13698150351098,"y":-3.748122996878957},"n2":{"x":52.98235435026533,"y":-125.95716601551867},"n3":{"x":264.10074377013405,"y":-122.45533797838313},"n4":{"x":168.67021831132791,"y":-203.16977658929224},"n5":{"x":-31.78655166530496,"y":-212.3694571223207},"n6":{"x":-129.52566613670123,"y":2.300665721769835},"n7":{"x":-290.3224840190624,"y":69.70981178708847},"n8":{"x":-338.2752463117439,"y":-46.44360767536899},"n9":{"x":126.01598857370895,"y":117.85656508241166},"n10":{"x":338.27524631174384,"y":124.1721084655266},"n11":{"x":178.95491348801377,"y":212.3694571223207},"n12":{"x":-29.706801086715835,"y":186.99239568347014}}}
+=====
\ No newline at end of file
diff --git a/app/e2e/visual/fixtures/playful-mindmap.doc.txt b/app/e2e/visual/fixtures/playful-mindmap.doc.txt
new file mode 100644
index 000000000..a57f54400
--- /dev/null
+++ b/app/e2e/visual/fixtures/playful-mindmap.doc.txt
@@ -0,0 +1,29 @@
+My Favorite Things! .color_pink .size_lg
+ Animals .color_yellow
+ Dogs .color_blue
+ Fluffy .color_green
+ Spotty .color_green
+ Cats .color_blue
+ Whiskers .color_green
+ Mittens .color_green
+ Unicorns .color_blue
+ Food .color_yellow
+ Pizza .color_blue
+ Cheese .color_green
+ Pepperoni .color_green
+ Ice Cream .color_blue
+ Chocolate .color_green
+ Vanilla .color_green
+ Cookies .color_blue
+ Hobbies .color_yellow
+ Drawing .color_blue
+ Dancing .color_blue
+ Singing .color_blue
+ Places .color_yellow
+ Beach .color_blue
+ Mountains .color_blue
+ Space .color_blue
+
+=====
+{"themeEditor":{"layoutName":"cose","direction":"DOWN","spacingFactor":1.1,"background":"#FFFFFF","fontFamily":"Patrick Hand","shape":"ellipse","nodeBackground":"#FFB6C1","nodeForeground":"#333333","padding":10,"borderWidth":2,"borderColor":"#FF69B4","textMaxWidth":100,"lineHeight":1.2,"textMarginY":0,"useFixedHeight":false,"curveStyle":"bezier","edgeWidth":2,"edgeColor":"#888888","sourceArrowShape":"none","targetArrowShape":"none","sourceDistanceFromNode":5,"targetDistanceFromNode":5,"arrowScale":1,"edgeTextSize":0.875,"rotateEdgeLabel":false,"fixedHeight":100},"cytoscapeStyle":"\n@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');\n\n$pink: #FF69B4;\n$yellow: #FFD700;\n$blue: #87CEFA;\n$green: #98FB98;\n$red: #FF6B6B;\n$orange: #FFB347;\n$purple: #DDA0DD;\n$grey: #D3D3D3;\n\n:childless.size_lg {\n font-size: 30;\n width: 150;\n line-height: 1;\n text-max-width: 130;\n}\n\n:childless.color_pink {\n background-color: $pink;\n border-color: #FF1493;\n color: #FFFFFF;\n}\n\n:childless.color_yellow {\n background-color: $yellow;\n border-color: #FFA500;\n}\n\n:childless.color_blue {\n background-color: $blue;\n border-color: #4169E1;\n}\n\n:childless.color_green {\n background-color: $green;\n border-color: #32CD32;\n}\n\n:childless.color_red {\n background-color: $red;\n border-color: #CC0000;\n}\n\n:childless.color_orange {\n background-color: $orange;\n border-color: #FF8C00;\n}\n\n:childless.color_purple {\n background-color: $purple;\n border-color: #9B30FF;\n}\n\n:childless.color_grey {\n background-color: $grey;\n border-color: #A9A9A9;\n}\n\nnode:selected {\n border-width: 4px;\n border-color: #FF4500;\n}\n\nedge:selected {\n width: 4px;\n line-color: #FF4500;\n opacity: 1;\n}\n","expires":"2026-05-30T05:15:13.724Z","customCssOnly":false,"nodePositions":{"n1":{"x":-173.48639827097753,"y":-52.46520675810685},"n2":{"x":53.93519799010399,"y":-21.67378689473931},"n3":{"x":277.43638905065643,"y":24.181064150182593},"n4":{"x":492.15386732062393,"y":77.88712963131638},"n5":{"x":496.0306101024097,"y":-27.649587788518637},"n6":{"x":283.7174278419482,"y":-81.22794296358356},"n7":{"x":497.95198837020564,"y":-137.58668572355117},"n8":{"x":304.7321419601531,"y":-186.19030550597225},"n9":{"x":-171.12382748847867,"y":26.23047765790793},"n10":{"x":-96.88343749829544,"y":81.51260782776107},"n11":{"x":-48.538637440887086,"y":187.56341239001543},"n12":{"x":45.18399707265733,"y":274.3018631974429},"n13":{"x":-151.66001677937737,"y":267.70682244066893},"n14":{"x":-275.76457264334186,"y":145.64685689180754},"n15":{"x":-361.08182757054135,"y":230.6673493230766},"n16":{"x":-492.2166478178611,"y":149.6238083660829},"n17":{"x":118.31799121635522,"y":105.96625172226744},"n18":{"x":-96.44458526298203,"y":-145.07011523881692},"n19":{"x":102.3943721932104,"y":-100.18046875264983},"n20":{"x":117.24336762094659,"y":-182.25365016568432},"n21":{"x":-40.55106833627173,"y":-234.62639893791427},"n22":{"x":-282.36334235761996,"y":-169.752453377662},"n23":{"x":-228.51469396366863,"y":-274.3018631974429},"n24":{"x":-497.95198837020564,"y":-141.30781205862962},"n25":{"x":-411.8667509979206,"y":-247.34234468384224}}}
+=====
\ No newline at end of file
diff --git a/app/e2e/visual/frozen-templates.ts b/app/e2e/visual/frozen-templates.ts
new file mode 100644
index 000000000..794355649
--- /dev/null
+++ b/app/e2e/visual/frozen-templates.ts
@@ -0,0 +1,40 @@
+import { readFileSync } from "fs";
+import { join } from "path";
+
+import { compressToEncodedURIComponent } from "lz-string";
+
+/**
+ * Templates that proved NON-deterministic in the stability check (force-directed
+ * layouts re-randomize node positions every render). These are rendered with
+ * FROZEN positions baked into a committed fixture so the geometry is fixed and
+ * the visual test deterministically checks RENDERING rather than layout.
+ *
+ * Each entry has a fixture at ./fixtures/{name}.doc.txt — the full flowchart.fun
+ * document string with meta.nodePositions populated. Generated by
+ * `generate-frozen-fixtures` (see scripts/), regenerate if a template changes.
+ *
+ * Populated empirically after the first all-live stability run: these three
+ * mindmap templates (force-directed cose layout) failed the same comparison on
+ * two consecutive runs; the other 10 — including the two cose network-diagram
+ * templates and the ELK stress one — rendered stably and use the live path.
+ */
+export const FROZEN_TEMPLATES: string[] = [
+ "mindmap",
+ "playful-mindmap",
+ "mindmap-dark",
+];
+
+const ORIGIN = process.env.E2E_START_URL || "http://localhost:3000";
+
+/**
+ * Build a fullscreen screenshot URL from a committed frozen-document fixture.
+ * The /f route decodes the lz-string hash; with meta.nodePositions set, Graph
+ * renders a deterministic `preset` layout.
+ */
+export function frozenScreenshotUrl(name: string): string {
+ const doc = readFileSync(
+ join(__dirname, "fixtures", `${name}.doc.txt`),
+ "utf8"
+ );
+ return `${ORIGIN}/f?screenshot=true#${compressToEncodedURIComponent(doc)}`;
+}
diff --git a/app/e2e/visual/templates.visual.spec.ts b/app/e2e/visual/templates.visual.spec.ts
new file mode 100644
index 000000000..44810af32
--- /dev/null
+++ b/app/e2e/visual/templates.visual.spec.ts
@@ -0,0 +1,72 @@
+import { test, expect, Page } from "@playwright/test";
+import { templates } from "shared";
+
+import { FROZEN_TEMPLATES, frozenScreenshotUrl } from "./frozen-templates";
+
+/**
+ * Visual-regression baseline for the 13 templates.
+ *
+ * Templates exercise every layout, theme and cytoscape-style path, so pixel-
+ * diffing their rendered output is high-coverage protection for any rendering
+ * change (refactor, framework migration, or a deliberate fix to a render bug).
+ *
+ * Two render paths:
+ * - Deterministic-layout templates (dagre/layered/mrtree/radial): load the
+ * template and screenshot the live render — this tests BOTH layout and
+ * rendering.
+ * - Force-directed templates (cose/fcose, and any other that proved unstable):
+ * render with FROZEN node positions from a committed fixture, so geometry is
+ * fixed and the test deterministically checks RENDERING (not layout). See
+ * ./frozen-templates.ts. Listed in FROZEN_TEMPLATES.
+ */
+
+// window.__load_template__ / __get_screenshot_link__ / __cy are declared
+// globally by the app (loadTemplate.ts, useEnsureGetScreenshotLink.ts, Graph).
+type TemplateName = (typeof templates)[number];
+
+const RENDER_SETTLE_MS = 3000;
+
+/** Wait for the fullscreen canvas to be visible, fonts loaded, and render settled. */
+async function waitForCanvas(page: Page) {
+ const canvas = page.locator('[data-flowchart-fun-canvas="true"]');
+ await canvas.waitFor({ state: "visible", timeout: 30000 });
+ await page.evaluate(() => (document as any).fonts?.ready);
+ await page.waitForTimeout(RENDER_SETTLE_MS);
+ return canvas;
+}
+
+/** Deterministic path: load template on the sandbox, open its screenshot link, screenshot. */
+async function renderLive(page: Page, name: TemplateName) {
+ await page.goto("/?isE2E=true");
+ await page.waitForFunction(
+ () => typeof window.__load_template__ === "function",
+ null,
+ { timeout: 30000 }
+ );
+ await page.evaluate((n) => window.__load_template__(n, true), name);
+ await page.waitForFunction(() => !!window.__cy, null, { timeout: 30000 });
+ await page.waitForTimeout(RENDER_SETTLE_MS);
+
+ const link = await page.evaluate(() => window.__get_screenshot_link__());
+ expect(link, `screenshot link for ${name}`).toBeTruthy();
+ await page.goto(link);
+ return waitForCanvas(page);
+}
+
+test.describe("template visual regression", () => {
+ for (const name of templates) {
+ test(name, async ({ page }) => {
+ let canvas;
+ if (FROZEN_TEMPLATES.includes(name)) {
+ // Frozen path: navigate straight to a screenshot URL built from the
+ // committed fixed positions, so the layout is a deterministic preset.
+ await page.goto(frozenScreenshotUrl(name));
+ canvas = await waitForCanvas(page);
+ } else {
+ canvas = await renderLive(page, name);
+ }
+
+ await expect(canvas).toHaveScreenshot(`${name}.png`);
+ });
+ }
+});
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/code-flow-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/code-flow-darwin.png
new file mode 100644
index 000000000..e47a60b09
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/code-flow-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/decision-flow-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/decision-flow-darwin.png
new file mode 100644
index 000000000..7a503e022
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/decision-flow-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/default-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/default-darwin.png
new file mode 100644
index 000000000..0dce2d34b
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/default-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/flowchart-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/flowchart-darwin.png
new file mode 100644
index 000000000..781a979d9
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/flowchart-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/knowledge-graph-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/knowledge-graph-darwin.png
new file mode 100644
index 000000000..6ebdd859f
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/knowledge-graph-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/mindmap-dark-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/mindmap-dark-darwin.png
new file mode 100644
index 000000000..587ce3f83
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/mindmap-dark-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/mindmap-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/mindmap-darwin.png
new file mode 100644
index 000000000..6a01fc5d3
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/mindmap-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/network-diagram-dark-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/network-diagram-dark-darwin.png
new file mode 100644
index 000000000..f6ffa1b71
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/network-diagram-dark-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/network-diagram-icons-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/network-diagram-icons-darwin.png
new file mode 100644
index 000000000..4cdd548f0
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/network-diagram-icons-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/org-chart-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/org-chart-darwin.png
new file mode 100644
index 000000000..fe9642a96
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/org-chart-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/pert-light-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/pert-light-darwin.png
new file mode 100644
index 000000000..bab242b28
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/pert-light-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/playful-mindmap-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/playful-mindmap-darwin.png
new file mode 100644
index 000000000..aa92bd1d0
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/playful-mindmap-darwin.png differ
diff --git a/app/e2e/visual/templates.visual.spec.ts-snapshots/process-flow-darwin.png b/app/e2e/visual/templates.visual.spec.ts-snapshots/process-flow-darwin.png
new file mode 100644
index 000000000..62ff48b9c
Binary files /dev/null and b/app/e2e/visual/templates.visual.spec.ts-snapshots/process-flow-darwin.png differ
diff --git a/app/package.json b/app/package.json
index b777eaa99..4edc952c8 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,6 +1,6 @@
{
"name": "app",
- "version": "1.64.2",
+ "version": "1.65.0",
"main": "module/module.js",
"license": "MIT",
"scripts": {
@@ -22,6 +22,9 @@
"e2e": "playwright test --config=playwright.config.ts",
"e2e:debug": "DEBUG=1 pnpm run e2e --workers 1 --ui",
"e2e:generate": "npx playwright codegen localhost:3000",
+ "visual": "playwright test --config=playwright.visual.config.ts",
+ "visual:update": "playwright test --config=playwright.visual.config.ts --update-snapshots",
+ "visual:fixtures": "node scripts/generate-frozen-fixtures.mjs",
"generate:types": "export $(cat .env.local | xargs) && supabase gen types typescript --project-id \"${PROJECT_ID}\" > src/types/database.types.ts",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"autotranslations": "node scripts/autotranslations.mjs",
diff --git a/app/playwright.config.ts b/app/playwright.config.ts
index 5dbc2044a..958a49f3e 100644
--- a/app/playwright.config.ts
+++ b/app/playwright.config.ts
@@ -13,6 +13,11 @@ dotenv.config({ path: envPath });
const config: PlaywrightTestConfig = {
testDir: "e2e",
+ // Visual-regression specs live under e2e/visual and run via their own
+ // playwright.visual.config.ts (local-only, platform-specific goldens). Keep
+ // them OUT of the e2e suite — they'd otherwise run against the Linux preview
+ // in CI with no matching goldens and fail.
+ testIgnore: "**/visual/**",
timeout: 120000,
workers: 12,
use: {
@@ -28,6 +33,11 @@ const config: PlaywrightTestConfig = {
},
},
maxFailures: 3,
+ // E2E runs against a live Vercel preview; some flows (notably the CSV-import
+ // confirmation in pro.spec) are timing-sensitive there. Retry in CI so a
+ // one-off flake doesn't redden the whole PR — a real break still fails every
+ // attempt. Locally retries stay off so flakes stay visible while developing.
+ retries: isCI ? 2 : 0,
projects: isDebug
? [
{
diff --git a/app/playwright.visual.config.ts b/app/playwright.visual.config.ts
new file mode 100644
index 000000000..ace94fcdd
--- /dev/null
+++ b/app/playwright.visual.config.ts
@@ -0,0 +1,45 @@
+import { PlaywrightTestConfig } from "@playwright/test";
+
+/**
+ * Visual-regression config — SEPARATE from the e2e config.
+ *
+ * Unlike e2e (which runs against a Vercel preview), this runs against the LOCAL
+ * dev server on :3000 and pixel-diffs the rendered graph for every template
+ * against committed golden images. It is the rendering half of the migration
+ * safety net: a refactor or framework move that changes how a chart looks will
+ * fail here loudly.
+ *
+ * Chromium-only, single worker, no retries — we want to SEE flakiness, not mask
+ * it. Goldens are platform-specific (Playwright suffixes them); these are
+ * generated on macOS for now. CI wiring (Linux goldens via Docker) is a
+ * deliberate follow-up, not yet covered.
+ *
+ * pnpm -F app visual # compare against goldens (requires dev server on :3000)
+ * pnpm -F app visual:update # (re)generate goldens
+ */
+const config: PlaywrightTestConfig = {
+ testDir: "e2e/visual",
+ testMatch: /.*\.visual\.spec\.ts$/,
+ timeout: 120000,
+ workers: 1,
+ fullyParallel: false,
+ retries: 0,
+ reporter: [["list"]],
+ use: {
+ baseURL: process.env.E2E_START_URL || "http://localhost:3000",
+ viewport: { width: 1000, height: 1000 },
+ browserName: "chromium",
+ },
+ expect: {
+ toHaveScreenshot: {
+ // Small tolerance for anti-aliasing differences. Tuned after the
+ // empirical stability check (capture twice, confirm ~zero diff).
+ maxDiffPixelRatio: 0.01,
+ threshold: 0.2,
+ animations: "disabled",
+ caret: "hide",
+ },
+ },
+};
+
+export default config;
diff --git a/app/public/robots.txt b/app/public/robots.txt
index 14267e903..c420ffb78 100644
--- a/app/public/robots.txt
+++ b/app/public/robots.txt
@@ -1,2 +1,4 @@
User-agent: *
-Allow: /
\ No newline at end of file
+Allow: /
+
+Sitemap: https://flowchart.fun/sitemap.xml
diff --git a/app/public/sitemap.xml b/app/public/sitemap.xml
index 1cd99c37f..b2c85703d 100644
--- a/app/public/sitemap.xml
+++ b/app/public/sitemap.xml
@@ -1,7 +1,27 @@
-
-
-
-https://flowchart.fun/
-2021-04-16
-
-
\ No newline at end of file
+
+
+
+https://flowchart.fun/
+2026-07-16
+
+
+https://flowchart.fun/pricing
+2026-07-16
+
+
+https://flowchart.fun/blog
+2026-07-16
+
+
+https://flowchart.fun/roadmap
+2026-07-16
+
+
+https://flowchart.fun/changelog
+2026-07-16
+
+
+https://flowchart.fun/s
+2026-07-16
+
+
diff --git a/app/scripts/generate-frozen-fixtures.mjs b/app/scripts/generate-frozen-fixtures.mjs
new file mode 100644
index 000000000..3e6b7ff28
--- /dev/null
+++ b/app/scripts/generate-frozen-fixtures.mjs
@@ -0,0 +1,86 @@
+/**
+ * Generates frozen-position fixtures for the visual-regression templates whose
+ * layouts are non-deterministic (force-directed). For each, it loads the
+ * template, lets the layout settle, captures the node positions from the live
+ * cytoscape instance (window.__cy), and writes the full flowchart.fun document
+ * string with meta.nodePositions baked in to e2e/visual/fixtures/{name}.doc.txt.
+ *
+ * The visual test then renders these via a deterministic `preset` layout, so the
+ * geometry is fixed and the test checks RENDERING rather than (random) layout.
+ *
+ * Re-run if a frozen template's content/theme changes:
+ * E2E_START_URL=http://localhost:3001 pnpm -F app visual:fixtures
+ *
+ * Requires the dev server running (see E2E_START_URL, default :3000).
+ */
+import path from "path";
+import fs from "fs";
+import { chromium } from "playwright";
+import lzString from "lz-string";
+
+const { decompressFromEncodedURIComponent } = lzString;
+
+const __dirname = path.dirname(import.meta.url.slice(7));
+const fixturesDir = path.join(__dirname, "../e2e/visual/fixtures");
+const ORIGIN = process.env.E2E_START_URL || "http://localhost:3000";
+
+// Empirically non-deterministic templates (confirmed via the stability check).
+// Keep in sync with FROZEN_TEMPLATES in e2e/visual/frozen-templates.ts.
+const FROZEN = ["mindmap", "playful-mindmap", "mindmap-dark"];
+
+const DELIM = "=====";
+
+/** Rebuild the canonical docToString format with nodePositions injected. */
+function injectPositions(docString, positions) {
+ const parts = docString.split(DELIM);
+ const text = parts[0].replace(/\n$/, "");
+ const meta = JSON.parse((parts[1] || "{}").trim());
+ meta.nodePositions = positions;
+ return [text, DELIM, JSON.stringify(meta), DELIM].join("\n");
+}
+
+async function main() {
+ fs.mkdirSync(fixturesDir, { recursive: true });
+ const browser = await chromium.launch();
+
+ for (const name of FROZEN) {
+ const page = await browser.newPage();
+ await page.setViewportSize({ width: 1000, height: 1000 });
+ await page.goto(`${ORIGIN}/?isE2E=true`);
+ await page.waitForFunction(
+ () => typeof window.__load_template__ === "function",
+ null,
+ { timeout: 30000 }
+ );
+ await page.evaluate((n) => window.__load_template__(n, true), name);
+ await page.waitForFunction(() => !!window.__cy, null, { timeout: 30000 });
+ await page.waitForTimeout(3500);
+
+ const positions = await page.evaluate(() => {
+ const nodes = (window.__cy.json().elements.nodes || []);
+ const p = {};
+ for (const n of nodes) {
+ if (n.data && n.data.id && n.position) {
+ p[n.data.id] = { x: n.position.x, y: n.position.y };
+ }
+ }
+ return p;
+ });
+
+ const link = await page.evaluate(() => window.__get_screenshot_link__());
+ const hash = link.split("#")[1];
+ const docString = decompressFromEncodedURIComponent(hash);
+ const frozen = injectPositions(docString, positions);
+
+ fs.writeFileSync(path.join(fixturesDir, `${name}.doc.txt`), frozen, "utf8");
+ console.log(`✅ ${name}: froze ${Object.keys(positions).length} positions`);
+ await page.close();
+ }
+
+ await browser.close();
+}
+
+main().catch((e) => {
+ console.error(e);
+ process.exit(1);
+});
diff --git a/app/src/components/Header.tsx b/app/src/components/Header.tsx
index 7eec86bc2..aa1665998 100644
--- a/app/src/components/Header.tsx
+++ b/app/src/components/Header.tsx
@@ -5,6 +5,7 @@ import * as Dialog from "@radix-ui/react-dialog";
import * as DropdownMenu from "@radix-ui/react-dropdown-menu";
import * as NavigationMenu from "@radix-ui/react-navigation-menu";
import {
+ ArrowSquareOut,
Chat,
DiscordLogo,
Folder,
@@ -39,6 +40,7 @@ import {
} from "../lib/hooks";
import { track } from "../lib/track";
import { useLastChart } from "../lib/useLastChart";
+import { toneRowProjects } from "../lib/toneRowProjects";
import { ReactComponent as BrandSvg } from "./brand.svg";
export const Header = memo(function SharedHeader() {
@@ -456,6 +458,17 @@ function MobileHeader({
className="mobile-only"
to="/privacy-policy"
/>
+ {toneRowProjects.map((project) => (
+ }
+ href={project.href}
+ target="_blank"
+ rel="noopener"
+ className="mobile-only"
+ />
+ ))}
diff --git a/app/src/components/MoreFromToneRow.tsx b/app/src/components/MoreFromToneRow.tsx
new file mode 100644
index 000000000..a0d399544
--- /dev/null
+++ b/app/src/components/MoreFromToneRow.tsx
@@ -0,0 +1,46 @@
+import { Trans } from "@lingui/macro";
+import { Fragment } from "react";
+import { useLocation } from "react-router-dom";
+import classNames from "classnames";
+
+import { TONE_ROW_URL, toneRowProjects } from "../lib/toneRowProjects";
+
+const linkClasses =
+ "hover:text-blue-600 dark:hover:text-blue-400 transition-colors";
+
+/**
+ * A discreet credit line for the sandbox homepage, shown in the tab row
+ * above the graph canvas on desktop. On mobile it stays in the DOM but
+ * hidden (like the rest of the desktop nav), which is enough for crawlers
+ * to follow the outbound links; the visible mobile placement is the links
+ * in the mobile menu (Header.tsx).
+ */
+export function MoreFromToneRow({ className }: { className?: string }) {
+ const { pathname } = useLocation();
+ if (pathname !== "/") return null;
+ return (
+
+
+ Made by{" "}
+
+ Tone Row
+
+
+ {" · "}
+
More tools:{" "}
+ {toneRowProjects.map((project, i) => (
+
+ {i > 0 && " · "}
+
+ {project.name}
+
+
+ ))}
+
+ );
+}
diff --git a/app/src/components/Settings.tsx b/app/src/components/Settings.tsx
index 08ca96936..b6d08f93d 100644
--- a/app/src/components/Settings.tsx
+++ b/app/src/components/Settings.tsx
@@ -8,6 +8,7 @@ import { PageTitle, SectionTitle } from "../ui/Typography";
import { AppContext } from "./AppContextProvider";
import styles from "./Settings.module.css";
import { DISCORD_URL } from "../lib/constants";
+import { toneRowProjects } from "../lib/toneRowProjects";
const Settings = memo(() => {
const { updateUserSettings, mode, language } = useContext(AppContext);
@@ -128,6 +129,22 @@ const Settings = memo(() => {
+
+
+ More from Tone Row
+
+
+ {toneRowProjects.map((project) => (
+
+ ))}
+
+
Support
@@ -194,3 +211,38 @@ const GroupButton = memo(
);
GroupButton.displayName = "GroupButton";
+
+const ToneRowProject = memo(
+ ({
+ href,
+ name,
+ domain,
+ description,
+ }: {
+ href: string;
+ name: string;
+ domain: string;
+ description: string;
+ }) => {
+ return (
+
+
+ {name}{" "}
+
+ {domain}
+
+
+
+ {description}
+
+
+ );
+ }
+);
+
+ToneRowProject.displayName = "ToneRowProject";
diff --git a/app/src/lib/__snapshots__/graphUtilityClasses.characterization.test.ts.snap b/app/src/lib/__snapshots__/graphUtilityClasses.characterization.test.ts.snap
new file mode 100644
index 000000000..4b30cb8a2
--- /dev/null
+++ b/app/src/lib/__snapshots__/graphUtilityClasses.characterization.test.ts.snap
@@ -0,0 +1,285 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`graphUtilityClasses characterization childlessShapeClasses (module-load-time built array) snapshots the full 21-rule array including the appended iso-trapezoid 1`] = `
+Array [
+ Object {
+ "css": Object {
+ "shape": "rectangle",
+ },
+ "selector": ":childless.shape_rectangle",
+ },
+ Object {
+ "css": Object {
+ "shape": "roundrectangle",
+ },
+ "selector": ":childless.shape_roundrectangle",
+ },
+ Object {
+ "css": Object {
+ "shape": "ellipse",
+ },
+ "selector": ":childless.shape_ellipse",
+ },
+ Object {
+ "css": Object {
+ "shape": "triangle",
+ },
+ "selector": ":childless.shape_triangle",
+ },
+ Object {
+ "css": Object {
+ "shape": "pentagon",
+ },
+ "selector": ":childless.shape_pentagon",
+ },
+ Object {
+ "css": Object {
+ "shape": "hexagon",
+ },
+ "selector": ":childless.shape_hexagon",
+ },
+ Object {
+ "css": Object {
+ "shape": "heptagon",
+ },
+ "selector": ":childless.shape_heptagon",
+ },
+ Object {
+ "css": Object {
+ "shape": "octagon",
+ },
+ "selector": ":childless.shape_octagon",
+ },
+ Object {
+ "css": Object {
+ "shape": "star",
+ },
+ "selector": ":childless.shape_star",
+ },
+ Object {
+ "css": Object {
+ "shape": "barrel",
+ },
+ "selector": ":childless.shape_barrel",
+ },
+ Object {
+ "css": Object {
+ "shape": "diamond",
+ },
+ "selector": ":childless.shape_diamond",
+ },
+ Object {
+ "css": Object {
+ "shape": "vee",
+ },
+ "selector": ":childless.shape_vee",
+ },
+ Object {
+ "css": Object {
+ "shape": "rhomboid",
+ },
+ "selector": ":childless.shape_rhomboid",
+ },
+ Object {
+ "css": Object {
+ "shape": "right-rhomboid",
+ },
+ "selector": ":childless.shape_right-rhomboid",
+ },
+ Object {
+ "css": Object {
+ "shape": "polygon",
+ },
+ "selector": ":childless.shape_polygon",
+ },
+ Object {
+ "css": Object {
+ "shape": "tag",
+ },
+ "selector": ":childless.shape_tag",
+ },
+ Object {
+ "css": Object {
+ "shape": "round-rectangle",
+ },
+ "selector": ":childless.shape_round-rectangle",
+ },
+ Object {
+ "css": Object {
+ "shape": "cut-rectangle",
+ },
+ "selector": ":childless.shape_cut-rectangle",
+ },
+ Object {
+ "css": Object {
+ "shape": "bottom-round-rectangle",
+ },
+ "selector": ":childless.shape_bottom-round-rectangle",
+ },
+ Object {
+ "css": Object {
+ "shape": "concave-hexagon",
+ },
+ "selector": ":childless.shape_concave-hexagon",
+ },
+ Object {
+ "css": Object {
+ "shape": "polygon",
+ "shape-polygon-points": "-1 1 1 1 0.5 -1 -0.5 -1",
+ },
+ "selector": ":childless.shape_iso-trapezoid",
+ },
+]
+`;
+
+exports[`graphUtilityClasses characterization createSmartChildlessBorderClasses(width) snapshots full output for a representative width 1`] = `
+Array [
+ Object {
+ "css": Object {
+ "border-style": "none",
+ "border-width": 5,
+ },
+ "selector": ":childless.border_none",
+ },
+ Object {
+ "css": Object {
+ "border-style": "solid",
+ "border-width": 5,
+ },
+ "selector": ":childless.border_solid",
+ },
+ Object {
+ "css": Object {
+ "border-style": "dashed",
+ "border-width": 5,
+ },
+ "selector": ":childless.border_dashed",
+ },
+ Object {
+ "css": Object {
+ "border-style": "dotted",
+ "border-width": 5,
+ },
+ "selector": ":childless.border_dotted",
+ },
+ Object {
+ "css": Object {
+ "border-style": "double",
+ "border-width": 5,
+ },
+ "selector": ":childless.border_double",
+ },
+]
+`;
+
+exports[`graphUtilityClasses characterization createSmartShapeClasses(width) snapshots full output for a representative width 1`] = `
+Array [
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "rectangle",
+ "width": 30,
+ },
+ "selector": ":childless.shape_square",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "roundrectangle",
+ "width": 30,
+ },
+ "selector": ":childless.shape_roundsquare",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "ellipse",
+ "width": 30,
+ },
+ "selector": ":childless.shape_circle",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "star",
+ "width": 30,
+ },
+ "selector": ":childless.shape_star",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "diamond",
+ "width": 30,
+ },
+ "selector": ":childless.shape_diamond",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "pentagon",
+ "width": 30,
+ },
+ "selector": ":childless.shape_pentagon",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "hexagon",
+ "width": 30,
+ },
+ "selector": ":childless.shape_hexagon",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "heptagon",
+ "width": 30,
+ },
+ "selector": ":childless.shape_heptagon",
+ },
+ Object {
+ "css": Object {
+ "height": 30,
+ "shape": "octagon",
+ "width": 30,
+ },
+ "selector": ":childless.shape_octagon",
+ },
+]
+`;
+
+exports[`graphUtilityClasses characterization nodeBorderClasses (dead export, conflicting semantics) snapshots the 5-rule array 1`] = `
+Array [
+ Object {
+ "css": Object {
+ "border-style": "solid",
+ },
+ "selector": ":childless.border_solid",
+ },
+ Object {
+ "css": Object {
+ "border-style": "dashed",
+ },
+ "selector": ":childless.border_dashed",
+ },
+ Object {
+ "css": Object {
+ "border-style": "dotted",
+ },
+ "selector": ":childless.border_dotted",
+ },
+ Object {
+ "css": Object {
+ "border-style": "double",
+ },
+ "selector": ":childless.border_double",
+ },
+ Object {
+ "css": Object {
+ "border-width": 0,
+ },
+ "selector": ":childless.border_none",
+ },
+]
+`;
diff --git a/app/src/lib/__snapshots__/toExcalidraw.characterization.test.ts.snap b/app/src/lib/__snapshots__/toExcalidraw.characterization.test.ts.snap
new file mode 100644
index 000000000..aff81d5f2
--- /dev/null
+++ b/app/src/lib/__snapshots__/toExcalidraw.characterization.test.ts.snap
@@ -0,0 +1,3 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`toExcalidraw characterization referential integrity + determinism: with Math.random mocked, all bindings/containerIds resolve to real element ids and the full output is a stable snapshot 1`] = `"{\\"type\\":\\"excalidraw/clipboard\\",\\"elements\\":[{\\"id\\":\\"4g0gsldloh\\",\\"type\\":\\"diamond\\",\\"x\\":54,\\"y\\":72,\\"width\\":72,\\"height\\":36,\\"angle\\":0,\\"strokeColor\\":\\"#111111\\",\\"strokeWidth\\":2,\\"backgroundColor\\":\\"#e63946\\",\\"fillStyle\\":\\"solid\\",\\"strokeStyle\\":\\"solid\\",\\"roughness\\":0,\\"opacity\\":100,\\"groupIds\\":[],\\"frameId\\":null,\\"roundness\\":{\\"type\\":3},\\"isDeleted\\":false,\\"boundElements\\":[{\\"type\\":\\"text\\",\\"id\\":\\"4g0xl978r5\\"},{\\"type\\":\\"arrow\\",\\"id\\":\\"4g2bz8o5z7\\"}],\\"updated\\":1698858608230,\\"link\\":null,\\"locked\\":false},{\\"id\\":\\"4g0xl978r5\\",\\"type\\":\\"text\\",\\"angle\\":0,\\"strokeColor\\":\\"#000000\\",\\"backgroundColor\\":\\"#f8f9fa\\",\\"fillStyle\\":\\"solid\\",\\"strokeWidth\\":1,\\"strokeStyle\\":\\"solid\\",\\"roughness\\":0,\\"opacity\\":100,\\"groupIds\\":[],\\"frameId\\":null,\\"roundness\\":null,\\"isDeleted\\":false,\\"boundElements\\":null,\\"updated\\":1698858603606,\\"link\\":null,\\"locked\\":false,\\"text\\":\\"Start\\",\\"fontSize\\":16,\\"fontFamily\\":1,\\"textAlign\\":\\"center\\",\\"verticalAlign\\":\\"middle\\",\\"baseline\\":14,\\"containerId\\":\\"4g0gsldloh\\",\\"originalText\\":\\"Start\\",\\"lineHeight\\":1.25},{\\"id\\":\\"4g1edx0vtu\\",\\"type\\":\\"rectangle\\",\\"x\\":234,\\"y\\":72,\\"width\\":72,\\"height\\":36,\\"angle\\":0,\\"strokeColor\\":\\"#111111\\",\\"strokeWidth\\":2,\\"backgroundColor\\":\\"#e63946\\",\\"fillStyle\\":\\"solid\\",\\"strokeStyle\\":\\"solid\\",\\"roughness\\":0,\\"opacity\\":100,\\"groupIds\\":[],\\"frameId\\":null,\\"roundness\\":{\\"type\\":3},\\"isDeleted\\":false,\\"boundElements\\":[{\\"type\\":\\"text\\",\\"id\\":\\"4g1v6kuiwj\\"},{\\"type\\":\\"arrow\\",\\"id\\":\\"4g2bz8o5z7\\"}],\\"updated\\":1698858608230,\\"link\\":null,\\"locked\\":false},{\\"id\\":\\"4g1v6kuiwj\\",\\"type\\":\\"text\\",\\"angle\\":0,\\"strokeColor\\":\\"#000000\\",\\"backgroundColor\\":\\"#f8f9fa\\",\\"fillStyle\\":\\"solid\\",\\"strokeWidth\\":1,\\"strokeStyle\\":\\"solid\\",\\"roughness\\":0,\\"opacity\\":100,\\"groupIds\\":[],\\"frameId\\":null,\\"roundness\\":null,\\"isDeleted\\":false,\\"boundElements\\":null,\\"updated\\":1698858603606,\\"link\\":null,\\"locked\\":false,\\"text\\":\\"End\\",\\"fontSize\\":16,\\"fontFamily\\":1,\\"textAlign\\":\\"center\\",\\"verticalAlign\\":\\"middle\\",\\"baseline\\":14,\\"containerId\\":\\"4g1edx0vtu\\",\\"originalText\\":\\"End\\",\\"lineHeight\\":1.25},{\\"id\\":\\"4g2srwht1w\\",\\"type\\":\\"text\\",\\"x\\":0,\\"y\\":0,\\"angle\\":0,\\"strokeColor\\":\\"#1e1e1e\\",\\"backgroundColor\\":\\"#f8f9fa\\",\\"fillStyle\\":\\"solid\\",\\"strokeWidth\\":2,\\"strokeStyle\\":\\"solid\\",\\"roughness\\":0,\\"opacity\\":100,\\"groupIds\\":[],\\"frameId\\":null,\\"roundness\\":null,\\"isDeleted\\":false,\\"boundElements\\":null,\\"updated\\":1700487763161,\\"link\\":null,\\"locked\\":false,\\"text\\":\\"go\\",\\"fontSize\\":16,\\"fontFamily\\":1,\\"textAlign\\":\\"center\\",\\"verticalAlign\\":\\"middle\\",\\"baseline\\":20,\\"containerId\\":\\"4g2bz8o5z7\\",\\"originalText\\":\\"go\\",\\"lineHeight\\":1.2},{\\"id\\":\\"4g2bz8o5z7\\",\\"type\\":\\"arrow\\",\\"x\\":0,\\"y\\":0,\\"angle\\":0,\\"strokeColor\\":\\"#1e1e1e\\",\\"backgroundColor\\":\\"#f8f9fa\\",\\"fillStyle\\":\\"solid\\",\\"strokeWidth\\":2,\\"strokeStyle\\":\\"solid\\",\\"roughness\\":0,\\"opacity\\":100,\\"groupIds\\":[],\\"frameId\\":null,\\"roundness\\":{\\"type\\":2},\\"isDeleted\\":false,\\"boundElements\\":null,\\"updated\\":1698866637577,\\"link\\":null,\\"locked\\":false,\\"points\\":[[126,90],[234,90]],\\"lastCommittedPoint\\":null,\\"startBinding\\":{\\"elementId\\":\\"4g0gsldloh\\",\\"gap\\":4},\\"endBinding\\":{\\"elementId\\":\\"4g1edx0vtu\\",\\"gap\\":4},\\"startArrowhead\\":null,\\"endArrowhead\\":\\"triangle\\"}],\\"files\\":{}}"`;
diff --git a/app/src/lib/__snapshots__/toJSONCanvas.characterization.test.ts.snap b/app/src/lib/__snapshots__/toJSONCanvas.characterization.test.ts.snap
new file mode 100644
index 000000000..e81585c32
--- /dev/null
+++ b/app/src/lib/__snapshots__/toJSONCanvas.characterization.test.ts.snap
@@ -0,0 +1,40 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`toJSONCanvas characterization full structural snapshot for a representative two-node + edge graph 1`] = `
+Object {
+ "edges": Array [
+ Object {
+ "fromEnd": undefined,
+ "fromNode": "a",
+ "fromSide": "right",
+ "id": "e",
+ "label": "goes to",
+ "toEnd": undefined,
+ "toNode": "b",
+ "toSide": "left",
+ },
+ ],
+ "nodes": Array [
+ Object {
+ "color": "#e3f2fd",
+ "height": 66,
+ "id": "a",
+ "text": "Start",
+ "type": "text",
+ "width": 86,
+ "x": 0,
+ "y": 0,
+ },
+ Object {
+ "color": "#e3f2fd",
+ "height": 66,
+ "id": "b",
+ "text": "End",
+ "type": "text",
+ "width": 86,
+ "x": 200,
+ "y": 0,
+ },
+ ],
+}
+`;
diff --git a/app/src/lib/__snapshots__/toTheme.characterization.test.ts.snap b/app/src/lib/__snapshots__/toTheme.characterization.test.ts.snap
new file mode 100644
index 000000000..857d02dc0
--- /dev/null
+++ b/app/src/lib/__snapshots__/toTheme.characterization.test.ts.snap
@@ -0,0 +1,66 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`toTheme - default theme (canonical baseline) produces stable layout + style + postStyle for the default-template theme (dagre/DOWN): default-layout 1`] = `
+Object {
+ "name": "dagre",
+ "rankDir": "TB",
+ "spacingFactor": 1.1,
+}
+`;
+
+exports[`toTheme - default theme (canonical baseline) produces stable layout + style + postStyle for the default-template theme (dagre/DOWN): default-postStyle 1`] = `
+"edge.border_dashed { line-style: dashed; }
+edge.border_dotted { line-style: dotted; }
+edge.border_solid { line-style: solid; }
+:childless.shape_rectangle { shape: rectangle; }
+:childless.shape_roundrectangle { shape: roundrectangle; }
+:childless.shape_ellipse { shape: ellipse; }
+:childless.shape_triangle { shape: triangle; }
+:childless.shape_pentagon { shape: pentagon; }
+:childless.shape_hexagon { shape: hexagon; }
+:childless.shape_heptagon { shape: heptagon; }
+:childless.shape_octagon { shape: octagon; }
+:childless.shape_star { shape: star; }
+:childless.shape_barrel { shape: barrel; }
+:childless.shape_diamond { shape: diamond; }
+:childless.shape_vee { shape: vee; }
+:childless.shape_rhomboid { shape: rhomboid; }
+:childless.shape_right-rhomboid { shape: right-rhomboid; }
+:childless.shape_polygon { shape: polygon; }
+:childless.shape_tag { shape: tag; }
+:childless.shape_round-rectangle { shape: round-rectangle; }
+:childless.shape_cut-rectangle { shape: cut-rectangle; }
+:childless.shape_bottom-round-rectangle { shape: bottom-round-rectangle; }
+:childless.shape_concave-hexagon { shape: concave-hexagon; }
+:childless.shape_iso-trapezoid { shape: polygon; shape-polygon-points: -1 1 1 1 0.5 -1 -0.5 -1; }
+:childless.border_none { border-width: 2; border-style: none; }
+:childless.border_solid { border-width: 2; border-style: solid; }
+:childless.border_dashed { border-width: 2; border-style: dashed; }
+:childless.border_dotted { border-width: 2; border-style: dotted; }
+:childless.border_double { border-width: 2; border-style: double; }
+:childless.shape_square { shape: rectangle; width: 178; height: 178; }
+:childless.shape_roundsquare { shape: roundrectangle; width: 178; height: 178; }
+:childless.shape_circle { shape: ellipse; width: 178; height: 178; }
+:childless.shape_star { shape: star; width: 178; height: 178; }
+:childless.shape_diamond { shape: diamond; width: 178; height: 178; }
+:childless.shape_pentagon { shape: pentagon; width: 178; height: 178; }
+:childless.shape_hexagon { shape: hexagon; width: 178; height: 178; }
+:childless.shape_heptagon { shape: heptagon; width: 178; height: 178; }
+:childless.shape_octagon { shape: octagon; width: 178; height: 178; }
+:childless[w] { width: data(width); }
+:childless[h] { height: data(height); }"
+`;
+
+exports[`toTheme - default theme (canonical baseline) produces stable layout + style + postStyle for the default-template theme (dagre/DOWN): default-style 1`] = `
+"@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&display=swap');
+$width: 178px;
+$height: 50px;
+
+$background: #ffffff;
+:childless { shape: roundrectangle; label: data(label); text-valign: center; text-halign: center; text-wrap: wrap; text-max-width: 146px; width: 178; height: label; padding: 16; line-height: 1.3; font-family: \\"IBM Plex Sans\\"; background-color: #e6e6e6; color: #000000; border-width: 0; border-color: #000000; text-margin-y: 0; font-size: 16; }
+edge { curve-style: bezier; source-arrow-shape: none; target-arrow-shape: triangle; source-arrow-color: #606ef6; target-arrow-color: #606ef6; line-color: #606ef6; text-background-color: #ffffff; text-background-opacity: 1; text-background-padding: 2; color: #606ef6; width: 2; font-size: 14; label: data(label); line-height: 1.3; font-family: \\"IBM Plex Sans\\"; source-distance-from-node: 0; target-distance-from-node: 0; arrow-scale: 1; text-rotation: none; }
+:parent { padding: 10; border-style: solid; border-width: 2; border-color: #606ef6; background-color: #ffffff; text-valign: top; font-family: \\"IBM Plex Sans\\"; label: data(label); color: #000000; font-size: 24; text-margin-y: -5; }
+:active { overlay-color: #000000; overlay-opacity: 0; }
+:selected { opacity: 0.5; }
+core { selection-box-color: #606ef6; selection-box-opacity: 0.25; selection-box-border-width: 0; active-bg-opacity: 0; }"
+`;
diff --git a/app/src/lib/__snapshots__/toVisio.characterization.test.ts.snap b/app/src/lib/__snapshots__/toVisio.characterization.test.ts.snap
new file mode 100644
index 000000000..2d4ea709d
--- /dev/null
+++ b/app/src/lib/__snapshots__/toVisio.characterization.test.ts.snap
@@ -0,0 +1,17 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`toVisioFlowchart — characterization node with 1 outgoing but multiple incoming is Process (not Decision/End) 1`] = `
+"\\"Process Step ID\\",\\"Process Step Description\\",\\"Next Step ID\\",\\"Connector Label\\",\\"Shape Type\\"
+\\"n1\\",\\"a\\",\\"n3\\",\\"\\",\\"Start\\"
+\\"n2\\",\\"b\\",\\"n3\\",\\"\\",\\"Start\\"
+\\"n3\\",\\"c\\",\\"n4\\",\\"\\",\\"Process\\"
+\\"n4\\",\\"d\\",\\"\\",\\"\\",\\"End\\""
+`;
+
+exports[`toVisioFlowchart — characterization node with incoming AND >1 outgoing is Decision 1`] = `
+"\\"Process Step ID\\",\\"Process Step Description\\",\\"Next Step ID\\",\\"Connector Label\\",\\"Shape Type\\"
+\\"n1\\",\\"a\\",\\"n2\\",\\"b\\",\\"Start\\"
+\\"n2\\",\\"b\\",\\"n3,n4\\",\\",\\",\\"Decision\\"
+\\"n3\\",\\"c\\",\\"\\",\\"\\",\\"End\\"
+\\"n4\\",\\"d\\",\\"\\",\\"\\",\\"End\\""
+`;
diff --git a/app/src/lib/alignNodes.characterization.test.ts b/app/src/lib/alignNodes.characterization.test.ts
new file mode 100644
index 000000000..4f6f97782
--- /dev/null
+++ b/app/src/lib/alignNodes.characterization.test.ts
@@ -0,0 +1,423 @@
+/**
+ * CHARACTERIZATION TESTS for alignNodes.ts
+ *
+ * These lock in the CURRENT behavior of the three node-alignment helpers
+ * (alignNodes, alignNodesHorizontally, alignNodesVertically) before a future
+ * framework / layout-control migration. They are a safety net, NOT a
+ * correctness audit. Where current behavior looks surprising or buggy it is
+ * pinned as-is and flagged with a CHARACTERIZATION comment.
+ *
+ * Note: none of these functions take input or return output. They read
+ * `useDoc.getState().meta.nodePositions` and write back via `useDoc.setState`,
+ * and push an action onto the module-level undo/redo stack in ./undoStack.
+ * So each test must SEED useDoc, call the fn, then READ useDoc.
+ */
+
+import { NodePositions } from "../components/getNodePositionsFromCy";
+import {
+ alignNodes,
+ alignNodesHorizontally,
+ alignNodesVertically,
+} from "./alignNodes";
+import { useDoc } from "./useDoc";
+import { canRedo, canUndo, redo, undo } from "./undoStack";
+
+// Helpers to seed / read the store-backed input/output.
+function seed(nodePositions: NodePositions | undefined, otherMeta = {}) {
+ useDoc.setState(() => ({
+ meta: { ...otherMeta, ...(nodePositions ? { nodePositions } : {}) },
+ }));
+}
+
+function getPositions(): NodePositions | undefined {
+ return useDoc.getState().meta.nodePositions as NodePositions | undefined;
+}
+
+// The undo/redo stacks are module-level singletons with no reset export.
+// Drain both stacks before each test so length-based assertions are isolated.
+function drainStacks() {
+ // redo() pops from redoStack; undo() pops from undoStack. Calling them does
+ // mutate useDoc, but we re-seed at the start of every test so that's fine.
+ while (canRedo()) redo();
+ while (canUndo()) undo();
+}
+
+beforeEach(() => {
+ drainStacks();
+ // Reset doc to a clean known state.
+ useDoc.setState(() => ({ meta: {} }));
+});
+
+describe("alignNodes (auto-align to nearest within threshold 40)", () => {
+ test("snaps x to nearest node within threshold; leaves y alone when y diff >= threshold", () => {
+ // A and B: x diff = 30 (< 40, snaps), y diff = 50 (>= 40, no snap)
+ seed({
+ A: { x: 100, y: 0 },
+ B: { x: 130, y: 50 },
+ });
+
+ alignNodes();
+
+ const out = getPositions()!;
+ // A.x snaps to B.x (130); A.y stays (no neighbor within 40 on y)
+ expect(out.A).toEqual({ x: 130, y: 0 });
+ // B.x snaps to A.x (100); B.y stays
+ expect(out.B).toEqual({ x: 100, y: 50 });
+ });
+
+ test("x diff of exactly 40 does NOT snap (strict-less-than boundary at magic number 40)", () => {
+ // CHARACTERIZATION: threshold uses strict `< 40`. At exactly 40 no snap.
+ seed({
+ A: { x: 0, y: 0 },
+ B: { x: 40, y: 200 },
+ });
+
+ alignNodes();
+
+ const out = getPositions()!;
+ // No snapping on either axis: positions unchanged.
+ expect(out.A).toEqual({ x: 0, y: 0 });
+ expect(out.B).toEqual({ x: 40, y: 200 });
+ });
+
+ test("x diff of 39 DOES snap (just under the boundary)", () => {
+ seed({
+ A: { x: 0, y: 0 },
+ B: { x: 39, y: 200 },
+ });
+
+ alignNodes();
+
+ const out = getPositions()!;
+ expect(out.A).toEqual({ x: 39, y: 0 });
+ expect(out.B).toEqual({ x: 0, y: 200 });
+ });
+
+ test("x and y can snap to TWO DIFFERENT neighbors, producing a coordinate matching no existing node", () => {
+ // CHARACTERIZATION: per-axis nearest is computed independently.
+ // Target node T is near B on x and near C on y.
+ // B = {x:105, y:1000}, C = {x:9000, y:25}, T = {x:100, y:0}
+ // T.x diff to B = 5 (< 40) -> nearest x is B.x = 105
+ // T.y diff to C = 25 (< 40) -> nearest y is C.y = 25
+ // Result T = {x:105, y:25} which equals neither B nor C.
+ seed({
+ T: { x: 100, y: 0 },
+ B: { x: 105, y: 1000 },
+ C: { x: 9000, y: 25 },
+ });
+
+ alignNodes();
+
+ const out = getPositions()!;
+ expect(out.T).toEqual({ x: 105, y: 25 });
+ });
+
+ test("comparisons read the ORIGINAL map (non-incremental) so a chain shifts predictably, not cascading", () => {
+ // CHARACTERIZATION: each node is compared against the ORIGINAL nodePositions
+ // map and results are written to a SEPARATE aligned map. So alignment is NOT
+ // applied incrementally / cascading. A naive refactor reading the in-progress
+ // map would change these outputs.
+ // A=100, C=120 are each 20 from B=110 (within threshold). B is 20 from A and
+ // 20 from C. Each computed independently from the originals.
+ seed({
+ A: { x: 100, y: 0 },
+ B: { x: 110, y: 1000 },
+ C: { x: 120, y: 2000 },
+ });
+
+ alignNodes();
+
+ const out = getPositions()!;
+ // A's nearest x: B(diff10) vs C(diff20) -> B(110).
+ expect(out.A.x).toBe(110);
+ // C's nearest x: B(diff10) vs A(diff20) -> B(110).
+ expect(out.C.x).toBe(110);
+ // B was compared against ORIGINAL A(100)/C(120), not the just-moved values.
+ // y diffs are huge so y is untouched for all.
+ expect(out.A.y).toBe(0);
+ expect(out.C.y).toBe(2000);
+ });
+
+ test("TIE-BREAK on nearest x is ORDER-DEPENDENT: first-encountered equal-distance neighbor wins (strict < on minDiff)", () => {
+ // CHARACTERIZATION + LIKELY SURPRISE: when two neighbors are EQUIDISTANT on
+ // an axis, the code keeps the FIRST one seen (uses `diff < minDiff`, strict).
+ // Iteration order = object insertion order, so output depends on key order.
+ // B=110 is equidistant from A=100 (10) and C=120 (10).
+
+ // Insertion order A, C: A is seen before C -> B snaps to A.x.
+ seed({
+ B: { x: 110, y: 0 },
+ A: { x: 100, y: 1000 },
+ C: { x: 120, y: 2000 },
+ });
+ alignNodes();
+ expect(getPositions()!.B.x).toBe(100);
+
+ // Reverse the order of the equidistant pair: C before A -> B snaps to C.x.
+ seed({
+ B: { x: 110, y: 0 },
+ C: { x: 120, y: 2000 },
+ A: { x: 100, y: 1000 },
+ });
+ alignNodes();
+ expect(getPositions()!.B.x).toBe(120);
+ });
+
+ test("node with no neighbor within threshold on either axis keeps BOTH original coordinates", () => {
+ seed({
+ A: { x: 0, y: 0 },
+ Far: { x: 5000, y: 5000 },
+ });
+
+ alignNodes();
+
+ const out = getPositions()!;
+ expect(out.A).toEqual({ x: 0, y: 0 });
+ expect(out.Far).toEqual({ x: 5000, y: 5000 });
+ });
+
+ test("nearest x wins when multiple neighbors are within threshold", () => {
+ // A at x=100. B at x=130 (diff 30), C at x=110 (diff 10). C is nearest.
+ // y values far apart so only x snapping is in play for A.
+ seed({
+ A: { x: 100, y: 0 },
+ B: { x: 130, y: 1000 },
+ C: { x: 110, y: 2000 },
+ });
+
+ alignNodes();
+
+ const out = getPositions()!;
+ // A.x snaps to the nearest x neighbor, which is C (110).
+ expect(out.A.x).toBe(110);
+ expect(out.A.y).toBe(0);
+ });
+
+ test("early-return when meta.nodePositions is undefined: no setState change, no undo push", () => {
+ // Seed meta WITHOUT nodePositions.
+ useDoc.setState(() => ({ meta: { somethingElse: 123 } }));
+ const undoBefore = canUndo();
+ const metaBefore = useDoc.getState().meta;
+
+ alignNodes();
+
+ // Guard returns early: meta unchanged, no undo entry added.
+ expect(useDoc.getState().meta).toBe(metaBefore);
+ expect(canUndo()).toBe(undoBefore);
+ });
+});
+
+describe("alignNodesHorizontally (sets a SHARED X = average; preserves each Y)", () => {
+ test("sets shared X = average of selected ids; Y preserved (despite 'Horizontally' name it makes a vertical column)", () => {
+ // CHARACTERIZATION: name is inverted vs intuition. It changes X.
+ seed({
+ A: { x: 0, y: 10 },
+ B: { x: 100, y: 20 },
+ C: { x: 200, y: 30 },
+ });
+
+ alignNodesHorizontally(["A", "B", "C"]);
+
+ const out = getPositions()!;
+ const avgX = (0 + 100 + 200) / 3; // 100
+ expect(out.A).toEqual({ x: avgX, y: 10 });
+ expect(out.B).toEqual({ x: avgX, y: 20 });
+ expect(out.C).toEqual({ x: avgX, y: 30 });
+ });
+
+ test("ids not present in the map are ignored in BOTH the average and the write", () => {
+ // Pass a mix of existing + nonexistent ids; average excludes the missing.
+ seed({
+ A: { x: 0, y: 10 },
+ B: { x: 100, y: 20 },
+ D: { x: 999, y: 999 }, // exists but NOT selected -> untouched
+ });
+
+ alignNodesHorizontally(["A", "B", "GHOST"]);
+
+ const out = getPositions()!;
+ const avgX = (0 + 100) / 2; // 50, GHOST excluded
+ expect(out.A).toEqual({ x: avgX, y: 10 });
+ expect(out.B).toEqual({ x: avgX, y: 20 });
+ // Non-selected existing node is untouched.
+ expect(out.D).toEqual({ x: 999, y: 999 });
+ // Ghost id is not added to the map.
+ expect(out.GHOST).toBeUndefined();
+ });
+
+ test("zero matching ids: averageX fallback of 0 does NOT write x:0 onto any node (write loop skips missing ids)", () => {
+ // CHARACTERIZATION: divide-by-zero fallback (count===0 -> averageX=0) is
+ // effectively inert because the write loop only touches ids in the map.
+ seed({
+ A: { x: 7, y: 8 },
+ B: { x: 9, y: 10 },
+ });
+
+ alignNodesHorizontally(["NOPE1", "NOPE2"]);
+
+ const out = getPositions()!;
+ // Nothing zeroed: original positions intact.
+ expect(out.A).toEqual({ x: 7, y: 8 });
+ expect(out.B).toEqual({ x: 9, y: 10 });
+ });
+
+ test("early-return when nodePositions undefined: no undo push", () => {
+ useDoc.setState(() => ({ meta: {} }));
+ const undoBefore = canUndo();
+ alignNodesHorizontally(["A"]);
+ expect(canUndo()).toBe(undoBefore);
+ });
+});
+
+describe("alignNodesVertically (sets a SHARED Y = average; preserves each X)", () => {
+ test("sets shared Y = average of selected ids; X preserved (despite 'Vertically' name it makes a horizontal row)", () => {
+ // CHARACTERIZATION: name is inverted vs intuition. It changes Y.
+ seed({
+ A: { x: 10, y: 0 },
+ B: { x: 20, y: 100 },
+ C: { x: 30, y: 200 },
+ });
+
+ alignNodesVertically(["A", "B", "C"]);
+
+ const out = getPositions()!;
+ const avgY = (0 + 100 + 200) / 3; // 100
+ expect(out.A).toEqual({ x: 10, y: avgY });
+ expect(out.B).toEqual({ x: 20, y: avgY });
+ expect(out.C).toEqual({ x: 30, y: avgY });
+ });
+
+ test("ids not present in the map are ignored in BOTH the average and the write", () => {
+ seed({
+ A: { x: 10, y: 0 },
+ B: { x: 20, y: 100 },
+ D: { x: 999, y: 999 },
+ });
+
+ alignNodesVertically(["A", "B", "GHOST"]);
+
+ const out = getPositions()!;
+ const avgY = (0 + 100) / 2; // 50
+ expect(out.A).toEqual({ x: 10, y: avgY });
+ expect(out.B).toEqual({ x: 20, y: avgY });
+ expect(out.D).toEqual({ x: 999, y: 999 });
+ expect(out.GHOST).toBeUndefined();
+ });
+
+ test("zero matching ids: averageY fallback of 0 does NOT write y:0 onto any node", () => {
+ seed({
+ A: { x: 7, y: 8 },
+ B: { x: 9, y: 10 },
+ });
+
+ alignNodesVertically(["NOPE"]);
+
+ const out = getPositions()!;
+ expect(out.A).toEqual({ x: 7, y: 8 });
+ expect(out.B).toEqual({ x: 9, y: 10 });
+ });
+
+ test("early-return when nodePositions undefined: no undo push", () => {
+ useDoc.setState(() => ({ meta: {} }));
+ const undoBefore = canUndo();
+ alignNodesVertically(["A"]);
+ expect(canUndo()).toBe(undoBefore);
+ });
+});
+
+describe("undo / redo round-trip (guards the shallow-copy of originalPositions)", () => {
+ test("alignNodes: undo() restores exact original coordinates; redo() re-applies aligned", () => {
+ const original: NodePositions = {
+ A: { x: 100, y: 0 },
+ B: { x: 130, y: 5 },
+ };
+ seed(original);
+
+ alignNodes();
+ const aligned = getPositions()!;
+ // Sanity: something actually moved.
+ expect(aligned.A).not.toEqual(original.A);
+
+ undo();
+ const afterUndo = getPositions()!;
+ expect(afterUndo.A).toEqual({ x: 100, y: 0 });
+ expect(afterUndo.B).toEqual({ x: 130, y: 5 });
+
+ redo();
+ const afterRedo = getPositions()!;
+ expect(afterRedo.A).toEqual(aligned.A);
+ expect(afterRedo.B).toEqual(aligned.B);
+ });
+
+ test("alignNodesHorizontally: undo() restores original X values", () => {
+ seed({
+ A: { x: 0, y: 1 },
+ B: { x: 200, y: 2 },
+ });
+
+ alignNodesHorizontally(["A", "B"]);
+ expect(getPositions()!.A.x).toBe(100);
+
+ undo();
+ const afterUndo = getPositions()!;
+ expect(afterUndo.A).toEqual({ x: 0, y: 1 });
+ expect(afterUndo.B).toEqual({ x: 200, y: 2 });
+ });
+
+ test("alignNodesVertically: undo() restores original Y values; redo() re-applies", () => {
+ seed({
+ A: { x: 1, y: 0 },
+ B: { x: 2, y: 200 },
+ });
+
+ alignNodesVertically(["A", "B"]);
+ expect(getPositions()!.A.y).toBe(100); // avg of 0 and 200
+
+ undo();
+ const afterUndo = getPositions()!;
+ expect(afterUndo.A).toEqual({ x: 1, y: 0 });
+ expect(afterUndo.B).toEqual({ x: 2, y: 200 });
+
+ redo();
+ const afterRedo = getPositions()!;
+ expect(afterRedo.A).toEqual({ x: 1, y: 100 });
+ expect(afterRedo.B).toEqual({ x: 2, y: 100 });
+ });
+});
+
+describe("undo-stack hygiene: a NO-OP align does NOT push an undo entry and preserves redo", () => {
+ test("a no-op alignNodes leaves undo/redo history untouched (no pollution)", () => {
+ // A no-op align (nodes far apart on both axes -> nothing snaps) must NOT
+ // setState or push undo, so it must NOT destroy redo history.
+
+ // 1. Do a real align so there's something to undo, then undo it so redo is
+ // available.
+ seed({ A: { x: 100, y: 0 }, B: { x: 130, y: 5 } });
+ alignNodes();
+ undo();
+ expect(canRedo()).toBe(true);
+
+ // 2. Now perform a NO-OP align (nodes far apart on both axes -> nothing
+ // snaps). It must leave both stacks exactly as they were.
+ seed({ A: { x: 0, y: 0 }, Far: { x: 9000, y: 9000 } });
+ const undoCountBefore = canUndo();
+ alignNodes();
+
+ // redo history preserved (the no-op did not wipe it).
+ expect(canRedo()).toBe(true);
+ // no undo entry added by the no-op.
+ expect(canUndo()).toBe(false);
+ expect(undoCountBefore).toBe(false); // pre-condition: after the undo above, undo stack was empty
+ });
+
+ test("alignNodesHorizontally with a single id is a no-op-on-position and does NOT push an undo entry", () => {
+ seed({ A: { x: 50, y: 7 }, B: { x: 999, y: 8 } });
+ // Single id -> averageX = its own x -> A unchanged.
+ alignNodesHorizontally(["A"]);
+
+ const out = getPositions()!;
+ expect(out.A).toEqual({ x: 50, y: 7 }); // unchanged
+ // No undo entry was pushed since nothing changed.
+ expect(canUndo()).toBe(false);
+ });
+});
diff --git a/app/src/lib/alignNodes.ts b/app/src/lib/alignNodes.ts
index 5303374c0..3b82f0068 100644
--- a/app/src/lib/alignNodes.ts
+++ b/app/src/lib/alignNodes.ts
@@ -2,6 +2,25 @@ import { NodePositions } from "../components/getNodePositionsFromCy";
import { useDoc } from "./useDoc";
import { addToUndoStack } from "./undoStack";
+/**
+ * Deep equality over two position maps. Returns true when both maps have the
+ * exact same set of ids and each id's x and y are identical. Used to detect
+ * no-op aligns so we can skip the setState + undo-stack push (which would
+ * otherwise pollute the undo stack and wipe redo history).
+ */
+function positionsAreEqual(a: NodePositions, b: NodePositions): boolean {
+ const aKeys = Object.keys(a);
+ const bKeys = Object.keys(b);
+ if (aKeys.length !== bKeys.length) return false;
+ for (const id of aKeys) {
+ const aPos = a[id];
+ const bPos = b[id];
+ if (!bPos) return false;
+ if (aPos.x !== bPos.x || aPos.y !== bPos.y) return false;
+ }
+ return true;
+}
+
/**
* This function tries to align nodes vertical and horiontal on their center
* axis by iterating over all the nodes, finding their centers, looking for other
@@ -53,6 +72,10 @@ export function alignNodes() {
};
});
+ // No-op guard: if nothing actually moved, don't touch state or the undo
+ // stack (avoids polluting undo and wiping the user's redo history).
+ if (positionsAreEqual(originalPositions, alignedPositions)) return;
+
// Update the node positions in the document state
useDoc.setState((state) => ({
meta: {
@@ -119,6 +142,10 @@ export function alignNodesHorizontally(nodeIds: string[]) {
}
}
+ // No-op guard: if nothing actually moved, don't touch state or the undo
+ // stack (avoids polluting undo and wiping the user's redo history).
+ if (positionsAreEqual(originalPositions, alignedPositions)) return;
+
// Update the node positions in the document state
useDoc.setState((state) => ({
meta: {
@@ -185,6 +212,10 @@ export function alignNodesVertically(nodeIds: string[]) {
}
}
+ // No-op guard: if nothing actually moved, don't touch state or the undo
+ // stack (avoids polluting undo and wiping the user's redo history).
+ if (positionsAreEqual(originalPositions, alignedPositions)) return;
+
// Update the node positions in the document state
useDoc.setState((state) => ({
meta: {
diff --git a/app/src/lib/cyStyleToString/__snapshots__/cyStyleToString.characterization.test.ts.snap b/app/src/lib/cyStyleToString/__snapshots__/cyStyleToString.characterization.test.ts.snap
new file mode 100644
index 000000000..9951a5e65
--- /dev/null
+++ b/app/src/lib/cyStyleToString/__snapshots__/cyStyleToString.characterization.test.ts.snap
@@ -0,0 +1,82 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`cyStyleToString characterization full fixture.json exact snapshot 1`] = `
+":parent { shape: rectangle; background-color: rgb(238,238,238); padding: 10px; border-color: rgb(204,204,204); border-width: 1px; text-valign: top; text-halign: center; text-margin-y: -6px; text-wrap: none; color: rgb(0,0,0); }
+edge { width: 0.75px; font-size: 10px; loop-direction: 0deg; loop-sweep: 20deg; text-background-opacity: 1; text-background-color: rgb(255,255,255); text-background-padding: 3px; line-color: rgb(0,0,0); target-arrow-color: rgb(0,0,0); source-arrow-color: rgb(0,0,0); target-arrow-shape: triangle; arrow-scale: 1; curve-style: bezier; label: data(label); color: rgb(0,0,0); text-valign: center; text-wrap: wrap; font-family: Karla; text-halign: center; text-rotation: autorotate; target-distance-from-node: 1px; source-distance-from-node: 0px; }
+:loop { curve-style: bezier; }
+edge:compound { curve-style: bezier; source-endpoint: outside-to-line; target-endpoint: outside-to-line; }
+:selected { background-color: rgb(1,105,217); line-color: rgb(1,105,217); source-arrow-color: rgb(1,105,217); mid-source-arrow-color: rgb(1,105,217); target-arrow-color: rgb(1,105,217); mid-target-arrow-color: rgb(1,105,217); }
+:parent:selected { background-color: rgb(204,225,249); border-color: rgb(174,200,229); }
+:active { overlay-padding: 10px; overlay-color: rgb(0,0,0); overlay-opacity: 0.25; }
+.nodeHovered, .edgeHovered, node:selected { underlay-opacity: 0.1; underlay-color: rgb(0,0,0); underlay-padding: 5px; }
+node { font-size: 10px; font-family: Karla; background-color: rgb(255,255,255); border-color: rgb(0,0,0); color: rgb(0,0,0); label: data(label); text-wrap: wrap; text-max-width: data(width); padding: 6px; text-valign: center; text-halign: center; border-width: 0.75px; shape: rectangle; line-height: 1.25; }
+node[label!=''] { width: data(shapeWidth); height: data(shapeHeight); text-margin-y: data(textMarginY); text-margin-x: data(textMarginX); }
+node.black { background-color: rgb(0,0,0); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(255,255,255); }
+node.white { background-color: rgb(255,255,255); background-opacity: 1; border-color: rgb(255,255,255); color: rgb(0,0,0); }
+node.green { background-color: rgb(1,216,87); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(0,0,0); }
+node.yellow { background-color: rgb(255,207,13); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(0,0,0); }
+node.blue { background-color: rgb(97,114,249); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(255,255,255); }
+node.orange { background-color: rgb(255,112,68); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(0,0,0); }
+node.purple { background-color: rgb(164,146,255); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(0,0,0); }
+node.red { background-color: rgb(250,35,35); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(0,0,0); }
+node.gray { background-color: rgb(170,170,170); background-opacity: 1; border-color: rgb(0,0,0); color: rgb(0,0,0); }
+.rectangle { shape: rectangle; }
+.roundrectangle { shape: roundrectangle; }
+.ellipse { shape: ellipse; }
+.triangle { shape: triangle; }
+.pentagon { shape: pentagon; }
+.hexagon { shape: hexagon; }
+.heptagon { shape: heptagon; }
+.octagon { shape: octagon; }
+.star { shape: star; }
+.barrel { shape: barrel; }
+.diamond { shape: diamond; }
+.vee { shape: vee; }
+.rhomboid { shape: rhomboid; }
+.right-rhomboid { shape: right-rhomboid; }
+.polygon { shape: polygon; }
+.tag { shape: tag; }
+.round-rectangle { shape: round-rectangle; }
+.cut-rectangle { shape: cut-rectangle; }
+.bottom-round-rectangle { shape: bottom-round-rectangle; }
+.concave-hexagon { shape: concave-hexagon; }
+.circle { shape: ellipse; height: data(width); }
+edge.dashed { line-style: dashed; }
+edge.dotted { line-style: dotted; }
+edge.solid { line-style: solid; }
+edge.source-triangle { source-arrow-shape: triangle; }
+edge.target-triangle { target-arrow-shape: triangle; }
+edge.source-triangle-tee { source-arrow-shape: triangle-tee; }
+edge.target-triangle-tee { target-arrow-shape: triangle-tee; }
+edge.source-circle-triangle { source-arrow-shape: circle-triangle; }
+edge.target-circle-triangle { target-arrow-shape: circle-triangle; }
+edge.source-triangle-cross { source-arrow-shape: triangle-cross; }
+edge.target-triangle-cross { target-arrow-shape: triangle-cross; }
+edge.source-triangle-backcurve { source-arrow-shape: triangle-backcurve; }
+edge.target-triangle-backcurve { target-arrow-shape: triangle-backcurve; }
+edge.source-vee { source-arrow-shape: vee; }
+edge.target-vee { target-arrow-shape: vee; }
+edge.source-tee { source-arrow-shape: tee; }
+edge.target-tee { target-arrow-shape: tee; }
+edge.source-square { source-arrow-shape: square; }
+edge.target-square { target-arrow-shape: square; }
+edge.source-circle { source-arrow-shape: circle; }
+edge.target-circle { target-arrow-shape: circle; }
+edge.source-diamond { source-arrow-shape: diamond; }
+edge.target-diamond { target-arrow-shape: diamond; }
+edge.source-chevron { source-arrow-shape: chevron; }
+edge.target-chevron { target-arrow-shape: chevron; }
+edge.source-none { source-arrow-shape: none; }
+edge.target-none { target-arrow-shape: none; }
+node.border-solid { border-style: solid; }
+node.border-dashed { border-style: dashed; }
+node.border-dotted { border-style: dotted; }
+node.border-double { border-style: double; }
+node.border-none { border-width: 0px; }
+.text-sm { font-size: 7.5px; }
+.text-lg { font-size: 15px; }
+.text-xl { font-size: 20px; }
+node[w] { width: data(w); }
+node[h] { height: data(h); }
+node[src] { background-image: data(src); background-fit: cover; border-width: 0px; text-valign: bottom; text-margin-y: 5px; }"
+`;
diff --git a/app/src/lib/cyStyleToString/cyStyleToString.characterization.test.ts b/app/src/lib/cyStyleToString/cyStyleToString.characterization.test.ts
new file mode 100644
index 000000000..b7cbc7bcf
--- /dev/null
+++ b/app/src/lib/cyStyleToString/cyStyleToString.characterization.test.ts
@@ -0,0 +1,160 @@
+import { cyStyleToString } from "./cyStyleToString";
+import fixture from "./fixture.json";
+
+// Characterization tests for cyStyleToString.
+// These lock in the CURRENT serialization behavior (exact strings, ordering,
+// merge semantics, and edge-case handling) ahead of a future framework
+// migration. They assert ACTUAL output, not ideal output.
+
+// Helper to build a minimally-typed Style declaration. The real input shape
+// comes from cytoscape's cy.style().json(); only selector.inputText and
+// properties[].name / .strValue are read by the module.
+function decl(inputText: string, properties: any): any {
+ return {
+ selector: { inputText },
+ properties,
+ index: 0,
+ };
+}
+
+describe("cyStyleToString characterization", () => {
+ test("empty array input returns empty string", () => {
+ expect(cyStyleToString([] as any)).toBe("");
+ });
+
+ test("single selector with single property formats as `sel { name: value; }`", () => {
+ // Pins exact spacing: space inside braces, semicolon after value,
+ // no trailing newline.
+ const result = cyStyleToString([
+ decl("node", [{ name: "color", strValue: "red" }]),
+ ]);
+ expect(result).toBe("node { color: red; }");
+ });
+
+ test("declaration with properties:null is skipped entirely", () => {
+ const result = cyStyleToString([
+ decl("node", null),
+ decl("edge", [{ name: "width", strValue: "1px" }]),
+ ]);
+ // The null-properties declaration produces no block at all.
+ expect(result).toBe("edge { width: 1px; }");
+ });
+
+ test("declaration with properties:undefined is skipped entirely", () => {
+ const result = cyStyleToString([
+ decl("node", undefined),
+ decl("edge", [{ name: "width", strValue: "1px" }]),
+ ]);
+ expect(result).toBe("edge { width: 1px; }");
+ });
+
+ test("declaration with properties:[] (empty array) emits `sel { }` and is NOT skipped", () => {
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // An empty array is truthy, so the guard `if (!properties) continue;`
+ // does not skip it. It serializes to selector + space + "{ " + "" + " }",
+ // i.e. two spaces between the braces.
+ const result = cyStyleToString([decl("node", [])]);
+ expect(result).toBe("node { }");
+ });
+
+ test("duplicate selector merges differing properties in first-seen order at first occurrence position", () => {
+ // The merged block stays at the FIRST occurrence's position, and property
+ // order follows first-seen key insertion order across all merged decls.
+ const result = cyStyleToString([
+ decl("node", [{ name: "color", strValue: "red" }]),
+ decl("edge", [{ name: "width", strValue: "1px" }]),
+ decl("node", [{ name: "shape", strValue: "ellipse" }]),
+ ]);
+ expect(result).toBe(
+ "node { color: red; shape: ellipse; }\nedge { width: 1px; }"
+ );
+ });
+
+ test("duplicate selector with same property name: later declaration overrides earlier (last-write-wins)", () => {
+ // The most migration-fragile path. Spread order means the later
+ // declaration's value wins, but the key keeps its first-seen position.
+ const result = cyStyleToString([
+ decl("node", [{ name: "color", strValue: "red" }]),
+ decl("node", [{ name: "color", strValue: "blue" }]),
+ ]);
+ expect(result).toBe("node { color: blue; }");
+ });
+
+ test("uses strValue and ignores value/pfValue/units/mapped/mappedProperties", () => {
+ // Construct a declaration where value/pfValue differ from strValue, with a
+ // populated mappedProperties array. Only strValue must survive.
+ const result = cyStyleToString([
+ {
+ selector: { inputText: "node" },
+ properties: [
+ {
+ name: "background-color",
+ value: [238, 238, 238],
+ strValue: "rgb(238,238,238)",
+ pfValue: [238, 238, 238],
+ units: null,
+ mapped: { mapping: false, regex: "" },
+ },
+ ],
+ mappedProperties: [
+ { name: "label", strValue: "SHOULD_NOT_APPEAR", value: null },
+ ],
+ index: 0,
+ } as any,
+ ]);
+ expect(result).toBe("node { background-color: rgb(238,238,238); }");
+ expect(result).not.toContain("SHOULD_NOT_APPEAR");
+ expect(result).not.toContain("238,238,238,238"); // value array not joined in
+ });
+
+ test("mapped/data() property passes through verbatim via strValue", () => {
+ const result = cyStyleToString([
+ decl("node", [
+ { name: "label", strValue: "data(label)" },
+ { name: "text-max-width", strValue: "data(width)" },
+ ]),
+ ]);
+ expect(result).toBe(
+ "node { label: data(label); text-max-width: data(width); }"
+ );
+ });
+
+ test("multiple selectors preserve insertion order, joined by single newline with no trailing newline", () => {
+ const result = cyStyleToString([
+ decl("a", [{ name: "p1", strValue: "v1" }]),
+ decl("b", [{ name: "p2", strValue: "v2" }]),
+ decl("c", [{ name: "p3", strValue: "v3" }]),
+ ]);
+ expect(result).toBe("a { p1: v1; }\nb { p2: v2; }\nc { p3: v3; }");
+ expect(result.endsWith("\n")).toBe(false);
+ expect(result.split("\n")).toHaveLength(3);
+ });
+
+ test("multiple properties within one selector are joined by single space", () => {
+ const result = cyStyleToString([
+ decl("node", [
+ { name: "color", strValue: "red" },
+ { name: "shape", strValue: "ellipse" },
+ { name: "width", strValue: "10px" },
+ ]),
+ ]);
+ expect(result).toBe("node { color: red; shape: ellipse; width: 10px; }");
+ });
+
+ test("values are concatenated verbatim with no escaping", () => {
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // No sanitization: a value containing a semicolon or brace is emitted
+ // as-is, which would corrupt downstream CSS. Locks the no-escaping contract.
+ const result = cyStyleToString([
+ decl("node", [{ name: "content", strValue: "a; color: red } evil" }]),
+ ]);
+ expect(result).toBe("node { content: a; color: red } evil; }");
+ });
+
+ test("full fixture.json exact snapshot", () => {
+ // Real-world end-to-end lock (84-entry cytoscape stylesheet). Mirrors the
+ // existing inline-string test but as a snapshot baseline. Exercises the
+ // duplicate-selector merge path (:parent, edge, node) and data() mappings.
+ expect(cyStyleToString(fixture as any)).toMatchSnapshot();
+ });
+});
diff --git a/app/src/lib/getElements.characterization.test.ts b/app/src/lib/getElements.characterization.test.ts
new file mode 100644
index 000000000..4a901a5f8
--- /dev/null
+++ b/app/src/lib/getElements.characterization.test.ts
@@ -0,0 +1,265 @@
+import cytoscape from "cytoscape";
+
+import { getElements } from "./getElements";
+
+/**
+ * CHARACTERIZATION TESTS for getElements (core pipeline entry).
+ *
+ * These lock down the CURRENT behavior of getElements (text -> Cytoscape
+ * ElementDefinition[]) before a future framework migration. They assert what
+ * the code actually does today, not what it ideally should do.
+ *
+ * Environment note: getSize() depends on a DOM element with id="resizer" plus a
+ * zustand font store. In jsdom (this test env) there is no #resizer by default,
+ * so getSize() returns the string-literal sizes { width: "label", height:
+ * "label" }. Most cases below therefore assert "label", NOT measured pixels.
+ * One case injects a #resizer to characterize the measured-size path.
+ */
+
+// Helpers to split the heterogeneous element list.
+const nodes = (els: ReturnType) =>
+ els.filter((e) => !("source" in (e.data as any)));
+const edges = (els: ReturnType) =>
+ els.filter((e) => "source" in (e.data as any));
+
+describe("getElements characterization", () => {
+ it("empty string returns []", () => {
+ expect(getElements("")).toEqual([]);
+ });
+
+ it("whitespace-only string returns [] (no phantom nodes)", () => {
+ expect(getElements(" \n \n")).toEqual([]);
+ });
+
+ it("simple 3-level nesting produces 3 nodes + 2 edges with stable ids", () => {
+ const els = getElements("A\n B\n C");
+ const ns = nodes(els);
+ const es = edges(els);
+
+ expect(ns.map((n) => n.data.id)).toEqual(["n1", "n2", "n3"]);
+ expect(es.map((e) => e.data.id)).toEqual(["n1-n2-1", "n2-n3-1"]);
+ expect(es.map((e) => [e.data.source, e.data.target])).toEqual([
+ ["n1", "n2"],
+ ["n2", "n3"],
+ ]);
+ // node labels survive
+ expect(ns.map((n) => n.data.label)).toEqual(["A", "B", "C"]);
+ });
+
+ it("nodes carry in_degree/out_degree matching their edges (A->B->C)", () => {
+ const els = getElements("A\n B\n C");
+ const byLabel = (label: string) =>
+ nodes(els).find((n) => n.data.label === label)!.data as any;
+
+ // root: no incoming, one outgoing
+ expect(byLabel("A").in_degree).toBe(0);
+ expect(byLabel("A").out_degree).toBe(1);
+ // middle: one in, one out
+ expect(byLabel("B").in_degree).toBe(1);
+ expect(byLabel("B").out_degree).toBe(1);
+ // leaf: one in, none out
+ expect(byLabel("C").in_degree).toBe(1);
+ expect(byLabel("C").out_degree).toBe(0);
+ });
+
+ it("self-loops are counted in BOTH in_degree and out_degree (and parallel self-loops inflate counts)", () => {
+ // Two self-loops on A: "A #a" with two "(#a)" children.
+ const els = getElements("A #a\n (#a)\n (#a)");
+ const ns = nodes(els);
+ const es = edges(els);
+
+ // node A has id "a" (explicit id)
+ expect(ns).toHaveLength(1);
+ const a = ns[0].data as any;
+
+ // two self-loop edges produced, distinct ids
+ expect(es.map((e) => e.data.id)).toEqual(["a-a-1", "a-a-2"]);
+ es.forEach((e) => {
+ expect(e.data.source).toBe("a");
+ expect(e.data.target).toBe("a");
+ });
+
+ // CHARACTERIZATION: each self-loop counts once toward in_degree and once
+ // toward out_degree, and parallel duplicates are NOT de-duplicated.
+ expect(a.in_degree).toBe(2);
+ expect(a.out_degree).toBe(2);
+ });
+
+ it("parallel edges (A->B twice) inflate degree counts", () => {
+ const els = getElements("A #a\nB #b\n(#a)\n (#b)\n(#a)\n (#b)");
+ const es = edges(els);
+ expect(es.map((e) => e.data.id)).toEqual(["a-b-1", "a-b-2"]);
+
+ const byLabel = (label: string) =>
+ nodes(els).find((n) => n.data.label === label)!.data as any;
+ expect(byLabel("A").out_degree).toBe(2);
+ expect(byLabel("A").in_degree).toBe(0);
+ expect(byLabel("B").in_degree).toBe(2);
+ expect(byLabel("B").out_degree).toBe(0);
+ });
+
+ it("classes are attached and parsed; parser emits a leading space; only the FIRST .class is kept", () => {
+ const els = getElements("Hello .color_blue .shape_diamond");
+ const n = nodes(els)[0];
+
+ // CHARACTERIZATION: graph-selector 0.13.0 returns classes as a single string
+ // with a LEADING SPACE, and in this multi-class form it keeps ONLY the first
+ // class (".shape_diamond" is dropped). getElements does not normalize this.
+ // This may be a parser quirk/bug but is the current behavior.
+ expect(n.classes).toBe(" color_blue");
+ // node still gets sizing/degree augmentation
+ expect((n.data as any).in_degree).toBe(0);
+ expect((n.data as any).out_degree).toBe(0);
+ // jsdom: no #resizer -> label fallback
+ expect((n.data as any).width).toBe("label");
+ expect((n.data as any).height).toBe("label");
+ });
+
+ it("edge label is preserved (DSL 'goes to: B' yields edge label 'goes to')", () => {
+ const els = getElements("A\n goes to: B");
+ const es = edges(els);
+ expect(es).toHaveLength(1);
+ expect(es[0].data.label).toBe("goes to");
+ // child node label is the text after the colon
+ expect(nodes(els).map((n) => n.data.label)).toEqual(["A", "B"]);
+ });
+
+ it("edges pass through getElements unchanged (returned by reference, no style/degree added)", () => {
+ const els = getElements("A\n B");
+ const edge = edges(els)[0];
+ // CHARACTERIZATION: edges are NOT augmented; they have no style/in_degree/out_degree
+ expect(edge).not.toHaveProperty("style");
+ expect(edge.data).not.toHaveProperty("in_degree");
+ expect(edge.data).not.toHaveProperty("out_degree");
+ expect(edge.data).not.toHaveProperty("width");
+ });
+
+ it("pointer/reference (#id) creates an edge to the referenced node, not a new node", () => {
+ // "B" then "(#a)" nested under it -> edge from B to A. A is NOT duplicated.
+ const els = getElements("A #a\nB\n (#a)");
+ const ns = nodes(els);
+ const es = edges(els);
+
+ expect(ns.map((n) => n.data.id)).toEqual(["a", "n2"]);
+ expect(es).toHaveLength(1);
+ expect([es[0].data.source, es[0].data.target]).toEqual(["n2", "a"]);
+ });
+
+ describe("[w]/[h] data attribute sizing (LANDMINE, backward-compat path)", () => {
+ it("node with [w] and [h] uses attribute sizing and sets style['text-max-width']", () => {
+ // NOTE: a SPACE before the bracket is required for attribute parsing.
+ const els = getElements("Node [w=200] [h=50]");
+ const n = nodes(els)[0] as any;
+
+ expect(n.data.width).toBe(200);
+ expect(n.data.height).toBe(50);
+ // text-max-width is seeded from w
+ expect(n.style["text-max-width"]).toBe(200);
+ // raw attributes are retained on data
+ expect(n.data.w).toBe(200);
+ expect(n.data.h).toBe(50);
+ });
+
+ it("node with only [w] sets width + text-max-width, leaves height as 'label'", () => {
+ const els = getElements("Node [w=200]");
+ const n = nodes(els)[0] as any;
+
+ expect(n.data.width).toBe(200);
+ // h absent -> height stays the literal 'label' seed
+ expect(n.data.height).toBe("label");
+ expect(n.style["text-max-width"]).toBe(200);
+ });
+
+ it("'Node[w=200]' WITHOUT a space is treated as literal label text (no attribute parsing)", () => {
+ const els = getElements("Node[w=200]");
+ const n = nodes(els)[0] as any;
+
+ // CHARACTERIZATION: no space => whole thing is the label, no w/h, label fallback sizing
+ expect(n.data.label).toBe("Node[w=200]");
+ expect(n.data).not.toHaveProperty("w");
+ expect(n.data.width).toBe("label");
+ expect(n.style).toEqual({});
+ });
+ });
+
+ it("duplicate explicit node id throws a ParseError that propagates (not caught)", () => {
+ // CHARACTERIZATION: getElements has no try/catch. The Graph.tsx error UI
+ // depends on this throw-not-catch contract (it checks e.name === 'ParseError').
+ let thrown: any;
+ try {
+ getElements("A #x\nB #x");
+ } catch (e) {
+ thrown = e;
+ }
+ expect(thrown).toBeDefined();
+ expect(thrown.name).toBe("ParseError");
+ });
+
+ describe("lenient inputs do NOT throw (best-effort parse, backward-compat)", () => {
+ it("over-indent jump (0 -> 6 spaces) parses without error", () => {
+ expect(() => getElements("A\n B")).not.toThrow();
+ const els = getElements("A\n B");
+ // over-indented child still attaches to nearest valid ancestor
+ expect(edges(els)).toHaveLength(1);
+ expect([edges(els)[0].data.source, edges(els)[0].data.target]).toEqual([
+ "n1",
+ "n2",
+ ]);
+ });
+
+ it("dangling pointer to a non-existent node parses without error (no edge)", () => {
+ expect(() => getElements("A\n(DoesNotExist)")).not.toThrow();
+ const els = getElements("A\n(DoesNotExist)");
+ expect(nodes(els)).toHaveLength(1);
+ expect(edges(els)).toHaveLength(0);
+ });
+
+ it("unclosed bracket parses without error", () => {
+ expect(() => getElements("A [")).not.toThrow();
+ const els = getElements("A [");
+ expect(nodes(els)).toHaveLength(1);
+ });
+
+ it("tab indentation parses without error and creates an edge", () => {
+ expect(() => getElements("A\n\tB")).not.toThrow();
+ const els = getElements("A\n\tB");
+ expect(edges(els)).toHaveLength(1);
+ });
+ });
+
+ describe("environment-dependent sizing via #resizer", () => {
+ it("plain node falls back to width:'label'/height:'label' when no #resizer exists (jsdom default)", () => {
+ const els = getElements("Hello");
+ const n = nodes(els)[0] as any;
+ expect(n.data.width).toBe("label");
+ expect(n.data.height).toBe("label");
+ // CHARACTERIZATION: no measured numeric sizes in jsdom
+ });
+
+ it("with a #resizer present, the measured-size branch is taken but THROWS in jsdom (Range.getClientRects unsupported)", () => {
+ const resizer = document.createElement("div");
+ resizer.id = "resizer";
+ // getSize sets textContent, so resizer.firstChild exists -> it enters the
+ // measured branch which calls range.getClientRects().
+ document.body.appendChild(resizer);
+ try {
+ // CHARACTERIZATION: jsdom does not implement Range.getClientRects, so the
+ // measured-size path throws here. In a real browser this branch returns
+ // numeric width/height/shapeWidth/etc. We pin that the path is reached
+ // (i.e. #resizer flips behavior away from the 'label' fallback) and that
+ // it currently throws under jsdom rather than degrading gracefully.
+ expect(() => getElements("Hello")).toThrow(/getClientRects/);
+ } finally {
+ document.body.removeChild(resizer);
+ }
+ });
+ });
+
+ it("output is accepted by a headless cytoscape instance (smoke check)", () => {
+ const els = getElements("A\n B\n C");
+ const cy = cytoscape({ headless: true, elements: els as any });
+ expect(cy.nodes().length).toBe(3);
+ expect(cy.edges().length).toBe(2);
+ cy.destroy();
+ });
+});
diff --git a/app/src/lib/getSize.characterization.test.ts b/app/src/lib/getSize.characterization.test.ts
new file mode 100644
index 000000000..c1b9344b6
--- /dev/null
+++ b/app/src/lib/getSize.characterization.test.ts
@@ -0,0 +1,491 @@
+/**
+ * CHARACTERIZATION TESTS for getSize.ts
+ *
+ * Goal: lock down CURRENT behavior of node-sizing math + text-size classes
+ * before a future framework migration. These tests assert ACTUAL output
+ * (possibly buggy), not ideal output.
+ *
+ * Environment note: these run under jsdom (CRA default test env). jsdom does
+ * NOT implement real text layout — Range.getClientRects() returns an empty
+ * list (=> measured width 0) and element.clientHeight returns 0. So in the
+ * "normal" measured path the returned width/height are 0 and shape multipliers
+ * multiply 0 (=> 0). We therefore pin:
+ * - the exact RETURN SHAPE (keys present) for each branch,
+ * - the resizer's written `style` string, which faithfully captures the
+ * observable math (getWidth max-width, MAGIC_SCALAR, fontSize parsing,
+ * text-size scalar precedence, and preventCyRenderingBugs substitution).
+ * The genuine pixel measurement (getClientRects) needs a real layout engine
+ * and is out of scope for jsdom; documented in notes.
+ */
+
+import { getSize, fontSizeScalars } from "./getSize";
+import { useProcessStyleStore } from "./preprocessStyle";
+
+// Save/restore the zustand store's fontData around each test.
+const ORIGINAL_FONT_DATA = useProcessStyleStore.getState().fontData;
+
+function setFontData(fontData: Record) {
+ useProcessStyleStore.setState({ fontData: fontData as any });
+}
+
+function ensureResizer(): HTMLElement {
+ let el = document.getElementById("resizer");
+ if (!el) {
+ el = document.createElement("div");
+ el.id = "resizer";
+ document.body.appendChild(el);
+ }
+ return el;
+}
+
+function removeResizer() {
+ const el = document.getElementById("resizer");
+ if (el) el.remove();
+}
+
+// jsdom's Range does NOT implement getClientRects (it is not even a function),
+// so the measured path of getSize() THROWS for any non-empty label unless we
+// stub measurement. Default stub: a single client rect of width
+// DEFAULT_STUB_WIDTH and clientHeight DEFAULT_STUB_HEIGHT. Individual tests may
+// override via installMeasurementStub().
+const DEFAULT_STUB_WIDTH = 100;
+const DEFAULT_STUB_HEIGHT = 20;
+
+let createRangeSpy: jest.SpyInstance | null = null;
+let clientHeightSpy: jest.SpyInstance | null = null;
+
+function installMeasurementStub(width: number, height: number) {
+ uninstallMeasurementStub();
+ const resizer = ensureResizer();
+ const realCreateRange = document.createRange.bind(document);
+ createRangeSpy = jest
+ .spyOn(document, "createRange")
+ .mockImplementation(() => {
+ const range = realCreateRange();
+ range.getClientRects = () =>
+ [{ width } as DOMRect] as unknown as DOMRectList;
+ return range;
+ });
+ clientHeightSpy = jest
+ .spyOn(resizer, "clientHeight", "get")
+ .mockReturnValue(height);
+}
+
+function uninstallMeasurementStub() {
+ createRangeSpy?.mockRestore();
+ clientHeightSpy?.mockRestore();
+ createRangeSpy = null;
+ clientHeightSpy = null;
+}
+
+function withStubbedMeasurement(
+ width: number,
+ height: number,
+ fn: () => T
+): T {
+ installMeasurementStub(width, height);
+ try {
+ return fn();
+ } finally {
+ uninstallMeasurementStub();
+ }
+}
+
+beforeEach(() => {
+ // Most tests observe the resizer's written style/textContent or the returned
+ // object; they need a non-throwing measurement. Install the default stub.
+ installMeasurementStub(DEFAULT_STUB_WIDTH, DEFAULT_STUB_HEIGHT);
+});
+
+afterEach(() => {
+ uninstallMeasurementStub();
+ setFontData(ORIGINAL_FONT_DATA as any);
+ removeResizer();
+});
+
+describe("fontSizeScalars constant", () => {
+ it("pins the exact text-size multipliers", () => {
+ // These scale font-size and thus node size. Guard against accidental edits.
+ expect(fontSizeScalars).toEqual({
+ "text-sm": 0.75,
+ "text-base": 1,
+ "text-lg": 1.5,
+ "text-xl": 2,
+ });
+ });
+});
+
+describe("getSize: no #resizer in DOM (string-sentinel fallback)", () => {
+ it("returns {width:'label', height:'label'} when #resizer is absent", () => {
+ removeResizer();
+ setFontData({ fontSize: 10 });
+ const result = getSize("Hello", []);
+ // Cytoscape sentinel meaning "size to label". Downstream getElements.ts
+ // spreads this into node data.
+ expect(result).toEqual({ width: "label", height: "label" });
+ });
+});
+
+describe("getSize: empty-text path (silent undefined return)", () => {
+ it("returns undefined when label is empty (resizer present but no firstChild)", () => {
+ ensureResizer();
+ setFontData({ fontSize: 10 });
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // textContent = "" produces no firstChild, so the function falls through
+ // the if-block and returns undefined (no explicit return). getElements.ts
+ // would spread undefined.
+ const result = getSize("", []);
+ expect(result).toBeUndefined();
+ });
+});
+
+describe("getSize: resizer style string (observable math)", () => {
+ it("writes max-width, the raw fontData font-size, then the computed font-size (font-size appears TWICE)", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ getSize("Hello", []); // length 5
+ const style = resizer.getAttribute("style");
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // fontData is spread into the style object, so its `fontSize:10` becomes a
+ // `font-size: 10` declaration; then an explicit `font-size: 12.7px` is
+ // ALSO emitted. Both are written; in CSS the later one wins.
+ // getWidth(5) = Math.max(64, ceil(33.8993*ln(5) - 38.614819)) = 64 (floor)
+ // computed font-size = 1.27 * 10 * 1 (text-base) = 12.7
+ expect(style).toBe("max-width: 64px; font-size: 10; font-size: 12.7px;");
+ });
+
+ it("getWidth grows logarithmically above the 64px floor for long labels", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ // 100-char label
+ getSize("x".repeat(100), []);
+ const style = resizer.getAttribute("style") || "";
+ // getWidth(100) = ceil(33.8993 * ln(100) - 38.614819)
+ // = ceil(33.8993 * 4.60517 - 38.614819)
+ // = ceil(156.115... - 38.614...) = ceil(117.50) = 118
+ expect(style).toContain("max-width: 118px;");
+ });
+
+ it("MAGIC_SCALAR (1.27) and text-base scalar (1) are applied to numeric fontSize", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 20 });
+ getSize("Node", []);
+ // 1.27 * 20 * 1 = 25.4
+ expect(resizer.getAttribute("style")).toContain("font-size: 25.4px;");
+ });
+});
+
+describe("getSize: fontSize resolution (triple-branch fallback)", () => {
+ it("uses a numeric fontSize directly", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 12 });
+ getSize("Node", []);
+ // 1.27 * 12 * 1 = 15.24
+ expect(resizer.getAttribute("style")).toContain("font-size: 15.24px;");
+ });
+
+ it("parseInt's a string fontSize like '14px'", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: "14px" });
+ getSize("Node", []);
+ // parseInt('14px',10) => 14 ; 1.27 * 14 * 1 = 17.78
+ expect(resizer.getAttribute("style")).toContain("font-size: 17.78px;");
+ });
+
+ it("defaults to 10 when fontSize is absent", () => {
+ const resizer = ensureResizer();
+ setFontData({});
+ getSize("Node", []);
+ // default 10 ; 1.27 * 10 * 1 = 12.7
+ expect(resizer.getAttribute("style")).toContain("font-size: 12.7px;");
+ });
+
+ it("produces font-size NaNpx for a non-numeric string fontSize", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: "abc" });
+ getSize("Node", []);
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // parseInt('abc',10) => NaN ; 1.27 * NaN * 1 => NaN -> "NaNpx". No validation.
+ expect(resizer.getAttribute("style")).toContain("font-size: NaNpx;");
+ });
+});
+
+describe("getSize: text-size class precedence", () => {
+ function fontSizeFor(classes: string[]): string {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ getSize("Node", classes);
+ const style = resizer.getAttribute("style") || "";
+ // font-size is emitted twice (raw fontData + computed). The COMPUTED value
+ // is last; grab the last match.
+ const all = Array.from(style.matchAll(/font-size: ([^;]+);/g));
+ return all.length ? all[all.length - 1][1] : "";
+ }
+
+ it("text-sm (0.75x) wins over everything", () => {
+ // 1.27 * 10 * 0.75 -> JS float = 9.524999999999999 (pinned exactly)
+ expect(fontSizeFor(["text-sm", "text-lg", "text-xl"])).toBe(
+ "9.524999999999999px"
+ );
+ });
+
+ it("text-lg (1.5x) beats text-xl when both present", () => {
+ // if/else chain checks isLarge (text-lg) before isXLarge (text-xl)
+ // 1.27 * 10 * 1.5 -> JS float = 19.049999999999997 (pinned exactly)
+ expect(fontSizeFor(["text-lg", "text-xl"])).toBe("19.049999999999997px");
+ });
+
+ it("text-xl (2x) applies when only text-xl present", () => {
+ // 1.27 * 10 * 2 = 25.4
+ expect(fontSizeFor(["text-xl"])).toBe("25.4px");
+ });
+
+ it("text-base (1x) is the default with no text-size class", () => {
+ // 1.27 * 10 * 1 = 12.7
+ expect(fontSizeFor([])).toBe("12.7px");
+ });
+});
+
+describe("getSize: preventCyRenderingBugs substitution (observable via textContent)", () => {
+ it("replaces hyphens with the ‑ non-breaking-hyphen entity literal before measuring", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ getSize("a-b", []);
+ // textContent is the entity-substituted string (literal 7-char entity).
+ expect(resizer.textContent).toBe("a‑b");
+ });
+
+ it("replaces the Chinese comma (,) with the same entity", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ getSize("a,b", []);
+ expect(resizer.textContent).toBe("a‑b");
+ });
+
+ it("replaces ALL hyphens globally", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ getSize("a-b-c", []);
+ expect(resizer.textContent).toBe("a‑b‑c");
+ });
+
+ it("leaves non-hyphen / non-CJK-comma characters untouched", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ getSize("Hello World 123", []);
+ expect(resizer.textContent).toBe("Hello World 123");
+ });
+
+ it("counts the substituted entity literal toward max-width (length skew)", () => {
+ const resizer = ensureResizer();
+ setFontData({ fontSize: 10 });
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // "a-b-c" (5 chars) becomes "a‑b‑c" (19 chars) BEFORE
+ // getWidth(text.length). So max-width is computed from 19, not 5.
+ getSize("a-b-c", []);
+ // getWidth(19) = ceil(33.8993 * ln(19) - 38.614819)
+ // = ceil(33.8993 * 2.9444 - 38.6148) = ceil(61.21) = 62
+ // 62 < 64 floor -> 64
+ expect(resizer.getAttribute("style")).toContain("max-width: 64px;");
+ // sanity: a 26-char-equivalent forces growth above floor
+ });
+});
+
+describe("getSize: measured path environment behavior", () => {
+ it("THROWS in jsdom for a non-empty label because Range.getClientRects is unimplemented", () => {
+ // Remove the default stub installed in beforeEach to observe raw jsdom.
+ uninstallMeasurementStub();
+ ensureResizer();
+ setFontData({ fontSize: 10 });
+ // CHARACTERIZATION: this documents the TEST ENVIRONMENT (jsdom), not a
+ // product bug. In a real browser getClientRects returns real rects. We pin
+ // it so future readers understand why the rest of the measured-path tests
+ // must stub measurement.
+ expect(() => getSize("Node", [])).toThrow();
+ });
+});
+
+describe("getSize: return SHAPE for the measured path (stubbed measurement)", () => {
+ it("default (no shape class): returns 6-key numeric object, shapeWidth==width, margins 0", () => {
+ setFontData({ fontSize: 10 });
+ const result = withStubbedMeasurement(100, 20, () =>
+ getSize("Node", [])
+ ) as any;
+ expect(Object.keys(result).sort()).toEqual(
+ [
+ "height",
+ "shapeHeight",
+ "shapeWidth",
+ "textMarginX",
+ "textMarginY",
+ "width",
+ ].sort()
+ );
+ expect(result.width).toBe(100);
+ expect(result.shapeWidth).toBe(100);
+ expect(result.height).toBe(20);
+ expect(result.shapeHeight).toBe(20);
+ expect(result.textMarginX).toBe(0);
+ expect(result.textMarginY).toBe(0);
+ });
+
+ it("unknown class produces no shape transform (same as default)", () => {
+ setFontData({ fontSize: 10 });
+ const result = withStubbedMeasurement(100, 20, () =>
+ getSize("Node", ["color_blue", "not-a-shape"])
+ ) as any;
+ expect(result.shapeWidth).toBe(result.width);
+ expect(result.shapeHeight).toBe(result.height);
+ expect(result.textMarginX).toBe(0);
+ expect(result.textMarginY).toBe(0);
+ });
+});
+
+/**
+ * Shape transform math.
+ *
+ * Because jsdom measures 0, the multipliers (e.g. 2.2 * width) all evaluate to
+ * 0 and we cannot observe the FACTOR from the output alone. To pin the actual
+ * multipliers, we stub getClientRects + clientHeight on the resizer so the
+ * measured base width/height are known non-zero values, then assert the exact
+ * transformed numbers. This locks the bespoke shape factors that determine
+ * on-screen geometry for existing customer charts.
+ */
+describe("getSize: shape transform factors (stubbed measurement)", () => {
+ const BASE_W = 100;
+ const BASE_H = 20;
+
+ // Note: JS float arithmetic makes some products inexact (e.g. 2.2 * 100 ===
+ // 220.00000000000003), so multiplier assertions use toBeCloseTo.
+ function stubbedGetSize(classes: string[]) {
+ setFontData({ fontSize: 10 });
+ return withStubbedMeasurement(BASE_W, BASE_H, () =>
+ getSize("Node", classes)
+ ) as any;
+ }
+
+ it("base case: width=100, height=20 with stubbed measurement", () => {
+ const r = stubbedGetSize([]);
+ expect(r.width).toBe(100);
+ expect(r.height).toBe(20);
+ expect(r.shapeWidth).toBe(100);
+ expect(r.shapeHeight).toBe(20);
+ });
+
+ it("triangle: shapeWidth=2.2w, shapeHeight=1.25h, textMarginY=0.18*shapeHeight", () => {
+ const r = stubbedGetSize(["triangle"]);
+ expect(r.shapeWidth).toBeCloseTo(2.2 * 100, 10); // 220
+ expect(r.shapeHeight).toBeCloseTo(1.25 * 20, 10); // 25
+ expect(r.textMarginY).toBeCloseTo(0.18 * 25, 10); // 4.5
+ });
+
+ it("round-triangle aliases triangle", () => {
+ const r = stubbedGetSize(["round-triangle"]);
+ expect(r.shapeWidth).toBeCloseTo(220, 10);
+ expect(r.shapeHeight).toBeCloseTo(25, 10);
+ });
+
+ it("diamond: shapeWidth=1.5w, shapeHeight=1.5h, margins 0", () => {
+ const r = stubbedGetSize(["diamond"]);
+ expect(r.shapeWidth).toBeCloseTo(150, 10);
+ expect(r.shapeHeight).toBeCloseTo(30, 10);
+ expect(r.textMarginX).toBe(0);
+ expect(r.textMarginY).toBe(0);
+ });
+
+ it("pentagon: shapeWidth=1.35w, textMarginY=0.1*shapeHeight (shapeHeight unchanged=h)", () => {
+ const r = stubbedGetSize(["pentagon"]);
+ expect(r.shapeWidth).toBeCloseTo(1.35 * 100, 10); // 135
+ expect(r.shapeHeight).toBe(20); // unchanged
+ expect(r.textMarginY).toBeCloseTo(0.1 * 20, 10); // 2
+ });
+
+ it("hexagon: shapeWidth=1.5w only", () => {
+ const r = stubbedGetSize(["hexagon"]);
+ expect(r.shapeWidth).toBeCloseTo(150, 10);
+ expect(r.shapeHeight).toBe(20);
+ expect(r.textMarginY).toBe(0);
+ });
+
+ it("heptagon: shapeWidth=1.5w, textMarginY=0.05*shapeHeight", () => {
+ const r = stubbedGetSize(["heptagon"]);
+ expect(r.shapeWidth).toBeCloseTo(150, 10);
+ expect(r.textMarginY).toBeCloseTo(0.05 * 20, 10); // 1
+ });
+
+ it("octagon: shapeWidth=1.25w only", () => {
+ const r = stubbedGetSize(["octagon"]);
+ expect(r.shapeWidth).toBeCloseTo(125, 10);
+ expect(r.shapeHeight).toBe(20);
+ });
+
+ it("star: shapeHeight=shapeWidth=1.4*max(shapeHeight,shapeWidth), textMarginY=0.13*height", () => {
+ const r = stubbedGetSize(["star"]);
+ // max(20,100)=100 -> 1.4*100 = 140 for BOTH
+ expect(r.shapeWidth).toBeCloseTo(140, 10);
+ expect(r.shapeHeight).toBeCloseTo(140, 10);
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // textMarginY uses height (20), computed BEFORE the shapeWidth/shapeHeight
+ // reassignment: 0.13 * 20 = 2.6
+ expect(r.textMarginY).toBeCloseTo(0.13 * 20, 10);
+ });
+
+ it("vee: shapeWidth=2.5w, shapeHeight=2.5h, textMarginY=0.01*shapeHeight", () => {
+ const r = stubbedGetSize(["vee"]);
+ expect(r.shapeWidth).toBeCloseTo(250, 10);
+ expect(r.shapeHeight).toBeCloseTo(50, 10);
+ expect(r.textMarginY).toBeCloseTo(0.01 * 50, 10); // 0.5
+ });
+
+ it("rhomboid: shapeWidth=2w only", () => {
+ const r = stubbedGetSize(["rhomboid"]);
+ expect(r.shapeWidth).toBeCloseTo(200, 10);
+ expect(r.shapeHeight).toBe(20);
+ });
+
+ it("right-rhomboid aliases rhomboid", () => {
+ const r = stubbedGetSize(["right-rhomboid"]);
+ expect(r.shapeWidth).toBeCloseTo(200, 10);
+ });
+
+ it("tag: shapeWidth=1.25w and NEGATIVE textMarginX=-0.1*shapeWidth", () => {
+ const r = stubbedGetSize(["tag"]);
+ expect(r.shapeWidth).toBeCloseTo(125, 10);
+ // CHARACTERIZATION: negative margin is intentional; pin the sign.
+ expect(r.textMarginX).toBeCloseTo(-0.1 * 125, 10); // -12.5
+ });
+
+ it("round-tag aliases tag", () => {
+ const r = stubbedGetSize(["round-tag"]);
+ expect(r.shapeWidth).toBeCloseTo(125, 10);
+ expect(r.textMarginX).toBeCloseTo(-12.5, 10);
+ });
+
+ it("concave-hexagon: shapeWidth=1.5w only", () => {
+ const r = stubbedGetSize(["concave-hexagon"]);
+ expect(r.shapeWidth).toBeCloseTo(150, 10);
+ expect(r.shapeHeight).toBe(20);
+ });
+
+ it("circle: when width>height, all dims become width (height promoted up)", () => {
+ // BASE_W=100 > BASE_H=20 -> else branch:
+ // height = shapeWidth = shapeHeight = width(100)
+ const r = stubbedGetSize(["circle"]);
+ expect(r.width).toBe(100);
+ expect(r.height).toBe(100);
+ expect(r.shapeWidth).toBe(100);
+ expect(r.shapeHeight).toBe(100);
+ });
+
+ it("circle: when height>width, all dims become height", () => {
+ setFontData({ fontSize: 10 });
+ const r = withStubbedMeasurement(30, 80, () =>
+ getSize("Node", ["circle"])
+ ) as any;
+ // if branch: width = shapeWidth = shapeHeight = height(80)
+ expect(r.width).toBe(80);
+ expect(r.height).toBe(80);
+ expect(r.shapeWidth).toBe(80);
+ expect(r.shapeHeight).toBe(80);
+ });
+});
diff --git a/app/src/lib/graphUtilityClasses.characterization.test.ts b/app/src/lib/graphUtilityClasses.characterization.test.ts
new file mode 100644
index 000000000..312df6358
--- /dev/null
+++ b/app/src/lib/graphUtilityClasses.characterization.test.ts
@@ -0,0 +1,268 @@
+import {
+ shapes,
+ smartShapes,
+ createSmartShapeClasses,
+ childlessShapeClasses,
+ createSmartChildlessBorderClasses,
+ nodeBorderClasses,
+ edgeStyleClasses,
+ sourceArrowSuffixes,
+ targetArrowSuffixes,
+} from "./graphUtilityClasses";
+
+/**
+ * Characterization tests for graphUtilityClasses.
+ *
+ * These lock down the CURRENT generated "postStyle" Cytoscape utility
+ * stylesheets so any drift is caught during a future framework migration.
+ * They assert ACTUAL output, not ideal output.
+ */
+
+describe("graphUtilityClasses characterization", () => {
+ describe("shapes (raw input array)", () => {
+ it("is the exact ordered list of 20 shape names", () => {
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // Note duplicate roundrectangle (idx 1) vs round-rectangle (idx 16),
+ // and @ts-ignore'd "right-rhomboid". A dedupe would silently drop a
+ // customer-facing class name.
+ expect(shapes).toEqual([
+ "rectangle",
+ "roundrectangle",
+ "ellipse",
+ "triangle",
+ "pentagon",
+ "hexagon",
+ "heptagon",
+ "octagon",
+ "star",
+ "barrel",
+ "diamond",
+ "vee",
+ "rhomboid",
+ "right-rhomboid",
+ "polygon",
+ "tag",
+ "round-rectangle",
+ "cut-rectangle",
+ "bottom-round-rectangle",
+ "concave-hexagon",
+ ]);
+ expect(shapes).toHaveLength(20);
+ });
+
+ it("contains both roundrectangle and round-rectangle (no dedupe)", () => {
+ expect(shapes).toContain("roundrectangle");
+ expect(shapes).toContain("round-rectangle");
+ });
+ });
+
+ describe("smartShapes (1:1 aspect-ratio mapping)", () => {
+ it("maps 9 className->coreShape pairs with the rename of square/roundsquare/circle", () => {
+ expect(smartShapes).toEqual([
+ { coreShape: "rectangle", className: "square" },
+ { coreShape: "roundrectangle", className: "roundsquare" },
+ { coreShape: "ellipse", className: "circle" },
+ { coreShape: "star", className: "star" },
+ { coreShape: "diamond", className: "diamond" },
+ { coreShape: "pentagon", className: "pentagon" },
+ { coreShape: "hexagon", className: "hexagon" },
+ { coreShape: "heptagon", className: "heptagon" },
+ { coreShape: "octagon", className: "octagon" },
+ ]);
+ expect(smartShapes).toHaveLength(9);
+ });
+ });
+
+ describe("childlessShapeClasses (module-load-time built array)", () => {
+ it("snapshots the full 21-rule array including the appended iso-trapezoid", () => {
+ // CHARACTERIZATION: the 21st entry (iso-trapezoid) is appended via
+ // .push() mutation at import time. The double spaces in the
+ // shape-polygon-points string are load-bearing for the snapshot.
+ expect(childlessShapeClasses).toMatchSnapshot();
+ });
+
+ it("has exactly 21 rules (20 shapes + appended iso-trapezoid)", () => {
+ expect(childlessShapeClasses).toHaveLength(21);
+ });
+
+ it("emits one ':childless.shape_' selector per shape, shape-only css", () => {
+ // First 20 entries mirror `shapes`
+ shapes.forEach((shape, i) => {
+ expect(childlessShapeClasses[i]).toEqual({
+ selector: `:childless.shape_${shape}`,
+ css: { shape },
+ });
+ });
+ });
+
+ it("appends the iso-trapezoid polygon rule with exact double-spaced points", () => {
+ // CHARACTERIZATION: exact string with double spaces is intentional to pin.
+ expect(childlessShapeClasses[20]).toEqual({
+ selector: ":childless.shape_iso-trapezoid",
+ css: {
+ shape: "polygon",
+ "shape-polygon-points": "-1 1 1 1 0.5 -1 -0.5 -1",
+ },
+ });
+ });
+ });
+
+ describe("createSmartShapeClasses(width)", () => {
+ it("returns 9 rules with width === height === arg (1:1 aspect)", () => {
+ const result = createSmartShapeClasses(30);
+ expect(result).toHaveLength(9);
+ result.forEach((rule) => {
+ expect((rule.css as any).width).toBe(30);
+ expect((rule.css as any).height).toBe(30);
+ });
+ });
+
+ it("uses ':childless.shape_' selectors mapped to coreShape", () => {
+ const result = createSmartShapeClasses(42);
+ expect(result.map((r) => r.selector)).toEqual([
+ ":childless.shape_square",
+ ":childless.shape_roundsquare",
+ ":childless.shape_circle",
+ ":childless.shape_star",
+ ":childless.shape_diamond",
+ ":childless.shape_pentagon",
+ ":childless.shape_hexagon",
+ ":childless.shape_heptagon",
+ ":childless.shape_octagon",
+ ]);
+ // rename mapping: square->rectangle, roundsquare->roundrectangle, circle->ellipse
+ expect((result[0].css as any).shape).toBe("rectangle");
+ expect((result[1].css as any).shape).toBe("roundrectangle");
+ expect((result[2].css as any).shape).toBe("ellipse");
+ });
+
+ it("passes width through as a raw number (not a px string)", () => {
+ // CHARACTERIZATION: a migration to a unit-string stylesheet system
+ // would silently break sizing if it expected "30px".
+ const result = createSmartShapeClasses(30);
+ expect(typeof (result[0].css as any).width).toBe("number");
+ });
+
+ it("snapshots full output for a representative width", () => {
+ expect(createSmartShapeClasses(30)).toMatchSnapshot();
+ });
+ });
+
+ describe("createSmartChildlessBorderClasses(width)", () => {
+ it("returns 5 rules setting border-width=width for EVERY border including none", () => {
+ // CHARACTERIZATION: LANDMINE — border_none gets border-width:,
+ // NOT 0. border-style is set to the literal border name ("none", etc).
+ const result = createSmartChildlessBorderClasses(5);
+ expect(result).toHaveLength(5);
+ result.forEach((rule) => {
+ expect((rule.css as any)["border-width"]).toBe(5);
+ });
+ });
+
+ it("border_none sets border-style:'none' AND border-width:5 (not 0)", () => {
+ const result = createSmartChildlessBorderClasses(5);
+ const none = result.find((r) => r.selector === ":childless.border_none");
+ expect(none).toEqual({
+ selector: ":childless.border_none",
+ css: {
+ "border-width": 5,
+ "border-style": "none",
+ },
+ });
+ });
+
+ it("emits border selectors in order none/solid/dashed/dotted/double", () => {
+ const result = createSmartChildlessBorderClasses(5);
+ expect(result.map((r) => r.selector)).toEqual([
+ ":childless.border_none",
+ ":childless.border_solid",
+ ":childless.border_dashed",
+ ":childless.border_dotted",
+ ":childless.border_double",
+ ]);
+ });
+
+ it("snapshots full output for a representative width", () => {
+ expect(createSmartChildlessBorderClasses(5)).toMatchSnapshot();
+ });
+ });
+
+ describe("nodeBorderClasses (dead export, conflicting semantics)", () => {
+ it("snapshots the 5-rule array", () => {
+ // CHARACTERIZATION: this export is imported nowhere in app code.
+ expect(nodeBorderClasses).toMatchSnapshot();
+ });
+
+ it("sets border-width:0 for border_none (contradicts the active factory)", () => {
+ // CHARACTERIZATION: LANDMINE — unused nodeBorderClasses sets width:0 for
+ // none, while the wired-up createSmartChildlessBorderClasses sets width:.
+ const none = nodeBorderClasses.find(
+ (r) => r.selector === ":childless.border_none"
+ );
+ expect(none).toEqual({
+ selector: ":childless.border_none",
+ css: { "border-width": 0 },
+ });
+ });
+
+ it("has 5 rules: solid/dashed/dotted/double (border-style only) + none (border-width:0)", () => {
+ expect(nodeBorderClasses).toHaveLength(5);
+ expect(nodeBorderClasses.map((r) => r.selector)).toEqual([
+ ":childless.border_solid",
+ ":childless.border_dashed",
+ ":childless.border_dotted",
+ ":childless.border_double",
+ ":childless.border_none",
+ ]);
+ });
+ });
+
+ describe("edgeStyleClasses", () => {
+ it("maps 3 edge.border_* selectors to line-style", () => {
+ expect(edgeStyleClasses).toEqual([
+ { selector: "edge.border_dashed", css: { "line-style": "dashed" } },
+ { selector: "edge.border_dotted", css: { "line-style": "dotted" } },
+ { selector: "edge.border_solid", css: { "line-style": "solid" } },
+ ]);
+ });
+ });
+
+ describe("sourceArrowSuffixes / targetArrowSuffixes (dead exports)", () => {
+ it("sourceArrowSuffixes is the 12 'source-' prefixed strings", () => {
+ // CHARACTERIZATION: imported nowhere; pinned so a migration drops them intentionally.
+ expect(sourceArrowSuffixes).toEqual([
+ "source-triangle",
+ "source-triangle-tee",
+ "source-circle-triangle",
+ "source-triangle-cross",
+ "source-triangle-backcurve",
+ "source-vee",
+ "source-tee",
+ "source-square",
+ "source-circle",
+ "source-diamond",
+ "source-chevron",
+ "source-none",
+ ]);
+ expect(sourceArrowSuffixes).toHaveLength(12);
+ });
+
+ it("targetArrowSuffixes is the 12 'target-' prefixed strings", () => {
+ expect(targetArrowSuffixes).toEqual([
+ "target-triangle",
+ "target-triangle-tee",
+ "target-circle-triangle",
+ "target-triangle-cross",
+ "target-triangle-backcurve",
+ "target-vee",
+ "target-tee",
+ "target-square",
+ "target-circle",
+ "target-diamond",
+ "target-chevron",
+ "target-none",
+ ]);
+ expect(targetArrowSuffixes).toHaveLength(12);
+ });
+ });
+});
diff --git a/app/src/lib/prepareChart/prepareChart.characterization.test.ts b/app/src/lib/prepareChart/prepareChart.characterization.test.ts
new file mode 100644
index 000000000..2c10c1ca2
--- /dev/null
+++ b/app/src/lib/prepareChart/prepareChart.characterization.test.ts
@@ -0,0 +1,521 @@
+import { readFileSync } from "fs";
+import { join } from "path";
+
+import { theme, cytoscapeStyle } from "../templates/default-template";
+import { initialDoc, useDoc } from "../useDoc";
+import {
+ delimiters,
+ HIDDEN_GRAPH_OPTIONS_DIVIDER,
+ newDelimiters,
+} from "../constants";
+import { prepareChart } from "./prepareChart";
+
+/**
+ * CHARACTERIZATION tests for prepareChart.
+ *
+ * These lock down the CURRENT behavior of the three-delimiter / layout-migration
+ * pipeline before a future framework migration. They capture ACTUAL output, not
+ * ideal output. Where current behavior is surprising or buggy it is asserted as-is
+ * and flagged with a // CHARACTERIZATION comment.
+ *
+ * Pure cases use { set: false } so they exercise the delimiter parsing, deep merge,
+ * theme backfill, layout migration and text normalization WITHOUT touching jsdom or
+ * the zustand store. A small number of { set: true } cases pin the side-effect path.
+ *
+ * THEME CLONING (see "shared default theme" test): prepareChart backfills
+ * `meta.themeEditor` with a CLONE of the default theme ({ ...theme }), not the shared
+ * imported object, so legacy-layout migration mutating .layoutName / .spacingFactor no
+ * longer leaks into the shared `theme` import or across subsequent prepareChart calls.
+ * We capture the pristine default values up-front and assert the shared import stays
+ * pristine after a mutating call.
+ */
+
+// Capture the PRISTINE default theme values BEFORE any prepareChart call runs, so we
+// can assert the shared `theme` import is NOT mutated by prepareChart (it clones).
+const PRISTINE_LAYOUT_NAME = theme.layoutName; // "dagre"
+const PRISTINE_SPACING_FACTOR = theme.spacingFactor; // 1.1
+const PRISTINE_THEME_SNAPSHOT = JSON.parse(JSON.stringify(theme));
+
+function getFixture(name: string) {
+ return readFileSync(join(__dirname, "examples", name), "utf8");
+}
+
+describe("prepareChart (characterization)", () => {
+ // ---------------------------------------------------------------------------
+ // Branch (a): no metadata at all -> default theme + default cytoscapeStyle
+ // ---------------------------------------------------------------------------
+ test("example9: plain text, no delimiters, no metadata -> default theme + cytoscapeStyle backfilled", async () => {
+ const result = await prepareChart({
+ doc: getFixture("example9"),
+ details: initialDoc.details,
+ set: false,
+ });
+
+ // text: trimmed with exactly one trailing newline
+ expect(result.text).toBe(
+ `This app works by typing
+ Indenting creates a link to the current line
+ any text: before a colon creates a label
+`
+ );
+
+ // meta: ONLY the two backfilled keys, nothing else
+ expect(Object.keys(result.meta).sort()).toEqual([
+ "cytoscapeStyle",
+ "themeEditor",
+ ]);
+ expect(result.meta.cytoscapeStyle).toBe(cytoscapeStyle);
+ // themeEditor is a CLONE of the default theme (not the shared import ref),
+ // so it deep-equals the default but is a distinct object
+ expect(result.meta.themeEditor).not.toBe(theme);
+ expect(result.meta.themeEditor).toEqual(theme);
+ expect((result.meta.themeEditor as any).layoutName).toBe(
+ PRISTINE_LAYOUT_NAME
+ );
+ expect((result.meta.themeEditor as any).spacingFactor).toBe(
+ PRISTINE_SPACING_FACTOR
+ );
+
+ expect(result.details).toBe(initialDoc.details);
+ });
+
+ // ---------------------------------------------------------------------------
+ // set=false purity: no store write, no DOM side effect
+ // ---------------------------------------------------------------------------
+ test("set=false returns pure result and does NOT write to the useDoc store", async () => {
+ const before = useDoc.getState();
+
+ const result = await prepareChart({
+ doc: "alpha\n beta\n",
+ details: initialDoc.details,
+ set: false,
+ });
+
+ const after = useDoc.getState();
+
+ // store untouched (same reference values as before)
+ expect(after.text).toBe(before.text);
+ expect(after.meta).toBe(before.meta);
+ expect(after.details).toBe(before.details);
+
+ expect(result.text).toBe("alpha\n beta\n");
+ });
+
+ // ---------------------------------------------------------------------------
+ // set=true side-effect path: writes the SAME payload into the store
+ // ---------------------------------------------------------------------------
+ test("set=true writes { text, meta, details } into the useDoc store", async () => {
+ const details = { id: "side-effect", title: "t", isHosted: false };
+ const result = await prepareChart({
+ doc: "alpha\n beta\n",
+ details,
+ set: true,
+ });
+
+ const state = useDoc.getState();
+ expect(state.text).toBe(result.text);
+ expect(state.meta).toBe(result.meta);
+ expect(state.details).toBe(result.details);
+ expect(state.details).toBe(details);
+ });
+
+ // ---------------------------------------------------------------------------
+ // elk- prefix stripping via slice(4)
+ // ---------------------------------------------------------------------------
+ test("legacy layout name 'elk-layered' migrates to themeEditor.layoutName 'layered' (slice(4))", async () => {
+ const doc = `n1\n n2\n=====\n${JSON.stringify({
+ layout: { name: "elk-layered", spacingFactor: 2 },
+ // supply our own themeEditor so we do NOT mutate the shared default theme
+ themeEditor: { ...PRISTINE_THEME_SNAPSHOT },
+ })}\n=====`;
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ expect((result.meta.themeEditor as any).layoutName).toBe("layered");
+ expect((result.meta.themeEditor as any).spacingFactor).toBe(2);
+ // old layout key is deleted
+ expect(result.meta.layout).toBeUndefined();
+ });
+
+ test("elk-radial -> 'radial'; a bare 'elk-' prefix yields empty name so layoutName is left unchanged", async () => {
+ const radial = await prepareChart({
+ doc: `n\n=====\n${JSON.stringify({
+ layout: { name: "elk-radial" },
+ themeEditor: { ...PRISTINE_THEME_SNAPSHOT },
+ })}\n=====`,
+ details: initialDoc.details,
+ set: false,
+ });
+ expect((radial.meta.themeEditor as any).layoutName).toBe("radial");
+
+ // CHARACTERIZATION: name "elk-" -> slice(4) -> "" which is falsy, so layoutName
+ // is NOT assigned and the existing themeEditor.layoutName is preserved.
+ const bare = await prepareChart({
+ doc: `n\n=====\n${JSON.stringify({
+ layout: { name: "elk-" },
+ themeEditor: { ...PRISTINE_THEME_SNAPSHOT, layoutName: "klay" },
+ })}\n=====`,
+ details: initialDoc.details,
+ set: false,
+ });
+ expect((bare.meta.themeEditor as any).layoutName).toBe("klay");
+ });
+
+ // ---------------------------------------------------------------------------
+ // Branch (b): cytoscapeStyle present but no themeEditor
+ // ---------------------------------------------------------------------------
+ test("branch (b): cytoscapeStyle present, no themeEditor -> default themeEditor AND customCssOnly:true", async () => {
+ const doc = `n1\n=====\n${JSON.stringify({
+ cytoscapeStyle: "node { background-color: red; }",
+ })}\n=====`;
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ // user's cytoscapeStyle preserved (NOT overwritten with default)
+ expect(result.meta.cytoscapeStyle).toBe("node { background-color: red; }");
+ // default theme backfilled as a CLONE (not the shared `theme` reference)
+ expect(result.meta.themeEditor).not.toBe(theme);
+ expect(result.meta.themeEditor).toEqual(theme);
+ // CHARACTERIZATION: the easy-to-lose customCssOnly flag that disables the
+ // backfilled default theme at render time
+ expect(result.meta.customCssOnly).toBe(true);
+ });
+
+ test("branch (c): themeEditor present -> left as-is, no cytoscapeStyle backfill, no customCssOnly", async () => {
+ const customThemeEditor = {
+ ...PRISTINE_THEME_SNAPSHOT,
+ layoutName: "klay",
+ fontFamily: "X",
+ };
+ const doc = `n1\n=====\n${JSON.stringify({
+ themeEditor: customThemeEditor,
+ })}\n=====`;
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ expect(result.meta.themeEditor).toEqual(customThemeEditor);
+ // no default cytoscapeStyle is added in branch (c)
+ expect(result.meta.cytoscapeStyle).toBeUndefined();
+ expect(result.meta.customCssOnly).toBeUndefined();
+ });
+
+ // ---------------------------------------------------------------------------
+ // deepmerge precedence: last-wins (json < yaml < hidden)
+ // gray-matter only parses ~~~ frontmatter at the START of the text, so the
+ // realistic layout is: ~~~yaml~~~ first, then content, then ===== / ¼▓╬ blocks.
+ // ---------------------------------------------------------------------------
+ test("deepmerge precedence: ¼▓╬ (hidden) beats ~~~ (yaml) for a colliding scalar key", async () => {
+ const doc = [
+ delimiters,
+ `customKey: from-yaml`,
+ delimiters,
+ `node`,
+ `${HIDDEN_GRAPH_OPTIONS_DIVIDER}${JSON.stringify({
+ customKey: "from-hidden",
+ })}`,
+ ].join("\n");
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ // merge.all([jsonMeta, parsedData(yaml), hidden]) -> last array element wins
+ expect(result.meta.customKey).toBe("from-hidden");
+ });
+
+ test("deepmerge precedence: ¼▓╬ (hidden) beats ===== (json) when hidden block precedes the json block", async () => {
+ // ===== is split FIRST (only parts[1] kept), so the ¼▓╬ block must appear
+ // BEFORE the ===== block to survive. Here it does.
+ const doc = [
+ `node`,
+ `${HIDDEN_GRAPH_OPTIONS_DIVIDER}${JSON.stringify({
+ customKey: "from-hidden",
+ })}`,
+ newDelimiters,
+ JSON.stringify({ customKey: "from-json" }),
+ newDelimiters,
+ ].join("\n");
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ expect(result.meta.customKey).toBe("from-hidden");
+ });
+
+ test("deepmerge precedence: ~~~ (yaml) beats ===== (json) when hidden block absent", async () => {
+ const doc = [
+ delimiters,
+ `customKey: from-yaml`,
+ delimiters,
+ `node`,
+ newDelimiters,
+ JSON.stringify({ customKey: "from-json" }),
+ newDelimiters,
+ ].join("\n");
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ expect(result.meta.customKey).toBe("from-yaml");
+ });
+
+ test("deepmerge concatenates arrays across blocks (default deepmerge array strategy)", async () => {
+ const doc = [
+ delimiters,
+ `arr:\n - 1\n - 2`,
+ delimiters,
+ `node`,
+ `${HIDDEN_GRAPH_OPTIONS_DIVIDER}${JSON.stringify({ arr: [3] })}`,
+ ].join("\n");
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ // CHARACTERIZATION: arrays are concatenated (yaml [1,2] then hidden [3]),
+ // not replaced
+ expect(result.meta.arr).toEqual([1, 2, 3]);
+ });
+
+ // ---------------------------------------------------------------------------
+ // gray-matter only parses frontmatter at the very start of the text
+ // ---------------------------------------------------------------------------
+ test("CHARACTERIZATION: ~~~ block NOT at start of text is NOT parsed as YAML (left in text)", async () => {
+ // The ~~~ block follows a content line, so gray-matter does not treat it as
+ // frontmatter; the data is empty and the ~~~ block remains in the text.
+ const doc = [`node`, delimiters, `foo: bar`, delimiters].join("\n");
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ expect(result.meta.foo).toBeUndefined();
+ // the ~~~ content stays embedded in the text
+ expect(result.text).toContain("~~~");
+ expect(result.text).toContain("foo: bar");
+ });
+
+ // ---------------------------------------------------------------------------
+ // Layout migration data loss: rankDir / direction dropped
+ // ---------------------------------------------------------------------------
+ test("legacy layout.rankDir is DROPPED; layoutName preserved, spacingFactor overwritten from layout, layout deleted", async () => {
+ // No `name` in layout, but rankDir present (like example5/6 'BT'/'LR'),
+ // and an explicit spacingFactor on the layout.
+ const doc = `n1\n n2\n=====\n${JSON.stringify({
+ layout: { rankDir: "BT", spacingFactor: 3 },
+ themeEditor: { ...PRISTINE_THEME_SNAPSHOT, layoutName: "klay" },
+ })}\n=====`;
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ const te = result.meta.themeEditor as any;
+ // CHARACTERIZATION: rankDir is silently lost (not migrated to `direction`)
+ expect(te.rankDir).toBeUndefined();
+ expect(te.direction).toBe(PRISTINE_THEME_SNAPSHOT.direction);
+ expect(result.meta.layout).toBeUndefined();
+ // name was empty so layoutName is preserved from the existing themeEditor
+ expect(te.layoutName).toBe("klay");
+ // spacingFactor is ALWAYS overwritten from the layout block (3 here)
+ expect(te.spacingFactor).toBe(3);
+ });
+
+ test("legacy layout with NO spacingFactor defaults spacingFactor to the CURRENT theme.spacingFactor", async () => {
+ // CHARACTERIZATION + MUTATION HAZARD: the default for spacingFactor is
+ // `theme.spacingFactor` read off the shared (possibly-already-mutated) object.
+ // We assert it equals whatever theme.spacingFactor is RIGHT NOW.
+ const currentDefault = theme.spacingFactor;
+ const doc = `n1\n=====\n${JSON.stringify({
+ layout: { name: "klay" },
+ themeEditor: { ...PRISTINE_THEME_SNAPSHOT, spacingFactor: 99 },
+ })}\n=====`;
+
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+
+ const te = result.meta.themeEditor as any;
+ expect(te.layoutName).toBe("klay");
+ // existing 99 is clobbered by the layout default (current theme.spacingFactor)
+ expect(te.spacingFactor).toBe(currentDefault);
+ });
+
+ // ---------------------------------------------------------------------------
+ // Unguarded JSON.parse -> promise rejects on malformed metadata
+ // ---------------------------------------------------------------------------
+ test("malformed ===== JSON block rejects the promise (unguarded JSON.parse)", async () => {
+ const doc = `n1\n=====\n{ not valid json }\n=====`;
+ await expect(
+ prepareChart({ doc, details: initialDoc.details, set: false })
+ ).rejects.toThrow();
+ });
+
+ test("malformed ¼▓╬ hidden block rejects the promise (unguarded JSON.parse)", async () => {
+ const doc = `n1${HIDDEN_GRAPH_OPTIONS_DIVIDER}{ not valid json }`;
+ await expect(
+ prepareChart({ doc, details: initialDoc.details, set: false })
+ ).rejects.toThrow();
+ });
+
+ test("trailing ===== with nothing after it parses as empty object (|| '{}' fallback)", async () => {
+ // CHARACTERIZATION: parts[1] after the trailing delimiter is '' (falsy) so
+ // it falls back to '{}' and does not throw.
+ const doc = `n1\n n2\n=====`;
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+ expect(result.text).toBe("n1\n n2\n");
+ // empty meta -> default backfill kicks in
+ expect(result.meta.cytoscapeStyle).toBe(cytoscapeStyle);
+ });
+
+ // ---------------------------------------------------------------------------
+ // parser key always stripped
+ // ---------------------------------------------------------------------------
+ test("`parser` key is always deleted from meta", async () => {
+ const doc = `n1\n=====\n${JSON.stringify({
+ parser: "v1",
+ themeEditor: { ...PRISTINE_THEME_SNAPSHOT },
+ })}\n=====`;
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+ expect(result.meta.parser).toBeUndefined();
+ });
+
+ // ---------------------------------------------------------------------------
+ // Whitespace normalization: trim + exactly one trailing newline
+ // ---------------------------------------------------------------------------
+ test("many leading/trailing blank lines collapse to a single trailing newline", async () => {
+ const doc = `\n\n\n hello\n to the: world \n\n\n\n`;
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+ // CHARACTERIZATION: ${text.trim()}\n - leading whitespace and all trailing
+ // blank lines removed, exactly one trailing newline added. Note trim()
+ // also removes the leading spaces before "hello".
+ expect(result.text).toBe(`hello\n to the: world\n`);
+ });
+
+ // ---------------------------------------------------------------------------
+ // Delimiter substring inside node text -> truncation landmine
+ // ---------------------------------------------------------------------------
+ test("CHARACTERIZATION: a node line equal to '=====' truncates the doc and throws when remainder is not JSON", async () => {
+ // The string '=====' appears in node text BEFORE any real metadata block.
+ // text is split on the first '=====', the remainder is treated as JSON,
+ // and since 'after' is not valid JSON the promise REJECTS. This is a real,
+ // lossy parsing landmine (a node literally named '=====' breaks the chart).
+ const doc = `before\n=====\nafter`;
+ await expect(
+ prepareChart({ doc, details: initialDoc.details, set: false })
+ ).rejects.toThrow();
+ });
+
+ test("CHARACTERIZATION: a node line equal to '=====' followed by valid JSON silently drops the trailing text", async () => {
+ // Here the remainder after the (mis-detected) delimiter happens to be valid
+ // JSON, so it is parsed as metadata and the 'after' content is LOST from text.
+ const doc = `before\n=====\n${JSON.stringify({ note: "eaten" })}`;
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+ expect(result.text).toBe("before\n");
+ expect(result.meta.note).toBe("eaten");
+ });
+
+ test("CHARACTERIZATION: a leading '~~~' block in user content is consumed as YAML frontmatter", async () => {
+ const doc = `~~~\nfoo: bar\n~~~\nreal content here\n child`;
+ const result = await prepareChart({
+ doc,
+ details: initialDoc.details,
+ set: false,
+ });
+ // the leading ~~~ block is parsed as YAML frontmatter and stripped from text
+ expect(result.text).toBe("real content here\n child\n");
+ expect(result.meta.foo).toBe("bar");
+ });
+
+ // ---------------------------------------------------------------------------
+ // SHARED DEFAULT THEME — the default-theme backfill now assigns a CLONE of the
+ // imported `theme` object, so legacy-layout migration can no longer mutate the
+ // shared import or leak across calls.
+ // ---------------------------------------------------------------------------
+ test("legacy-layout migration does NOT mutate the shared imported default theme and does NOT leak into a later default chart", async () => {
+ // Confirm the import is pristine right before we run the migration.
+ expect(theme.layoutName).toBe(PRISTINE_LAYOUT_NAME);
+ expect(theme.spacingFactor).toBe(PRISTINE_SPACING_FACTOR);
+
+ // Chart 1: legacy `layout` present AND themeEditor defaulted (no themeEditor
+ // in meta) -> prepareChart assigns meta.themeEditor = { ...theme } (a CLONE)
+ // and then mutates layoutName/spacingFactor only on that clone.
+ const chart1 = await prepareChart({
+ doc: `n1\n=====\n${JSON.stringify({
+ layout: { name: "cose", spacingFactor: 5 },
+ })}\n=====`,
+ details: initialDoc.details,
+ set: false,
+ });
+ expect((chart1.meta.themeEditor as any).layoutName).toBe("cose");
+ expect((chart1.meta.themeEditor as any).spacingFactor).toBe(5);
+
+ // The shared module-level `theme` object is UNCHANGED (still pristine).
+ expect(theme.layoutName).toBe(PRISTINE_LAYOUT_NAME);
+ expect(theme.spacingFactor).toBe(PRISTINE_SPACING_FACTOR);
+
+ // Chart 2: a plain default chart with no metadata. It assigns a fresh CLONE
+ // of the pristine theme, so it gets the default 'dagre' / 1.1 values — the
+ // earlier migration did NOT leak across calls.
+ const chart2 = await prepareChart({
+ doc: `just text`,
+ details: initialDoc.details,
+ set: false,
+ });
+ expect((chart2.meta.themeEditor as any).layoutName).toBe(
+ PRISTINE_LAYOUT_NAME
+ );
+ expect((chart2.meta.themeEditor as any).spacingFactor).toBe(
+ PRISTINE_SPACING_FACTOR
+ );
+ // chart1 and chart2 themeEditor are DISTINCT objects (each a fresh clone),
+ // and neither is the shared import.
+ expect(chart2.meta.themeEditor).not.toBe(chart1.meta.themeEditor);
+ expect(chart2.meta.themeEditor).not.toBe(theme);
+ expect(chart1.meta.themeEditor).not.toBe(theme);
+ });
+});
diff --git a/app/src/lib/prepareChart/prepareChart.ts b/app/src/lib/prepareChart/prepareChart.ts
index 2876217bb..5ea4fdf2f 100644
--- a/app/src/lib/prepareChart/prepareChart.ts
+++ b/app/src/lib/prepareChart/prepareChart.ts
@@ -64,17 +64,22 @@ export async function prepareChart({
text = `${text.trim()}\n`;
// If cytoscapeStyle is not defined, and themeEditor is not defined
- // load the default theme
+ // load the default theme.
+ // NOTE: spread-clone `theme` rather than assigning it directly. The
+ // legacy-layout migration below mutates themeEditor.layoutName/spacingFactor
+ // in place, and `theme` is the shared default-template import — without the
+ // clone that mutation leaks into every subsequent chart in the session.
+ // A shallow clone suffices because only top-level scalars are mutated.
if (
typeof meta.cytoscapeStyle === "undefined" &&
typeof meta.themeEditor === "undefined"
) {
- meta.themeEditor = theme;
+ meta.themeEditor = { ...theme };
meta.cytoscapeStyle = cytoscapeStyle;
} else if (typeof meta.themeEditor === "undefined") {
// or if there is cytoscapeStyle but no themeEditor, then
// set the default theme but disable it
- meta.themeEditor = theme;
+ meta.themeEditor = { ...theme };
meta.customCssOnly = true;
}
diff --git a/app/src/lib/preprocessStyle.characterization.test.ts b/app/src/lib/preprocessStyle.characterization.test.ts
new file mode 100644
index 000000000..638b5f1e9
--- /dev/null
+++ b/app/src/lib/preprocessStyle.characterization.test.ts
@@ -0,0 +1,295 @@
+/**
+ * CHARACTERIZATION TESTS for preprocessStyle.ts
+ *
+ * These tests lock down the CURRENT behavior of the module before a future
+ * framework migration. They are a safety net, NOT a correctness audit.
+ *
+ * The pure, characterizable surface is:
+ * - preprocessStyle(style): @import extraction, $variable substitution, and
+ * dynamic class detection (the latter only observable via the zustand store)
+ * - getStyleStringFromMeta(meta): branch on customCssOnly + concat order
+ *
+ * The font/CSSStyleSheet paths (findFontData / parseFontFaces / the react-query
+ * hook) depend on browser APIs + a load-time polyfill; those are guarded /
+ * documented rather than forced.
+ */
+import {
+ preprocessStyle,
+ getStyleStringFromMeta,
+ useProcessStyleStore,
+} from "./preprocessStyle";
+import { theme as defaultTheme } from "./templates/default-template";
+
+describe("preprocessStyle - @import extraction", () => {
+ it("extracts a quoted @import url() with trailing semicolon and strips it from returned style", () => {
+ const style = `@import url("https://fonts.example.com/font.css");
+node {
+ background-color: red;
+}`;
+ const result = preprocessStyle(style);
+
+ expect(result.imports).toEqual(["https://fonts.example.com/font.css"]);
+ // the @import line is removed from the returned style
+ expect(result.style).not.toContain("@import");
+ expect(result.style).toContain("background-color: red;");
+ });
+
+ it("extracts multiple @import urls in source order", () => {
+ const style = `@import url('https://a.example.com/a.css');
+@import url("https://b.example.com/b.css");
+node { color: black; }`;
+ const result = preprocessStyle(style);
+
+ expect(result.imports).toEqual([
+ "https://a.example.com/a.css",
+ "https://b.example.com/b.css",
+ ]);
+ expect(result.style).not.toContain("@import");
+ });
+
+ it("CHARACTERIZATION: does NOT extract an @import without trailing semicolon (current limitation)", () => {
+ const style = `@import url("https://nosemi.example.com/font.css")
+node { color: red; }`;
+ const result = preprocessStyle(style);
+
+ expect(result.imports).toEqual([]);
+ // left intact in the returned style
+ expect(result.style).toContain("@import");
+ });
+
+ it("CHARACTERIZATION: does NOT extract an @import whose url() is unquoted (current limitation)", () => {
+ const style = `@import url(https://noquote.example.com/font.css);
+node { color: red; }`;
+ const result = preprocessStyle(style);
+
+ expect(result.imports).toEqual([]);
+ expect(result.style).toContain("@import");
+ });
+
+ it("sets styleImports in the store equal to the returned imports", () => {
+ const style = `@import url("https://store.example.com/font.css");
+node { color: red; }`;
+ const result = preprocessStyle(style);
+
+ expect(useProcessStyleStore.getState().styleImports).toEqual(
+ result.imports
+ );
+ });
+});
+
+describe("preprocessStyle - $variable substitution (processScss)", () => {
+ it("removes a col-0 $variable declaration and substitutes its references", () => {
+ const style = `$blue: #e3f2fd;
+:childless.color_blue {
+ background-color: $blue;
+}`;
+ const result = preprocessStyle(style);
+
+ // declaration line removed
+ expect(result.style).not.toContain("$blue:");
+ // reference substituted
+ expect(result.style).toContain("background-color: #e3f2fd;");
+ // variable recorded in the returned map (and store)
+ expect(result.variables.blue).toBe("#e3f2fd");
+ expect(useProcessStyleStore.getState().variables.blue).toBe("#e3f2fd");
+ });
+
+ it("variable replace has a trailing boundary so a prefix does NOT collide", () => {
+ // $color is a prefix of $colorDark. Insertion order: color first, then colorDark.
+ // With the trailing negative lookahead, substituting $color must NOT rewrite
+ // the "$color" prefix inside "$colorDark"; each variable resolves to its own value.
+ const style = `$color: red;
+$colorDark: blue;
+node {
+ color: $color;
+ border-color: $colorDark;
+}`;
+ const result = preprocessStyle(style);
+
+ // $color -> "red" and $colorDark -> "blue", with no prefix collision
+ expect(result.style).toContain("color: red;");
+ expect(result.style).toContain("border-color: blue;");
+ expect(result.variables).toEqual({ color: "red", colorDark: "blue" });
+ });
+
+ it("CHARACTERIZATION: indented $variable declarations are left verbatim (not treated as variables)", () => {
+ const style = ` $indented: green;
+node {
+ color: $other;
+}`;
+ const result = preprocessStyle(style);
+
+ // indented decl is NOT captured as a variable
+ expect(result.variables.indented).toBeUndefined();
+ // and the indented line is left in the output verbatim
+ expect(result.style).toContain(" $indented: green;");
+ });
+
+ it("CHARACTERIZATION: a declaration line must end with a semicolon to be captured", () => {
+ const style = `$nosemi: green
+node { color: red; }`;
+ const result = preprocessStyle(style);
+
+ expect(result.variables.nosemi).toBeUndefined();
+ expect(result.style).toContain("$nosemi: green");
+ });
+});
+
+describe("preprocessStyle - dynamic class detection (store side effect)", () => {
+ it("detects childless / edge / parent type_name classes into the store", () => {
+ const style = `:childless.color_blue {
+ background-color: blue;
+}
+edge.color_red {
+ line-color: red;
+}
+:parent.color_grey {
+ background-color: grey;
+}`;
+ preprocessStyle(style);
+
+ const state = useProcessStyleStore.getState();
+ expect(state.dynamicClassesChildless).toEqual(["color_blue"]);
+ expect(state.dynamicClassesEdges).toEqual(["color_red"]);
+ expect(state.dynamicClassesParent).toEqual(["color_grey"]);
+ });
+
+ it("detects multiple dynamic classes of the same kind", () => {
+ const style = `:childless.color_blue { background-color: blue; }
+:childless.shape_diamond { shape: diamond; }`;
+ preprocessStyle(style);
+
+ expect(useProcessStyleStore.getState().dynamicClassesChildless).toEqual([
+ "color_blue",
+ "shape_diamond",
+ ]);
+ });
+
+ it("CHARACTERIZATION: an INDENTED dynamic selector is NOT detected (requires line start)", () => {
+ const style = ` :childless.color_blue {
+ background-color: blue;
+}`;
+ preprocessStyle(style);
+
+ expect(useProcessStyleStore.getState().dynamicClassesChildless).toEqual([]);
+ });
+
+ it("CHARACTERIZATION: a class WITHOUT an underscore is NOT detected (type_name convention required)", () => {
+ const style = `:childless.highlight {
+ background-color: yellow;
+}`;
+ preprocessStyle(style);
+
+ expect(useProcessStyleStore.getState().dynamicClassesChildless).toEqual([]);
+ });
+
+ it("CHARACTERIZATION: a compound selector prefix (node:childless.foo_bar) is NOT detected", () => {
+ const style = `node:childless.color_blue {
+ background-color: blue;
+}`;
+ preprocessStyle(style);
+
+ expect(useProcessStyleStore.getState().dynamicClassesChildless).toEqual([]);
+ });
+});
+
+describe("getStyleStringFromMeta", () => {
+ it("returns only cytoscapeStyle when customCssOnly is true", () => {
+ const meta = {
+ customCssOnly: true,
+ cytoscapeStyle: "node { color: red; }",
+ themeEditor: defaultTheme,
+ };
+ expect(getStyleStringFromMeta(meta)).toBe("node { color: red; }");
+ });
+
+ it("returns empty string when customCssOnly is true and cytoscapeStyle is missing", () => {
+ const meta = { customCssOnly: true };
+ expect(getStyleStringFromMeta(meta)).toBe("");
+ });
+
+ it("concatenates theme.style, cytoscapeStyle, theme.postStyle (in that order) when not customCssOnly", () => {
+ const cytoscapeStyle = "/* USER_CSS_MARKER */";
+ const meta = {
+ customCssOnly: false,
+ cytoscapeStyle,
+ themeEditor: defaultTheme,
+ };
+ const result = getStyleStringFromMeta(meta);
+
+ // user css appears, sandwiched between theme.style and theme.postStyle
+ expect(result).toContain(cytoscapeStyle);
+
+ // Verify the join order against the same toTheme output used internally.
+ // We re-derive it to pin the \n separators + order.
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
+ const { toTheme } = require("./toTheme");
+ const theme = toTheme(defaultTheme);
+ expect(result).toBe(
+ `${theme.style}\n${cytoscapeStyle}\n${theme.postStyle}`
+ );
+
+ // order: theme.style index < user css index < postStyle index
+ const userIdx = result.indexOf(cytoscapeStyle);
+ expect(result.indexOf(theme.style)).toBeLessThan(userIdx);
+ expect(userIdx).toBeLessThan(result.lastIndexOf(theme.postStyle));
+ });
+
+ it("CHARACTERIZATION: explicit customCssOnly=false falls through to concatenation (only null/undefined fall back)", () => {
+ const meta = {
+ customCssOnly: false,
+ cytoscapeStyle: "/* X */",
+ themeEditor: defaultTheme,
+ };
+ const result = getStyleStringFromMeta(meta);
+ expect(result).toContain("/* X */");
+ // not just the raw cytoscapeStyle
+ expect(result).not.toBe("/* X */");
+ });
+});
+
+describe("preprocessStyle - font data (browser-API dependent, guarded)", () => {
+ /**
+ * Probe whether constructable-CSSStyleSheet rule parsing actually works in
+ * this environment. In a real browser, `replaceSync` populates `cssRules`
+ * with parsed CSSStyleRule objects whose `.selectorText` / `.style` are
+ * readable — which is what findFontData relies on. Under jest/jsdom this
+ * frequently does NOT populate cssRules, so findFontData returns {}.
+ */
+ function sheetParsingWorks(): boolean {
+ try {
+ const s = new CSSStyleSheet();
+ if (typeof (s as any).replaceSync !== "function") return false;
+ (s as any).replaceSync("node { font-size: 16px; }");
+ const rules = Array.from((s as any).cssRules || []) as any[];
+ const nodeRule = rules.find((r) => r?.selectorText === "node");
+ return !!(nodeRule && nodeRule.style && nodeRule.style.fontSize);
+ } catch {
+ return false;
+ }
+ }
+
+ it("populates store.fontData from a 'node' rule (only when the env can parse stylesheets)", () => {
+ const style = `node {
+ font-family: "Arial";
+ font-size: 16px;
+}`;
+ preprocessStyle(style);
+ const fontData = useProcessStyleStore.getState().fontData as any;
+
+ if (!sheetParsingWorks()) {
+ // CHARACTERIZATION: under jest/jsdom, constructable-stylesheet rule
+ // parsing does not populate cssRules, so findFontData returns {}.
+ // The font path is therefore only meaningfully exercised in a real
+ // browser. The variable/import/dynamic-class paths above are the safe
+ // core and need none of this.
+ expect(fontData).toEqual({});
+ return;
+ }
+
+ // Browser-like env: fontFamily is sanitized (quotes removed) and empty
+ // props are dropped.
+ expect(fontData.fontFamily).toBe("Arial");
+ expect(fontData.fontSize).toBe("16px");
+ });
+});
diff --git a/app/src/lib/preprocessStyle.ts b/app/src/lib/preprocessStyle.ts
index 1a2a6747e..b2f9e18de 100644
--- a/app/src/lib/preprocessStyle.ts
+++ b/app/src/lib/preprocessStyle.ts
@@ -313,7 +313,14 @@ function processScss(scss: string): {
const updatedScss = updatedLines
.map((line) => {
for (const variable in variables) {
- const regex = new RegExp(`\\$${variable}`, "g");
+ // Escape the variable name for safe use in a regex, then add a
+ // negative lookahead so a variable only matches when it is NOT
+ // immediately followed by another valid variable-name character.
+ // Variable names are tokenized as [a-z0-9-_] (case-insensitive),
+ // so e.g. substituting $color must not rewrite the "$color" prefix
+ // inside "$colorDark".
+ const escaped = variable.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
+ const regex = new RegExp(`\\$${escaped}(?![a-zA-Z0-9_-])`, "g");
line = line.replace(regex, variables[variable]);
}
return line;
diff --git a/app/src/lib/repairText.characterization.test.ts b/app/src/lib/repairText.characterization.test.ts
new file mode 100644
index 000000000..714f6247c
--- /dev/null
+++ b/app/src/lib/repairText.characterization.test.ts
@@ -0,0 +1,221 @@
+import { parse } from "graph-selector";
+
+import { repairText } from "./repairText";
+
+/**
+ * CHARACTERIZATION TESTS for repairText.
+ *
+ * These lock down the CURRENT behavior of repairText (and, by extension, the
+ * graph-selector v0.13.0 error-message strings it depends on) ahead of a future
+ * framework migration. They assert what the code ACTUALLY does today, not what
+ * it ideally should do. Several cases document surprising-but-intentional
+ * behavior; those are flagged with CHARACTERIZATION comments.
+ */
+describe("repairText (characterization)", () => {
+ describe("inputs that graph-selector already considers valid -> null", () => {
+ test("empty string returns null", () => {
+ // '' parses cleanly, so newText is never assigned -> null.
+ expect(repairText("")).toBe(null);
+ });
+
+ test("whitespace-only input returns null", () => {
+ expect(repairText(" ")).toBe(null);
+ });
+
+ test("newline-only input returns null", () => {
+ expect(repairText("\n\n")).toBe(null);
+ });
+
+ test("plain valid text returns null", () => {
+ expect(repairText("hello world")).toBe(null);
+ });
+
+ test("an edge ('a -> b') is valid and returns null", () => {
+ expect(repairText("a -> b")).toBe(null);
+ });
+
+ test("unmatched / stray parens with no node before them parse fine -> null", () => {
+ // CHARACTERIZATION: graph-selector is permissive about bare parens.
+ // '((((' does NOT trigger the pointer error and is left untouched.
+ expect(repairText("((((")).toBe(null);
+ expect(repairText("(a)(b)")).toBe(null);
+ });
+
+ test("a leading-colon line (': x') is treated as VALID -> null (no repair)", () => {
+ // CHARACTERIZATION: ': x' parses cleanly in graph-selector, so repairText
+ // returns null even though a human might read it as malformed. The colon
+ // is NOT escaped. Documents the null-means-"was fine" path.
+ expect(repairText(": x")).toBe(null);
+ });
+ });
+
+ describe("idempotency: already-escaped text must not be re-escaped", () => {
+ test("already-escaped colon ('a\\: b') returns null and is NOT double-escaped", () => {
+ // Protects existing customer charts that legitimately use escaped colons.
+ expect(repairText("a\\: b")).toBe(null);
+ });
+
+ test("fully-escaped paren+colon result returns null (stable fixed point)", () => {
+ // The output of repairing 'hello (world): foo' must itself be valid.
+ expect(repairText("hello \\(world\\)\\: foo")).toBe(null);
+ });
+
+ test("only the UNescaped offending char is escaped when one is already escaped", () => {
+ // CHARACTERIZATION: 'a\: already (paren)' has a pre-escaped colon and a
+ // raw paren. Only the paren gets escaped; the existing '\:' is left as-is
+ // (the colon-escape branch never runs because no colon error is thrown
+ // once parens are fixed). Output: 'a\: already \(paren\)'.
+ expect(repairText("a\\: already (paren)")).toBe(
+ "a\\: already \\(paren\\)"
+ );
+ });
+ });
+
+ describe("pointer branch (parentheses) — driven by the 'pointer' substring", () => {
+ test("single parenthesized pair gets both parens escaped", () => {
+ expect(repairText("hello (world)")).toBe("hello \\(world\\)");
+ });
+
+ test("multiple parenthesized pairs all get escaped (global replace)", () => {
+ expect(repairText("hello (world) (again)")).toBe(
+ "hello \\(world\\) \\(again\\)"
+ );
+ });
+
+ test("the exact graph-selector error message contains the 'pointer' substring", () => {
+ // Highest-value migration tripwire: repairText dispatches on
+ // error.message.includes("pointer"). Pin the real message so a
+ // graph-selector wording change is caught here.
+ let message = "";
+ try {
+ parse("hello (world)");
+ } catch (e) {
+ message = (e as Error).message;
+ }
+ expect(message).toBe(
+ "Line 1: Can't create node and pointer on same line"
+ );
+ expect(message.includes("pointer")).toBe(true);
+ });
+ });
+
+ describe("label-without-parent branch (colons) — driven by the 'label without parent' substring", () => {
+ test("single colon gets escaped", () => {
+ expect(repairText("hello: world")).toBe("hello\\: world");
+ });
+
+ test("multiple colons on one line all get escaped (global replace)", () => {
+ // CHARACTERIZATION: even though only the first colon triggers the error,
+ // EVERY colon in the text is escaped because the replace is global.
+ expect(repairText("a: b: c")).toBe("a\\: b\\: c");
+ });
+
+ test("the exact graph-selector error message contains the 'label without parent' substring", () => {
+ let message = "";
+ try {
+ parse("hello: world");
+ } catch (e) {
+ message = (e as Error).message;
+ }
+ expect(message).toBe("Line 1: Edge label without parent");
+ expect(message.includes("label without parent")).toBe(true);
+ });
+
+ test("'missing indentation' branch is dead: an object-destructure+type line takes the colon branch", () => {
+ // CHARACTERIZATION: the test historically named "Edge missing indentation"
+ // actually exercises the 'label without parent' (colon) branch. There is
+ // no graph-selector error containing 'missing indentation' in v0.13.0, so
+ // the third branch is unreachable (but identical in effect to the second).
+ expect(
+ repairText(
+ "export function TextEditor({ extendOptions = {}, ...props }: TextEditorProps) {"
+ )
+ ).toBe(
+ "export function TextEditor({ extendOptions = {}, ...props }\\: TextEditorProps) {"
+ );
+ });
+ });
+
+ describe("multi-line over-escaping (global replace across all lines)", () => {
+ test("a colon on ONLY one line still escapes colons; offending line gets escaped", () => {
+ // Here only line 2 has a colon, so only line 2 changes — but the escape
+ // is applied to the whole text, so ALL colons (anywhere) would be hit.
+ expect(repairText("good line\nbad: line")).toBe("good line\nbad\\: line");
+ });
+
+ test("colons on multiple lines ALL get escaped from a single offending error", () => {
+ // CHARACTERIZATION: the offending error is reported on the FIRST bad line
+ // only, but because the replace is global, the colon on the OTHER
+ // (independent) line is ALSO escaped. Documents the over-escaping
+ // idiosyncrasy as current intended behavior.
+ expect(repairText("first: one\nsecond: two")).toBe(
+ "first\\: one\nsecond\\: two"
+ );
+ });
+ });
+
+ describe("combined paren + colon resolves across multiple loop passes", () => {
+ test("'hello (world): foo' escapes colon first, then parens (order-dependent)", () => {
+ // CHARACTERIZATION: graph-selector surfaces the 'label without parent'
+ // (colon) error before the 'pointer' (paren) error, so colons are escaped
+ // on the first pass and parens on a later pass. The final string is the
+ // same regardless of order, but this pins the parser's error-ordering
+ // coupling so a reordering in a future version is detected.
+ expect(repairText("hello (world): foo")).toBe("hello \\(world\\)\\: foo");
+ });
+
+ test("interleaved parens and colons all get escaped", () => {
+ expect(repairText("a (b): (c)")).toBe("a \\(b\\)\\: \\(c\\)");
+ });
+
+ test("the original 'Pointer bug' line (parens + colon) escapes both", () => {
+ expect(repairText(`export function repairText(text: string) {`)).toBe(
+ `export function repairText\\(text\\: string\\) {`
+ );
+ });
+ });
+
+ describe("safety contract: never throws, swallows unhandled errors", () => {
+ test("repairText never throws for a wide range of malformed inputs", () => {
+ const inputs = [
+ "",
+ " ",
+ "\n\n\n",
+ "(",
+ ")",
+ "::::",
+ "(((:",
+ "a #[ weird",
+ "/* unterminated",
+ "@",
+ ".",
+ "[",
+ "a {invalid",
+ "🙂: emoji",
+ "tab\tcolon: x",
+ ];
+ for (const input of inputs) {
+ expect(() => repairText(input)).not.toThrow();
+ }
+ });
+
+ test("result of repairText, when non-null, always re-parses without error (fixed point)", () => {
+ // Pins that the loop terminates on a string graph-selector accepts —
+ // i.e. it does not leave behind a half-escaped, still-invalid string for
+ // these inputs.
+ const inputs = [
+ "hello (world)",
+ "hello: world",
+ "a: b: c",
+ "hello (world): foo",
+ "a (b): (c)",
+ "good line\nbad: line",
+ ];
+ for (const input of inputs) {
+ const repaired = repairText(input);
+ expect(repaired).not.toBeNull();
+ expect(() => parse(repaired as string)).not.toThrow();
+ }
+ });
+ });
+});
diff --git a/app/src/lib/toExcalidraw.characterization.test.ts b/app/src/lib/toExcalidraw.characterization.test.ts
new file mode 100644
index 000000000..827072e92
--- /dev/null
+++ b/app/src/lib/toExcalidraw.characterization.test.ts
@@ -0,0 +1,605 @@
+import { toExcalidraw } from "./toExcalidraw";
+
+/**
+ * CHARACTERIZATION TESTS for toExcalidraw().
+ *
+ * toExcalidraw() reads window.__cy (a Cytoscape Core) and serializes the
+ * currently-rendered graph into an Excalidraw clipboard JSON string.
+ *
+ * It only touches a known subset of the Cytoscape API:
+ * - cy.nodes() / cy.edges() -> collections with .forEach
+ * - node.id(), node.position(), node.boundingBox(), node.data(), node.style()
+ * - edge.data(), edge._private.rstyle (internal renderer state)
+ *
+ * Headless cytoscape does NOT populate node.style() with resolved values nor
+ * edge._private.rstyle. Rather than render in a browser, we construct fake
+ * node/edge objects implementing exactly that API surface. This isolates the
+ * pure transform logic (rgbToHex, geometry math, bindings) that the migration
+ * safety net is meant to lock down.
+ *
+ * These tests pin CURRENT behavior, including bugs. Do not "fix" anything here.
+ */
+
+type FakeStyle = Record;
+
+function makeNode(opts: {
+ id: string;
+ x: number;
+ y: number;
+ w: number;
+ h: number;
+ label: string;
+ style: FakeStyle;
+}) {
+ return {
+ id: () => opts.id,
+ position: () => ({ x: opts.x, y: opts.y }),
+ boundingBox: () => ({ w: opts.w, h: opts.h }),
+ data: () => ({ label: opts.label }),
+ style: () => opts.style,
+ };
+}
+
+function makeEdge(opts: {
+ source: string;
+ target: string;
+ label?: string;
+ srcX: number;
+ srcY: number;
+ tgtX: number;
+ tgtY: number;
+}) {
+ return {
+ data: () => ({
+ source: opts.source,
+ target: opts.target,
+ label: opts.label,
+ }),
+ _private: {
+ rstyle: {
+ srcX: opts.srcX,
+ srcY: opts.srcY,
+ tgtX: opts.tgtX,
+ tgtY: opts.tgtY,
+ },
+ },
+ };
+}
+
+function makeCy(nodes: any[], edges: any[]) {
+ return {
+ nodes: () => ({
+ forEach: (cb: (n: any) => void) => nodes.forEach(cb),
+ }),
+ edges: () => ({
+ forEach: (cb: (e: any) => void) => edges.forEach(cb),
+ }),
+ };
+}
+
+// A reasonable, fully-resolved style as a real renderer would return.
+function defaultStyle(overrides: Partial = {}): FakeStyle {
+ return {
+ shape: "rectangle",
+ "background-color": "rgb(230,57,70)",
+ color: "rgb(0,0,0)",
+ "border-width": "2px",
+ "border-color": "rgb(17,17,17)",
+ ...overrides,
+ };
+}
+
+function setCy(nodes: any[], edges: any[]) {
+ (window as any).__cy = makeCy(nodes, edges);
+}
+
+afterEach(() => {
+ delete (window as any).__cy;
+ jest.restoreAllMocks();
+});
+
+describe("toExcalidraw characterization", () => {
+ it("returns empty string when window.__cy is undefined", () => {
+ delete (window as any).__cy;
+ expect(toExcalidraw()).toBe("");
+ });
+
+ it("returns a JSON string with envelope { type: 'excalidraw/clipboard', elements: [], files: {} }", () => {
+ setCy(
+ [
+ makeNode({
+ id: "n1",
+ x: 100,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "A",
+ style: defaultStyle(),
+ }),
+ ],
+ []
+ );
+ const out = toExcalidraw();
+ expect(typeof out).toBe("string");
+ const parsed = JSON.parse(out);
+ expect(parsed.type).toBe("excalidraw/clipboard");
+ expect(parsed.files).toEqual({});
+ expect(Array.isArray(parsed.elements)).toBe(true);
+ });
+
+ it("each node emits a shape element followed by a bound text element; text.containerId points back to the shape and shape.boundElements has {type:'text', id:}", () => {
+ setCy(
+ [
+ makeNode({
+ id: "n1",
+ x: 100,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "Hello",
+ style: defaultStyle(),
+ }),
+ ],
+ []
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ expect(parsed.elements).toHaveLength(2);
+
+ const [shape, text] = parsed.elements;
+ expect(shape.type).toBe("rectangle");
+ expect(text.type).toBe("text");
+ expect(text.text).toBe("Hello");
+ expect(text.originalText).toBe("Hello");
+
+ // two-way binding
+ expect(text.containerId).toBe(shape.id);
+ expect(shape.boundElements).toEqual([{ type: "text", id: text.id }]);
+ });
+
+ it("unlabeled edge: emits a single arrow; boundElements on both endpoints reference the arrow id; no edge-label text element", () => {
+ const n1 = makeNode({
+ id: "n1",
+ x: 100,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "A",
+ style: defaultStyle(),
+ });
+ const n2 = makeNode({
+ id: "n2",
+ x: 300,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "B",
+ style: defaultStyle(),
+ });
+ setCy(
+ [n1, n2],
+ [
+ makeEdge({
+ source: "n1",
+ target: "n2",
+ srcX: 140,
+ srcY: 100,
+ tgtX: 260,
+ tgtY: 100,
+ }),
+ ]
+ );
+
+ const parsed = JSON.parse(toExcalidraw());
+ // 2 nodes * (shape + text) = 4, + 1 arrow = 5
+ expect(parsed.elements).toHaveLength(5);
+
+ const arrows = parsed.elements.filter((e: any) => e.type === "arrow");
+ expect(arrows).toHaveLength(1);
+ const arrow = arrows[0];
+
+ const shapes = parsed.elements.filter(
+ (e: any) => e.type === "rectangle" || e.type === "diamond"
+ );
+ const sourceShape = shapes[0];
+ const targetShape = shapes[1];
+
+ // arrow binds source -> target via mapped ids
+ expect(arrow.startBinding.elementId).toBe(sourceShape.id);
+ expect(arrow.endBinding.elementId).toBe(targetShape.id);
+ expect(arrow.startBinding.gap).toBe(4);
+ expect(arrow.endBinding.gap).toBe(4);
+ expect(arrow.endArrowhead).toBe("triangle");
+ expect(arrow.startArrowhead).toBe(null);
+
+ // both endpoints reference the arrow id (correct in the unlabeled path)
+ const sourceArrowBindings = sourceShape.boundElements.filter(
+ (b: any) => b.type === "arrow"
+ );
+ const targetArrowBindings = targetShape.boundElements.filter(
+ (b: any) => b.type === "arrow"
+ );
+ expect(sourceArrowBindings).toEqual([{ type: "arrow", id: arrow.id }]);
+ expect(targetArrowBindings).toEqual([{ type: "arrow", id: arrow.id }]);
+ });
+
+ it("LABELED edge: boundElements on endpoints reference the actual ARROW element id (type 'arrow'), NOT the label id", () => {
+ // The caller binds the actual arrow element's id regardless of whether a
+ // label exists, so endpoints reference the arrow (not the edge label).
+ const n1 = makeNode({
+ id: "n1",
+ x: 100,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "A",
+ style: defaultStyle(),
+ });
+ const n2 = makeNode({
+ id: "n2",
+ x: 300,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "B",
+ style: defaultStyle(),
+ });
+ setCy(
+ [n1, n2],
+ [
+ makeEdge({
+ source: "n1",
+ target: "n2",
+ label: "EDGE LABEL",
+ srcX: 140,
+ srcY: 100,
+ tgtX: 260,
+ tgtY: 100,
+ }),
+ ]
+ );
+
+ const parsed = JSON.parse(toExcalidraw());
+
+ const arrow = parsed.elements.find((e: any) => e.type === "arrow");
+ const edgeLabel = parsed.elements.find(
+ (e: any) => e.type === "text" && e.text === "EDGE LABEL"
+ );
+ expect(arrow).toBeDefined();
+ expect(edgeLabel).toBeDefined();
+
+ const shapes = parsed.elements.filter(
+ (e: any) => e.type === "rectangle" || e.type === "diamond"
+ );
+ const sourceShape = shapes[0];
+ const targetShape = shapes[1];
+
+ const sourceArrowBinding = sourceShape.boundElements.find(
+ (b: any) => b.type === "arrow"
+ );
+ const targetArrowBinding = targetShape.boundElements.find(
+ (b: any) => b.type === "arrow"
+ );
+
+ // the pushed id is the actual arrow's id, not the label's id
+ expect(sourceArrowBinding.id).toBe(arrow.id);
+ expect(targetArrowBinding.id).toBe(arrow.id);
+ expect(sourceArrowBinding.id).not.toBe(edgeLabel.id);
+
+ // edge label's containerId points to the arrow id
+ expect(edgeLabel.containerId).toBe(arrow.id);
+ });
+
+ it("rgbToHex: normal channels rgb(230,57,70) -> '#e63946' (background) and rgb(17,17,17) -> '#111111' (border)", () => {
+ setCy(
+ [
+ makeNode({
+ id: "n1",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "A",
+ style: defaultStyle({
+ "background-color": "rgb(230,57,70)",
+ "border-color": "rgb(17,17,17)",
+ }),
+ }),
+ ],
+ []
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ const shape = parsed.elements[0];
+ expect(shape.backgroundColor).toBe("#e63946");
+ expect(shape.strokeColor).toBe("#111111");
+ });
+
+ it("rgbToHex: channel value < 16 is zero-padded; rgb(5,5,5) -> '#050505'", () => {
+ // Each channel is padded to 2 hex digits, so the result is always #rrggbb.
+ setCy(
+ [
+ makeNode({
+ id: "n1",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "A",
+ style: defaultStyle({
+ "background-color": "rgb(5,5,5)",
+ color: "rgb(10,200,30)",
+ }),
+ }),
+ ],
+ []
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ const [shape, text] = parsed.elements;
+ expect(shape.backgroundColor).toBe("#050505");
+ // rgb(10,200,30) -> '0a' + 'c8' + '1e' = '#0ac81e'
+ expect(text.strokeColor).toBe("#0ac81e");
+ });
+
+ it("node with border-width 0px: strokeColor short-circuits to literal 'transparent' (border-color not converted)", () => {
+ setCy(
+ [
+ makeNode({
+ id: "n1",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "A",
+ style: defaultStyle({
+ "border-width": "0px",
+ // intentionally invalid: would throw in rgbToHex if not short-circuited
+ "border-color": "rgb(1,2,3)",
+ }),
+ }),
+ ],
+ []
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ const shape = parsed.elements[0];
+ expect(shape.strokeColor).toBe("transparent");
+ expect(shape.strokeWidth).toBe(0);
+ });
+
+ it("getNodeType: shape 'diamond' -> 'diamond'; ellipse and hexagon both -> 'rectangle'", () => {
+ setCy(
+ [
+ makeNode({
+ id: "d",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "D",
+ style: defaultStyle({ shape: "diamond" }),
+ }),
+ makeNode({
+ id: "e",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "E",
+ style: defaultStyle({ shape: "ellipse" }),
+ }),
+ makeNode({
+ id: "h",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "H",
+ style: defaultStyle({ shape: "hexagon" }),
+ }),
+ ],
+ []
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ const shapes = parsed.elements.filter((e: any) => e.type !== "text");
+ expect(shapes.map((s: any) => s.type)).toEqual([
+ "diamond",
+ "rectangle",
+ "rectangle",
+ ]);
+ });
+
+ it("geometry: node x/y == 0.9*(pos - dim/2), width/height == 0.9*dim", () => {
+ setCy(
+ [
+ makeNode({
+ id: "n1",
+ x: 100,
+ y: 200,
+ w: 80,
+ h: 40,
+ label: "A",
+ style: defaultStyle(),
+ }),
+ ],
+ []
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ const shape = parsed.elements[0];
+ expect(shape.x).toBeCloseTo(0.9 * (100 - 80 / 2)); // 0.9 * 60 = 54
+ expect(shape.y).toBeCloseTo(0.9 * (200 - 40 / 2)); // 0.9 * 180 = 162
+ expect(shape.width).toBeCloseTo(0.9 * 80); // 72
+ expect(shape.height).toBeCloseTo(0.9 * 40); // 36
+ });
+
+ it("geometry: edge points == [[srcX*0.9, srcY*0.9],[tgtX*0.9, tgtY*0.9]]; arrow element x=y=0", () => {
+ const n1 = makeNode({
+ id: "n1",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "A",
+ style: defaultStyle(),
+ });
+ const n2 = makeNode({
+ id: "n2",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "B",
+ style: defaultStyle(),
+ });
+ setCy(
+ [n1, n2],
+ [
+ makeEdge({
+ source: "n1",
+ target: "n2",
+ srcX: 140,
+ srcY: 100,
+ tgtX: 260,
+ tgtY: 220,
+ }),
+ ]
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ const arrow = parsed.elements.find((e: any) => e.type === "arrow");
+ expect(arrow.x).toBe(0);
+ expect(arrow.y).toBe(0);
+ expect(arrow.points).toEqual([
+ [140 * 0.9, 100 * 0.9],
+ [260 * 0.9, 220 * 0.9],
+ ]);
+ });
+
+ it("hardcoded magic constants are present on node shape, node text, and arrow (paste-format pinning)", () => {
+ const n1 = makeNode({
+ id: "n1",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "A",
+ style: defaultStyle(),
+ });
+ const n2 = makeNode({
+ id: "n2",
+ x: 0,
+ y: 0,
+ w: 10,
+ h: 10,
+ label: "B",
+ style: defaultStyle(),
+ });
+ setCy(
+ [n1, n2],
+ [
+ makeEdge({
+ source: "n1",
+ target: "n2",
+ srcX: 1,
+ srcY: 1,
+ tgtX: 2,
+ tgtY: 2,
+ }),
+ ]
+ );
+ const parsed = JSON.parse(toExcalidraw());
+ const shape = parsed.elements.find((e: any) => e.type === "rectangle");
+ const text = parsed.elements.find((e: any) => e.type === "text");
+ const arrow = parsed.elements.find((e: any) => e.type === "arrow");
+
+ // node shape
+ expect(shape.roundness).toEqual({ type: 3 });
+ expect(shape.updated).toBe(1698858608230);
+ expect(shape.fillStyle).toBe("solid");
+ expect(shape.strokeStyle).toBe("solid");
+ expect(shape.roughness).toBe(0);
+ expect(shape.opacity).toBe(100);
+
+ // node text
+ expect(text.backgroundColor).toBe("#f8f9fa");
+ expect(text.fontFamily).toBe(1);
+ expect(text.fontSize).toBe(16);
+ expect(text.roundness).toBe(null);
+ expect(text.updated).toBe(1698858603606);
+ expect(text.lineHeight).toBe(1.25);
+
+ // arrow
+ expect(arrow.roundness).toEqual({ type: 2 });
+ expect(arrow.strokeColor).toBe("#1e1e1e");
+ expect(arrow.strokeWidth).toBe(2);
+ expect(arrow.updated).toBe(1698866637577);
+ });
+
+ it("referential integrity + determinism: with Math.random mocked, all bindings/containerIds resolve to real element ids and the full output is a stable snapshot", () => {
+ // Deterministic id sequence
+ let seed = 0;
+ jest.spyOn(Math, "random").mockImplementation(() => {
+ // produce distinct, stable values
+ seed += 0.00001;
+ return 0.123456789 + seed;
+ });
+
+ const n1 = makeNode({
+ id: "n1",
+ x: 100,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "Start",
+ style: defaultStyle({ shape: "diamond" }),
+ });
+ const n2 = makeNode({
+ id: "n2",
+ x: 300,
+ y: 100,
+ w: 80,
+ h: 40,
+ label: "End",
+ style: defaultStyle(),
+ });
+ setCy(
+ [n1, n2],
+ [
+ makeEdge({
+ source: "n1",
+ target: "n2",
+ label: "go",
+ srcX: 140,
+ srcY: 100,
+ tgtX: 260,
+ tgtY: 100,
+ }),
+ ]
+ );
+
+ const out = toExcalidraw();
+ const parsed = JSON.parse(out);
+
+ // collect all element ids
+ const allIds = new Set(parsed.elements.map((e: any) => e.id));
+ // ids must be unique
+ expect(allIds.size).toBe(parsed.elements.length);
+
+ // every reference must resolve to a real element id
+ for (const el of parsed.elements) {
+ if (el.containerId != null) {
+ expect(allIds.has(el.containerId)).toBe(true);
+ }
+ if (el.startBinding?.elementId != null) {
+ expect(allIds.has(el.startBinding.elementId)).toBe(true);
+ }
+ if (el.endBinding?.elementId != null) {
+ expect(allIds.has(el.endBinding.elementId)).toBe(true);
+ }
+ if (Array.isArray(el.boundElements)) {
+ for (const b of el.boundElements) {
+ expect(allIds.has(b.id)).toBe(true);
+ }
+ }
+ }
+
+ // Stable byte-for-byte snapshot of the locked output shape.
+ expect(out).toMatchSnapshot();
+ });
+});
diff --git a/app/src/lib/toExcalidraw.ts b/app/src/lib/toExcalidraw.ts
index 2c3f9cf69..3ef22e50e 100644
--- a/app/src/lib/toExcalidraw.ts
+++ b/app/src/lib/toExcalidraw.ts
@@ -78,19 +78,23 @@ export function toExcalidraw() {
label,
});
+ // find the actual arrow element (createEdge may also return a label node)
+ const arrowElement = edgeAndLabel.find((x) => x.type === "arrow");
+ const arrowId = arrowElement?.id;
+
// add the edge to the elements
const fromIndex = elements.findIndex((x) => x.id === fromId);
- if (fromIndex > -1) {
+ if (fromIndex > -1 && arrowId) {
elements[fromIndex].boundElements.push({
type: "arrow",
- id: edgeAndLabel[0].id,
+ id: arrowId,
});
}
const toIndex = elements.findIndex((x) => x.id === toId);
- if (toIndex > -1) {
+ if (toIndex > -1 && arrowId) {
elements[toIndex].boundElements.push({
type: "arrow",
- id: edgeAndLabel[0].id,
+ id: arrowId,
});
}
@@ -306,7 +310,9 @@ function rgbToHex(rgb: string) {
.split(",")
.map((x) => parseInt(x));
- return `#${r.toString(16)}${g.toString(16)}${b.toString(16)}`;
+ return `#${r.toString(16).padStart(2, "0")}${g
+ .toString(16)
+ .padStart(2, "0")}${b.toString(16).padStart(2, "0")}`;
}
/**
diff --git a/app/src/lib/toJSONCanvas.characterization.test.ts b/app/src/lib/toJSONCanvas.characterization.test.ts
new file mode 100644
index 000000000..8d7c54041
--- /dev/null
+++ b/app/src/lib/toJSONCanvas.characterization.test.ts
@@ -0,0 +1,423 @@
+import cytoscape from "cytoscape";
+
+import { toJSONCanvas } from "./toJSONCanvas";
+
+/**
+ * CHARACTERIZATION tests for toJSONCanvas.
+ *
+ * These lock in the CURRENT behavior of the Cytoscape -> Obsidian JSON Canvas
+ * exporter so a future framework/engine migration can't silently change the
+ * exported file format. They assert ACTUAL output, not ideal output.
+ *
+ * Environment notes (discovered by running, not assumed):
+ * - A headless cytoscape instance built with `styleEnabled: true` + an explicit
+ * stylesheet DOES resolve `node.renderedStyle().backgroundColor` to a concrete
+ * `rgb(...)` string in jsdom. So rgbToHex does not crash here. The
+ * non-null-assertion crash in rgbToHex is still a latent landmine if a future
+ * engine returns undefined/empty for renderedStyle (see notes/surprises).
+ * - Manual `position:` on element definitions is NOT reliably honored on a
+ * headless instance without a layout, so positions are set explicitly via
+ * `node.position({x,y})` AFTER construction. This is the only way to drive the
+ * side-scoring heuristic deterministically.
+ * - `width`/`height` from the stylesheet ARE applied: e.g. style width:40 ->
+ * exported width Math.round(40 + 46) = 86.
+ */
+
+type CyOpts = cytoscape.CytoscapeOptions;
+
+const NODE_STYLE = [
+ {
+ selector: "node",
+ style: {
+ "background-color": "rgb(227,242,253)", // -> #e3f2fd
+ width: 40,
+ height: 20,
+ },
+ },
+];
+
+function buildCy(opts: Omit, "headless">) {
+ return cytoscape({
+ headless: true,
+ styleEnabled: true,
+ ...opts,
+ } as CyOpts);
+}
+
+describe("toJSONCanvas characterization", () => {
+ it("empty graph returns { nodes: [], edges: [] } (always-present arrays)", () => {
+ const cy = buildCy({ elements: [], style: NODE_STYLE });
+ const out = toJSONCanvas(cy);
+
+ // CHARACTERIZATION: documents current behavior. The JSONCanvas type marks
+ // both arrays optional, but the code always initializes them, so an empty
+ // graph yields explicit empty arrays, not {}.
+ expect(out).toEqual({ nodes: [], edges: [] });
+ expect(Array.isArray(out.nodes)).toBe(true);
+ expect(Array.isArray(out.edges)).toBe(true);
+ });
+
+ it("single leaf node maps to a 'text' node with +46 padded, rounded width/height, label as text, and color hex", () => {
+ const cy = buildCy({
+ elements: [{ data: { id: "a", label: "Hello" } }],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 10, y: 20 });
+
+ const out = toJSONCanvas(cy);
+
+ expect(out.nodes).toEqual([
+ {
+ id: "a",
+ type: "text",
+ x: 10,
+ y: 20,
+ // Math.round(40 + 46) and Math.round(20 + 46) -- HEIGHT_PAD=46 is added
+ // to BOTH width and height despite its name.
+ width: 86,
+ height: 66,
+ text: "Hello",
+ // rgb(227,242,253) -> #e3f2fd
+ color: "#e3f2fd",
+ },
+ ]);
+ expect(out.edges).toEqual([]);
+ });
+
+ it("node with rgb(255,255,255) background OMITS the color key", () => {
+ const cy = buildCy({
+ elements: [{ data: { id: "a", label: "White" } }],
+ style: [
+ {
+ selector: "node",
+ style: {
+ "background-color": "rgb(255,255,255)",
+ width: 40,
+ height: 20,
+ },
+ },
+ ],
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+
+ // CHARACTERIZATION: white (#ffffff) is silently dropped -- no color key.
+ expect(out.nodes).toHaveLength(1);
+ expect(out.nodes![0]).not.toHaveProperty("color");
+ expect(out.nodes![0]).toEqual({
+ id: "a",
+ type: "text",
+ x: 0,
+ y: 0,
+ width: 86,
+ height: 66,
+ text: "White",
+ });
+ });
+
+ it("a style of background-color:'transparent' resolves to rgb(0,0,0) and DOES emit color '#000000'", () => {
+ const cy = buildCy({
+ elements: [{ data: { id: "a", label: "Transparent" } }],
+ style: [
+ {
+ selector: "node",
+ style: {
+ "background-color": "transparent",
+ width: 40,
+ height: 20,
+ },
+ },
+ ],
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+
+ // CHARACTERIZATION (likely-bug-adjacent): the source only skips color when
+ // renderedStyle().backgroundColor === the literal string "transparent".
+ // But cytoscape resolves the "transparent" style to an rgb() value (here
+ // rgb(0,0,0)) in renderedStyle, so the string check NEVER matches and the
+ // node gets color "#000000" instead of being skipped. The `!== "transparent"`
+ // guard is effectively dead for styled nodes. No crash occurs because a
+ // concrete rgb() is returned.
+ expect(out.nodes).toHaveLength(1);
+ expect(out.nodes![0].color).toBe("#000000");
+ });
+
+ it("a non-default colored node DOES emit a color hex", () => {
+ const cy = buildCy({
+ elements: [{ data: { id: "a", label: "Red" } }],
+ style: [
+ {
+ selector: "node",
+ style: {
+ "background-color": "rgb(255,0,0)",
+ width: 40,
+ height: 20,
+ },
+ },
+ ],
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ expect(out.nodes![0].color).toBe("#ff0000");
+ });
+
+ it("rgbToHex zero-pads single hex digits (e.g. rgb(1,2,3) -> #010203)", () => {
+ const cy = buildCy({
+ elements: [{ data: { id: "a", label: "Dark" } }],
+ style: [
+ {
+ selector: "node",
+ style: {
+ "background-color": "rgb(1,2,3)",
+ width: 40,
+ height: 20,
+ },
+ },
+ ],
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ // CHARACTERIZATION: padStart(2,"0") on each channel.
+ expect(out.nodes![0].color).toBe("#010203");
+ });
+
+ it("parent (compound) node is typed 'group' but still carries a `text` field (TextNode shape)", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "parent", label: "ParentLabel" } },
+ { data: { id: "child", label: "Child", parent: "parent" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("child").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+
+ const parent = out.nodes!.find((n) => n.id === "parent") as any;
+ const child = out.nodes!.find((n) => n.id === "child") as any;
+
+ // CHARACTERIZATION: isParent() => type 'group', but the emitted object is
+ // still TextNode-shaped (has `text`, NOT `label`/`background`).
+ expect(parent.type).toBe("group");
+ expect(parent.text).toBe("ParentLabel");
+ expect(parent).not.toHaveProperty("label");
+ expect(parent).not.toHaveProperty("background");
+
+ expect(child.type).toBe("text");
+ expect(child.text).toBe("Child");
+ });
+
+ it("two horizontally-separated nodes => fromSide 'right' / toSide 'left'", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "A" } },
+ { data: { id: "b", label: "B" } },
+ { data: { id: "e", source: "a", target: "b", label: "edge" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+ cy.getElementById("b").position({ x: 200, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ expect(out.edges![0].fromSide).toBe("right");
+ expect(out.edges![0].toSide).toBe("left");
+ });
+
+ it("two vertically-separated nodes (target below) => fromSide 'bottom' / toSide 'top'", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "A" } },
+ { data: { id: "b", label: "B" } },
+ { data: { id: "e", source: "a", target: "b", label: "edge" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+ cy.getElementById("b").position({ x: 0, y: 200 });
+
+ const out = toJSONCanvas(cy);
+ expect(out.edges![0].fromSide).toBe("bottom");
+ expect(out.edges![0].toSide).toBe("top");
+ });
+
+ it("target to the left => fromSide 'left' / toSide 'right'", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "A" } },
+ { data: { id: "b", label: "B" } },
+ { data: { id: "e", source: "a", target: "b", label: "edge" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 300, y: 0 });
+ cy.getElementById("b").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ expect(out.edges![0].fromSide).toBe("left");
+ expect(out.edges![0].toSide).toBe("right");
+ });
+
+ it("target above => fromSide 'top' / toSide 'bottom'", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "A" } },
+ { data: { id: "b", label: "B" } },
+ { data: { id: "e", source: "a", target: "b", label: "edge" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 0, y: 300 });
+ cy.getElementById("b").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ expect(out.edges![0].fromSide).toBe("top");
+ expect(out.edges![0].toSide).toBe("bottom");
+ });
+
+ it("perfectly overlapping nodes (all scores equal) tie-break resolves to 'down' => bottom/top", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "A" } },
+ { data: { id: "b", label: "B" } },
+ { data: { id: "e", source: "a", target: "b", label: "edge" } },
+ ],
+ style: NODE_STYLE,
+ });
+ // identical positions => all four direction scores equal => Object.keys
+ // order (down, left, right, up) makes 'down' win.
+ cy.getElementById("a").position({ x: 0, y: 0 });
+ cy.getElementById("b").position({ x: 0, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ // CHARACTERIZATION: tie-break is deterministic via object key literal order.
+ expect(out.edges![0].fromSide).toBe("bottom");
+ expect(out.edges![0].toSide).toBe("top");
+ });
+
+ it("edge mapping copies id, source->fromNode, target->toNode, label; fromEnd/toEnd pass through data()", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "A" } },
+ { data: { id: "b", label: "B" } },
+ {
+ data: {
+ id: "edge1",
+ source: "a",
+ target: "b",
+ label: "my edge",
+ fromEnd: "none",
+ toEnd: "arrow",
+ },
+ },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+ cy.getElementById("b").position({ x: 200, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ expect(out.edges![0]).toEqual({
+ id: "edge1",
+ fromNode: "a",
+ toNode: "b",
+ label: "my edge",
+ fromSide: "right",
+ toSide: "left",
+ fromEnd: "none",
+ toEnd: "arrow",
+ });
+ });
+
+ it("edge without fromEnd/toEnd keeps the keys present-but-undefined in memory; JSON.stringify drops them", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "A" } },
+ { data: { id: "b", label: "B" } },
+ { data: { id: "e", source: "a", target: "b", label: "lbl" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+ cy.getElementById("b").position({ x: 200, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ const edge = out.edges![0];
+
+ // CHARACTERIZATION: raw object has the keys with undefined values...
+ expect("fromEnd" in edge).toBe(true);
+ expect("toEnd" in edge).toBe(true);
+ expect(edge.fromEnd).toBeUndefined();
+ expect(edge.toEnd).toBeUndefined();
+
+ // ...but the serialized form (what actually gets written to the file) drops
+ // undefined keys.
+ const serialized = JSON.parse(JSON.stringify(out));
+ expect(serialized.edges[0]).not.toHaveProperty("fromEnd");
+ expect(serialized.edges[0]).not.toHaveProperty("toEnd");
+ expect(serialized.edges[0]).toEqual({
+ id: "e",
+ fromNode: "a",
+ toNode: "b",
+ label: "lbl",
+ fromSide: "right",
+ toSide: "left",
+ });
+ });
+
+ it("node ordering in output follows cytoscape element order (parent before child here)", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "first", label: "First" } },
+ { data: { id: "second", label: "Second" } },
+ { data: { id: "third", label: "Third" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("first").position({ x: 0, y: 0 });
+ cy.getElementById("second").position({ x: 100, y: 0 });
+ cy.getElementById("third").position({ x: 200, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ expect(out.nodes!.map((n) => n.id)).toEqual(["first", "second", "third"]);
+ });
+
+ it("DEFAULT stylesheet (no custom style): node still gets a color (default bg resolves to a concrete rgb)", () => {
+ // No `style` provided -> cytoscape default stylesheet applies.
+ const cy = buildCy({
+ elements: [{ data: { id: "a", label: "Default" } }],
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+
+ // CHARACTERIZATION: With styleEnabled headless + the DEFAULT cytoscape
+ // stylesheet, renderedStyle().backgroundColor returns a concrete rgb()
+ // string, so rgbToHex does NOT throw. The default cytoscape node background
+ // is "#999" => rgb(153,153,153) => "#999999". This documents that the
+ // naive-headless rgbToHex crash hazard does NOT trigger here; it would only
+ // trigger if a future engine returned undefined/empty for backgroundColor.
+ const out = toJSONCanvas(cy);
+ expect(out.nodes).toHaveLength(1);
+ expect(out.nodes![0].color).toBe("#999999");
+ });
+
+ it("full structural snapshot for a representative two-node + edge graph", () => {
+ const cy = buildCy({
+ elements: [
+ { data: { id: "a", label: "Start" } },
+ { data: { id: "b", label: "End" } },
+ { data: { id: "e", source: "a", target: "b", label: "goes to" } },
+ ],
+ style: NODE_STYLE,
+ });
+ cy.getElementById("a").position({ x: 0, y: 0 });
+ cy.getElementById("b").position({ x: 200, y: 0 });
+
+ const out = toJSONCanvas(cy);
+ expect(out).toMatchSnapshot();
+ });
+});
diff --git a/app/src/lib/toTheme.characterization.test.ts b/app/src/lib/toTheme.characterization.test.ts
new file mode 100644
index 000000000..f1c14fe6f
--- /dev/null
+++ b/app/src/lib/toTheme.characterization.test.ts
@@ -0,0 +1,408 @@
+/**
+ * CHARACTERIZATION TESTS for toTheme.ts
+ *
+ * These tests lock down the CURRENT behavior of the FFTheme -> Cytoscape
+ * conversion before a future framework/refactor migration. They are a SAFETY
+ * NET, not a correctness audit. Where the current behavior looks surprising or
+ * buggy, we intentionally pin it as-is and flag it with a CHARACTERIZATION
+ * comment rather than fixing it.
+ *
+ * The module under test treats its `cytoscape` import as type-only at runtime;
+ * toTheme() never instantiates a Core, so these tests are pure.
+ */
+import { toTheme, styleToString, getThemeEditor } from "./toTheme";
+import { FFTheme } from "./FFTheme";
+import { theme as defaultTheme } from "./templates/default-template";
+
+/** Build a complete FFTheme by overriding the default-template theme. */
+function makeTheme(overrides: Partial = {}): FFTheme {
+ return { ...defaultTheme, ...overrides };
+}
+
+describe("toTheme - default theme (canonical baseline)", () => {
+ it("produces stable layout + style + postStyle for the default-template theme (dagre/DOWN)", () => {
+ const result = toTheme(makeTheme());
+
+ // Pin the full structured output. The default theme is the most common
+ // real-world input, so this is the canonical baseline.
+ expect(result.layout).toMatchSnapshot("default-layout");
+ expect(result.style).toMatchSnapshot("default-style");
+ expect(result.postStyle).toMatchSnapshot("default-postStyle");
+ });
+
+ it("dagre layout sets name='dagre', rankDir from direction, and spacingFactor", () => {
+ const result = toTheme(makeTheme());
+ expect(result.layout.name).toBe("dagre");
+ // @ts-expect-error - rankDir is not on the typed LayoutOptions
+ expect(result.layout.rankDir).toBe("TB"); // DOWN -> TB
+ // @ts-expect-error - spacingFactor is written via @ts-ignore
+ expect(result.layout.spacingFactor).toBe(1.1);
+ });
+
+ it("default style begins with the IBM Plex Sans @import (known font prepend)", () => {
+ const result = toTheme(makeTheme());
+ expect(result.style.startsWith("@import url(")).toBe(true);
+ expect(result.style).toContain("IBM+Plex+Sans");
+ });
+
+ it("default style contains $width and $background variables", () => {
+ const result = toTheme(makeTheme());
+ // width = textMaxWidth(146) + padding(16)*2 = 178
+ expect(result.style).toContain("$width: 178px;");
+ expect(result.style).toContain("$background: #ffffff;");
+ });
+
+ it("default theme (fixedHeight=50, useFixedHeight=false) STILL emits $height variable", () => {
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ // $height is emitted whenever fixedHeight is truthy, decoupled from useFixedHeight.
+ const result = toTheme(makeTheme());
+ expect(result.style).toContain("$height: 50px;");
+ // ...but the node itself uses height: label since useFixedHeight is false.
+ expect(result.style).toContain("height: label;");
+ });
+});
+
+describe("toTheme - dagre direction mapping (RIGHT/LEFT/DOWN/UP -> LR/RL/TB/BT)", () => {
+ const cases: Array<[FFTheme["direction"], string]> = [
+ ["RIGHT", "LR"],
+ ["LEFT", "RL"],
+ ["DOWN", "TB"],
+ ["UP", "BT"],
+ ];
+ it.each(cases)(
+ "dagre + direction %s translates rankDir to %s",
+ (direction, expected) => {
+ const result = toTheme(makeTheme({ layoutName: "dagre", direction }));
+ // @ts-expect-error - rankDir written via @ts-ignore
+ expect(result.layout.rankDir).toBe(expected);
+ }
+ );
+});
+
+describe("toTheme - klay and layered emit RAW (untranslated) direction values", () => {
+ it("klay sets layout.klay.direction to the raw Direction string", () => {
+ const result = toTheme(
+ makeTheme({ layoutName: "klay", direction: "RIGHT" })
+ );
+ expect(result.layout.name).toBe("klay");
+ // CHARACTERIZATION: klay receives the raw 'RIGHT' value, NOT translated to 'LR'.
+ // @ts-expect-error - klay written via @ts-ignore
+ expect(result.layout.klay).toEqual({ direction: "RIGHT" });
+ });
+
+ it("layered sets name='elk', elk.algorithm='layered', raw elk.direction, and BALANCED fixedAlignment", () => {
+ const result = toTheme(
+ makeTheme({ layoutName: "layered", direction: "DOWN" })
+ );
+ expect(result.layout.name).toBe("elk");
+ // @ts-expect-error - elk written via @ts-ignore
+ const elk = result.layout.elk;
+ expect(elk.algorithm).toBe("layered");
+ // CHARACTERIZATION: layered receives raw 'DOWN', NOT translated.
+ expect(elk["elk.direction"]).toBe("DOWN");
+ expect(elk["elk.layered.nodePlacement.bk.fixedAlignment"]).toBe("BALANCED");
+ });
+});
+
+describe("toTheme - elk layouts set name='elk' with algorithm = original layoutName", () => {
+ it("mrtree -> name='elk', elk.algorithm='mrtree', no animation flags", () => {
+ const result = toTheme(makeTheme({ layoutName: "mrtree" }));
+ expect(result.layout.name).toBe("elk");
+ // @ts-expect-error
+ expect(result.layout.elk.algorithm).toBe("mrtree");
+ // @ts-expect-error
+ expect(result.layout.animate).toBeUndefined();
+ });
+
+ it("radial -> name='elk', elk.algorithm='radial', no animation flags", () => {
+ const result = toTheme(makeTheme({ layoutName: "radial" }));
+ expect(result.layout.name).toBe("elk");
+ // @ts-expect-error
+ expect(result.layout.elk.algorithm).toBe("radial");
+ // @ts-expect-error
+ expect(result.layout.animate).toBeUndefined();
+ });
+
+ it("stress -> name='elk' with interactive + animation flags", () => {
+ const result = toTheme(makeTheme({ layoutName: "stress" }));
+ expect(result.layout.name).toBe("elk");
+ // @ts-expect-error
+ expect(result.layout.elk.algorithm).toBe("stress");
+ // @ts-expect-error
+ expect(result.layout.elk.interactive).toBe(true);
+ // @ts-expect-error
+ expect(result.layout.animate).toBe(true);
+ // @ts-expect-error
+ expect(result.layout.animationDuration).toBe(150);
+ // @ts-expect-error
+ expect(result.layout.animationEasing).toBe("ease-in-out");
+ });
+});
+
+describe("toTheme - cose remaps to fcose with animation flags", () => {
+ it("cose -> name='fcose' + animate flags (distinct from elk path)", () => {
+ const result = toTheme(makeTheme({ layoutName: "cose" }));
+ expect(result.layout.name).toBe("fcose");
+ // @ts-expect-error
+ expect(result.layout.animate).toBe(true);
+ // @ts-expect-error
+ expect(result.layout.animationDuration).toBe(150);
+ // @ts-expect-error
+ expect(result.layout.animationEasing).toBe("ease-in-out");
+ // No elk key on the fcose path.
+ // @ts-expect-error
+ expect(result.layout.elk).toBeUndefined();
+ });
+});
+
+describe("toTheme - non-hierarchical / non-direction-aware layouts ignore direction", () => {
+ // CHARACTERIZATION: direction only affects dagre/klay/layered. For these
+ // layouts changing direction produces identical layout output.
+ const layouts: Array = [
+ "breadthfirst",
+ "concentric",
+ "circle",
+ ];
+ it.each(layouts)(
+ "%s ignores direction (DOWN vs RIGHT identical)",
+ (layoutName) => {
+ const down = toTheme(makeTheme({ layoutName, direction: "DOWN" }));
+ const right = toTheme(makeTheme({ layoutName, direction: "RIGHT" }));
+ expect(down.layout).toEqual(right.layout);
+ expect(down.layout.name).toBe(layoutName);
+ }
+ );
+
+ it("radial (an elk layout) also ignores direction", () => {
+ const down = toTheme(
+ makeTheme({ layoutName: "radial", direction: "DOWN" })
+ );
+ const right = toTheme(
+ makeTheme({ layoutName: "radial", direction: "RIGHT" })
+ );
+ expect(down.layout).toEqual(right.layout);
+ });
+});
+
+describe("toTheme - taxi-direction narrow conjunction", () => {
+ it("curveStyle 'taxi' + mrtree -> taxi-direction 'downward' regardless of direction", () => {
+ const result = toTheme(
+ makeTheme({ curveStyle: "taxi", layoutName: "mrtree", direction: "UP" })
+ );
+ expect(result.style).toContain("taxi-direction: downward;");
+ });
+
+ it("curveStyle 'taxi' + dagre + RIGHT -> 'horizontal'", () => {
+ const result = toTheme(
+ makeTheme({ curveStyle: "taxi", layoutName: "dagre", direction: "RIGHT" })
+ );
+ expect(result.style).toContain("taxi-direction: horizontal;");
+ });
+
+ it("curveStyle 'taxi' + dagre + LEFT -> 'horizontal'", () => {
+ const result = toTheme(
+ makeTheme({ curveStyle: "taxi", layoutName: "dagre", direction: "LEFT" })
+ );
+ expect(result.style).toContain("taxi-direction: horizontal;");
+ });
+
+ it("curveStyle 'taxi' + dagre + DOWN -> 'vertical'", () => {
+ const result = toTheme(
+ makeTheme({ curveStyle: "taxi", layoutName: "dagre", direction: "DOWN" })
+ );
+ expect(result.style).toContain("taxi-direction: vertical;");
+ });
+
+ it("curveStyle 'taxi' + klay (hierarchical) gets taxi-direction", () => {
+ const result = toTheme(
+ makeTheme({ curveStyle: "taxi", layoutName: "klay", direction: "DOWN" })
+ );
+ expect(result.style).toContain("taxi-direction: vertical;");
+ });
+
+ it("curveStyle 'round-taxi' does NOT trigger taxi-direction", () => {
+ // CHARACTERIZATION: only literal 'taxi' triggers the branch; 'round-taxi' does not.
+ const result = toTheme(
+ makeTheme({
+ curveStyle: "round-taxi",
+ layoutName: "dagre",
+ direction: "DOWN",
+ })
+ );
+ expect(result.style).not.toContain("taxi-direction");
+ });
+
+ it("curveStyle 'taxi' + non-hierarchical layout (cose) gets NO taxi-direction", () => {
+ const result = toTheme(
+ makeTheme({ curveStyle: "taxi", layoutName: "cose", direction: "DOWN" })
+ );
+ expect(result.style).not.toContain("taxi-direction");
+ });
+});
+
+describe("toTheme - useFixedHeight controls node height (number vs 'label')", () => {
+ it("useFixedHeight=false -> node height is the string 'label'", () => {
+ const result = toTheme(makeTheme({ useFixedHeight: false }));
+ expect(result.style).toContain("height: label;");
+ });
+
+ it("useFixedHeight=true -> node height is the numeric fixedHeight", () => {
+ const result = toTheme(
+ makeTheme({ useFixedHeight: true, fixedHeight: 120 })
+ );
+ expect(result.style).toContain("height: 120;");
+ expect(result.style).not.toContain("height: label;");
+ // And $height variable is also present (fixedHeight truthy).
+ expect(result.style).toContain("$height: 120px;");
+ });
+});
+
+describe("toTheme - $height variable decoupled from useFixedHeight", () => {
+ it("fixedHeight truthy but useFixedHeight=false STILL emits $height variable", () => {
+ // CHARACTERIZATION: documents current behavior, may be a bug.
+ const result = toTheme(
+ makeTheme({ useFixedHeight: false, fixedHeight: 99 })
+ );
+ expect(result.style).toContain("$height: 99px;");
+ expect(result.style).toContain("height: label;"); // node still uses label
+ });
+
+ it("fixedHeight=0 omits the $height variable entirely", () => {
+ const result = toTheme(
+ makeTheme({ useFixedHeight: false, fixedHeight: 0 })
+ );
+ expect(result.style).not.toContain("$height:");
+ });
+});
+
+describe("toTheme - smart border classes use || (truthiness) fallback", () => {
+ it("borderWidth=0 (default) falls through to edgeWidth in .border_* classes", () => {
+ // CHARACTERIZATION / LANDMINE: `theme.borderWidth || theme.edgeWidth`.
+ // When borderWidth is 0, the border utility classes use edgeWidth (2), NOT 0.
+ // A migration replacing || with ?? would change default-theme borders for ALL customers.
+ const result = toTheme(makeTheme({ borderWidth: 0, edgeWidth: 2 }));
+ // border_solid etc. live in postStyle.
+ expect(result.postStyle).toContain(
+ ":childless.border_solid { border-width: 2;"
+ );
+ // sanity: there is no border-width: 0 in those smart classes
+ expect(result.postStyle).not.toContain(
+ ":childless.border_solid { border-width: 0;"
+ );
+ });
+
+ it("borderWidth=3 (truthy) is used directly in .border_* classes", () => {
+ const result = toTheme(makeTheme({ borderWidth: 3, edgeWidth: 2 }));
+ expect(result.postStyle).toContain(
+ ":childless.border_solid { border-width: 3;"
+ );
+ });
+});
+
+describe("toTheme - font @import behavior", () => {
+ it("known font (REM) prepends its @import snippet at the front of the style", () => {
+ const result = toTheme(makeTheme({ fontFamily: "REM" }));
+ expect(result.style.startsWith("@import url(")).toBe(true);
+ expect(result.style).toContain("family=REM");
+ });
+
+ it("unknown/custom font produces NO @import; style starts with the variables block", () => {
+ // CHARACTERIZATION: exact-match, case-sensitive lookup. Unknown fonts get no import.
+ const result = toTheme(makeTheme({ fontFamily: "My Custom Font" }));
+ expect(result.style.includes("@import")).toBe(false);
+ expect(result.style.startsWith("$width:")).toBe(true);
+ });
+
+ it("font lookup is case-sensitive: 'ibm plex sans' is treated as unknown", () => {
+ const result = toTheme(makeTheme({ fontFamily: "ibm plex sans" }));
+ expect(result.style.includes("@import")).toBe(false);
+ });
+});
+
+describe("toTheme - fontFamily is JSON.stringify-quoted across node/edge/parent", () => {
+ it("multi-word font name is emitted quoted in all three selectors", () => {
+ const result = toTheme(makeTheme({ fontFamily: "Space Grotesk" }));
+ // CHARACTERIZATION: font-family values are JSON.stringify'd (quoted).
+ const matches = result.style.match(/font-family: "Space Grotesk";/g) || [];
+ // node, edge, parent => 3 occurrences
+ expect(matches.length).toBe(3);
+ });
+});
+
+describe("toTheme - magic-number scaling for label/border sizes", () => {
+ it("edge font-size = edgeTextSize*16, node font-size=16, parent=24, text-background-padding=edgeWidth", () => {
+ const result = toTheme(makeTheme({ edgeTextSize: 0.875, edgeWidth: 2 }));
+ // edge font-size: 0.875 * 16 = 14
+ expect(result.style).toContain("font-size: 14;");
+ // node font-size hardcoded 16
+ expect(result.style).toContain("font-size: 16;");
+ // parent font-size hardcoded 24
+ expect(result.style).toContain("font-size: 24;");
+ // text-background-padding reuses edgeWidth
+ expect(result.style).toContain("text-background-padding: 2;");
+ });
+});
+
+describe("toTheme - rotateEdgeLabel toggles text-rotation", () => {
+ it("true -> autorotate", () => {
+ const result = toTheme(makeTheme({ rotateEdgeLabel: true }));
+ expect(result.style).toContain("text-rotation: autorotate;");
+ });
+ it("false -> none", () => {
+ const result = toTheme(makeTheme({ rotateEdgeLabel: false }));
+ expect(result.style).toContain("text-rotation: none;");
+ });
+});
+
+describe("styleToString (exported serializer)", () => {
+ it("serializes camelCase->kebab, preserves pre-kebab keys, trailing-space format", () => {
+ const out = styleToString([
+ {
+ selector: ":childless",
+ css: {
+ backgroundColor: "#fff",
+ "text-valign": "center",
+ textMarginY: 0,
+ fontSize: 16,
+ "border-width": 2,
+ } as any,
+ },
+ ]);
+ // CHARACTERIZATION: exact serialized format including the space before `}`.
+ expect(out).toBe(
+ ":childless { background-color: #fff; text-valign: center; text-margin-y: 0; font-size: 16; border-width: 2; }"
+ );
+ });
+
+ it("joins multiple stylesheet entries with newlines", () => {
+ const out = styleToString([
+ { selector: "edge", css: { width: 2 } as any },
+ { selector: ":parent", css: { padding: 10 } as any },
+ ]);
+ expect(out).toBe("edge { width: 2; }\n:parent { padding: 10; }");
+ });
+
+ it("camelToKebab is idempotent on already-kebab keys", () => {
+ const out = styleToString([
+ { selector: "x", css: { "source-arrow-shape": "none" } as any },
+ ]);
+ expect(out).toBe("x { source-arrow-shape: none; }");
+ });
+});
+
+describe("getThemeEditor", () => {
+ it("returns doc.meta.themeEditor when present", () => {
+ const custom = makeTheme({ layoutName: "klay", background: "#123456" });
+ const result = getThemeEditor({ meta: { themeEditor: custom } } as any);
+ expect(result).toBe(custom);
+ });
+
+ it("falls back to the default-template theme when themeEditor is absent", () => {
+ // CHARACTERIZATION: backward-compat for legacy charts lacking themeEditor metadata.
+ expect(getThemeEditor({ meta: {} } as any)).toBe(defaultTheme);
+ expect(getThemeEditor({} as any)).toBe(defaultTheme);
+ expect(getThemeEditor({ meta: { themeEditor: null } } as any)).toBe(
+ defaultTheme
+ );
+ });
+});
diff --git a/app/src/lib/toVisio.characterization.test.ts b/app/src/lib/toVisio.characterization.test.ts
new file mode 100644
index 000000000..b2a5a43d3
--- /dev/null
+++ b/app/src/lib/toVisio.characterization.test.ts
@@ -0,0 +1,283 @@
+import { parse, Graph } from "graph-selector";
+
+import { toVisioFlowchart, toVisioOrgChart } from "./toVisio";
+
+// CHARACTERIZATION TESTS — these lock in the CURRENT behavior of toVisio.ts
+// before a future framework migration. They are a safety net, not a correctness
+// audit. Where behavior looks like a bug it is preserved here and flagged with a
+// // CHARACTERIZATION comment, not fixed.
+
+const HEADER_FLOWCHART = `"Process Step ID","Process Step Description","Next Step ID","Connector Label","Shape Type"`;
+const HEADER_ORGCHART = `"Employee ID","Name","Title","Manager ID","Role Type"`;
+
+describe("toVisioFlowchart — characterization", () => {
+ it("empty graph returns an empty string (NOT header-only)", async () => {
+ const graph = parse(``);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: papaparse.unparse([]) with header:true yields "" — there
+ // are no rows so no header is emitted either. Surprising: an empty input
+ // produces a completely empty file, not a header row.
+ expect(csv).toBe("");
+ });
+
+ it("isolated node (zero edges) is Document, not Process", async () => {
+ const graph = parse(`a`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: a node with no edges in OR out => "Document"
+ expect(csv).toBe(`${HEADER_FLOWCHART}\r\n"n1","a","","","Document"`);
+ });
+
+ it("middle node of a 3-node chain (1 in, 1 out) is Process", async () => {
+ const graph = parse(`a\n\tb\n\t\tc`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: n2 has 1 incoming + 1 outgoing => "Process" (the else fall-through)
+ expect(csv).toBe(
+ `${HEADER_FLOWCHART}\r\n"n1","a","n2","","Start"\r\n"n2","b","n3","","Process"\r\n"n3","c","","","End"`
+ );
+ });
+
+ it("top-level node with >1 outgoing is Start (NOT Decision) — Start check wins", async () => {
+ const graph = parse(`a\n\tb\n\tc`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: n1 has 0 incoming + 2 outgoing. The if/else cascade checks
+ // "no incoming => Start" BEFORE ">1 outgoing => Decision", so a root fan-out
+ // node is "Start", not "Decision". Two empty labels join to a single comma.
+ expect(csv).toBe(
+ `${HEADER_FLOWCHART}\r\n"n1","a","n2,n3",",","Start"\r\n"n2","b","","","End"\r\n"n3","c","","","End"`
+ );
+ });
+
+ it("node with incoming AND >1 outgoing is Decision", async () => {
+ // a -> b ; b -> c ; b -> d => b has 1 incoming + 2 outgoing => Decision
+ const graph = parse(`a\n\tb: b\n\t\tc\n\t\td`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: Decision only fires when a node also has incoming edges.
+ expect(csv).toContain(`,"Decision"`);
+ expect(csv).toMatchSnapshot();
+ });
+
+ it("edge label containing a comma is joined with literal commas (ambiguous on re-parse)", async () => {
+ const graph = parse(`a\n\thello, world: b`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: a label containing ", " is indistinguishable from the
+ // multi-edge comma separator when Visio re-parses. Locked as-is.
+ expect(csv).toBe(
+ `${HEADER_FLOWCHART}\r\n"n1","a","n2","hello, world","Start"\r\n"n2","b","","","End"`
+ );
+ });
+
+ it("node label with comma and double quote is papaparse-escaped (quotes doubled)", async () => {
+ const graph = parse(`he said "hi", ok`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: papaparse doubles internal double-quotes (" => "") and
+ // wraps the whole field in quotes so the comma does not split the column.
+ expect(csv).toBe(
+ `${HEADER_FLOWCHART}\r\n"n1","he said ""hi"", ok","","","Document"`
+ );
+ });
+
+ it("multiple outgoing edges where one label is empty", async () => {
+ // first edge unlabeled, second edge labeled
+ const graph = parse(`a\n\tb\n\tlbl: c`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: Connector Label accumulates ",,lbl" then slice(1)
+ // yields ",lbl" — the leading empty label leaves an embedded leading comma.
+ // (n1 is "Start" here, not "Decision", because it has no incoming edges.)
+ expect(csv).toBe(
+ `${HEADER_FLOWCHART}\r\n"n1","a","n2,n3",",lbl","Start"\r\n"n2","b","","","End"\r\n"n3","c","","","End"`
+ );
+ });
+
+ it("single edge: source is Start, target is End", async () => {
+ const graph = parse(`a\n\tb`);
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: 0-in/1-out => Start; 1-in/0-out => End
+ expect(csv).toBe(
+ `${HEADER_FLOWCHART}\r\n"n1","a","n2","","Start"\r\n"n2","b","","","End"`
+ );
+ });
+
+ it("node with 1 outgoing but multiple incoming is Process (not Decision/End)", async () => {
+ // a -> c, b -> c, c -> d. c (n3) has 2 incoming + 1 outgoing.
+ const graph: Graph = {
+ nodes: [
+ { data: { id: "n1", label: "a", classes: "" } },
+ { data: { id: "n2", label: "b", classes: "" } },
+ { data: { id: "n3", label: "c", classes: "" } },
+ { data: { id: "n4", label: "d", classes: "" } },
+ ],
+ edges: [
+ {
+ source: "n1",
+ target: "n3",
+ data: { id: "e1", label: "", classes: "" },
+ },
+ {
+ source: "n2",
+ target: "n3",
+ data: { id: "e2", label: "", classes: "" },
+ },
+ {
+ source: "n3",
+ target: "n4",
+ data: { id: "e3", label: "", classes: "" },
+ },
+ ],
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ } as any;
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: n3 has >1 incoming + exactly 1 outgoing => falls through
+ // to "Process" (not Decision, not End). Locks the else fall-through.
+ expect(csv).toContain(`"n3","c","n4","","Process"`);
+ expect(csv).toMatchSnapshot();
+ });
+
+ it("Subprocess branch never fires for normally-parsed docs (no data.parent)", async () => {
+ const graph = parse(`a\n\tb\n\t\tc`);
+ // CHARACTERIZATION: graph-selector does not set data.parent; Subprocess is dead.
+ const anyParent = graph.nodes.some(
+ (n) => (n.data as Record).parent != null
+ );
+ expect(anyParent).toBe(false);
+ const csv = await toVisioFlowchart(graph);
+ expect(csv).not.toContain("Subprocess");
+ });
+
+ it("hand-built graph with data.parent DOES produce Subprocess (dead-branch coverage)", async () => {
+ // Manually construct a graph where a node has 1-in/1-out AND data.parent set.
+ const graph: Graph = {
+ nodes: [
+ { data: { id: "n1", label: "a", classes: "" } },
+ { data: { id: "n2", label: "b", classes: "", parent: "grp" } },
+ { data: { id: "n3", label: "c", classes: "" } },
+ ],
+ edges: [
+ {
+ source: "n1",
+ target: "n2",
+ data: { id: "e1", label: "", classes: "" },
+ },
+ {
+ source: "n2",
+ target: "n3",
+ data: { id: "e2", label: "", classes: "" },
+ },
+ ],
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ } as any;
+ const csv = await toVisioFlowchart(graph);
+ // CHARACTERIZATION: with data.parent + 1-in/1-out, the otherwise-dead branch fires => Subprocess
+ expect(csv).toContain(`"n2","b","n3","","Subprocess"`);
+ });
+});
+
+describe("toVisioOrgChart — characterization", () => {
+ it("empty graph returns an empty string (NOT header-only)", async () => {
+ const graph = parse(``);
+ const csv = await toVisioOrgChart(graph);
+ // CHARACTERIZATION: like the flowchart, empty input => "" (no header row).
+ expect(csv).toBe("");
+ });
+
+ it("flat list has empty Manager ID for all", async () => {
+ const graph = parse(`Larry\nCurly\nMoe`);
+ const csv = await toVisioOrgChart(graph);
+ expect(csv).toBe(
+ `${HEADER_ORGCHART}\r\n"n1","Larry","","",""\r\n"n2","Curly","","",""\r\n"n3","Moe","","",""`
+ );
+ });
+
+ it("roleType camelCase attribute populates Role Type column", async () => {
+ const graph = parse(`Larry [roleType=Boss]`);
+ const csv = await toVisioOrgChart(graph);
+ // CHARACTERIZATION: node.data.roleType falls back into the "Role Type" column
+ expect(csv).toBe(`${HEADER_ORGCHART}\r\n"n1","Larry","","","Boss"`);
+ });
+
+ it("Title (capitalized) wins over title (lowercase) when both present", async () => {
+ // Hand-build node data with both keys to test precedence deterministically.
+ const graph: Graph = {
+ nodes: [
+ {
+ data: {
+ id: "n1",
+ label: "Larry",
+ classes: "",
+ Title: "BigTitle",
+ title: "smallTitle",
+ },
+ },
+ ],
+ edges: [],
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ } as any;
+ const csv = await toVisioOrgChart(graph);
+ // CHARACTERIZATION: bracket-spelled "Title" wins over camelCase "title"
+ expect(csv).toBe(`${HEADER_ORGCHART}\r\n"n1","Larry","BigTitle","",""`);
+ });
+
+ it("Role Type (spaced) wins over roleType (camelCase) when both present", async () => {
+ const graph: Graph = {
+ nodes: [
+ {
+ data: {
+ id: "n1",
+ label: "Larry",
+ classes: "",
+ ["Role Type"]: "Spaced",
+ roleType: "camel",
+ },
+ },
+ ],
+ edges: [],
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ } as any;
+ const csv = await toVisioOrgChart(graph);
+ // CHARACTERIZATION: "Role Type" wins over roleType
+ expect(csv).toBe(`${HEADER_ORGCHART}\r\n"n1","Larry","","","Spaced"`);
+ });
+
+ it("node with two incoming edges keeps the LAST source as Manager ID", async () => {
+ const graph: Graph = {
+ nodes: [
+ { data: { id: "n1", label: "A", classes: "" } },
+ { data: { id: "n2", label: "B", classes: "" } },
+ { data: { id: "n3", label: "C", classes: "" } },
+ ],
+ edges: [
+ {
+ source: "n1",
+ target: "n3",
+ data: { id: "e1", label: "", classes: "" },
+ },
+ {
+ source: "n2",
+ target: "n3",
+ data: { id: "e2", label: "", classes: "" },
+ },
+ ],
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ } as any;
+ const csv = await toVisioOrgChart(graph);
+ // CHARACTERIZATION: last-write-wins — n3's Manager ID is n2 (the last edge),
+ // silently dropping n1. Multi-manager input loses data.
+ expect(csv).toBe(
+ `${HEADER_ORGCHART}\r\n"n1","A","","",""\r\n"n2","B","","",""\r\n"n3","C","","n2",""`
+ );
+ });
+
+ it("special chars in Name (comma + double quote) are papaparse-escaped", async () => {
+ const graph = parse(`Smith, "Bob"`);
+ const csv = await toVisioOrgChart(graph);
+ // CHARACTERIZATION: quote-doubling + comma contained inside quoted field
+ expect(csv).toBe(`${HEADER_ORGCHART}\r\n"n1","Smith, ""Bob""","","",""`);
+ });
+
+ it("manager chain over multiple depths", async () => {
+ const graph = parse(`Larry\n\tCurly\n\t\tMoe`);
+ const csv = await toVisioOrgChart(graph);
+ expect(csv).toBe(
+ `${HEADER_ORGCHART}\r\n"n1","Larry","","",""\r\n"n2","Curly","","n1",""\r\n"n3","Moe","","n2",""`
+ );
+ });
+});
diff --git a/app/src/lib/toneRowProjects.ts b/app/src/lib/toneRowProjects.ts
new file mode 100644
index 000000000..8aa008e89
--- /dev/null
+++ b/app/src/lib/toneRowProjects.ts
@@ -0,0 +1,22 @@
+import { t } from "@lingui/macro";
+
+export const TONE_ROW_URL = "https://tone-row.com";
+
+/**
+ * Other Tone Row apps, cross-linked from the homepage, pricing page, and
+ * settings page. Descriptions are lazy so they resolve in the active locale.
+ */
+export const toneRowProjects = [
+ {
+ name: "TeamSort",
+ domain: "teamsort.world",
+ href: "https://teamsort.world",
+ description: () => t`Group ranking and ranked-choice voting, free`,
+ },
+ {
+ name: "Docugram",
+ domain: "docugram.app",
+ href: "https://docugram.app",
+ description: () => t`Turn documents into diagrams with AI`,
+ },
+];
diff --git a/app/src/locales/de/messages.js b/app/src/locales/de/messages.js
index 93df5ec82..d439e73b7 100644
--- a/app/src/locales/de/messages.js
+++ b/app/src/locales/de/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"48€/Jahr (33% sparen) · Jederzeit kündbar","$6/mo":"6€/Monat","1 Temporary Flowchart":"1 Vorläufiger Flussdiagramm","1 diagram at a time":"1 Diagramm zur gleichen Zeit","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Nur benutzerdefiniertes CSS0> ist aktiviert. Nur die Layout- und Erweiterten Einstellungen werden angewandt.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> ist ein Open-Source-Projekt von <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Anmelden0> / <1>Registrieren1> mit E-Mail und Passwort","A new version of the app is available. Please reload to update.":"Eine neue Version der App ist verfügbar. Bitte neu laden, um zu aktualisieren.","AI Creation & Editing":"KI-Erstellung & Bearbeitung","AI generation & editing":"KI-Generierung & Bearbeitung","AI-Powered Flowchart Creation":"KI-unterstützte Erstellung von Flussdiagrammen","AI-generated from plain text in under 5 seconds.":"In unter 5 Sekunden aus einfachem Text generiert.","AI-powered editing to supercharge your workflow":"KI-unterstützte Bearbeitung zur Beschleunigung Ihres Arbeitsablaufs","About":"Über","Account":"Konto","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Fügen Sie einen Backslash (<0>\\\\0>) vor jedem Sonderzeichen ein: <1>(1>, <2>:2>, <3>#3>, oder <4>.4>`","Add some steps":"Füge einige Schritte hinzu","Advanced":"Fortgeschritten","Align Horizontally":"Horizontal ausrichten","Align Nodes":"Ausrichten von Knoten","Align Vertically":"Vertikal ausrichten","All this for just $6/month - less than your daily coffee ☕":"All dies für nur $6/Monat - weniger als Ihr täglicher Kaffee ☕","Always presentation-ready":"Immer präsentationsbereit","Amount":"Betrag","An error occurred. Try resubmitting or email {0} directly.":["Es ist ein Fehler aufgetreten. Versuchen Sie, es erneut einzureichen oder senden Sie eine E-Mail direkt an ",["0"],"."],"Appearance":"Erscheinungsbild","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"Sind Sie sicher, dass Sie den Flussdiagramm löschen möchten? ","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"Sind Sie sicher, dass Sie den Ordner löschen möchten? ","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"Sind Sie sicher, dass Sie den Ordner löschen möchten? ","Are you sure?":"Bist du sicher?","Arrow Size":"Größe des Pfeils","Attributes":"Attribute","August 2023":"August 2023","Back":"Zurück","Back To Editor":"Zurück zum Editor","Background Color":"Hintergrundfarbe","Basic Flowchart":"Grundlegender Flussdiagramm","Become a Github Sponsor":"Werden Sie ein Github-Sponsor","Become a Pro User":"Werden Sie ein Pro-Benutzer","Begin your journey":"Beginne deine Reise","Billed annually at $48":"Jährlich abgerechnet für $48","Billed monthly at $6":"Monatlich für $6 berechnet","Blog":"Blog","Book a Meeting":"Ein Treffen buchen","Border Color":"Rahmenfarbe","Border Width":"Rahmenbreite","Bottom to Top":"Von unten nach oben","Breadthfirst":"In die Breite","Build your personal flowchart library":"Erstellen Sie Ihre persönliche Flussdiagramm-Bibliothek","Can I import my existing diagrams?":"Kann ich meine bestehenden Diagramme importieren?","Cancel":"Abbrechen","Cancel anytime":"Jederzeit kündbar","Cancel your subscription. Your hosted charts will become read-only.":"Kündigen Sie Ihr Abonnement. Ihre gehosteten Diagramme werden schreibgeschützt.","Certain attributes can be used to customize the appearance or functionality of elements.":"Bestimmte Attribute können verwendet werden, um das Aussehen oder die Funktionalität von Elementen anzupassen.","Change Email Address":"E-Mail Adresse ändern","Changelog":"Änderungsprotokoll","Charts":"Diagramme","Check out the guide:":"Schau dir die Anleitung an:","Check your email for a link to log in.<0/>You can close this window.":"Überprüfen Sie Ihre E-Mail auf einen Link zum Einloggen. Sie können dieses Fenster schließen.","Choose":"Wählen","Choose Template":"Vorlage auswählen","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Wählen Sie aus einer Vielzahl von Pfeilformen für die Quelle und das Ziel einer Kante aus. Formen beinhalten Dreieck, Dreieck-Tee, Kreis-Dreieck, Dreieck-Kreuz, Dreieck-Rückbiegung, Vee, Tee, Quadrat, Kreis, Diamant, Chevron und keine.","Choose how edges connect between nodes":"Wählen Sie, wie Kanten zwischen Knoten verbunden werden","Choose how nodes are automatically arranged in your flowchart":"Wählen Sie aus, wie Knoten automatisch in Ihrem Flussdiagramm angeordnet werden","Circle":"Kreis","Classes":"Klassen","Clear":"Löschen","Clear text?":"Text löschen?","Clone":"Klon","Clone Flowchart":"Flussdiagramm klonen ","Close":"Schließen","Color":"Farbe","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Farben beinhalten Rot, Orange, Gelb, Blau, Violett, Schwarz, Weiß und Grau.","Column":"Spalte","Comment":"Kommentar","Community templates":"Community-Vorlagen","Compare our plans and find the perfect fit for your flowcharting needs":"Vergleichen Sie unsere Pläne und finden Sie die perfekte Lösung für Ihre Flussdiagramm-Bedürfnisse","Concentric":"Konzentrisch","Confirm New Email":"Neue E-Mail bestätigen","Confirm your email address to sign in.":"Bestätigen Sie Ihre E-Mail-Adresse, um sich anzumelden.","Connect your Data":"Verbinden Sie Ihre Daten","Containers":"Behälter","Containers are nodes that contain other nodes. They are declared using curly braces.":"Container sind Knoten, die andere Knoten enthalten. Sie werden mit geschweiften Klammern deklariert.","Continue":"Weiter","Continue in Sandbox (Resets daily, work not saved)":"Weiter im Sandbox-Modus (wird täglich zurückgesetzt, Arbeit wird nicht gespeichert)","Controls the flow direction of hierarchical layouts":"Steuert die Flussrichtung von hierarchischen Layouts","Convert":"Umwandeln","Convert to Flowchart":"In Flussdiagramm konvertieren","Convert to hosted chart?":"In gehostetes Diagramm konvertieren?","Cookie Policy":"Cookie-Richtlinie","Copied SVG code to clipboard":"SVG-Code in Zwischenablage kopiert","Copied {format} to clipboard":[["Format"]," in Zwischenablage kopiert"],"Copy":"Kopieren","Copy PNG Image":"PNG-Bild kopieren","Copy SVG Code":"Kopieren Sie den SVG-Code","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Kopiere deinen Excalidraw-Code und füge ihn in <0>excalidraw.com0> ein, um ihn zu bearbeiten. Diese Funktion ist experimentell und funktioniert möglicherweise nicht mit allen Diagrammen. Wenn du einen Fehler findest, <1>lass es uns wissen1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Kopieren Sie Ihren mermaid.js-Code oder öffnen Sie ihn direkt im mermaid.js Live-Editor.","Create":"Erstellen","Create Flowcharts using AI":"Erstellen Sie Flussdiagramme mit KI","Create Unlimited Flowcharts":"Erstellen Sie unbegrenzte Flussdiagramme","Create a New Chart":"Nein Diagramm erstellen","Create a flowchart showing the steps of planning and executing a school fundraising event":"Erstelle einen Flussdiagramm, das die Schritte zur Planung und Durchführung eines Schul-Fundraising-Events zeigt","Create a new flowchart to get started or organize your work with folders.":"Erstellen Sie ein neues Flussdiagramm, um zu beginnen oder organisieren Sie Ihre Arbeit mit Ordnern. ","Create flowcharts instantly: Type or paste text, see it visualized.":"Erstellen Sie sofort Flussdiagramme: Tippen oder fügen Sie Text ein, sehen Sie ihn visualisiert.","Create unlimited diagrams for just $6/month!":"Erstellen Sie unbegrenzt Diagramme für nur $6/Monat!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Erstellen Sie unbegrenzte Flussdiagramme, die in der Cloud gespeichert sind und überall zugänglich sind!","Create with AI":"Erstellen mit KI","Created Date":"Erstellungsdatum","Creating an edge between two nodes is done by indenting the second node below the first":"Eine Kante zwischen zwei Knoten wird erstellt, indem der zweite Knoten unter dem ersten eingerückt wird","Curve Style":"Kurvenstil","Custom CSS":"Benutzerdefiniertes CSS","Custom Sharing Options":"Benutzerdefinierte Freigabeoptionen","Custom sharing & public links":"Individuelle Freigabe und öffentliche Links","Customer Portal":"Kundenportal","Daily Sandbox Editor":"Täglicher Sandbox-Editor","Dark":"Dunkel","Dark Mode":"Dunkelmodus","Data Import (Visio, Lucidchart, CSV)":"Datenimport (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Datenimportfunktion für komplexe Diagramme","Date":"Datum","Delete":"Löschen","Delete {0}":["Lösche ",["0"]],"Describe it and it appears":"Beschreiben Sie es und es erscheint","Describe your idea. Get a diagram worth presenting.":"Beschreiben Sie Ihre Idee. Erhalten Sie ein präsentationswürdiges Diagramm.","Design a software development lifecycle flowchart for an agile team":"Entwerfe einen Software-Entwicklungs-Lebenszyklus-Flussdiagramm für ein agiles Team","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Entwickle einen Entscheidungsbaum für einen CEO, um potenzielle neue Marktmöglichkeiten zu bewerten.","Direction":"Richtung","Dismiss":"Entlassen","Do you offer discounts for students or nonprofits?":"Bieten Sie Rabatte für Studenten oder gemeinnützige Organisationen an?","Do you want to delete this?":"Möchten Sie dies löschen?","Document":"Document","Don\'t Lose Your Work":"Verliere deine Arbeit nicht","Download":"Herunterladen","Download JPG":"JPG herunterladen","Download PNG":"PNG herunterladen","Download SVG":"SVG herunterladen","Drag and drop a CSV file here, or click to select a file":"Ziehen Sie eine CSV-Datei hierher oder klicken Sie, um eine Datei auszuwählen","Draw an edge from multiple nodes by beginning the line with a reference":"Zeichnen Sie eine Kante von mehreren Knoten, indem Sie die Zeile mit einer Referenz beginnen.","Drop the file here ...":"Datei hier ablegen ...","Each line becomes a node":"Jede Zeile wird zu einem Knoten","Edge ID, Classes, Attributes":"Kante-ID, Klassen, Attribute","Edge Label":"Kantenbeschriftung","Edge Label Column":"Spalte mit Kantenbeschriftung","Edge Style":"Kantenstil","Edge Text Size":"Kanten Textgröße","Edge missing indentation":"Kante fehlende Einrückung","Edges":"Kanten","Edges are declared in the same row as their source node":"Kanten werden in der gleichen Zeile wie ihr Quellknoten deklariert","Edges are declared in the same row as their target node":"Kanten werden in der gleichen Zeile wie ihr Zielknoten deklariert","Edges are declared in their own row":"Kanten werden in ihrer eigenen Zeile deklariert","Edges can also have ID\'s, classes, and attributes before the label":"Kanten können auch ID\'s, Klassen und Attribute vor der Bezeichnung haben","Edges can be styled with dashed, dotted, or solid lines":"Kanten können mit gestrichelten, punktierten oder soliden Linien gestaltet werden","Edges in Separate Rows":"Kanten in separaten Zeilen","Edges in Source Node Row":"Kanten in Quellknotenzeile","Edges in Target Node Row":"Kanten in Zielknotenzeile","Edit":"Bearbeiten","Edit with AI":"Mit KI bearbeiten","Editable":"Editierbar","Editor":"Editor","Email":"E-Mail","Empty":"Leer","Enable to set a consistent height for all nodes":"Aktivieren Sie die Einstellung einer einheitlichen Höhe für alle Knoten","Enter a name for the cloned flowchart.":"Geben Sie einen Namen für den geklonten Flussdiagramm ein.","Enter a name for the new folder.":"Geben Sie einen Namen für den neuen Ordner ein.","Enter a new name for the {0}.":["Geben Sie einen neuen Namen für den ",["0"]," ein."],"Enter your email address and we\'ll send you a magic link to sign in.":"Geben Sie Ihre E-Mail-Adresse ein, und wir senden Ihnen einen magischen Link, um sich anzumelden.","Enter your email address below and we\'ll send you a link to reset your password.":"Geben Sie unten Ihre E-Mail-Adresse ein, und wir senden Ihnen einen Link, um Ihr Passwort zurückzusetzen.","Equal To":"Gleich","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Jedes Diagramm wird als gestochen scharfes PNG, SVG oder teilbarer Link exportiert - bereit für das Meeting, das Dokument oder die Präsentation.","Everything you need to know about Flowchart Fun Pro":"Alles, was du über Flowchart Fun Pro wissen musst","Examples":"Beispiele","Excalidraw":"Excalidraw","Exclusive Office Hours":"Exklusive Bürozeiten","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Erleben Sie die Effizienz und Sicherheit des direkten Ladens lokaler Dateien in Ihre Flussdiagramme, ideal für die Verwaltung von Arbeitsdokumenten offline. Entsperren Sie diese exklusive Pro-Funktion und mehr mit Flowchart Fun Pro, erhältlich für nur $6/Monat.","Explore Pro":"Erkunde Pro","Explore more":"Erkunde mehr","Export":"Exportieren","Export clean diagrams without branding":"Exportieren Sie saubere Diagramme ohne Branding","Export to PNG & JPG":"Exportieren Sie nach PNG & JPG","Export to PNG, JPG, and SVG":"Exportieren Sie nach PNG, JPG und SVG","Feature Breakdown":"Funktionsübersicht","Feedback":"Feedback","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Fühlen Sie sich frei, zu erkunden und uns über die <0>Feedback0>-Seite zu kontaktieren, sollten Sie irgendwelche Bedenken haben.","Fine-tune layouts and visual styles":"Feinabstimmung von Layouts und visuellen Stilen","Fixed Height":"Feste Höhe","Fixed Node Height":"Fester Knotenhöhe","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Mit Flowchart Fun Pro erhalten Sie unbegrenzte Flussdiagramme, unbegrenzte Mitarbeiter und unbegrenzten Speicherplatz für nur $6/Monat.","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun wird von einem Entwickler gebaut und gepflegt. Deine Unterstützung hält es am Laufen.","Follow Us on Twitter":"Folgen Sie uns auf Twitter","Font Family":"Schriftfamilie","Forgot your password?":"Haben Sie Ihr Passwort vergessen?","Free":"Kostenlos","Free users: charts in the sandbox expire after 7 days.":"Kostenlose Benutzer: Diagramme im Sandbox-Modus laufen nach 7 Tagen ab.","Frequently Asked Questions":"Häufig gestellte Fragen","Full-screen, read-only, and template sharing":"Vollbild, Nur-Lesen und Vorlagenfreigabe","Fullscreen":"Vollbild","General":"Allgemein","Generate flowcharts from text automatically":"Generieren Sie automatisch Flussdiagramme aus Texten","Get Pro Access Now":"Erhalten Sie jetzt Pro-Zugang","Get Unlimited AI Requests":"Erhalten Sie unbegrenzte KI-Anfragen","Get rapid responses to your questions":"Erhalten Sie schnelle Antworten auf Ihre Fragen","Get unlimited flowcharts and premium features":"Erhalten Sie unbegrenzte Flussdiagramme und Premium-Funktionen","Go back home":"Geh zurück nach Hause","Go to the Editor":"Gehe zum Editor","Go to your Sandbox":"Gehe zu deinem Sandkasten","Graph":"Diagramm","Green?":"Grün?","Grid":"Raster","Have complex questions or issues? We\'re here to help.":"Haben Sie komplexe Fragen oder Probleme? Wir sind hier, um zu helfen.","Here are some Pro features you can now enjoy.":"Hier sind einige Pro-Funktionen, die Sie jetzt genießen können.","High-quality exports with embedded fonts":"Hochwertige Exporte mit eingebetteten Schriftarten","History":"Verlauf","Home":"Startseite","How are edges declared in this data?":"Wie werden Kanten in diesen Daten deklariert?","How fast can I actually make something?":"Wie schnell kann ich tatsächlich etwas erstellen?","How would you like to save your chart?":"Wie möchten Sie Ihren Chart speichern?","I would like to request a new template:":"Ich möchte gerne eine neue Vorlage anfordern:","ID\'s":"IDs","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Wenn ein Konto mit dieser E-Mail vorhanden ist, haben wir Ihnen eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts gesendet.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Wenn Sie eine Kante erstellen möchten, rücken Sie diese Zeile ein. Wenn nicht, entkomme dem Doppelpunkt mit einem Backslash <0>\\\\:0>","Images":"Bilder","Import Data":"Daten importieren","Import data from a CSV file.":"Daten aus einer CSV-Datei importieren.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Daten aus jeder CSV-Datei importieren und auf einem neuen Flussdiagramm abbilden. Dies ist eine großartige Möglichkeit, Daten aus anderen Quellen wie Lucidchart, Google Sheets und Visio zu importieren.","Import from CSV":"Importieren Sie aus CSV","Import from Visio, Lucidchart, CSV":"Importiere aus Visio, Lucidchart, CSV.","Import from Visio, Lucidchart, and CSV":"Importieren Sie von Visio, Lucidchart und CSV","Import from anywhere":"Aus beliebiger Quelle importieren","Import from popular diagram tools":"Importieren Sie aus beliebten Diagramm-Tools","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importieren Sie Ihr Diagramm mithilfe einer dieser CSV-Dateien in Microsoft Visio.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Der Import von Daten ist eine Pro-Funktion. Sie können auf Flowchart Fun Pro für nur $6/Monat upgraden.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Fügen Sie einen Titel mit einem <0>title0>-Attribut ein. Um die Visio-Farbgebung zu verwenden, fügen Sie ein <1>roleType1>-Attribut gleich einem der folgenden hinzu:","Indent to connect nodes":"Rücke ein, um Knoten zu verbinden","Info":"Info","Is":"Ist","Is my data private?":"Ist meine Daten privat?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas ist eine JSON-Repräsentation Ihres Diagramms, die von <0>Obsidian0> Canvas und anderen Anwendungen verwendet wird.","Join 2000+ professionals who\'ve upgraded their workflow":"Werden Sie Teil von über 2000 Fachleuten, die ihren Arbeitsablauf verbessert haben","Join thousands of happy users who love Flowchart Fun":"Werde Teil von Tausenden zufriedenen Nutzern, die Flowchart Fun lieben","Keep Things Private":"Halte Dinge privat","Keep changes?":"Änderungen speichern?","Keep practicing":"Übe weiter","Keep your data private on your computer":"Halten Sie Ihre Daten privat auf Ihrem Computer","Language":"Sprache","Layout":"Layout","Layout Algorithm":"Layout-Algorithmus","Layout Frozen":"Layout eingefroren","Leading References":"Führende Referenzen","Learn More":"Mehr erfahren","Learn Syntax":"Syntax lernen","Learn about Flowchart Fun Pro":"Erfahren Sie mehr über Flowchart Fun Pro","Left to Right":"Von links nach rechts","Let us know why you\'re canceling. We\'re always looking to improve.":"Lassen Sie uns wissen, warum Sie stornieren. Wir sind immer auf der Suche nach Verbesserungen.","Light":"Hell","Light Mode":"Heller Modus","Link":"Link","Link back":"Verlinke zurück","Load":"Laden","Load Chart":"Chart laden","Load File":"Datei laden","Load Files":"Dateien laden","Load default content":"Standardinhalt laden","Load from link?":"Von Link laden?","Load layout and styles":"Layout und Stile laden","Loading...":"Wird geladen...","Local File Support":"Lokale Dateiunterstützung","Local saving for offline access":"Lokales Speichern für den Offline-Zugriff","Lock Zoom to Graph":"Zoom an Graph anpassen","Log In":"Anmelden","Log Out":"Abmelden","Log in to Save":"Einloggen, um zu speichern","Log in to upgrade your account":"Melde dich an, um dein Konto zu aktualisieren","Make a One-Time Donation":"Machen Sie eine einmalige Spende","Make it yours":"Mach es zu deinem","Make publicly accessible":"Öffentlich zugänglich machen","Manage Billing":"Abrechnung verwalten","Map Data":"Daten abbilden","Maximum width of text inside nodes":"Maximale Breite des Textes innerhalb der Knoten","Monthly":"Monatlich","Move":"Verschieben","Move {0}":["Verschieben ",["0"]],"Multiple pointers on same line":"Mehrere Zeiger auf derselben Zeile","My dog ate my credit card!":"Mein Hund hat meine Kreditkarte gefressen!","Name":"Name","Name Chart":"Diagramm benennen","Name your chart":"Benennen Sie Ihren Chart","New":"Neues","New Email":"Neue e-mail","New Flowchart":"Neue Flussdiagramm","New Folder":"Neuer Ordner","Next charge":"Nächste Gebühr","No Edges":"Keine Kanten","No Folder (Root)":"Kein Ordner (Hauptverzeichnis)","No Watermarks!":"Keine Wasserzeichen!","No charts yet":"Keine Diagramme vorhanden","No items in this folder":"Keine Elemente in diesem Ordner","No matching charts found":"Keine übereinstimmenden Diagramme gefunden","Node Border Style":"Knotenrahmenstil","Node Colors":"Knotenfarben","Node ID":"Knoten-ID","Node ID, Classes, Attributes":"Knoten-ID, Klassen, Attribute","Node Label":"Knotenbeschriftung","Node Shape":"Knotenform","Node Shapes":"Knotenformen","Nodes":"Knoten","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Knoten können mit gestrichelt, punktiert oder doppelt gestaltet werden. Grenzen können auch mit border_none entfernt werden.","Not Empty":"Nicht leer","Now you\'re thinking with flowcharts!":"Jetzt denkst du mit Flussdiagrammen!","Office Hours":"Geschäftszeiten","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"legentlich landet der magische Link in Ihrem Spam-Ordner. Wenn Sie ihn nach ein paar Minuten nicht sehen, überprüfen Sie dort oder fordern Sie einen neuen Link an.","One on One Support":"Eins-zu-eins-Unterstützung","One-on-One Support":"One-on-One-Support","Open Customer Portal":"Öffnen Sie das Kundenportal","Operation canceled":"Operation abgebrochen","Or maybe blue!":"Oder vielleicht blau!","Organization Chart":"Organigramm","PNG & JPG export":"PNG- und JPG-Export","Padding":"Polsterung","Page not found":"Seite nicht gefunden","Password":"Passwort","Past Due":"Überfällig","Paste a document to convert it":"Füge ein Dokument ein, um es zu konvertieren","Paste your document or outline here to convert it into an organized flowchart.":"Fügen Sie Ihr Dokument oder Ihre Gliederung hier ein, um es in einen organisierten Flussdiagramm umzuwandeln.","Pasted content detected. Convert to Flowchart Fun syntax?":"Eingefügter Inhalt erkannt. In Flowchart Fun-Syntax konvertieren?","Perfect for docs and quick sharing":"Perfekt für Dokumente und schnelles Teilen","Permanent Charts are a Pro Feature":"Permanente Diagramme sind eine Pro-Funktion","Playbook":"Spielbuch","Pointer and container on same line":"Zeiger und Container auf derselben Zeile","Priority One-on-One Support":"Priorisierte Einzelunterstützung","Priority support":"Prioritätssupport","Privacy Policy":"Datenschutzerklärung","Pro starts at $4/mo billed yearly. Cancel anytime.":"Pro beginnt bei $4/Monat jährlich abgerechnet. Jederzeit kündbar.","Pro tip: Right-click any node to customize its shape and color":"Pro-Tipp: Klicken Sie mit der rechten Maustaste auf einen Knoten, um seine Form und Farbe anzupassen.","Processing Data":"Datenverarbeitung","Processing...":"Verarbeitung...","Prompt":"Aufforderung","Public":"Öffentlich","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Daten von Visio, Lucidchart, CSV importieren oder mit einer Vorlage beginnen. Kein erneutes Erstellen von bereits vorhandenen Inhalten.","Quick experimentation space that resets daily":"Schneller Experimentierraum, der täglich zurückgesetzt wird","Random":"Zufällig","Rapid Deployment Templates":"Schnellbereitstellungsvorlagen","Rapid Templates":"Schnelle Vorlagen","Raster Export (PNG, JPG)":"Raster-Export (PNG, JPG)","Rate limit exceeded. Please try again later.":"Die Rate-Limit wurde überschritten. Bitte versuchen Sie es später erneut.","Read-only":"Schreibgeschützt","Reference by Class":"Referenz nach Klasse","Reference by ID":"Referenz nach ID","Reference by Label":"Referenz nach Label","References":"Referenzen","References are used to create edges between nodes that are created elsewhere in the document":"Referenzen werden verwendet, um Kanten zwischen Knoten zu erstellen, die anderswo im Dokument erstellt werden","Referencing a node by its exact label":"Referenzierung eines Knotens durch sein exaktes Label","Referencing a node by its unique ID":"Referenzierung eines Knotens durch seine eindeutige ID","Referencing multiple nodes with the same assigned class":"Mehrere Knoten mit der selben zugewiesenen Klasse referenzieren","Refresh Page":"Seite aktualisieren","Reload to Update":"Neu laden, um zu aktualisieren","Rename":"Umbenennen","Rename {0}":[["0"]," umbenennen"],"Request Magic Link":"Magic-Link anfordern","Request Password Reset":"Passwort zurücksetzen anfordern","Reset":"Zurücksetzen","Reset Password":"Passwort zurücksetzen","Resume Subscription":"Abonnement fortsetzen","Return":"Zurückkehren","Right to Left":"Von rechts nach links","Right-click nodes for options":"Klicke mit der rechten Maustaste auf Knoten für Optionen","Roadmap":"Fahrplan","Rotate Label":"Label drehen","SVG Export is a Pro Feature":"SVG-Export ist eine Pro-Funktion","SVG, PDF & all export formats":"SVG, PDF und alle Exportformate","Satisfaction guaranteed or first payment refunded":"Zufriedenheitsgarantie oder erste Zahlung erstattet","Save":"Speichern","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Lokal speichern, offline arbeiten und genau kontrollieren, wer was sieht. Keine Daten verlassen Ihren Computer, es sei denn, Sie sagen es.","Save time with AI and dictation, making it easy to create diagrams.":"Sparen Sie Zeit mit KI und Diktat, um Diagramme einfach zu erstellen.","Save to Cloud":"In die Cloud speichern","Save to File":"In Datei speichern","Save your Work":"Speichern Sie Ihre Arbeit","Schedule personal consultation sessions":"Persönliche Beratungssitzungen planen","Secure payment":"Sichere Zahlung","See more reviews on Product Hunt":"Schau dir weitere Bewertungen auf Product Hunt an","See what\'s possible":"Sehen, was möglich ist","Select a destination folder for \\"{0}\\".":"Wählen Sie einen Zielordner für \\\\","Send us a message":"Schreiben Sie uns eine Nachricht","Set a consistent height for all nodes":"Legen Sie eine einheitliche Höhe für alle Knoten fest","Settings":"Einstellungen","Share":"Teilen","Sign In":"Anmelden","Sign in with <0>GitHub0>":"Anmelden mit <0>GitHub0>","Sign in with <0>Google0>":"Anmelden mit <0>Google0>","Sorry! This page is only available in English.":"Entschuldigung! Diese Seite ist nur auf Englisch verfügbar.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Entschuldigung, es gab einen Fehler bei der Konvertierung des Textes in einen Flussdiagramm. Versuchen Sie es später erneut.","Sort Ascending":"Aufsteigend sortieren","Sort Descending":"Absteigend sortieren","Sort by {0}":["Sortieren nach ",["0"]],"Source Arrow Shape":"Pfeilform der Quelle","Source Column":"Quellspalte","Source Delimiter":"Quell-Trennzeichen","Source Distance From Node":"Abstand der Quelle vom Knoten","Source/Target Arrow Shape":"Quelle/Ziel-Pfeilform","Spacing":"Abstand","Special Attributes":"Spezielle Attribute","Start":"Start","Start Over":"Von vorne anfangen","Start faster with use-case specific templates":"Schnellerer Einstieg mit anwendungsspezifischen Vorlagen","Start for free":"Kostenlos starten","Status":"Status","Step 1":"Schritt 1","Step 2":"Schritt 2","Step 3":"Schritt 3","Store any data associated to a node":"Speichern Sie alle Daten, die einem Knoten zugeordnet sind","Style Classes":"Stil-Klassen","Style with classes":"Mit Klassen gestalten","Submit":"Einsenden","Subscription":"Abonnement","Subscription Successful!":"Abonnement erfolgreich!","Subscription will end":"Abonnement wird beendet","Support":"Unterstützung","Target Arrow Shape":"Pfeilform des Ziels","Target Column":"Ziel-Spalte","Target Delimiter":"Ziel-Trennzeichen","Target Distance From Node":"Zielabstand vom Knoten ","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Sage dem AI in einfachem Englisch, was du brauchst. Dein Diagramm wird in Sekundenschnelle erstellt.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Sag uns, was funktioniert und was nicht. Jede Nachricht wird vom Entwickler gelesen.","Text Color":"Textfarbe ","Text Horizontal Offset":"Text Horizontaler Versatz","Text Leading":"Textführung ","Text Max Width":"Text Max Breite","Text Vertical Offset":"Textvertikaler Abstand ","Text followed by colon+space creates an edge with the text as the label":"Text gefolgt von Doppelpunkt + Leerzeichen erstellt eine Kante mit dem Text als Label","Text on a line creates a node with the text as the label":"Text in einer Zeile erstellt einen Knoten mit dem Text als Label","Thank you for your feedback!":"Danke für Ihr Feedback!","The beauty and magic reside in the minimalism.":"Die Schönheit und Magie stecken im Minimalismus.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"Der beste Weg, um Stile zu ändern, besteht darin, mit der rechten Maustaste auf einen Knoten oder eine Kante zu klicken und den gewünschten Stil auszuwählen.","The column that contains the edge label(s)":"Die Spalte, die die Kantenbeschriftung(en) enthält","The column that contains the source node ID(s)":"Die Spalte, die die Quellknoten-ID(en) enthält","The column that contains the target node ID(s)":"Die Spalte, die die Zielknoten-ID(en) enthält","The delimiter used to separate multiple source nodes":"Der Trennzeichen, das verwendet wird, um mehrere Quellknoten zu trennen","The delimiter used to separate multiple target nodes":"Der Trennzeichen, das verwendet wird, um mehrere Zielknoten zu trennen","The fastest way to turn what\'s in your head into something everyone else can understand.":"Der schnellste Weg, um das, was in deinem Kopf ist, in etwas zu verwandeln, das jeder andere verstehen kann.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"Der kostenlose Plan eignet sich hervorragend für den täglichen Gebrauch. Wenn du Pro-Funktionen benötigst, ist es monatlich für $6 erhältlich - jederzeit kündbar ohne Verpflichtung.","The possible shapes are:":"Die möglichen Formen sind:","Theme":"Thema ","Theme Customization Editor":"Theme-Anpassungseditor","Theme Editor":"Themen-Editor","Theme editor":"Design-Editor","There are no edges in this data":"Es gibt keine Kanten in diesen Daten","This action cannot be undone.":"Diese Aktion kann nicht rückgängig gemacht werden.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Diese Funktion ist nur für Pro-Benutzer verfügbar. <0>Werden Sie Pro-Nutzer0>, um es freizuschalten.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Dies kann je nach Länge Ihrer Eingabe zwischen 30 Sekunden und 2 Minuten dauern.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Diese Sandbox ist perfekt zum Experimentieren, aber denk daran - sie wird täglich zurückgesetzt. Upgrade jetzt und behalte deine aktuelle Arbeit!","This will replace the current content.":"Dies ersetzt den aktuellen Inhalt.","This will replace your current chart content with the template content.":"Dies ersetzt den aktuellen Inhalt deines Diagramms mit dem Vorlageneinhalt.","This will replace your current sandbox.":"Dies ersetzt deine aktuelle Sandbox.","Time to decide":"Zeit zum Entscheiden","Tip":"Tipp","To fix this change one of the edge IDs":"Um dies zu beheben, ändern Sie eine der Kanten-IDs","To fix this change one of the node IDs":"Um das zu beheben, ändern Sie eine der Knoten-IDs","To fix this move one pointer to the next line":"Um das zu beheben, verschieben Sie einen Zeiger auf die nächste Zeile","To fix this start the container <0/> on a different line":"Um dies zu beheben, starten Sie den Container <0/> auf einer anderen Zeile.","To learn more about why we require you to log in, please read <0>this blog post0>.":"Um mehr darüber zu erfahren, warum wir Sie zum Anmelden auffordern, lesen Sie bitte <0>diesen Blog-Beitrag0>.","Top to Bottom":"Von oben nach unten","Transform Your Ideas into Professional Diagrams in Seconds":"Transformieren Sie Ihre Ideen in professionelle Diagramme in Sekunden","Transform text into diagrams instantly":"Verwandeln Sie Texte sofort in Diagramme","Try AI":"Probieren Sie KI","Try adjusting your search or filters to find what you\'re looking for.":"Versuche, deine Suche oder Filter anzupassen, um das Gewünschte zu finden.","Try again":"Erneut versuchen","Try it free":"Kostenlos ausprobieren","Two edges have the same ID":"Zwei Kanten haben die gleiche ID","Two nodes have the same ID":"Zwei Knoten haben die gleiche ID","Type it. See it.":"Schreib es. Sieh es.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Oh oh, du hast keine kostenlosen Anfragen mehr! Upgrade auf Flowchart Fun Pro für unbegrenzte Diagramm-Konvertierungen und verwandle Text weiterhin mühelos in klare, visuelle Flussdiagramme wie durch Kopieren und Einfügen.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Unter 60 Sekunden. Tippe ein paar Zeilen Text ein oder beschreibe der KI, was du brauchst, und dein Diagramm erscheint sofort. Exportiere oder teile es mit nur einem Klick.","Undo":"Rückgängig","Unescaped special character":"Nicht maskiertes Sonderzeichen","Unique text value to identify a node":"Einzigartiger Textwert, um einen Knoten zu identifizieren","Unknown":"Unbekannt","Unknown Parsing Error":"Unbekannter Parser-Fehler","Unlimited Flowcharts":"Unbegrenzte Flowcharts","Unlimited Permanent Flowcharts":"Unbegrenzte permanente Flowcharts","Unlimited cloud-saved flowcharts":"Unbegrenzte in der Cloud gespeicherte Flussdiagramme","Unlimited saved diagrams":"Unbegrenzt gespeicherte Diagramme","Unlock AI Features and never lose your work with a Pro account.":"Entsperren Sie KI-Funktionen und verlieren Sie nie wieder Ihre Arbeit mit einem Pro-Konto.","Unlock Unlimited AI Flowcharts":"Entsperren Sie unbegrenzte AI-Flussdiagramme","Unpaid":"Unbezahlt","Update Email":"E-Mail aktualisieren","Updated Date":"Aktualisierungsdatum ","Upgrade Now - Save My Work":"Jetzt upgraden - Meine Arbeit speichern","Upgrade to Flowchart Fun Pro and unlock:":"Upgrade auf Flowchart Fun Pro und schalte frei:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Upgrade auf Flowchart Fun Pro, um SVG-Export freizuschalten und mehr fortschrittliche Funktionen für Ihre Diagramme zu nutzen.","Upgrade to Pro":"Auf Pro upgraden","Upgrade to Pro for permanent charts.":"Upgrade auf Pro für dauerhafte Charts.","Upload your File":"Laden Sie Ihre Datei hoch","Use Custom CSS Only":"Nur benutzerdefinierte CSS verwenden","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Verwenden Sie Lucidchart oder Visio? Der CSV-Import erleichtert das Abrufen von Daten aus jeder Quelle!","Use classes to group nodes":"Verwenden Sie Klassen, um Knoten zu gruppieren","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Verwenden Sie das Attribut <0>href0>, um einem Knoten einen Link zu setzen, der in einem neuen Tab geöffnet wird.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Verwenden Sie das Attribut <0>src0>, um das Bild eines Knotens zu setzen. Das Bild wird an den Knoten angepasst, sodass Sie möglicherweise die Breite und Höhe des Knotens anpassen müssen, um das gewünschte Ergebnis zu erzielen. Es werden nur öffentliche Bilder (nicht von CORS blockiert) unterstützt.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Verwenden Sie die Attribute <0>w0> und <1>h1>, um die Breite und Höhe eines Knotens explizit festzulegen.","Use the customer portal to change your billing information.":"Verwenden Sie das Kundenportal, um Ihre Rechnungsinformationen zu ändern.","Use these settings to adapt the look and behavior of your flowcharts":"Verwenden Sie diese Einstellungen, um das Aussehen und Verhalten Ihrer Flussdiagramme anzupassen","Use this file for org charts, hierarchies, and other organizational structures.":"Verwenden Sie diese Datei für Organigramme, Hierarchien und andere Organisationsstrukturen.","Use this file for sequences, processes, and workflows.":"Verwenden Sie diese Datei für Sequenzen, Prozesse und Workflows.","Use this mode to modify and enhance your current chart.":"Verwenden Sie diesen Modus, um Ihre aktuelle Tabelle zu ändern und zu verbessern.","Used at":"Verwendet bei","User":"Benutzer","Vector Export (SVG)":"Vektor-Export (SVG)","View on Github":"Auf Github ansehen","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Möchten Sie ein Flussdiagramm aus einem Dokument erstellen? Fügen Sie es in den Editor ein und klicken Sie auf \\"In Flussdiagramm umwandeln\\".","Watermark-Free Diagrams":"Wasserzeichenfreie Diagramme","Watermarks":"Wasserzeichen","Welcome to Flowchart Fun":"Willkommen bei Flowchart Spaß","What if I just need it for one project?":"Was ist, wenn ich es nur für ein Projekt brauche?","What our users are saying":"Was unsere Nutzer sagen","What\'s next?":"Was kommt als Nächstes?","What\'s this?":"Was ist das?","Width":"Breite","Width and Height":"Breite und Höhe","Will my diagrams actually look professional?":"Werden meine Diagramme tatsächlich professionell aussehen?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Mit der Pro-Version von Flowchart Fun können Sie natürliche Sprachbefehle verwenden, um schnell Ihre Flussdiagrammdetails auszuarbeiten, ideal für die Erstellung von Diagrammen unterwegs. Für 6 $/Monat erhalten Sie die Leichtigkeit der zugänglichen KI-Bearbeitung, um Ihre Flussdiagrammerfahrung zu verbessern.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Mit der Pro-Version können Sie lokale Dateien speichern und laden. Es ist perfekt für die Verwaltung von Arbeitsdokumenten offline.","Would you like to continue?":"Möchten Sie fortfahren?","Would you like to suggest a new example?":"Möchtest du ein neues Beispiel vorschlagen?","Wrap text in parentheses to connect to any node":"Verwenden Sie Klammern, um mit jedem Knoten zu verbinden","Write like an outline":"Schreiben Sie wie eine Gliederung","Write your prompt here or click to enable the microphone, then press and hold to record.":"Schreiben Sie hier Ihre Aufforderung oder klicken Sie auf das Mikrofon, um es zu aktivieren, dann halten Sie es gedrückt, um aufzunehmen.","Yearly":"Jährlich","Yes — send us a message and we\'ll set you up with a discounted rate.":"Ja - schicken Sie uns eine Nachricht und wir werden Ihnen einen ermäßigten Preis anbieten.","Yes, Replace Content":"Ja, Inhalt ersetzen","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Ja. Jedes Diagramm verwendet ausgewogene, automatische Layouts mit sauberer Typografie. Sie können Themen, Farben und Stile anpassen - und als scharfes SVG oder hochauflösendes PNG exportieren, das in jeder Präsentation oder jedem Dokument großartig aussieht.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Ja. Pro unterstützt den Import von Visio, Lucidchart und CSV - so können Sie bereits vorhandene Diagramme ohne Neuerstellung importieren.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Ja. Du kannst Dateien lokal speichern und laden, komplett offline arbeiten und genau kontrollieren, wer deine Diagramme sehen kann. Keine Daten verlassen deine Maschine, es sei denn, du entscheidest dich für eine Freigabe.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Sie sind dabei, ",["numNodes"]," Knoten und ",["numEdges"]," Kanten zu Ihrem Graphen hinzuzufügen."],"You need to log in to access this page.":"Sie müssen sich anmelden, um auf diese Seite zuzugreifen.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Sie sind bereits ein Pro-Benutzer. <0>Abonnement verwalten0><1/>Haben Sie Fragen oder Feature-Anfragen? <2>Lassen Sie es uns wissen2>","You\'re doing great!":"Du machst das super!","You\'re on the free plan.":"Du bist auf dem kostenlosen Plan.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Sie haben alle Ihre kostenlosen KI-Konvertierungen verwendet. Upgrade auf Pro für unbegrenzte KI-Nutzung, individuelle Themen, private Freigabe und mehr. Erstellen Sie mühelos weiterhin erstaunliche Flussdiagramme!","Your Charts":"Ihre Diagramme","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Dein Sandkasten ist ein Raum, um frei mit unseren Flussdiagramm-Tools zu experimentieren, die jeden Tag zurückgesetzt werden, damit du einen frischen Start hast.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Ihre Diagramme sind schreibgeschützt, da Ihr Konto nicht mehr aktiv ist. Besuchen Sie Ihre <0>Kontoseite0>, um mehr zu erfahren.","Your next diagram should be your best one.":"Dein nächstes Diagramm sollte dein bestes sein.","Your subscription is <0>{statusDisplay}0>.":["Ihre Abonnement ist <0>",["statusDisplay"],"0>."],"Your work stays yours":"Deine Arbeit bleibt deine Eigene.","Zoom In":"Vergrößern","Zoom Out":"Verkleinern","month":"Monat","or":"oder","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"48€/Jahr (33% sparen) · Jederzeit kündbar","$6/mo":"6€/Monat","1 Temporary Flowchart":"1 Vorläufiger Flussdiagramm","1 diagram at a time":"1 Diagramm zur gleichen Zeit","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Nur benutzerdefiniertes CSS0> ist aktiviert. Nur die Layout- und Erweiterten Einstellungen werden angewandt.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> ist ein Open-Source-Projekt von <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Anmelden0> / <1>Registrieren1> mit E-Mail und Passwort","A new version of the app is available. Please reload to update.":"Eine neue Version der App ist verfügbar. Bitte neu laden, um zu aktualisieren.","AI Creation & Editing":"KI-Erstellung & Bearbeitung","AI generation & editing":"KI-Generierung & Bearbeitung","AI-Powered Flowchart Creation":"KI-unterstützte Erstellung von Flussdiagrammen","AI-generated from plain text in under 5 seconds.":"In unter 5 Sekunden aus einfachem Text generiert.","AI-powered editing to supercharge your workflow":"KI-unterstützte Bearbeitung zur Beschleunigung Ihres Arbeitsablaufs","About":"Über","Account":"Konto","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Fügen Sie einen Backslash (<0>\\\\0>) vor jedem Sonderzeichen ein: <1>(1>, <2>:2>, <3>#3>, oder <4>.4>`","Add some steps":"Füge einige Schritte hinzu","Advanced":"Fortgeschritten","Align Horizontally":"Horizontal ausrichten","Align Nodes":"Ausrichten von Knoten","Align Vertically":"Vertikal ausrichten","All this for just $6/month - less than your daily coffee ☕":"All dies für nur $6/Monat - weniger als Ihr täglicher Kaffee ☕","Always presentation-ready":"Immer präsentationsbereit","Amount":"Betrag","An error occurred. Try resubmitting or email {0} directly.":["Es ist ein Fehler aufgetreten. Versuchen Sie, es erneut einzureichen oder senden Sie eine E-Mail direkt an ",["0"],"."],"Appearance":"Erscheinungsbild","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"Sind Sie sicher, dass Sie den Flussdiagramm löschen möchten? ","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"Sind Sie sicher, dass Sie den Ordner löschen möchten? ","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"Sind Sie sicher, dass Sie den Ordner löschen möchten? ","Are you sure?":"Bist du sicher?","Arrow Size":"Größe des Pfeils","Attributes":"Attribute","August 2023":"August 2023","Back":"Zurück","Back To Editor":"Zurück zum Editor","Background Color":"Hintergrundfarbe","Basic Flowchart":"Grundlegender Flussdiagramm","Become a Github Sponsor":"Werden Sie ein Github-Sponsor","Become a Pro User":"Werden Sie ein Pro-Benutzer","Begin your journey":"Beginne deine Reise","Billed annually at $48":"Jährlich abgerechnet für $48","Billed monthly at $6":"Monatlich für $6 berechnet","Blog":"Blog","Book a Meeting":"Ein Treffen buchen","Border Color":"Rahmenfarbe","Border Width":"Rahmenbreite","Bottom to Top":"Von unten nach oben","Breadthfirst":"In die Breite","Build your personal flowchart library":"Erstellen Sie Ihre persönliche Flussdiagramm-Bibliothek","Can I import my existing diagrams?":"Kann ich meine bestehenden Diagramme importieren?","Cancel":"Abbrechen","Cancel anytime":"Jederzeit kündbar","Cancel your subscription. Your hosted charts will become read-only.":"Kündigen Sie Ihr Abonnement. Ihre gehosteten Diagramme werden schreibgeschützt.","Certain attributes can be used to customize the appearance or functionality of elements.":"Bestimmte Attribute können verwendet werden, um das Aussehen oder die Funktionalität von Elementen anzupassen.","Change Email Address":"E-Mail Adresse ändern","Changelog":"Änderungsprotokoll","Charts":"Diagramme","Check out the guide:":"Schau dir die Anleitung an:","Check your email for a link to log in.<0/>You can close this window.":"Überprüfen Sie Ihre E-Mail auf einen Link zum Einloggen. Sie können dieses Fenster schließen.","Choose":"Wählen","Choose Template":"Vorlage auswählen","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Wählen Sie aus einer Vielzahl von Pfeilformen für die Quelle und das Ziel einer Kante aus. Formen beinhalten Dreieck, Dreieck-Tee, Kreis-Dreieck, Dreieck-Kreuz, Dreieck-Rückbiegung, Vee, Tee, Quadrat, Kreis, Diamant, Chevron und keine.","Choose how edges connect between nodes":"Wählen Sie, wie Kanten zwischen Knoten verbunden werden","Choose how nodes are automatically arranged in your flowchart":"Wählen Sie aus, wie Knoten automatisch in Ihrem Flussdiagramm angeordnet werden","Circle":"Kreis","Classes":"Klassen","Clear":"Löschen","Clear text?":"Text löschen?","Clone":"Klon","Clone Flowchart":"Flussdiagramm klonen ","Close":"Schließen","Color":"Farbe","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Farben beinhalten Rot, Orange, Gelb, Blau, Violett, Schwarz, Weiß und Grau.","Column":"Spalte","Comment":"Kommentar","Community templates":"Community-Vorlagen","Compare our plans and find the perfect fit for your flowcharting needs":"Vergleichen Sie unsere Pläne und finden Sie die perfekte Lösung für Ihre Flussdiagramm-Bedürfnisse","Concentric":"Konzentrisch","Confirm New Email":"Neue E-Mail bestätigen","Confirm your email address to sign in.":"Bestätigen Sie Ihre E-Mail-Adresse, um sich anzumelden.","Connect your Data":"Verbinden Sie Ihre Daten","Containers":"Behälter","Containers are nodes that contain other nodes. They are declared using curly braces.":"Container sind Knoten, die andere Knoten enthalten. Sie werden mit geschweiften Klammern deklariert.","Continue":"Weiter","Continue in Sandbox (Resets daily, work not saved)":"Weiter im Sandbox-Modus (wird täglich zurückgesetzt, Arbeit wird nicht gespeichert)","Controls the flow direction of hierarchical layouts":"Steuert die Flussrichtung von hierarchischen Layouts","Convert":"Umwandeln","Convert to Flowchart":"In Flussdiagramm konvertieren","Convert to hosted chart?":"In gehostetes Diagramm konvertieren?","Cookie Policy":"Cookie-Richtlinie","Copied SVG code to clipboard":"SVG-Code in Zwischenablage kopiert","Copied {format} to clipboard":[["Format"]," in Zwischenablage kopiert"],"Copy":"Kopieren","Copy PNG Image":"PNG-Bild kopieren","Copy SVG Code":"Kopieren Sie den SVG-Code","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Kopiere deinen Excalidraw-Code und füge ihn in <0>excalidraw.com0> ein, um ihn zu bearbeiten. Diese Funktion ist experimentell und funktioniert möglicherweise nicht mit allen Diagrammen. Wenn du einen Fehler findest, <1>lass es uns wissen1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Kopieren Sie Ihren mermaid.js-Code oder öffnen Sie ihn direkt im mermaid.js Live-Editor.","Create":"Erstellen","Create Flowcharts using AI":"Erstellen Sie Flussdiagramme mit KI","Create Unlimited Flowcharts":"Erstellen Sie unbegrenzte Flussdiagramme","Create a New Chart":"Nein Diagramm erstellen","Create a flowchart showing the steps of planning and executing a school fundraising event":"Erstelle einen Flussdiagramm, das die Schritte zur Planung und Durchführung eines Schul-Fundraising-Events zeigt","Create a new flowchart to get started or organize your work with folders.":"Erstellen Sie ein neues Flussdiagramm, um zu beginnen oder organisieren Sie Ihre Arbeit mit Ordnern. ","Create flowcharts instantly: Type or paste text, see it visualized.":"Erstellen Sie sofort Flussdiagramme: Tippen oder fügen Sie Text ein, sehen Sie ihn visualisiert.","Create unlimited diagrams for just $6/month!":"Erstellen Sie unbegrenzt Diagramme für nur $6/Monat!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Erstellen Sie unbegrenzte Flussdiagramme, die in der Cloud gespeichert sind und überall zugänglich sind!","Create with AI":"Erstellen mit KI","Created Date":"Erstellungsdatum","Creating an edge between two nodes is done by indenting the second node below the first":"Eine Kante zwischen zwei Knoten wird erstellt, indem der zweite Knoten unter dem ersten eingerückt wird","Curve Style":"Kurvenstil","Custom CSS":"Benutzerdefiniertes CSS","Custom Sharing Options":"Benutzerdefinierte Freigabeoptionen","Custom sharing & public links":"Individuelle Freigabe und öffentliche Links","Customer Portal":"Kundenportal","Daily Sandbox Editor":"Täglicher Sandbox-Editor","Dark":"Dunkel","Dark Mode":"Dunkelmodus","Data Import (Visio, Lucidchart, CSV)":"Datenimport (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Datenimportfunktion für komplexe Diagramme","Date":"Datum","Delete":"Löschen","Delete {0}":["Lösche ",["0"]],"Describe it and it appears":"Beschreiben Sie es und es erscheint","Describe your idea. Get a diagram worth presenting.":"Beschreiben Sie Ihre Idee. Erhalten Sie ein präsentationswürdiges Diagramm.","Design a software development lifecycle flowchart for an agile team":"Entwerfe einen Software-Entwicklungs-Lebenszyklus-Flussdiagramm für ein agiles Team","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Entwickle einen Entscheidungsbaum für einen CEO, um potenzielle neue Marktmöglichkeiten zu bewerten.","Direction":"Richtung","Dismiss":"Entlassen","Do you offer discounts for students or nonprofits?":"Bieten Sie Rabatte für Studenten oder gemeinnützige Organisationen an?","Do you want to delete this?":"Möchten Sie dies löschen?","Document":"Document","Don\'t Lose Your Work":"Verliere deine Arbeit nicht","Download":"Herunterladen","Download JPG":"JPG herunterladen","Download PNG":"PNG herunterladen","Download SVG":"SVG herunterladen","Drag and drop a CSV file here, or click to select a file":"Ziehen Sie eine CSV-Datei hierher oder klicken Sie, um eine Datei auszuwählen","Draw an edge from multiple nodes by beginning the line with a reference":"Zeichnen Sie eine Kante von mehreren Knoten, indem Sie die Zeile mit einer Referenz beginnen.","Drop the file here ...":"Datei hier ablegen ...","Each line becomes a node":"Jede Zeile wird zu einem Knoten","Edge ID, Classes, Attributes":"Kante-ID, Klassen, Attribute","Edge Label":"Kantenbeschriftung","Edge Label Column":"Spalte mit Kantenbeschriftung","Edge Style":"Kantenstil","Edge Text Size":"Kanten Textgröße","Edge missing indentation":"Kante fehlende Einrückung","Edges":"Kanten","Edges are declared in the same row as their source node":"Kanten werden in der gleichen Zeile wie ihr Quellknoten deklariert","Edges are declared in the same row as their target node":"Kanten werden in der gleichen Zeile wie ihr Zielknoten deklariert","Edges are declared in their own row":"Kanten werden in ihrer eigenen Zeile deklariert","Edges can also have ID\'s, classes, and attributes before the label":"Kanten können auch ID\'s, Klassen und Attribute vor der Bezeichnung haben","Edges can be styled with dashed, dotted, or solid lines":"Kanten können mit gestrichelten, punktierten oder soliden Linien gestaltet werden","Edges in Separate Rows":"Kanten in separaten Zeilen","Edges in Source Node Row":"Kanten in Quellknotenzeile","Edges in Target Node Row":"Kanten in Zielknotenzeile","Edit":"Bearbeiten","Edit with AI":"Mit KI bearbeiten","Editable":"Editierbar","Editor":"Editor","Email":"E-Mail","Empty":"Leer","Enable to set a consistent height for all nodes":"Aktivieren Sie die Einstellung einer einheitlichen Höhe für alle Knoten","Enter a name for the cloned flowchart.":"Geben Sie einen Namen für den geklonten Flussdiagramm ein.","Enter a name for the new folder.":"Geben Sie einen Namen für den neuen Ordner ein.","Enter a new name for the {0}.":["Geben Sie einen neuen Namen für den ",["0"]," ein."],"Enter your email address and we\'ll send you a magic link to sign in.":"Geben Sie Ihre E-Mail-Adresse ein, und wir senden Ihnen einen magischen Link, um sich anzumelden.","Enter your email address below and we\'ll send you a link to reset your password.":"Geben Sie unten Ihre E-Mail-Adresse ein, und wir senden Ihnen einen Link, um Ihr Passwort zurückzusetzen.","Equal To":"Gleich","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Jedes Diagramm wird als gestochen scharfes PNG, SVG oder teilbarer Link exportiert - bereit für das Meeting, das Dokument oder die Präsentation.","Everything you need to know about Flowchart Fun Pro":"Alles, was du über Flowchart Fun Pro wissen musst","Examples":"Beispiele","Excalidraw":"Excalidraw","Exclusive Office Hours":"Exklusive Bürozeiten","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Erleben Sie die Effizienz und Sicherheit des direkten Ladens lokaler Dateien in Ihre Flussdiagramme, ideal für die Verwaltung von Arbeitsdokumenten offline. Entsperren Sie diese exklusive Pro-Funktion und mehr mit Flowchart Fun Pro, erhältlich für nur $6/Monat.","Explore Pro":"Erkunde Pro","Explore more":"Erkunde mehr","Export":"Exportieren","Export clean diagrams without branding":"Exportieren Sie saubere Diagramme ohne Branding","Export to PNG & JPG":"Exportieren Sie nach PNG & JPG","Export to PNG, JPG, and SVG":"Exportieren Sie nach PNG, JPG und SVG","Feature Breakdown":"Funktionsübersicht","Feedback":"Feedback","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Fühlen Sie sich frei, zu erkunden und uns über die <0>Feedback0>-Seite zu kontaktieren, sollten Sie irgendwelche Bedenken haben.","Fine-tune layouts and visual styles":"Feinabstimmung von Layouts und visuellen Stilen","Fixed Height":"Feste Höhe","Fixed Node Height":"Fester Knotenhöhe","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Mit Flowchart Fun Pro erhalten Sie unbegrenzte Flussdiagramme, unbegrenzte Mitarbeiter und unbegrenzten Speicherplatz für nur $6/Monat.","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"Flowchart Spaß ist ein Open-Source-Projekt von <0>Tone\xA0Row0>","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun wird von einem Entwickler gebaut und gepflegt. Deine Unterstützung hält es am Laufen.","Follow Us on Twitter":"Folgen Sie uns auf Twitter","Font Family":"Schriftfamilie","Forgot your password?":"Haben Sie Ihr Passwort vergessen?","Free":"Kostenlos","Free users: charts in the sandbox expire after 7 days.":"Kostenlose Benutzer: Diagramme im Sandbox-Modus laufen nach 7 Tagen ab.","Frequently Asked Questions":"Häufig gestellte Fragen","Full-screen, read-only, and template sharing":"Vollbild, Nur-Lesen und Vorlagenfreigabe","Fullscreen":"Vollbild","General":"Allgemein","Generate flowcharts from text automatically":"Generieren Sie automatisch Flussdiagramme aus Texten","Get Pro Access Now":"Erhalten Sie jetzt Pro-Zugang","Get Unlimited AI Requests":"Erhalten Sie unbegrenzte KI-Anfragen","Get rapid responses to your questions":"Erhalten Sie schnelle Antworten auf Ihre Fragen","Get unlimited flowcharts and premium features":"Erhalten Sie unbegrenzte Flussdiagramme und Premium-Funktionen","Go back home":"Geh zurück nach Hause","Go to the Editor":"Gehe zum Editor","Go to your Sandbox":"Gehe zu deinem Sandkasten","Graph":"Diagramm","Green?":"Grün?","Grid":"Raster","Group ranking and ranked-choice voting, free":"Gruppen-Ranking und Rangfolge-Wahl, kostenlos","Have complex questions or issues? We\'re here to help.":"Haben Sie komplexe Fragen oder Probleme? Wir sind hier, um zu helfen.","Here are some Pro features you can now enjoy.":"Hier sind einige Pro-Funktionen, die Sie jetzt genießen können.","High-quality exports with embedded fonts":"Hochwertige Exporte mit eingebetteten Schriftarten","History":"Verlauf","Home":"Startseite","How are edges declared in this data?":"Wie werden Kanten in diesen Daten deklariert?","How fast can I actually make something?":"Wie schnell kann ich tatsächlich etwas erstellen?","How would you like to save your chart?":"Wie möchten Sie Ihren Chart speichern?","I would like to request a new template:":"Ich möchte gerne eine neue Vorlage anfordern:","ID\'s":"IDs","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Wenn ein Konto mit dieser E-Mail vorhanden ist, haben wir Ihnen eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts gesendet.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Wenn Sie eine Kante erstellen möchten, rücken Sie diese Zeile ein. Wenn nicht, entkomme dem Doppelpunkt mit einem Backslash <0>\\\\:0>","Images":"Bilder","Import Data":"Daten importieren","Import data from a CSV file.":"Daten aus einer CSV-Datei importieren.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Daten aus jeder CSV-Datei importieren und auf einem neuen Flussdiagramm abbilden. Dies ist eine großartige Möglichkeit, Daten aus anderen Quellen wie Lucidchart, Google Sheets und Visio zu importieren.","Import from CSV":"Importieren Sie aus CSV","Import from Visio, Lucidchart, CSV":"Importiere aus Visio, Lucidchart, CSV.","Import from Visio, Lucidchart, and CSV":"Importieren Sie von Visio, Lucidchart und CSV","Import from anywhere":"Aus beliebiger Quelle importieren","Import from popular diagram tools":"Importieren Sie aus beliebten Diagramm-Tools","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importieren Sie Ihr Diagramm mithilfe einer dieser CSV-Dateien in Microsoft Visio.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Der Import von Daten ist eine Pro-Funktion. Sie können auf Flowchart Fun Pro für nur $6/Monat upgraden.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Fügen Sie einen Titel mit einem <0>title0>-Attribut ein. Um die Visio-Farbgebung zu verwenden, fügen Sie ein <1>roleType1>-Attribut gleich einem der folgenden hinzu:","Indent to connect nodes":"Rücke ein, um Knoten zu verbinden","Info":"Info","Is":"Ist","Is my data private?":"Ist meine Daten privat?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas ist eine JSON-Repräsentation Ihres Diagramms, die von <0>Obsidian0> Canvas und anderen Anwendungen verwendet wird.","Join 2000+ professionals who\'ve upgraded their workflow":"Werden Sie Teil von über 2000 Fachleuten, die ihren Arbeitsablauf verbessert haben","Join thousands of happy users who love Flowchart Fun":"Werde Teil von Tausenden zufriedenen Nutzern, die Flowchart Fun lieben","Keep Things Private":"Halte Dinge privat","Keep changes?":"Änderungen speichern?","Keep practicing":"Übe weiter","Keep your data private on your computer":"Halten Sie Ihre Daten privat auf Ihrem Computer","Language":"Sprache","Layout":"Layout","Layout Algorithm":"Layout-Algorithmus","Layout Frozen":"Layout eingefroren","Leading References":"Führende Referenzen","Learn More":"Mehr erfahren","Learn Syntax":"Syntax lernen","Learn about Flowchart Fun Pro":"Erfahren Sie mehr über Flowchart Fun Pro","Left to Right":"Von links nach rechts","Let us know why you\'re canceling. We\'re always looking to improve.":"Lassen Sie uns wissen, warum Sie stornieren. Wir sind immer auf der Suche nach Verbesserungen.","Light":"Hell","Light Mode":"Heller Modus","Link":"Link","Link back":"Verlinke zurück","Load":"Laden","Load Chart":"Chart laden","Load File":"Datei laden","Load Files":"Dateien laden","Load default content":"Standardinhalt laden","Load from link?":"Von Link laden?","Load layout and styles":"Layout und Stile laden","Loading...":"Wird geladen...","Local File Support":"Lokale Dateiunterstützung","Local saving for offline access":"Lokales Speichern für den Offline-Zugriff","Lock Zoom to Graph":"Zoom an Graph anpassen","Log In":"Anmelden","Log Out":"Abmelden","Log in to Save":"Einloggen, um zu speichern","Log in to upgrade your account":"Melde dich an, um dein Konto zu aktualisieren","Made by <0>Tone\xA0Row0>":"Hergestellt von <0>Tone\xA0Row0>","Make a One-Time Donation":"Machen Sie eine einmalige Spende","Make it yours":"Mach es zu deinem","Make publicly accessible":"Öffentlich zugänglich machen","Manage Billing":"Abrechnung verwalten","Map Data":"Daten abbilden","Maximum width of text inside nodes":"Maximale Breite des Textes innerhalb der Knoten","Monthly":"Monatlich","More from Tone Row":"Mehr von Tone Row","More from Tone Row:":"Mehr von Tone Row:","More tools:":"Weitere Werkzeuge:","Move":"Verschieben","Move {0}":["Verschieben ",["0"]],"Multiple pointers on same line":"Mehrere Zeiger auf derselben Zeile","My dog ate my credit card!":"Mein Hund hat meine Kreditkarte gefressen!","Name":"Name","Name Chart":"Diagramm benennen","Name your chart":"Benennen Sie Ihren Chart","New":"Neues","New Email":"Neue e-mail","New Flowchart":"Neue Flussdiagramm","New Folder":"Neuer Ordner","Next charge":"Nächste Gebühr","No Edges":"Keine Kanten","No Folder (Root)":"Kein Ordner (Hauptverzeichnis)","No Watermarks!":"Keine Wasserzeichen!","No charts yet":"Keine Diagramme vorhanden","No items in this folder":"Keine Elemente in diesem Ordner","No matching charts found":"Keine übereinstimmenden Diagramme gefunden","Node Border Style":"Knotenrahmenstil","Node Colors":"Knotenfarben","Node ID":"Knoten-ID","Node ID, Classes, Attributes":"Knoten-ID, Klassen, Attribute","Node Label":"Knotenbeschriftung","Node Shape":"Knotenform","Node Shapes":"Knotenformen","Nodes":"Knoten","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Knoten können mit gestrichelt, punktiert oder doppelt gestaltet werden. Grenzen können auch mit border_none entfernt werden.","Not Empty":"Nicht leer","Now you\'re thinking with flowcharts!":"Jetzt denkst du mit Flussdiagrammen!","Office Hours":"Geschäftszeiten","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"legentlich landet der magische Link in Ihrem Spam-Ordner. Wenn Sie ihn nach ein paar Minuten nicht sehen, überprüfen Sie dort oder fordern Sie einen neuen Link an.","One on One Support":"Eins-zu-eins-Unterstützung","One-on-One Support":"One-on-One-Support","Open Customer Portal":"Öffnen Sie das Kundenportal","Operation canceled":"Operation abgebrochen","Or maybe blue!":"Oder vielleicht blau!","Organization Chart":"Organigramm","PNG & JPG export":"PNG- und JPG-Export","Padding":"Polsterung","Page not found":"Seite nicht gefunden","Password":"Passwort","Past Due":"Überfällig","Paste a document to convert it":"Füge ein Dokument ein, um es zu konvertieren","Paste your document or outline here to convert it into an organized flowchart.":"Fügen Sie Ihr Dokument oder Ihre Gliederung hier ein, um es in einen organisierten Flussdiagramm umzuwandeln.","Pasted content detected. Convert to Flowchart Fun syntax?":"Eingefügter Inhalt erkannt. In Flowchart Fun-Syntax konvertieren?","Perfect for docs and quick sharing":"Perfekt für Dokumente und schnelles Teilen","Permanent Charts are a Pro Feature":"Permanente Diagramme sind eine Pro-Funktion","Playbook":"Spielbuch","Pointer and container on same line":"Zeiger und Container auf derselben Zeile","Pricing":"Preisgestaltung","Priority One-on-One Support":"Priorisierte Einzelunterstützung","Priority support":"Prioritätssupport","Privacy Policy":"Datenschutzerklärung","Pro starts at $4/mo billed yearly. Cancel anytime.":"Pro beginnt bei $4/Monat jährlich abgerechnet. Jederzeit kündbar.","Pro tip: Right-click any node to customize its shape and color":"Pro-Tipp: Klicken Sie mit der rechten Maustaste auf einen Knoten, um seine Form und Farbe anzupassen.","Processing Data":"Datenverarbeitung","Processing...":"Verarbeitung...","Prompt":"Aufforderung","Public":"Öffentlich","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Daten von Visio, Lucidchart, CSV importieren oder mit einer Vorlage beginnen. Kein erneutes Erstellen von bereits vorhandenen Inhalten.","Quick experimentation space that resets daily":"Schneller Experimentierraum, der täglich zurückgesetzt wird","Random":"Zufällig","Rapid Deployment Templates":"Schnellbereitstellungsvorlagen","Rapid Templates":"Schnelle Vorlagen","Raster Export (PNG, JPG)":"Raster-Export (PNG, JPG)","Rate limit exceeded. Please try again later.":"Die Rate-Limit wurde überschritten. Bitte versuchen Sie es später erneut.","Read-only":"Schreibgeschützt","Reference by Class":"Referenz nach Klasse","Reference by ID":"Referenz nach ID","Reference by Label":"Referenz nach Label","References":"Referenzen","References are used to create edges between nodes that are created elsewhere in the document":"Referenzen werden verwendet, um Kanten zwischen Knoten zu erstellen, die anderswo im Dokument erstellt werden","Referencing a node by its exact label":"Referenzierung eines Knotens durch sein exaktes Label","Referencing a node by its unique ID":"Referenzierung eines Knotens durch seine eindeutige ID","Referencing multiple nodes with the same assigned class":"Mehrere Knoten mit der selben zugewiesenen Klasse referenzieren","Refresh Page":"Seite aktualisieren","Reload to Update":"Neu laden, um zu aktualisieren","Rename":"Umbenennen","Rename {0}":[["0"]," umbenennen"],"Request Magic Link":"Magic-Link anfordern","Request Password Reset":"Passwort zurücksetzen anfordern","Reset":"Zurücksetzen","Reset Password":"Passwort zurücksetzen","Resume Subscription":"Abonnement fortsetzen","Return":"Zurückkehren","Right to Left":"Von rechts nach links","Right-click nodes for options":"Klicke mit der rechten Maustaste auf Knoten für Optionen","Roadmap":"Fahrplan","Rotate Label":"Label drehen","SVG Export is a Pro Feature":"SVG-Export ist eine Pro-Funktion","SVG, PDF & all export formats":"SVG, PDF und alle Exportformate","Satisfaction guaranteed or first payment refunded":"Zufriedenheitsgarantie oder erste Zahlung erstattet","Save":"Speichern","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Lokal speichern, offline arbeiten und genau kontrollieren, wer was sieht. Keine Daten verlassen Ihren Computer, es sei denn, Sie sagen es.","Save time with AI and dictation, making it easy to create diagrams.":"Sparen Sie Zeit mit KI und Diktat, um Diagramme einfach zu erstellen.","Save to Cloud":"In die Cloud speichern","Save to File":"In Datei speichern","Save your Work":"Speichern Sie Ihre Arbeit","Schedule personal consultation sessions":"Persönliche Beratungssitzungen planen","Secure payment":"Sichere Zahlung","See more reviews on Product Hunt":"Schau dir weitere Bewertungen auf Product Hunt an","See what\'s possible":"Sehen, was möglich ist","Select a destination folder for \\"{0}\\".":"Wählen Sie einen Zielordner für \\\\","Send us a message":"Schreiben Sie uns eine Nachricht","Set a consistent height for all nodes":"Legen Sie eine einheitliche Höhe für alle Knoten fest","Settings":"Einstellungen","Share":"Teilen","Sign In":"Anmelden","Sign in with <0>GitHub0>":"Anmelden mit <0>GitHub0>","Sign in with <0>Google0>":"Anmelden mit <0>Google0>","Sorry! This page is only available in English.":"Entschuldigung! Diese Seite ist nur auf Englisch verfügbar.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Entschuldigung, es gab einen Fehler bei der Konvertierung des Textes in einen Flussdiagramm. Versuchen Sie es später erneut.","Sort Ascending":"Aufsteigend sortieren","Sort Descending":"Absteigend sortieren","Sort by {0}":["Sortieren nach ",["0"]],"Source Arrow Shape":"Pfeilform der Quelle","Source Column":"Quellspalte","Source Delimiter":"Quell-Trennzeichen","Source Distance From Node":"Abstand der Quelle vom Knoten","Source/Target Arrow Shape":"Quelle/Ziel-Pfeilform","Spacing":"Abstand","Special Attributes":"Spezielle Attribute","Start":"Start","Start Over":"Von vorne anfangen","Start faster with use-case specific templates":"Schnellerer Einstieg mit anwendungsspezifischen Vorlagen","Start for free":"Kostenlos starten","Status":"Status","Step 1":"Schritt 1","Step 2":"Schritt 2","Step 3":"Schritt 3","Store any data associated to a node":"Speichern Sie alle Daten, die einem Knoten zugeordnet sind","Style Classes":"Stil-Klassen","Style with classes":"Mit Klassen gestalten","Submit":"Einsenden","Subscription":"Abonnement","Subscription Successful!":"Abonnement erfolgreich!","Subscription will end":"Abonnement wird beendet","Support":"Unterstützung","Target Arrow Shape":"Pfeilform des Ziels","Target Column":"Ziel-Spalte","Target Delimiter":"Ziel-Trennzeichen","Target Distance From Node":"Zielabstand vom Knoten ","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Sage dem AI in einfachem Englisch, was du brauchst. Dein Diagramm wird in Sekundenschnelle erstellt.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Sag uns, was funktioniert und was nicht. Jede Nachricht wird vom Entwickler gelesen.","Text Color":"Textfarbe ","Text Horizontal Offset":"Text Horizontaler Versatz","Text Leading":"Textführung ","Text Max Width":"Text Max Breite","Text Vertical Offset":"Textvertikaler Abstand ","Text followed by colon+space creates an edge with the text as the label":"Text gefolgt von Doppelpunkt + Leerzeichen erstellt eine Kante mit dem Text als Label","Text on a line creates a node with the text as the label":"Text in einer Zeile erstellt einen Knoten mit dem Text als Label","Thank you for your feedback!":"Danke für Ihr Feedback!","The beauty and magic reside in the minimalism.":"Die Schönheit und Magie stecken im Minimalismus.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"Der beste Weg, um Stile zu ändern, besteht darin, mit der rechten Maustaste auf einen Knoten oder eine Kante zu klicken und den gewünschten Stil auszuwählen.","The column that contains the edge label(s)":"Die Spalte, die die Kantenbeschriftung(en) enthält","The column that contains the source node ID(s)":"Die Spalte, die die Quellknoten-ID(en) enthält","The column that contains the target node ID(s)":"Die Spalte, die die Zielknoten-ID(en) enthält","The delimiter used to separate multiple source nodes":"Der Trennzeichen, das verwendet wird, um mehrere Quellknoten zu trennen","The delimiter used to separate multiple target nodes":"Der Trennzeichen, das verwendet wird, um mehrere Zielknoten zu trennen","The fastest way to turn what\'s in your head into something everyone else can understand.":"Der schnellste Weg, um das, was in deinem Kopf ist, in etwas zu verwandeln, das jeder andere verstehen kann.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"Der kostenlose Plan eignet sich hervorragend für den täglichen Gebrauch. Wenn du Pro-Funktionen benötigst, ist es monatlich für $6 erhältlich - jederzeit kündbar ohne Verpflichtung.","The possible shapes are:":"Die möglichen Formen sind:","Theme":"Thema ","Theme Customization Editor":"Theme-Anpassungseditor","Theme Editor":"Themen-Editor","Theme editor":"Design-Editor","There are no edges in this data":"Es gibt keine Kanten in diesen Daten","This action cannot be undone.":"Diese Aktion kann nicht rückgängig gemacht werden.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Diese Funktion ist nur für Pro-Benutzer verfügbar. <0>Werden Sie Pro-Nutzer0>, um es freizuschalten.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Dies kann je nach Länge Ihrer Eingabe zwischen 30 Sekunden und 2 Minuten dauern.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Diese Sandbox ist perfekt zum Experimentieren, aber denk daran - sie wird täglich zurückgesetzt. Upgrade jetzt und behalte deine aktuelle Arbeit!","This will replace the current content.":"Dies ersetzt den aktuellen Inhalt.","This will replace your current chart content with the template content.":"Dies ersetzt den aktuellen Inhalt deines Diagramms mit dem Vorlageneinhalt.","This will replace your current sandbox.":"Dies ersetzt deine aktuelle Sandbox.","Time to decide":"Zeit zum Entscheiden","Tip":"Tipp","To fix this change one of the edge IDs":"Um dies zu beheben, ändern Sie eine der Kanten-IDs","To fix this change one of the node IDs":"Um das zu beheben, ändern Sie eine der Knoten-IDs","To fix this move one pointer to the next line":"Um das zu beheben, verschieben Sie einen Zeiger auf die nächste Zeile","To fix this start the container <0/> on a different line":"Um dies zu beheben, starten Sie den Container <0/> auf einer anderen Zeile.","To learn more about why we require you to log in, please read <0>this blog post0>.":"Um mehr darüber zu erfahren, warum wir Sie zum Anmelden auffordern, lesen Sie bitte <0>diesen Blog-Beitrag0>.","Top to Bottom":"Von oben nach unten","Transform Your Ideas into Professional Diagrams in Seconds":"Transformieren Sie Ihre Ideen in professionelle Diagramme in Sekunden","Transform text into diagrams instantly":"Verwandeln Sie Texte sofort in Diagramme","Try AI":"Probieren Sie KI","Try adjusting your search or filters to find what you\'re looking for.":"Versuche, deine Suche oder Filter anzupassen, um das Gewünschte zu finden.","Try again":"Erneut versuchen","Try it free":"Kostenlos ausprobieren","Turn documents into diagrams with AI":"Dokumente mit KI in Diagramme umwandeln","Two edges have the same ID":"Zwei Kanten haben die gleiche ID","Two nodes have the same ID":"Zwei Knoten haben die gleiche ID","Type it. See it.":"Schreib es. Sieh es.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Oh oh, du hast keine kostenlosen Anfragen mehr! Upgrade auf Flowchart Fun Pro für unbegrenzte Diagramm-Konvertierungen und verwandle Text weiterhin mühelos in klare, visuelle Flussdiagramme wie durch Kopieren und Einfügen.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Unter 60 Sekunden. Tippe ein paar Zeilen Text ein oder beschreibe der KI, was du brauchst, und dein Diagramm erscheint sofort. Exportiere oder teile es mit nur einem Klick.","Undo":"Rückgängig","Unescaped special character":"Nicht maskiertes Sonderzeichen","Unique text value to identify a node":"Einzigartiger Textwert, um einen Knoten zu identifizieren","Unknown":"Unbekannt","Unknown Parsing Error":"Unbekannter Parser-Fehler","Unlimited Flowcharts":"Unbegrenzte Flowcharts","Unlimited Permanent Flowcharts":"Unbegrenzte permanente Flowcharts","Unlimited cloud-saved flowcharts":"Unbegrenzte in der Cloud gespeicherte Flussdiagramme","Unlimited saved diagrams":"Unbegrenzt gespeicherte Diagramme","Unlock AI Features and never lose your work with a Pro account.":"Entsperren Sie KI-Funktionen und verlieren Sie nie wieder Ihre Arbeit mit einem Pro-Konto.","Unlock Unlimited AI Flowcharts":"Entsperren Sie unbegrenzte AI-Flussdiagramme","Unpaid":"Unbezahlt","Update Email":"E-Mail aktualisieren","Updated Date":"Aktualisierungsdatum ","Upgrade Now - Save My Work":"Jetzt upgraden - Meine Arbeit speichern","Upgrade to Flowchart Fun Pro and unlock:":"Upgrade auf Flowchart Fun Pro und schalte frei:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"Upgrade auf Flowchart Fun Pro für unbegrenzte gehostete Diagramme, wasserzeichenfreie hochauflösende Exporte, KI-Bearbeitung und mehr. 4€/Monat jährlich in Rechnung gestellt.","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Upgrade auf Flowchart Fun Pro, um SVG-Export freizuschalten und mehr fortschrittliche Funktionen für Ihre Diagramme zu nutzen.","Upgrade to Pro":"Auf Pro upgraden","Upgrade to Pro for permanent charts.":"Upgrade auf Pro für dauerhafte Charts.","Upload your File":"Laden Sie Ihre Datei hoch","Use Custom CSS Only":"Nur benutzerdefinierte CSS verwenden","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Verwenden Sie Lucidchart oder Visio? Der CSV-Import erleichtert das Abrufen von Daten aus jeder Quelle!","Use classes to group nodes":"Verwenden Sie Klassen, um Knoten zu gruppieren","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Verwenden Sie das Attribut <0>href0>, um einem Knoten einen Link zu setzen, der in einem neuen Tab geöffnet wird.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Verwenden Sie das Attribut <0>src0>, um das Bild eines Knotens zu setzen. Das Bild wird an den Knoten angepasst, sodass Sie möglicherweise die Breite und Höhe des Knotens anpassen müssen, um das gewünschte Ergebnis zu erzielen. Es werden nur öffentliche Bilder (nicht von CORS blockiert) unterstützt.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Verwenden Sie die Attribute <0>w0> und <1>h1>, um die Breite und Höhe eines Knotens explizit festzulegen.","Use the customer portal to change your billing information.":"Verwenden Sie das Kundenportal, um Ihre Rechnungsinformationen zu ändern.","Use these settings to adapt the look and behavior of your flowcharts":"Verwenden Sie diese Einstellungen, um das Aussehen und Verhalten Ihrer Flussdiagramme anzupassen","Use this file for org charts, hierarchies, and other organizational structures.":"Verwenden Sie diese Datei für Organigramme, Hierarchien und andere Organisationsstrukturen.","Use this file for sequences, processes, and workflows.":"Verwenden Sie diese Datei für Sequenzen, Prozesse und Workflows.","Use this mode to modify and enhance your current chart.":"Verwenden Sie diesen Modus, um Ihre aktuelle Tabelle zu ändern und zu verbessern.","Used at":"Verwendet bei","User":"Benutzer","Vector Export (SVG)":"Vektor-Export (SVG)","View on Github":"Auf Github ansehen","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Möchten Sie ein Flussdiagramm aus einem Dokument erstellen? Fügen Sie es in den Editor ein und klicken Sie auf \\"In Flussdiagramm umwandeln\\".","Watermark-Free Diagrams":"Wasserzeichenfreie Diagramme","Watermarks":"Wasserzeichen","Welcome to Flowchart Fun":"Willkommen bei Flowchart Spaß","What if I just need it for one project?":"Was ist, wenn ich es nur für ein Projekt brauche?","What our users are saying":"Was unsere Nutzer sagen","What\'s next?":"Was kommt als Nächstes?","What\'s this?":"Was ist das?","Width":"Breite","Width and Height":"Breite und Höhe","Will my diagrams actually look professional?":"Werden meine Diagramme tatsächlich professionell aussehen?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Mit der Pro-Version von Flowchart Fun können Sie natürliche Sprachbefehle verwenden, um schnell Ihre Flussdiagrammdetails auszuarbeiten, ideal für die Erstellung von Diagrammen unterwegs. Für 6 $/Monat erhalten Sie die Leichtigkeit der zugänglichen KI-Bearbeitung, um Ihre Flussdiagrammerfahrung zu verbessern.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Mit der Pro-Version können Sie lokale Dateien speichern und laden. Es ist perfekt für die Verwaltung von Arbeitsdokumenten offline.","Would you like to continue?":"Möchten Sie fortfahren?","Would you like to suggest a new example?":"Möchtest du ein neues Beispiel vorschlagen?","Wrap text in parentheses to connect to any node":"Verwenden Sie Klammern, um mit jedem Knoten zu verbinden","Write like an outline":"Schreiben Sie wie eine Gliederung","Write your prompt here or click to enable the microphone, then press and hold to record.":"Schreiben Sie hier Ihre Aufforderung oder klicken Sie auf das Mikrofon, um es zu aktivieren, dann halten Sie es gedrückt, um aufzunehmen.","Yearly":"Jährlich","Yes — send us a message and we\'ll set you up with a discounted rate.":"Ja - schicken Sie uns eine Nachricht und wir werden Ihnen einen ermäßigten Preis anbieten.","Yes, Replace Content":"Ja, Inhalt ersetzen","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Ja. Jedes Diagramm verwendet ausgewogene, automatische Layouts mit sauberer Typografie. Sie können Themen, Farben und Stile anpassen - und als scharfes SVG oder hochauflösendes PNG exportieren, das in jeder Präsentation oder jedem Dokument großartig aussieht.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Ja. Pro unterstützt den Import von Visio, Lucidchart und CSV - so können Sie bereits vorhandene Diagramme ohne Neuerstellung importieren.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Ja. Du kannst Dateien lokal speichern und laden, komplett offline arbeiten und genau kontrollieren, wer deine Diagramme sehen kann. Keine Daten verlassen deine Maschine, es sei denn, du entscheidest dich für eine Freigabe.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Sie sind dabei, ",["numNodes"]," Knoten und ",["numEdges"]," Kanten zu Ihrem Graphen hinzuzufügen."],"You need to log in to access this page.":"Sie müssen sich anmelden, um auf diese Seite zuzugreifen.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Sie sind bereits ein Pro-Benutzer. <0>Abonnement verwalten0><1/>Haben Sie Fragen oder Feature-Anfragen? <2>Lassen Sie es uns wissen2>","You\'re doing great!":"Du machst das super!","You\'re on the free plan.":"Du bist auf dem kostenlosen Plan.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Sie haben alle Ihre kostenlosen KI-Konvertierungen verwendet. Upgrade auf Pro für unbegrenzte KI-Nutzung, individuelle Themen, private Freigabe und mehr. Erstellen Sie mühelos weiterhin erstaunliche Flussdiagramme!","Your Charts":"Ihre Diagramme","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Dein Sandkasten ist ein Raum, um frei mit unseren Flussdiagramm-Tools zu experimentieren, die jeden Tag zurückgesetzt werden, damit du einen frischen Start hast.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Ihre Diagramme sind schreibgeschützt, da Ihr Konto nicht mehr aktiv ist. Besuchen Sie Ihre <0>Kontoseite0>, um mehr zu erfahren.","Your next diagram should be your best one.":"Dein nächstes Diagramm sollte dein bestes sein.","Your subscription is <0>{statusDisplay}0>.":["Ihre Abonnement ist <0>",["statusDisplay"],"0>."],"Your work stays yours":"Deine Arbeit bleibt deine Eigene.","Zoom In":"Vergrößern","Zoom Out":"Verkleinern","month":"Monat","or":"oder","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/de/messages.po b/app/src/locales/de/messages.po
index 1a60118a2..2b9850183 100644
--- a/app/src/locales/de/messages.po
+++ b/app/src/locales/de/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "48€/Jahr (33% sparen) · Jederzeit kündbar"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "6€/Monat"
@@ -25,7 +25,7 @@ msgstr "6€/Monat"
msgid "1 Temporary Flowchart"
msgstr "1 Vorläufiger Flussdiagramm"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "1 Diagramm zur gleichen Zeit"
@@ -33,7 +33,7 @@ msgstr "1 Diagramm zur gleichen Zeit"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>Nur benutzerdefiniertes CSS0> ist aktiviert. Nur die Layout- und Erweiterten Einstellungen werden angewandt."
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0> ist ein Open-Source-Projekt von <1>Tone Row1>"
@@ -49,7 +49,7 @@ msgstr "Eine neue Version der App ist verfügbar. Bitte neu laden, um zu aktuali
msgid "AI Creation & Editing"
msgstr "KI-Erstellung & Bearbeitung"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "KI-Generierung & Bearbeitung"
@@ -57,7 +57,7 @@ msgstr "KI-Generierung & Bearbeitung"
msgid "AI-Powered Flowchart Creation"
msgstr "KI-unterstützte Erstellung von Flussdiagrammen"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "In unter 5 Sekunden aus einfachem Text generiert."
@@ -65,12 +65,12 @@ msgstr "In unter 5 Sekunden aus einfachem Text generiert."
msgid "AI-powered editing to supercharge your workflow"
msgstr "KI-unterstützte Bearbeitung zur Beschleunigung Ihres Arbeitsablaufs"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "Über"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "Konto"
@@ -106,7 +106,7 @@ msgstr "Vertikal ausrichten"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "All dies für nur $6/Monat - weniger als Ihr täglicher Kaffee ☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "Immer präsentationsbereit"
@@ -118,7 +118,7 @@ msgstr "Betrag"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "Es ist ein Fehler aufgetreten. Versuchen Sie, es erneut einzureichen oder senden Sie eine E-Mail direkt an {0}."
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "Erscheinungsbild"
@@ -170,11 +170,11 @@ msgstr "Hintergrundfarbe"
msgid "Basic Flowchart"
msgstr "Grundlegender Flussdiagramm"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "Werden Sie ein Github-Sponsor"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "Werden Sie ein Pro-Benutzer"
@@ -191,8 +191,8 @@ msgstr "Jährlich abgerechnet für $48"
msgid "Billed monthly at $6"
msgstr "Monatlich für $6 berechnet"
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "Blog"
@@ -260,14 +260,14 @@ msgstr "Bestimmte Attribute können verwendet werden, um das Aussehen oder die F
msgid "Change Email Address"
msgstr "E-Mail Adresse ändern"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "Änderungsprotokoll"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "Diagramme"
@@ -346,7 +346,7 @@ msgstr "Spalte"
msgid "Comment"
msgstr "Kommentar"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "Community-Vorlagen"
@@ -403,7 +403,7 @@ msgstr "In Flussdiagramm konvertieren"
msgid "Convert to hosted chart?"
msgstr "In gehostetes Diagramm konvertieren?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "Cookie-Richtlinie"
@@ -500,7 +500,7 @@ msgstr "Benutzerdefiniertes CSS"
msgid "Custom Sharing Options"
msgstr "Benutzerdefinierte Freigabeoptionen"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "Individuelle Freigabe und öffentliche Links"
@@ -516,8 +516,8 @@ msgstr "Täglicher Sandbox-Editor"
msgid "Dark"
msgstr "Dunkel"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "Dunkelmodus"
@@ -542,11 +542,11 @@ msgstr "Löschen"
msgid "Delete {0}"
msgstr "Lösche {0}"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "Beschreiben Sie es und es erscheint"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "Beschreiben Sie Ihre Idee. Erhalten Sie ein präsentationswürdiges Diagramm."
@@ -696,8 +696,8 @@ msgstr "Mit KI bearbeiten"
msgid "Editable"
msgstr "Editierbar"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "Editor"
@@ -742,7 +742,7 @@ msgstr "Geben Sie unten Ihre E-Mail-Adresse ein, und wir senden Ihnen einen Link
msgid "Equal To"
msgstr "Gleich"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "Jedes Diagramm wird als gestochen scharfes PNG, SVG oder teilbarer Link exportiert - bereit für das Meeting, das Dokument oder die Präsentation."
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "Funktionsübersicht"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "Feedback"
@@ -823,11 +823,15 @@ msgstr "Fester Knotenhöhe"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "Mit Flowchart Fun Pro erhalten Sie unbegrenzte Flussdiagramme, unbegrenzte Mitarbeiter und unbegrenzten Speicherplatz für nur $6/Monat."
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "Flowchart Spaß ist ein Open-Source-Projekt von <0>Tone Row0>"
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "Flowchart Fun wird von einem Entwickler gebaut und gepflegt. Deine Unterstützung hält es am Laufen."
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "Folgen Sie uns auf Twitter"
@@ -909,6 +913,10 @@ msgstr "Grün?"
msgid "Grid"
msgstr "Raster"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "Gruppen-Ranking und Rangfolge-Wahl, kostenlos"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "Haben Sie komplexe Fragen oder Probleme? Wir sind hier, um zu helfen."
@@ -980,7 +988,7 @@ msgstr "Daten aus jeder CSV-Datei importieren und auf einem neuen Flussdiagramm
msgid "Import from CSV"
msgstr "Importieren Sie aus CSV"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "Importiere aus Visio, Lucidchart, CSV."
@@ -988,7 +996,7 @@ msgstr "Importiere aus Visio, Lucidchart, CSV."
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "Importieren Sie von Visio, Lucidchart und CSV"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "Aus beliebiger Quelle importieren"
@@ -1012,7 +1020,7 @@ msgstr "Fügen Sie einen Titel mit einem <0>title0>-Attribut ein. Um die Visio
msgid "Indent to connect nodes"
msgstr "Rücke ein, um Knoten zu verbinden"
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "Info"
@@ -1052,7 +1060,7 @@ msgstr "Übe weiter"
msgid "Keep your data private on your computer"
msgstr "Halten Sie Ihre Daten privat auf Ihrem Computer"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "Sprache"
@@ -1101,8 +1109,8 @@ msgstr "Lassen Sie uns wissen, warum Sie stornieren. Wir sind immer auf der Such
msgid "Light"
msgstr "Hell"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "Heller Modus"
@@ -1160,8 +1168,8 @@ msgstr "Lokales Speichern für den Offline-Zugriff"
msgid "Lock Zoom to Graph"
msgstr "Zoom an Graph anpassen"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "Anmelden"
@@ -1177,11 +1185,15 @@ msgstr "Einloggen, um zu speichern"
msgid "Log in to upgrade your account"
msgstr "Melde dich an, um dein Konto zu aktualisieren"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "Hergestellt von <0>Tone Row0>"
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "Machen Sie eine einmalige Spende"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "Mach es zu deinem"
@@ -1205,6 +1217,18 @@ msgstr "Maximale Breite des Textes innerhalb der Knoten"
msgid "Monthly"
msgstr "Monatlich"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "Mehr von Tone Row"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "Mehr von Tone Row:"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "Weitere Werkzeuge:"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "Diagramm benennen"
msgid "Name your chart"
msgstr "Benennen Sie Ihren Chart"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "Neues"
@@ -1363,7 +1387,7 @@ msgstr "Oder vielleicht blau!"
msgid "Organization Chart"
msgstr "Organigramm"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "PNG- und JPG-Export"
@@ -1412,21 +1436,25 @@ msgstr "Spielbuch"
msgid "Pointer and container on same line"
msgstr "Zeiger und Container auf derselben Zeile"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "Preisgestaltung"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "Priorisierte Einzelunterstützung"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "Prioritätssupport"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "Datenschutzerklärung"
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "Pro beginnt bei $4/Monat jährlich abgerechnet. Jederzeit kündbar."
@@ -1451,7 +1479,7 @@ msgstr "Aufforderung"
msgid "Public"
msgstr "Öffentlich"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "Daten von Visio, Lucidchart, CSV importieren oder mit einer Vorlage beginnen. Kein erneutes Erstellen von bereits vorhandenen Inhalten."
@@ -1575,8 +1603,8 @@ msgstr "Von rechts nach links"
msgid "Right-click nodes for options"
msgstr "Klicke mit der rechten Maustaste auf Knoten für Optionen"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "Fahrplan"
@@ -1590,7 +1618,7 @@ msgstr "Label drehen"
msgid "SVG Export is a Pro Feature"
msgstr "SVG-Export ist eine Pro-Funktion"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "SVG, PDF und alle Exportformate"
@@ -1603,7 +1631,7 @@ msgstr "Zufriedenheitsgarantie oder erste Zahlung erstattet"
msgid "Save"
msgstr "Speichern"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "Lokal speichern, offline arbeiten und genau kontrollieren, wer was sieht. Keine Daten verlassen Ihren Computer, es sei denn, Sie sagen es."
@@ -1635,7 +1663,7 @@ msgstr "Sichere Zahlung"
msgid "See more reviews on Product Hunt"
msgstr "Schau dir weitere Bewertungen auf Product Hunt an"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "Sehen, was möglich ist"
@@ -1651,9 +1679,9 @@ msgstr "Schreiben Sie uns eine Nachricht"
msgid "Set a consistent height for all nodes"
msgstr "Legen Sie eine einheitliche Höhe für alle Knoten fest"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "Einstellungen"
@@ -1738,7 +1766,7 @@ msgstr "Von vorne anfangen"
msgid "Start faster with use-case specific templates"
msgstr "Schnellerer Einstieg mit anwendungsspezifischen Vorlagen"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "Kostenlos starten"
@@ -1789,7 +1817,7 @@ msgstr "Abonnement erfolgreich!"
msgid "Subscription will end"
msgstr "Abonnement wird beendet"
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "Unterstützung"
@@ -1812,7 +1840,7 @@ msgstr "Ziel-Trennzeichen"
msgid "Target Distance From Node"
msgstr "Zielabstand vom Knoten "
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "Sage dem AI in einfachem Englisch, was du brauchst. Dein Diagramm wird in Sekundenschnelle erstellt."
@@ -1856,7 +1884,7 @@ msgstr "Text in einer Zeile erstellt einen Knoten mit dem Text als Label"
msgid "Thank you for your feedback!"
msgstr "Danke für Ihr Feedback!"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "Die Schönheit und Magie stecken im Minimalismus."
@@ -1884,7 +1912,7 @@ msgstr "Der Trennzeichen, das verwendet wird, um mehrere Quellknoten zu trennen"
msgid "The delimiter used to separate multiple target nodes"
msgstr "Der Trennzeichen, das verwendet wird, um mehrere Zielknoten zu trennen"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "Der schnellste Weg, um das, was in deinem Kopf ist, in etwas zu verwandeln, das jeder andere verstehen kann."
@@ -1911,7 +1939,7 @@ msgstr "Theme-Anpassungseditor"
msgid "Theme Editor"
msgstr "Themen-Editor"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "Design-Editor"
@@ -2000,10 +2028,14 @@ msgstr "Versuche, deine Suche oder Filter anzupassen, um das Gewünschte zu find
msgid "Try again"
msgstr "Erneut versuchen"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "Kostenlos ausprobieren"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "Dokumente mit KI in Diagramme umwandeln"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "Zwei Kanten haben die gleiche ID"
@@ -2012,7 +2044,7 @@ msgstr "Zwei Kanten haben die gleiche ID"
msgid "Two nodes have the same ID"
msgstr "Zwei Knoten haben die gleiche ID"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "Schreib es. Sieh es."
@@ -2057,7 +2089,7 @@ msgstr "Unbegrenzte permanente Flowcharts"
msgid "Unlimited cloud-saved flowcharts"
msgstr "Unbegrenzte in der Cloud gespeicherte Flussdiagramme"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "Unbegrenzt gespeicherte Diagramme"
@@ -2089,13 +2121,17 @@ msgstr "Jetzt upgraden - Meine Arbeit speichern"
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "Upgrade auf Flowchart Fun Pro und schalte frei:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "Upgrade auf Flowchart Fun Pro für unbegrenzte gehostete Diagramme, wasserzeichenfreie hochauflösende Exporte, KI-Bearbeitung und mehr. 4€/Monat jährlich in Rechnung gestellt."
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "Upgrade auf Flowchart Fun Pro, um SVG-Export freizuschalten und mehr fortschrittliche Funktionen für Ihre Diagramme zu nutzen."
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "Auf Pro upgraden"
@@ -2152,7 +2188,7 @@ msgstr "Verwenden Sie diese Datei für Sequenzen, Prozesse und Workflows."
msgid "Use this mode to modify and enhance your current chart."
msgstr "Verwenden Sie diesen Modus, um Ihre aktuelle Tabelle zu ändern und zu verbessern."
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "Verwendet bei"
@@ -2164,7 +2200,7 @@ msgstr "Benutzer"
msgid "Vector Export (SVG)"
msgstr "Vektor-Export (SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "Auf Github ansehen"
@@ -2302,7 +2338,7 @@ msgstr "Dein Sandkasten ist ein Raum, um frei mit unseren Flussdiagramm-Tools zu
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "Ihre Diagramme sind schreibgeschützt, da Ihr Konto nicht mehr aktiv ist. Besuchen Sie Ihre <0>Kontoseite0>, um mehr zu erfahren."
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "Dein nächstes Diagramm sollte dein bestes sein."
@@ -2310,7 +2346,7 @@ msgstr "Dein nächstes Diagramm sollte dein bestes sein."
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "Ihre Abonnement ist <0>{statusDisplay}0>."
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "Deine Arbeit bleibt deine Eigene."
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "oder"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/locales/en/messages.js b/app/src/locales/en/messages.js
index a2add32bf..3e824544d 100644
--- a/app/src/locales/en/messages.js
+++ b/app/src/locales/en/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"$48/year (save 33%) · Cancel anytime","$6/mo":"$6/mo","1 Temporary Flowchart":"1 Temporary Flowchart","1 diagram at a time":"1 diagram at a time","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Sign In0> / <1>Sign Up1> with email and password","A new version of the app is available. Please reload to update.":"A new version of the app is available. Please reload to update.","AI Creation & Editing":"AI Creation & Editing","AI generation & editing":"AI generation & editing","AI-Powered Flowchart Creation":"AI-Powered Flowchart Creation","AI-generated from plain text in under 5 seconds.":"AI-generated from plain text in under 5 seconds.","AI-powered editing to supercharge your workflow":"AI-powered editing to supercharge your workflow","About":"About","Account":"Account","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`","Add some steps":"Add some steps","Advanced":"Advanced","Align Horizontally":"Align Horizontally","Align Nodes":"Align Nodes","Align Vertically":"Align Vertically","All this for just $6/month - less than your daily coffee ☕":"All this for just $6/month - less than your daily coffee ☕","Always presentation-ready":"Always presentation-ready","Amount":"Amount","An error occurred. Try resubmitting or email {0} directly.":["An error occurred. Try resubmitting or email ",["0"]," directly."],"Appearance":"Appearance","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":["Are you sure you want to delete the flowchart \\"",["0"],"\\"? This action cannot be undone."],"Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":["Are you sure you want to delete the folder \\"",["0"],"\\" and all its contents? This action cannot be undone."],"Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":["Are you sure you want to delete the folder \\"",["0"],"\\"? This action cannot be undone."],"Are you sure?":"Are you sure?","Arrow Size":"Arrow Size","Attributes":"Attributes","August 2023":"August 2023","Back":"Back","Back To Editor":"Back To Editor","Background Color":"Background Color","Basic Flowchart":"Basic Flowchart","Become a Github Sponsor":"Become a Github Sponsor","Become a Pro User":"Become a Pro User","Begin your journey":"Begin your journey","Billed annually at $48":"Billed annually at $48","Billed monthly at $6":"Billed monthly at $6","Blog":"Blog","Book a Meeting":"Book a Meeting","Border Color":"Border Color","Border Width":"Border Width","Bottom to Top":"Bottom to Top","Breadthfirst":"Breadthfirst","Build your personal flowchart library":"Build your personal flowchart library","Can I import my existing diagrams?":"Can I import my existing diagrams?","Cancel":"Cancel","Cancel anytime":"Cancel anytime","Cancel your subscription. Your hosted charts will become read-only.":"Cancel your subscription. Your hosted charts will become read-only.","Certain attributes can be used to customize the appearance or functionality of elements.":"Certain attributes can be used to customize the appearance or functionality of elements.","Change Email Address":"Change Email Address","Changelog":"Changelog","Charts":"Charts","Check out the guide:":"Check out the guide:","Check your email for a link to log in.<0/>You can close this window.":"Check your email for a link to log in.<0/>You can close this window.","Choose":"Choose","Choose Template":"Choose Template","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .","Choose how edges connect between nodes":"Choose how edges connect between nodes","Choose how nodes are automatically arranged in your flowchart":"Choose how nodes are automatically arranged in your flowchart","Circle":"Circle","Classes":"Classes","Clear":"Clear","Clear text?":"Clear text?","Clone":"Clone","Clone Flowchart":"Clone Flowchart","Close":"Close","Color":"Color","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Colors include red, orange, yellow, blue, purple, black, white, and gray.","Column":"Column","Comment":"Comment","Community templates":"Community templates","Compare our plans and find the perfect fit for your flowcharting needs":"Compare our plans and find the perfect fit for your flowcharting needs","Concentric":"Concentric","Confirm New Email":"Confirm New Email","Confirm your email address to sign in.":"Confirm your email address to sign in.","Connect your Data":"Connect your Data","Containers":"Containers","Containers are nodes that contain other nodes. They are declared using curly braces.":"Containers are nodes that contain other nodes. They are declared using curly braces.","Continue":"Continue","Continue in Sandbox (Resets daily, work not saved)":"Continue in Sandbox (Resets daily, work not saved)","Controls the flow direction of hierarchical layouts":"Controls the flow direction of hierarchical layouts","Convert":"Convert","Convert to Flowchart":"Convert to Flowchart","Convert to hosted chart?":"Convert to hosted chart?","Cookie Policy":"Cookie Policy","Copied SVG code to clipboard":"Copied SVG code to clipboard","Copied {format} to clipboard":["Copied ",["format"]," to clipboard"],"Copy":"Copy","Copy PNG Image":"Copy PNG Image","Copy SVG Code":"Copy SVG Code","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copy your mermaid.js code or open it directly in the mermaid.js live editor.","Create":"Create","Create Flowcharts using AI":"Create Flowcharts using AI","Create Unlimited Flowcharts":"Create Unlimited Flowcharts","Create a New Chart":"Create a New Chart","Create a flowchart showing the steps of planning and executing a school fundraising event":"Create a flowchart showing the steps of planning and executing a school fundraising event","Create a new flowchart to get started or organize your work with folders.":"Create a new flowchart to get started or organize your work with folders.","Create flowcharts instantly: Type or paste text, see it visualized.":"Create flowcharts instantly: Type or paste text, see it visualized.","Create unlimited diagrams for just $6/month!":"Create unlimited diagrams for just $6/month!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Create unlimited flowcharts stored in the cloud– accessible anywhere!","Create with AI":"Create with AI","Created Date":"Created Date","Creating an edge between two nodes is done by indenting the second node below the first":"Creating an edge between two nodes is done by indenting the second node below the first","Curve Style":"Curve Style","Custom CSS":"Custom CSS","Custom Sharing Options":"Custom Sharing Options","Custom sharing & public links":"Custom sharing & public links","Customer Portal":"Customer Portal","Daily Sandbox Editor":"Daily Sandbox Editor","Dark":"Dark","Dark Mode":"Dark Mode","Data Import (Visio, Lucidchart, CSV)":"Data Import (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Data import feature for complex diagrams","Date":"Date","Delete":"Delete","Delete {0}":["Delete ",["0"]],"Describe it and it appears":"Describe it and it appears","Describe your idea. Get a diagram worth presenting.":"Describe your idea. Get a diagram worth presenting.","Design a software development lifecycle flowchart for an agile team":"Design a software development lifecycle flowchart for an agile team","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Develop a decision tree for a CEO to evaluate potential new market opportunities","Direction":"Direction","Dismiss":"Dismiss","Do you offer discounts for students or nonprofits?":"Do you offer discounts for students or nonprofits?","Do you want to delete this?":"Do you want to delete this?","Document":"Document","Don\'t Lose Your Work":"Don\'t Lose Your Work","Download":"Download","Download JPG":"Download JPG","Download PNG":"Download PNG","Download SVG":"Download SVG","Drag and drop a CSV file here, or click to select a file":"Drag and drop a CSV file here, or click to select a file","Draw an edge from multiple nodes by beginning the line with a reference":"Draw an edge from multiple nodes by beginning the line with a reference","Drop the file here ...":"Drop the file here ...","Each line becomes a node":"Each line becomes a node","Edge ID, Classes, Attributes":"Edge ID, Classes, Attributes","Edge Label":"Edge Label","Edge Label Column":"Edge Label Column","Edge Style":"Edge Style","Edge Text Size":"Edge Text Size","Edge missing indentation":"Edge missing indentation","Edges":"Edges","Edges are declared in the same row as their source node":"Edges are declared in the same row as their source node","Edges are declared in the same row as their target node":"Edges are declared in the same row as their target node","Edges are declared in their own row":"Edges are declared in their own row","Edges can also have ID\'s, classes, and attributes before the label":"Edges can also have ID\'s, classes, and attributes before the label","Edges can be styled with dashed, dotted, or solid lines":"Edges can be styled with dashed, dotted, or solid lines","Edges in Separate Rows":"Edges in Separate Rows","Edges in Source Node Row":"Edges in Source Node Row","Edges in Target Node Row":"Edges in Target Node Row","Edit":"Edit","Edit with AI":"Edit with AI","Editable":"Editable","Editor":"Editor","Email":"Email","Empty":"Empty","Enable to set a consistent height for all nodes":"Enable to set a consistent height for all nodes","Enter a name for the cloned flowchart.":"Enter a name for the cloned flowchart.","Enter a name for the new folder.":"Enter a name for the new folder.","Enter a new name for the {0}.":["Enter a new name for the ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Enter your email address and we\'ll send you a magic link to sign in.","Enter your email address below and we\'ll send you a link to reset your password.":"Enter your email address below and we\'ll send you a link to reset your password.","Equal To":"Equal To","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.","Everything you need to know about Flowchart Fun Pro":"Everything you need to know about Flowchart Fun Pro","Examples":"Examples","Excalidraw":"Excalidraw","Exclusive Office Hours":"Exclusive Office Hours","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month","Explore Pro":"Explore Pro","Explore more":"Explore more","Export":"Export","Export clean diagrams without branding":"Export clean diagrams without branding","Export to PNG & JPG":"Export to PNG & JPG","Export to PNG, JPG, and SVG":"Export to PNG, JPG, and SVG","Feature Breakdown":"Feature Breakdown","Feedback":"Feedback","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.","Fine-tune layouts and visual styles":"Fine-tune layouts and visual styles","Fixed Height":"Fixed Height","Fixed Node Height":"Fixed Node Height","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun is built and maintained by one developer. Your support keeps it going.","Follow Us on Twitter":"Follow Us on Twitter","Font Family":"Font Family","Forgot your password?":"Forgot your password?","Free":"Free","Free users: charts in the sandbox expire after 7 days.":"Free users: charts in the sandbox expire after 7 days.","Frequently Asked Questions":"Frequently Asked Questions","Full-screen, read-only, and template sharing":"Full-screen, read-only, and template sharing","Fullscreen":"Fullscreen","General":"General","Generate flowcharts from text automatically":"Generate flowcharts from text automatically","Get Pro Access Now":"Get Pro Access Now","Get Unlimited AI Requests":"Get Unlimited AI Requests","Get rapid responses to your questions":"Get rapid responses to your questions","Get unlimited flowcharts and premium features":"Get unlimited flowcharts and premium features","Go back home":"Go back home","Go to the Editor":"Go to the Editor","Go to your Sandbox":"Go to your Sandbox","Graph":"Graph","Green?":"Green?","Grid":"Grid","Have complex questions or issues? We\'re here to help.":"Have complex questions or issues? We\'re here to help.","Here are some Pro features you can now enjoy.":"Here are some Pro features you can now enjoy.","High-quality exports with embedded fonts":"High-quality exports with embedded fonts","History":"History","Home":"Home","How are edges declared in this data?":"How are edges declared in this data?","How fast can I actually make something?":"How fast can I actually make something?","How would you like to save your chart?":"How would you like to save your chart?","I would like to request a new template:":"I would like to request a new template:","ID\'s":"ID\'s","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>","Images":"Images","Import Data":"Import Data","Import data from a CSV file.":"Import data from a CSV file.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.","Import from CSV":"Import from CSV","Import from Visio, Lucidchart, CSV":"Import from Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Import from Visio, Lucidchart, and CSV","Import from anywhere":"Import from anywhere","Import from popular diagram tools":"Import from popular diagram tools","Import your diagram it into Microsoft Visio using one of these CSV files.":"Import your diagram it into Microsoft Visio using one of these CSV files.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:","Indent to connect nodes":"Indent to connect nodes","Info":"Info","Is":"Is","Is my data private?":"Is my data private?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.","Join 2000+ professionals who\'ve upgraded their workflow":"Join 2000+ professionals who\'ve upgraded their workflow","Join thousands of happy users who love Flowchart Fun":"Join thousands of happy users who love Flowchart Fun","Keep Things Private":"Keep Things Private","Keep changes?":"Keep changes?","Keep practicing":"Keep practicing","Keep your data private on your computer":"Keep your data private on your computer","Language":"Language","Layout":"Layout","Layout Algorithm":"Layout Algorithm","Layout Frozen":"Layout Frozen","Leading References":"Leading References","Learn More":"Learn More","Learn Syntax":"Learn Syntax","Learn about Flowchart Fun Pro":"Learn about Flowchart Fun Pro","Left to Right":"Left to Right","Let us know why you\'re canceling. We\'re always looking to improve.":"Let us know why you\'re canceling. We\'re always looking to improve.","Light":"Light","Light Mode":"Light Mode","Link":"Link","Link back":"Link back","Load":"Load","Load Chart":"Load Chart","Load File":"Load File","Load Files":"Load Files","Load default content":"Load default content","Load from link?":"Load from link?","Load layout and styles":"Load layout and styles","Loading...":"Loading...","Local File Support":"Local File Support","Local saving for offline access":"Local saving for offline access","Lock Zoom to Graph":"Lock Zoom to Graph","Log In":"Log In","Log Out":"Log Out","Log in to Save":"Log in to Save","Log in to upgrade your account":"Log in to upgrade your account","Make a One-Time Donation":"Make a One-Time Donation","Make it yours":"Make it yours","Make publicly accessible":"Make publicly accessible","Manage Billing":"Manage Billing","Map Data":"Map Data","Maximum width of text inside nodes":"Maximum width of text inside nodes","Monthly":"Monthly","Move":"Move","Move {0}":["Move ",["0"]],"Multiple pointers on same line":"Multiple pointers on same line","My dog ate my credit card!":"My dog ate my credit card!","Name":"Name","Name Chart":"Name Chart","Name your chart":"Name your chart","New":"New","New Email":"New Email","New Flowchart":"New Flowchart","New Folder":"New Folder","Next charge":"Next charge","No Edges":"No Edges","No Folder (Root)":"No Folder (Root)","No Watermarks!":"No Watermarks!","No charts yet":"No charts yet","No items in this folder":"No items in this folder","No matching charts found":"No matching charts found","Node Border Style":"Node Border Style","Node Colors":"Node Colors","Node ID":"Node ID","Node ID, Classes, Attributes":"Node ID, Classes, Attributes","Node Label":"Node Label","Node Shape":"Node Shape","Node Shapes":"Node Shapes","Nodes":"Nodes","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.","Not Empty":"Not Empty","Now you\'re thinking with flowcharts!":"Now you\'re thinking with flowcharts!","Office Hours":"Office Hours","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.","One on One Support":"One on One Support","One-on-One Support":"One-on-One Support","Open Customer Portal":"Open Customer Portal","Operation canceled":"Operation canceled","Or maybe blue!":"Or maybe blue!","Organization Chart":"Organization Chart","PNG & JPG export":"PNG & JPG export","Padding":"Padding","Page not found":"Page not found","Password":"Password","Past Due":"Past Due","Paste a document to convert it":"Paste a document to convert it","Paste your document or outline here to convert it into an organized flowchart.":"Paste your document or outline here to convert it into an organized flowchart.","Pasted content detected. Convert to Flowchart Fun syntax?":"Pasted content detected. Convert to Flowchart Fun syntax?","Perfect for docs and quick sharing":"Perfect for docs and quick sharing","Permanent Charts are a Pro Feature":"Permanent Charts are a Pro Feature","Playbook":"Playbook","Pointer and container on same line":"Pointer and container on same line","Priority One-on-One Support":"Priority One-on-One Support","Priority support":"Priority support","Privacy Policy":"Privacy Policy","Pro starts at $4/mo billed yearly. Cancel anytime.":"Pro starts at $4/mo billed yearly. Cancel anytime.","Pro tip: Right-click any node to customize its shape and color":"Pro tip: Right-click any node to customize its shape and color","Processing Data":"Processing Data","Processing...":"Processing...","Prompt":"Prompt","Public":"Public","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.","Quick experimentation space that resets daily":"Quick experimentation space that resets daily","Random":"Random","Rapid Deployment Templates":"Rapid Deployment Templates","Rapid Templates":"Rapid Templates","Raster Export (PNG, JPG)":"Raster Export (PNG, JPG)","Rate limit exceeded. Please try again later.":"Rate limit exceeded. Please try again later.","Read-only":"Read-only","Reference by Class":"Reference by Class","Reference by ID":"Reference by ID","Reference by Label":"Reference by Label","References":"References","References are used to create edges between nodes that are created elsewhere in the document":"References are used to create edges between nodes that are created elsewhere in the document","Referencing a node by its exact label":"Referencing a node by its exact label","Referencing a node by its unique ID":"Referencing a node by its unique ID","Referencing multiple nodes with the same assigned class":"Referencing multiple nodes with the same assigned class","Refresh Page":"Refresh Page","Reload to Update":"Reload to Update","Rename":"Rename","Rename {0}":["Rename ",["0"]],"Request Magic Link":"Request Magic Link","Request Password Reset":"Request Password Reset","Reset":"Reset","Reset Password":"Reset Password","Resume Subscription":"Resume Subscription","Return":"Return","Right to Left":"Right to Left","Right-click nodes for options":"Right-click nodes for options","Roadmap":"Roadmap","Rotate Label":"Rotate Label","SVG Export is a Pro Feature":"SVG Export is a Pro Feature","SVG, PDF & all export formats":"SVG, PDF & all export formats","Satisfaction guaranteed or first payment refunded":"Satisfaction guaranteed or first payment refunded","Save":"Save","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.","Save time with AI and dictation, making it easy to create diagrams.":"Save time with AI and dictation, making it easy to create diagrams.","Save to Cloud":"Save to Cloud","Save to File":"Save to File","Save your Work":"Save your Work","Schedule personal consultation sessions":"Schedule personal consultation sessions","Secure payment":"Secure payment","See more reviews on Product Hunt":"See more reviews on Product Hunt","See what\'s possible":"See what\'s possible","Select a destination folder for \\"{0}\\".":["Select a destination folder for \\"",["0"],"\\"."],"Send us a message":"Send us a message","Set a consistent height for all nodes":"Set a consistent height for all nodes","Settings":"Settings","Share":"Share","Sign In":"Sign In","Sign in with <0>GitHub0>":"Sign in with <0>GitHub0>","Sign in with <0>Google0>":"Sign in with <0>Google0>","Sorry! This page is only available in English.":"Sorry! This page is only available in English.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Sorry, there was an error converting the text to a flowchart. Try again later.","Sort Ascending":"Sort Ascending","Sort Descending":"Sort Descending","Sort by {0}":["Sort by ",["0"]],"Source Arrow Shape":"Source Arrow Shape","Source Column":"Source Column","Source Delimiter":"Source Delimiter","Source Distance From Node":"Source Distance From Node","Source/Target Arrow Shape":"Source/Target Arrow Shape","Spacing":"Spacing","Special Attributes":"Special Attributes","Start":"Start","Start Over":"Start Over","Start faster with use-case specific templates":"Start faster with use-case specific templates","Start for free":"Start for free","Status":"Status","Step 1":"Step 1","Step 2":"Step 2","Step 3":"Step 3","Store any data associated to a node":"Store any data associated to a node","Style Classes":"Style Classes","Style with classes":"Style with classes","Submit":"Submit","Subscription":"Subscription","Subscription Successful!":"Subscription Successful!","Subscription will end":"Subscription will end","Support":"Support","Target Arrow Shape":"Target Arrow Shape","Target Column":"Target Column","Target Delimiter":"Target Delimiter","Target Distance From Node":"Target Distance From Node","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Tell the AI what you need in plain English. Your diagram builds itself in seconds.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Tell us what\'s working and what isn\'t. Every message is read by the developer.","Text Color":"Text Color","Text Horizontal Offset":"Text Horizontal Offset","Text Leading":"Text Leading","Text Max Width":"Text Max Width","Text Vertical Offset":"Text Vertical Offset","Text followed by colon+space creates an edge with the text as the label":"Text followed by colon+space creates an edge with the text as the label","Text on a line creates a node with the text as the label":"Text on a line creates a node with the text as the label","Thank you for your feedback!":"Thank you for your feedback!","The beauty and magic reside in the minimalism.":"The beauty and magic reside in the minimalism.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"The best way to change styles is to right-click on a node or an edge and select the style you want.","The column that contains the edge label(s)":"The column that contains the edge label(s)","The column that contains the source node ID(s)":"The column that contains the source node ID(s)","The column that contains the target node ID(s)":"The column that contains the target node ID(s)","The delimiter used to separate multiple source nodes":"The delimiter used to separate multiple source nodes","The delimiter used to separate multiple target nodes":"The delimiter used to separate multiple target nodes","The fastest way to turn what\'s in your head into something everyone else can understand.":"The fastest way to turn what\'s in your head into something everyone else can understand.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.","The possible shapes are:":"The possible shapes are:","Theme":"Theme","Theme Customization Editor":"Theme Customization Editor","Theme Editor":"Theme Editor","Theme editor":"Theme editor","There are no edges in this data":"There are no edges in this data","This action cannot be undone.":"This action cannot be undone.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"This feature is only available to pro users. <0>Become a pro user0> to unlock it.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"This may take between 30 seconds and 2 minutes depending on the length of your input.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!","This will replace the current content.":"This will replace the current content.","This will replace your current chart content with the template content.":"This will replace your current chart content with the template content.","This will replace your current sandbox.":"This will replace your current sandbox.","Time to decide":"Time to decide","Tip":"Tip","To fix this change one of the edge IDs":"To fix this change one of the edge IDs","To fix this change one of the node IDs":"To fix this change one of the node IDs","To fix this move one pointer to the next line":"To fix this move one pointer to the next line","To fix this start the container <0/> on a different line":"To fix this start the container <0/> on a different line","To learn more about why we require you to log in, please read <0>this blog post0>.":"To learn more about why we require you to log in, please read <0>this blog post0>.","Top to Bottom":"Top to Bottom","Transform Your Ideas into Professional Diagrams in Seconds":"Transform Your Ideas into Professional Diagrams in Seconds","Transform text into diagrams instantly":"Transform text into diagrams instantly","Try AI":"Try AI","Try adjusting your search or filters to find what you\'re looking for.":"Try adjusting your search or filters to find what you\'re looking for.","Try again":"Try again","Try it free":"Try it free","Two edges have the same ID":"Two edges have the same ID","Two nodes have the same ID":"Two nodes have the same ID","Type it. See it.":"Type it. See it.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.","Undo":"Undo","Unescaped special character":"Unescaped special character","Unique text value to identify a node":"Unique text value to identify a node","Unknown":"Unknown","Unknown Parsing Error":"Unknown Parsing Error","Unlimited Flowcharts":"Unlimited Flowcharts","Unlimited Permanent Flowcharts":"Unlimited Permanent Flowcharts","Unlimited cloud-saved flowcharts":"Unlimited cloud-saved flowcharts","Unlimited saved diagrams":"Unlimited saved diagrams","Unlock AI Features and never lose your work with a Pro account.":"Unlock AI Features and never lose your work with a Pro account.","Unlock Unlimited AI Flowcharts":"Unlock Unlimited AI Flowcharts","Unpaid":"Unpaid","Update Email":"Update Email","Updated Date":"Updated Date","Upgrade Now - Save My Work":"Upgrade Now - Save My Work","Upgrade to Flowchart Fun Pro and unlock:":"Upgrade to Flowchart Fun Pro and unlock:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.","Upgrade to Pro":"Upgrade to Pro","Upgrade to Pro for permanent charts.":"Upgrade to Pro for permanent charts.","Upload your File":"Upload your File","Use Custom CSS Only":"Use Custom CSS Only","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!","Use classes to group nodes":"Use classes to group nodes","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Use the attribute <0>href0> to set a link on a node that opens in a new tab.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.","Use the customer portal to change your billing information.":"Use the customer portal to change your billing information.","Use these settings to adapt the look and behavior of your flowcharts":"Use these settings to adapt the look and behavior of your flowcharts","Use this file for org charts, hierarchies, and other organizational structures.":"Use this file for org charts, hierarchies, and other organizational structures.","Use this file for sequences, processes, and workflows.":"Use this file for sequences, processes, and workflows.","Use this mode to modify and enhance your current chart.":"Use this mode to modify and enhance your current chart.","Used at":"Used at","User":"User","Vector Export (SVG)":"Vector Export (SVG)","View on Github":"View on Github","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'","Watermark-Free Diagrams":"Watermark-Free Diagrams","Watermarks":"Watermarks","Welcome to Flowchart Fun":"Welcome to Flowchart Fun","What if I just need it for one project?":"What if I just need it for one project?","What our users are saying":"What our users are saying","What\'s next?":"What\'s next?","What\'s this?":"What\'s this?","Width":"Width","Width and Height":"Width and Height","Will my diagrams actually look professional?":"Will my diagrams actually look professional?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.","Would you like to continue?":"Would you like to continue?","Would you like to suggest a new example?":"Would you like to suggest a new example?","Wrap text in parentheses to connect to any node":"Wrap text in parentheses to connect to any node","Write like an outline":"Write like an outline","Write your prompt here or click to enable the microphone, then press and hold to record.":"Write your prompt here or click to enable the microphone, then press and hold to record.","Yearly":"Yearly","Yes — send us a message and we\'ll set you up with a discounted rate.":"Yes — send us a message and we\'ll set you up with a discounted rate.","Yes, Replace Content":"Yes, Replace Content","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["You are about to add ",["numNodes"]," nodes and ",["numEdges"]," edges to your graph."],"You need to log in to access this page.":"You need to log in to access this page.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>","You\'re doing great!":"You\'re doing great!","You\'re on the free plan.":"You\'re on the free plan.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!","Your Charts":"Your Charts","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.","Your next diagram should be your best one.":"Your next diagram should be your best one.","Your subscription is <0>{statusDisplay}0>.":["Your subscription is <0>",["statusDisplay"],"0>."],"Your work stays yours":"Your work stays yours","Zoom In":"Zoom In","Zoom Out":"Zoom Out","month":"month","or":"or","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"$48/year (save 33%) · Cancel anytime","$6/mo":"$6/mo","1 Temporary Flowchart":"1 Temporary Flowchart","1 diagram at a time":"1 diagram at a time","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Sign In0> / <1>Sign Up1> with email and password","A new version of the app is available. Please reload to update.":"A new version of the app is available. Please reload to update.","AI Creation & Editing":"AI Creation & Editing","AI generation & editing":"AI generation & editing","AI-Powered Flowchart Creation":"AI-Powered Flowchart Creation","AI-generated from plain text in under 5 seconds.":"AI-generated from plain text in under 5 seconds.","AI-powered editing to supercharge your workflow":"AI-powered editing to supercharge your workflow","About":"About","Account":"Account","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`","Add some steps":"Add some steps","Advanced":"Advanced","Align Horizontally":"Align Horizontally","Align Nodes":"Align Nodes","Align Vertically":"Align Vertically","All this for just $6/month - less than your daily coffee ☕":"All this for just $6/month - less than your daily coffee ☕","Always presentation-ready":"Always presentation-ready","Amount":"Amount","An error occurred. Try resubmitting or email {0} directly.":["An error occurred. Try resubmitting or email ",["0"]," directly."],"Appearance":"Appearance","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":["Are you sure you want to delete the flowchart \\"",["0"],"\\"? This action cannot be undone."],"Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":["Are you sure you want to delete the folder \\"",["0"],"\\" and all its contents? This action cannot be undone."],"Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":["Are you sure you want to delete the folder \\"",["0"],"\\"? This action cannot be undone."],"Are you sure?":"Are you sure?","Arrow Size":"Arrow Size","Attributes":"Attributes","August 2023":"August 2023","Back":"Back","Back To Editor":"Back To Editor","Background Color":"Background Color","Basic Flowchart":"Basic Flowchart","Become a Github Sponsor":"Become a Github Sponsor","Become a Pro User":"Become a Pro User","Begin your journey":"Begin your journey","Billed annually at $48":"Billed annually at $48","Billed monthly at $6":"Billed monthly at $6","Blog":"Blog","Book a Meeting":"Book a Meeting","Border Color":"Border Color","Border Width":"Border Width","Bottom to Top":"Bottom to Top","Breadthfirst":"Breadthfirst","Build your personal flowchart library":"Build your personal flowchart library","Can I import my existing diagrams?":"Can I import my existing diagrams?","Cancel":"Cancel","Cancel anytime":"Cancel anytime","Cancel your subscription. Your hosted charts will become read-only.":"Cancel your subscription. Your hosted charts will become read-only.","Certain attributes can be used to customize the appearance or functionality of elements.":"Certain attributes can be used to customize the appearance or functionality of elements.","Change Email Address":"Change Email Address","Changelog":"Changelog","Charts":"Charts","Check out the guide:":"Check out the guide:","Check your email for a link to log in.<0/>You can close this window.":"Check your email for a link to log in.<0/>You can close this window.","Choose":"Choose","Choose Template":"Choose Template","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .","Choose how edges connect between nodes":"Choose how edges connect between nodes","Choose how nodes are automatically arranged in your flowchart":"Choose how nodes are automatically arranged in your flowchart","Circle":"Circle","Classes":"Classes","Clear":"Clear","Clear text?":"Clear text?","Clone":"Clone","Clone Flowchart":"Clone Flowchart","Close":"Close","Color":"Color","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Colors include red, orange, yellow, blue, purple, black, white, and gray.","Column":"Column","Comment":"Comment","Community templates":"Community templates","Compare our plans and find the perfect fit for your flowcharting needs":"Compare our plans and find the perfect fit for your flowcharting needs","Concentric":"Concentric","Confirm New Email":"Confirm New Email","Confirm your email address to sign in.":"Confirm your email address to sign in.","Connect your Data":"Connect your Data","Containers":"Containers","Containers are nodes that contain other nodes. They are declared using curly braces.":"Containers are nodes that contain other nodes. They are declared using curly braces.","Continue":"Continue","Continue in Sandbox (Resets daily, work not saved)":"Continue in Sandbox (Resets daily, work not saved)","Controls the flow direction of hierarchical layouts":"Controls the flow direction of hierarchical layouts","Convert":"Convert","Convert to Flowchart":"Convert to Flowchart","Convert to hosted chart?":"Convert to hosted chart?","Cookie Policy":"Cookie Policy","Copied SVG code to clipboard":"Copied SVG code to clipboard","Copied {format} to clipboard":["Copied ",["format"]," to clipboard"],"Copy":"Copy","Copy PNG Image":"Copy PNG Image","Copy SVG Code":"Copy SVG Code","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copy your mermaid.js code or open it directly in the mermaid.js live editor.","Create":"Create","Create Flowcharts using AI":"Create Flowcharts using AI","Create Unlimited Flowcharts":"Create Unlimited Flowcharts","Create a New Chart":"Create a New Chart","Create a flowchart showing the steps of planning and executing a school fundraising event":"Create a flowchart showing the steps of planning and executing a school fundraising event","Create a new flowchart to get started or organize your work with folders.":"Create a new flowchart to get started or organize your work with folders.","Create flowcharts instantly: Type or paste text, see it visualized.":"Create flowcharts instantly: Type or paste text, see it visualized.","Create unlimited diagrams for just $6/month!":"Create unlimited diagrams for just $6/month!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Create unlimited flowcharts stored in the cloud– accessible anywhere!","Create with AI":"Create with AI","Created Date":"Created Date","Creating an edge between two nodes is done by indenting the second node below the first":"Creating an edge between two nodes is done by indenting the second node below the first","Curve Style":"Curve Style","Custom CSS":"Custom CSS","Custom Sharing Options":"Custom Sharing Options","Custom sharing & public links":"Custom sharing & public links","Customer Portal":"Customer Portal","Daily Sandbox Editor":"Daily Sandbox Editor","Dark":"Dark","Dark Mode":"Dark Mode","Data Import (Visio, Lucidchart, CSV)":"Data Import (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Data import feature for complex diagrams","Date":"Date","Delete":"Delete","Delete {0}":["Delete ",["0"]],"Describe it and it appears":"Describe it and it appears","Describe your idea. Get a diagram worth presenting.":"Describe your idea. Get a diagram worth presenting.","Design a software development lifecycle flowchart for an agile team":"Design a software development lifecycle flowchart for an agile team","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Develop a decision tree for a CEO to evaluate potential new market opportunities","Direction":"Direction","Dismiss":"Dismiss","Do you offer discounts for students or nonprofits?":"Do you offer discounts for students or nonprofits?","Do you want to delete this?":"Do you want to delete this?","Document":"Document","Don\'t Lose Your Work":"Don\'t Lose Your Work","Download":"Download","Download JPG":"Download JPG","Download PNG":"Download PNG","Download SVG":"Download SVG","Drag and drop a CSV file here, or click to select a file":"Drag and drop a CSV file here, or click to select a file","Draw an edge from multiple nodes by beginning the line with a reference":"Draw an edge from multiple nodes by beginning the line with a reference","Drop the file here ...":"Drop the file here ...","Each line becomes a node":"Each line becomes a node","Edge ID, Classes, Attributes":"Edge ID, Classes, Attributes","Edge Label":"Edge Label","Edge Label Column":"Edge Label Column","Edge Style":"Edge Style","Edge Text Size":"Edge Text Size","Edge missing indentation":"Edge missing indentation","Edges":"Edges","Edges are declared in the same row as their source node":"Edges are declared in the same row as their source node","Edges are declared in the same row as their target node":"Edges are declared in the same row as their target node","Edges are declared in their own row":"Edges are declared in their own row","Edges can also have ID\'s, classes, and attributes before the label":"Edges can also have ID\'s, classes, and attributes before the label","Edges can be styled with dashed, dotted, or solid lines":"Edges can be styled with dashed, dotted, or solid lines","Edges in Separate Rows":"Edges in Separate Rows","Edges in Source Node Row":"Edges in Source Node Row","Edges in Target Node Row":"Edges in Target Node Row","Edit":"Edit","Edit with AI":"Edit with AI","Editable":"Editable","Editor":"Editor","Email":"Email","Empty":"Empty","Enable to set a consistent height for all nodes":"Enable to set a consistent height for all nodes","Enter a name for the cloned flowchart.":"Enter a name for the cloned flowchart.","Enter a name for the new folder.":"Enter a name for the new folder.","Enter a new name for the {0}.":["Enter a new name for the ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Enter your email address and we\'ll send you a magic link to sign in.","Enter your email address below and we\'ll send you a link to reset your password.":"Enter your email address below and we\'ll send you a link to reset your password.","Equal To":"Equal To","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.","Everything you need to know about Flowchart Fun Pro":"Everything you need to know about Flowchart Fun Pro","Examples":"Examples","Excalidraw":"Excalidraw","Exclusive Office Hours":"Exclusive Office Hours","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month","Explore Pro":"Explore Pro","Explore more":"Explore more","Export":"Export","Export clean diagrams without branding":"Export clean diagrams without branding","Export to PNG & JPG":"Export to PNG & JPG","Export to PNG, JPG, and SVG":"Export to PNG, JPG, and SVG","Feature Breakdown":"Feature Breakdown","Feedback":"Feedback","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.","Fine-tune layouts and visual styles":"Fine-tune layouts and visual styles","Fixed Height":"Fixed Height","Fixed Node Height":"Fixed Node Height","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"Flowchart Fun is an open source project made by <0>Tone\xA0Row0>","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun is built and maintained by one developer. Your support keeps it going.","Follow Us on Twitter":"Follow Us on Twitter","Font Family":"Font Family","Forgot your password?":"Forgot your password?","Free":"Free","Free users: charts in the sandbox expire after 7 days.":"Free users: charts in the sandbox expire after 7 days.","Frequently Asked Questions":"Frequently Asked Questions","Full-screen, read-only, and template sharing":"Full-screen, read-only, and template sharing","Fullscreen":"Fullscreen","General":"General","Generate flowcharts from text automatically":"Generate flowcharts from text automatically","Get Pro Access Now":"Get Pro Access Now","Get Unlimited AI Requests":"Get Unlimited AI Requests","Get rapid responses to your questions":"Get rapid responses to your questions","Get unlimited flowcharts and premium features":"Get unlimited flowcharts and premium features","Go back home":"Go back home","Go to the Editor":"Go to the Editor","Go to your Sandbox":"Go to your Sandbox","Graph":"Graph","Green?":"Green?","Grid":"Grid","Group ranking and ranked-choice voting, free":"Group ranking and ranked-choice voting, free","Have complex questions or issues? We\'re here to help.":"Have complex questions or issues? We\'re here to help.","Here are some Pro features you can now enjoy.":"Here are some Pro features you can now enjoy.","High-quality exports with embedded fonts":"High-quality exports with embedded fonts","History":"History","Home":"Home","How are edges declared in this data?":"How are edges declared in this data?","How fast can I actually make something?":"How fast can I actually make something?","How would you like to save your chart?":"How would you like to save your chart?","I would like to request a new template:":"I would like to request a new template:","ID\'s":"ID\'s","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>","Images":"Images","Import Data":"Import Data","Import data from a CSV file.":"Import data from a CSV file.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.","Import from CSV":"Import from CSV","Import from Visio, Lucidchart, CSV":"Import from Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Import from Visio, Lucidchart, and CSV","Import from anywhere":"Import from anywhere","Import from popular diagram tools":"Import from popular diagram tools","Import your diagram it into Microsoft Visio using one of these CSV files.":"Import your diagram it into Microsoft Visio using one of these CSV files.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:","Indent to connect nodes":"Indent to connect nodes","Info":"Info","Is":"Is","Is my data private?":"Is my data private?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.","Join 2000+ professionals who\'ve upgraded their workflow":"Join 2000+ professionals who\'ve upgraded their workflow","Join thousands of happy users who love Flowchart Fun":"Join thousands of happy users who love Flowchart Fun","Keep Things Private":"Keep Things Private","Keep changes?":"Keep changes?","Keep practicing":"Keep practicing","Keep your data private on your computer":"Keep your data private on your computer","Language":"Language","Layout":"Layout","Layout Algorithm":"Layout Algorithm","Layout Frozen":"Layout Frozen","Leading References":"Leading References","Learn More":"Learn More","Learn Syntax":"Learn Syntax","Learn about Flowchart Fun Pro":"Learn about Flowchart Fun Pro","Left to Right":"Left to Right","Let us know why you\'re canceling. We\'re always looking to improve.":"Let us know why you\'re canceling. We\'re always looking to improve.","Light":"Light","Light Mode":"Light Mode","Link":"Link","Link back":"Link back","Load":"Load","Load Chart":"Load Chart","Load File":"Load File","Load Files":"Load Files","Load default content":"Load default content","Load from link?":"Load from link?","Load layout and styles":"Load layout and styles","Loading...":"Loading...","Local File Support":"Local File Support","Local saving for offline access":"Local saving for offline access","Lock Zoom to Graph":"Lock Zoom to Graph","Log In":"Log In","Log Out":"Log Out","Log in to Save":"Log in to Save","Log in to upgrade your account":"Log in to upgrade your account","Made by <0>Tone\xA0Row0>":"Made by <0>Tone\xA0Row0>","Make a One-Time Donation":"Make a One-Time Donation","Make it yours":"Make it yours","Make publicly accessible":"Make publicly accessible","Manage Billing":"Manage Billing","Map Data":"Map Data","Maximum width of text inside nodes":"Maximum width of text inside nodes","Monthly":"Monthly","More from Tone Row":"More from Tone Row","More from Tone Row:":"More from Tone Row:","More tools:":"More tools:","Move":"Move","Move {0}":["Move ",["0"]],"Multiple pointers on same line":"Multiple pointers on same line","My dog ate my credit card!":"My dog ate my credit card!","Name":"Name","Name Chart":"Name Chart","Name your chart":"Name your chart","New":"New","New Email":"New Email","New Flowchart":"New Flowchart","New Folder":"New Folder","Next charge":"Next charge","No Edges":"No Edges","No Folder (Root)":"No Folder (Root)","No Watermarks!":"No Watermarks!","No charts yet":"No charts yet","No items in this folder":"No items in this folder","No matching charts found":"No matching charts found","Node Border Style":"Node Border Style","Node Colors":"Node Colors","Node ID":"Node ID","Node ID, Classes, Attributes":"Node ID, Classes, Attributes","Node Label":"Node Label","Node Shape":"Node Shape","Node Shapes":"Node Shapes","Nodes":"Nodes","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.","Not Empty":"Not Empty","Now you\'re thinking with flowcharts!":"Now you\'re thinking with flowcharts!","Office Hours":"Office Hours","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.","One on One Support":"One on One Support","One-on-One Support":"One-on-One Support","Open Customer Portal":"Open Customer Portal","Operation canceled":"Operation canceled","Or maybe blue!":"Or maybe blue!","Organization Chart":"Organization Chart","PNG & JPG export":"PNG & JPG export","Padding":"Padding","Page not found":"Page not found","Password":"Password","Past Due":"Past Due","Paste a document to convert it":"Paste a document to convert it","Paste your document or outline here to convert it into an organized flowchart.":"Paste your document or outline here to convert it into an organized flowchart.","Pasted content detected. Convert to Flowchart Fun syntax?":"Pasted content detected. Convert to Flowchart Fun syntax?","Perfect for docs and quick sharing":"Perfect for docs and quick sharing","Permanent Charts are a Pro Feature":"Permanent Charts are a Pro Feature","Playbook":"Playbook","Pointer and container on same line":"Pointer and container on same line","Pricing":"Pricing","Priority One-on-One Support":"Priority One-on-One Support","Priority support":"Priority support","Privacy Policy":"Privacy Policy","Pro starts at $4/mo billed yearly. Cancel anytime.":"Pro starts at $4/mo billed yearly. Cancel anytime.","Pro tip: Right-click any node to customize its shape and color":"Pro tip: Right-click any node to customize its shape and color","Processing Data":"Processing Data","Processing...":"Processing...","Prompt":"Prompt","Public":"Public","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.","Quick experimentation space that resets daily":"Quick experimentation space that resets daily","Random":"Random","Rapid Deployment Templates":"Rapid Deployment Templates","Rapid Templates":"Rapid Templates","Raster Export (PNG, JPG)":"Raster Export (PNG, JPG)","Rate limit exceeded. Please try again later.":"Rate limit exceeded. Please try again later.","Read-only":"Read-only","Reference by Class":"Reference by Class","Reference by ID":"Reference by ID","Reference by Label":"Reference by Label","References":"References","References are used to create edges between nodes that are created elsewhere in the document":"References are used to create edges between nodes that are created elsewhere in the document","Referencing a node by its exact label":"Referencing a node by its exact label","Referencing a node by its unique ID":"Referencing a node by its unique ID","Referencing multiple nodes with the same assigned class":"Referencing multiple nodes with the same assigned class","Refresh Page":"Refresh Page","Reload to Update":"Reload to Update","Rename":"Rename","Rename {0}":["Rename ",["0"]],"Request Magic Link":"Request Magic Link","Request Password Reset":"Request Password Reset","Reset":"Reset","Reset Password":"Reset Password","Resume Subscription":"Resume Subscription","Return":"Return","Right to Left":"Right to Left","Right-click nodes for options":"Right-click nodes for options","Roadmap":"Roadmap","Rotate Label":"Rotate Label","SVG Export is a Pro Feature":"SVG Export is a Pro Feature","SVG, PDF & all export formats":"SVG, PDF & all export formats","Satisfaction guaranteed or first payment refunded":"Satisfaction guaranteed or first payment refunded","Save":"Save","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.","Save time with AI and dictation, making it easy to create diagrams.":"Save time with AI and dictation, making it easy to create diagrams.","Save to Cloud":"Save to Cloud","Save to File":"Save to File","Save your Work":"Save your Work","Schedule personal consultation sessions":"Schedule personal consultation sessions","Secure payment":"Secure payment","See more reviews on Product Hunt":"See more reviews on Product Hunt","See what\'s possible":"See what\'s possible","Select a destination folder for \\"{0}\\".":["Select a destination folder for \\"",["0"],"\\"."],"Send us a message":"Send us a message","Set a consistent height for all nodes":"Set a consistent height for all nodes","Settings":"Settings","Share":"Share","Sign In":"Sign In","Sign in with <0>GitHub0>":"Sign in with <0>GitHub0>","Sign in with <0>Google0>":"Sign in with <0>Google0>","Sorry! This page is only available in English.":"Sorry! This page is only available in English.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Sorry, there was an error converting the text to a flowchart. Try again later.","Sort Ascending":"Sort Ascending","Sort Descending":"Sort Descending","Sort by {0}":["Sort by ",["0"]],"Source Arrow Shape":"Source Arrow Shape","Source Column":"Source Column","Source Delimiter":"Source Delimiter","Source Distance From Node":"Source Distance From Node","Source/Target Arrow Shape":"Source/Target Arrow Shape","Spacing":"Spacing","Special Attributes":"Special Attributes","Start":"Start","Start Over":"Start Over","Start faster with use-case specific templates":"Start faster with use-case specific templates","Start for free":"Start for free","Status":"Status","Step 1":"Step 1","Step 2":"Step 2","Step 3":"Step 3","Store any data associated to a node":"Store any data associated to a node","Style Classes":"Style Classes","Style with classes":"Style with classes","Submit":"Submit","Subscription":"Subscription","Subscription Successful!":"Subscription Successful!","Subscription will end":"Subscription will end","Support":"Support","Target Arrow Shape":"Target Arrow Shape","Target Column":"Target Column","Target Delimiter":"Target Delimiter","Target Distance From Node":"Target Distance From Node","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Tell the AI what you need in plain English. Your diagram builds itself in seconds.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Tell us what\'s working and what isn\'t. Every message is read by the developer.","Text Color":"Text Color","Text Horizontal Offset":"Text Horizontal Offset","Text Leading":"Text Leading","Text Max Width":"Text Max Width","Text Vertical Offset":"Text Vertical Offset","Text followed by colon+space creates an edge with the text as the label":"Text followed by colon+space creates an edge with the text as the label","Text on a line creates a node with the text as the label":"Text on a line creates a node with the text as the label","Thank you for your feedback!":"Thank you for your feedback!","The beauty and magic reside in the minimalism.":"The beauty and magic reside in the minimalism.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"The best way to change styles is to right-click on a node or an edge and select the style you want.","The column that contains the edge label(s)":"The column that contains the edge label(s)","The column that contains the source node ID(s)":"The column that contains the source node ID(s)","The column that contains the target node ID(s)":"The column that contains the target node ID(s)","The delimiter used to separate multiple source nodes":"The delimiter used to separate multiple source nodes","The delimiter used to separate multiple target nodes":"The delimiter used to separate multiple target nodes","The fastest way to turn what\'s in your head into something everyone else can understand.":"The fastest way to turn what\'s in your head into something everyone else can understand.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.","The possible shapes are:":"The possible shapes are:","Theme":"Theme","Theme Customization Editor":"Theme Customization Editor","Theme Editor":"Theme Editor","Theme editor":"Theme editor","There are no edges in this data":"There are no edges in this data","This action cannot be undone.":"This action cannot be undone.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"This feature is only available to pro users. <0>Become a pro user0> to unlock it.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"This may take between 30 seconds and 2 minutes depending on the length of your input.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!","This will replace the current content.":"This will replace the current content.","This will replace your current chart content with the template content.":"This will replace your current chart content with the template content.","This will replace your current sandbox.":"This will replace your current sandbox.","Time to decide":"Time to decide","Tip":"Tip","To fix this change one of the edge IDs":"To fix this change one of the edge IDs","To fix this change one of the node IDs":"To fix this change one of the node IDs","To fix this move one pointer to the next line":"To fix this move one pointer to the next line","To fix this start the container <0/> on a different line":"To fix this start the container <0/> on a different line","To learn more about why we require you to log in, please read <0>this blog post0>.":"To learn more about why we require you to log in, please read <0>this blog post0>.","Top to Bottom":"Top to Bottom","Transform Your Ideas into Professional Diagrams in Seconds":"Transform Your Ideas into Professional Diagrams in Seconds","Transform text into diagrams instantly":"Transform text into diagrams instantly","Try AI":"Try AI","Try adjusting your search or filters to find what you\'re looking for.":"Try adjusting your search or filters to find what you\'re looking for.","Try again":"Try again","Try it free":"Try it free","Turn documents into diagrams with AI":"Turn documents into diagrams with AI","Two edges have the same ID":"Two edges have the same ID","Two nodes have the same ID":"Two nodes have the same ID","Type it. See it.":"Type it. See it.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.","Undo":"Undo","Unescaped special character":"Unescaped special character","Unique text value to identify a node":"Unique text value to identify a node","Unknown":"Unknown","Unknown Parsing Error":"Unknown Parsing Error","Unlimited Flowcharts":"Unlimited Flowcharts","Unlimited Permanent Flowcharts":"Unlimited Permanent Flowcharts","Unlimited cloud-saved flowcharts":"Unlimited cloud-saved flowcharts","Unlimited saved diagrams":"Unlimited saved diagrams","Unlock AI Features and never lose your work with a Pro account.":"Unlock AI Features and never lose your work with a Pro account.","Unlock Unlimited AI Flowcharts":"Unlock Unlimited AI Flowcharts","Unpaid":"Unpaid","Update Email":"Update Email","Updated Date":"Updated Date","Upgrade Now - Save My Work":"Upgrade Now - Save My Work","Upgrade to Flowchart Fun Pro and unlock:":"Upgrade to Flowchart Fun Pro and unlock:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.","Upgrade to Pro":"Upgrade to Pro","Upgrade to Pro for permanent charts.":"Upgrade to Pro for permanent charts.","Upload your File":"Upload your File","Use Custom CSS Only":"Use Custom CSS Only","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!","Use classes to group nodes":"Use classes to group nodes","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Use the attribute <0>href0> to set a link on a node that opens in a new tab.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.","Use the customer portal to change your billing information.":"Use the customer portal to change your billing information.","Use these settings to adapt the look and behavior of your flowcharts":"Use these settings to adapt the look and behavior of your flowcharts","Use this file for org charts, hierarchies, and other organizational structures.":"Use this file for org charts, hierarchies, and other organizational structures.","Use this file for sequences, processes, and workflows.":"Use this file for sequences, processes, and workflows.","Use this mode to modify and enhance your current chart.":"Use this mode to modify and enhance your current chart.","Used at":"Used at","User":"User","Vector Export (SVG)":"Vector Export (SVG)","View on Github":"View on Github","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'","Watermark-Free Diagrams":"Watermark-Free Diagrams","Watermarks":"Watermarks","Welcome to Flowchart Fun":"Welcome to Flowchart Fun","What if I just need it for one project?":"What if I just need it for one project?","What our users are saying":"What our users are saying","What\'s next?":"What\'s next?","What\'s this?":"What\'s this?","Width":"Width","Width and Height":"Width and Height","Will my diagrams actually look professional?":"Will my diagrams actually look professional?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.","Would you like to continue?":"Would you like to continue?","Would you like to suggest a new example?":"Would you like to suggest a new example?","Wrap text in parentheses to connect to any node":"Wrap text in parentheses to connect to any node","Write like an outline":"Write like an outline","Write your prompt here or click to enable the microphone, then press and hold to record.":"Write your prompt here or click to enable the microphone, then press and hold to record.","Yearly":"Yearly","Yes — send us a message and we\'ll set you up with a discounted rate.":"Yes — send us a message and we\'ll set you up with a discounted rate.","Yes, Replace Content":"Yes, Replace Content","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["You are about to add ",["numNodes"]," nodes and ",["numEdges"]," edges to your graph."],"You need to log in to access this page.":"You need to log in to access this page.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>","You\'re doing great!":"You\'re doing great!","You\'re on the free plan.":"You\'re on the free plan.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!","Your Charts":"Your Charts","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.","Your next diagram should be your best one.":"Your next diagram should be your best one.","Your subscription is <0>{statusDisplay}0>.":["Your subscription is <0>",["statusDisplay"],"0>."],"Your work stays yours":"Your work stays yours","Zoom In":"Zoom In","Zoom Out":"Zoom Out","month":"month","or":"or","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/en/messages.po b/app/src/locales/en/messages.po
index 646e7c57d..fc1ceb954 100644
--- a/app/src/locales/en/messages.po
+++ b/app/src/locales/en/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "$48/year (save 33%) · Cancel anytime"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "$6/mo"
@@ -25,7 +25,7 @@ msgstr "$6/mo"
msgid "1 Temporary Flowchart"
msgstr "1 Temporary Flowchart"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "1 diagram at a time"
@@ -33,7 +33,7 @@ msgstr "1 diagram at a time"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
@@ -49,7 +49,7 @@ msgstr "A new version of the app is available. Please reload to update."
msgid "AI Creation & Editing"
msgstr "AI Creation & Editing"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "AI generation & editing"
@@ -57,7 +57,7 @@ msgstr "AI generation & editing"
msgid "AI-Powered Flowchart Creation"
msgstr "AI-Powered Flowchart Creation"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "AI-generated from plain text in under 5 seconds."
@@ -65,12 +65,12 @@ msgstr "AI-generated from plain text in under 5 seconds."
msgid "AI-powered editing to supercharge your workflow"
msgstr "AI-powered editing to supercharge your workflow"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "About"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "Account"
@@ -106,7 +106,7 @@ msgstr "Align Vertically"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "All this for just $6/month - less than your daily coffee ☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "Always presentation-ready"
@@ -118,7 +118,7 @@ msgstr "Amount"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "An error occurred. Try resubmitting or email {0} directly."
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "Appearance"
@@ -170,11 +170,11 @@ msgstr "Background Color"
msgid "Basic Flowchart"
msgstr "Basic Flowchart"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "Become a Github Sponsor"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "Become a Pro User"
@@ -191,8 +191,8 @@ msgstr "Billed annually at $48"
msgid "Billed monthly at $6"
msgstr "Billed monthly at $6"
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "Blog"
@@ -260,14 +260,14 @@ msgstr "Certain attributes can be used to customize the appearance or functional
msgid "Change Email Address"
msgstr "Change Email Address"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "Changelog"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "Charts"
@@ -346,7 +346,7 @@ msgstr "Column"
msgid "Comment"
msgstr "Comment"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "Community templates"
@@ -403,7 +403,7 @@ msgstr "Convert to Flowchart"
msgid "Convert to hosted chart?"
msgstr "Convert to hosted chart?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "Cookie Policy"
@@ -500,7 +500,7 @@ msgstr "Custom CSS"
msgid "Custom Sharing Options"
msgstr "Custom Sharing Options"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "Custom sharing & public links"
@@ -516,8 +516,8 @@ msgstr "Daily Sandbox Editor"
msgid "Dark"
msgstr "Dark"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "Dark Mode"
@@ -542,11 +542,11 @@ msgstr "Delete"
msgid "Delete {0}"
msgstr "Delete {0}"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "Describe it and it appears"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "Describe your idea. Get a diagram worth presenting."
@@ -696,8 +696,8 @@ msgstr "Edit with AI"
msgid "Editable"
msgstr "Editable"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "Editor"
@@ -742,7 +742,7 @@ msgstr "Enter your email address below and we'll send you a link to reset your p
msgid "Equal To"
msgstr "Equal To"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "Feature Breakdown"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "Feedback"
@@ -823,11 +823,15 @@ msgstr "Fixed Node Height"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "Flowchart Fun is an open source project made by <0>Tone Row0>"
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "Follow Us on Twitter"
@@ -909,6 +913,10 @@ msgstr "Green?"
msgid "Grid"
msgstr "Grid"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "Group ranking and ranked-choice voting, free"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "Have complex questions or issues? We're here to help."
@@ -980,7 +988,7 @@ msgstr "Import data from any CSV file and map it to a new flowchart. This is a g
msgid "Import from CSV"
msgstr "Import from CSV"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "Import from Visio, Lucidchart, CSV"
@@ -988,7 +996,7 @@ msgstr "Import from Visio, Lucidchart, CSV"
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "Import from Visio, Lucidchart, and CSV"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "Import from anywhere"
@@ -1012,7 +1020,7 @@ msgstr "Include a title using a <0>title0> attribute. To use Visio coloring, a
msgid "Indent to connect nodes"
msgstr "Indent to connect nodes"
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "Info"
@@ -1052,7 +1060,7 @@ msgstr "Keep practicing"
msgid "Keep your data private on your computer"
msgstr "Keep your data private on your computer"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "Language"
@@ -1101,8 +1109,8 @@ msgstr "Let us know why you're canceling. We're always looking to improve."
msgid "Light"
msgstr "Light"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "Light Mode"
@@ -1160,8 +1168,8 @@ msgstr "Local saving for offline access"
msgid "Lock Zoom to Graph"
msgstr "Lock Zoom to Graph"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "Log In"
@@ -1177,11 +1185,15 @@ msgstr "Log in to Save"
msgid "Log in to upgrade your account"
msgstr "Log in to upgrade your account"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "Made by <0>Tone Row0>"
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "Make a One-Time Donation"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "Make it yours"
@@ -1205,6 +1217,18 @@ msgstr "Maximum width of text inside nodes"
msgid "Monthly"
msgstr "Monthly"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "More from Tone Row"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "More from Tone Row:"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "More tools:"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "Name Chart"
msgid "Name your chart"
msgstr "Name your chart"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "New"
@@ -1363,7 +1387,7 @@ msgstr "Or maybe blue!"
msgid "Organization Chart"
msgstr "Organization Chart"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "PNG & JPG export"
@@ -1412,21 +1436,25 @@ msgstr "Playbook"
msgid "Pointer and container on same line"
msgstr "Pointer and container on same line"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "Pricing"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "Priority One-on-One Support"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "Priority support"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "Privacy Policy"
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "Pro starts at $4/mo billed yearly. Cancel anytime."
@@ -1451,7 +1479,7 @@ msgstr "Prompt"
msgid "Public"
msgstr "Public"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
@@ -1575,8 +1603,8 @@ msgstr "Right to Left"
msgid "Right-click nodes for options"
msgstr "Right-click nodes for options"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "Roadmap"
@@ -1590,7 +1618,7 @@ msgstr "Rotate Label"
msgid "SVG Export is a Pro Feature"
msgstr "SVG Export is a Pro Feature"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "SVG, PDF & all export formats"
@@ -1603,7 +1631,7 @@ msgstr "Satisfaction guaranteed or first payment refunded"
msgid "Save"
msgstr "Save"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
@@ -1635,7 +1663,7 @@ msgstr "Secure payment"
msgid "See more reviews on Product Hunt"
msgstr "See more reviews on Product Hunt"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "See what's possible"
@@ -1651,9 +1679,9 @@ msgstr "Send us a message"
msgid "Set a consistent height for all nodes"
msgstr "Set a consistent height for all nodes"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "Settings"
@@ -1738,7 +1766,7 @@ msgstr "Start Over"
msgid "Start faster with use-case specific templates"
msgstr "Start faster with use-case specific templates"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "Start for free"
@@ -1789,7 +1817,7 @@ msgstr "Subscription Successful!"
msgid "Subscription will end"
msgstr "Subscription will end"
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "Support"
@@ -1812,7 +1840,7 @@ msgstr "Target Delimiter"
msgid "Target Distance From Node"
msgstr "Target Distance From Node"
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
@@ -1856,7 +1884,7 @@ msgstr "Text on a line creates a node with the text as the label"
msgid "Thank you for your feedback!"
msgstr "Thank you for your feedback!"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "The beauty and magic reside in the minimalism."
@@ -1884,7 +1912,7 @@ msgstr "The delimiter used to separate multiple source nodes"
msgid "The delimiter used to separate multiple target nodes"
msgstr "The delimiter used to separate multiple target nodes"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "The fastest way to turn what's in your head into something everyone else can understand."
@@ -1911,7 +1939,7 @@ msgstr "Theme Customization Editor"
msgid "Theme Editor"
msgstr "Theme Editor"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "Theme editor"
@@ -2000,10 +2028,14 @@ msgstr "Try adjusting your search or filters to find what you're looking for."
msgid "Try again"
msgstr "Try again"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "Try it free"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "Turn documents into diagrams with AI"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "Two edges have the same ID"
@@ -2012,7 +2044,7 @@ msgstr "Two edges have the same ID"
msgid "Two nodes have the same ID"
msgstr "Two nodes have the same ID"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "Type it. See it."
@@ -2057,7 +2089,7 @@ msgstr "Unlimited Permanent Flowcharts"
msgid "Unlimited cloud-saved flowcharts"
msgstr "Unlimited cloud-saved flowcharts"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "Unlimited saved diagrams"
@@ -2089,13 +2121,17 @@ msgstr "Upgrade Now - Save My Work"
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "Upgrade to Flowchart Fun Pro and unlock:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "Upgrade to Pro"
@@ -2152,7 +2188,7 @@ msgstr "Use this file for sequences, processes, and workflows."
msgid "Use this mode to modify and enhance your current chart."
msgstr "Use this mode to modify and enhance your current chart."
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "Used at"
@@ -2164,7 +2200,7 @@ msgstr "User"
msgid "Vector Export (SVG)"
msgstr "Vector Export (SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "View on Github"
@@ -2302,7 +2338,7 @@ msgstr "Your Sandbox is a space to freely experiment with our flowchart tools, r
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "Your next diagram should be your best one."
@@ -2310,7 +2346,7 @@ msgstr "Your next diagram should be your best one."
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "Your subscription is <0>{statusDisplay}0>."
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "Your work stays yours"
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "or"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/locales/es/messages.js b/app/src/locales/es/messages.js
index 4514f547f..411eda232 100644
--- a/app/src/locales/es/messages.js
+++ b/app/src/locales/es/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"$48/año (ahorra 33%) · Cancelar en cualquier momento","$6/mo":"$6/mes","1 Temporary Flowchart":"1 Diagrama de Flujo Temporal","1 diagram at a time":"1 diagrama a la vez","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Solo CSS personalizado0> está habilitado. Solo se aplicarán los ajustes de Diseño y Avanzados.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> es un proyecto de código abierto hecho por <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Iniciar sesión0> / <1>Registrarse1> con correo electrónico y contraseña","A new version of the app is available. Please reload to update.":"Una nueva versión de la aplicación está disponible. Por favor, recargue para actualizar.","AI Creation & Editing":"Creación y edición de IA","AI generation & editing":"Generación y edición de IA","AI-Powered Flowchart Creation":"Creación de diagramas de flujo con inteligencia artificial","AI-generated from plain text in under 5 seconds.":"Generado por IA a partir de texto plano en menos de 5 segundos.","AI-powered editing to supercharge your workflow":"Edición impulsada por inteligencia artificial para potenciar tu flujo de trabajo","About":"Acerca de","Account":"Cuenta","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Agregue una barra invertida (<0>\\\\0>) antes de cualquier carácter especial: <1>(1>, <2>:2>, <3>#3>, o <4>.4>","Add some steps":"Agrega algunos pasos","Advanced":"Avanzado","Align Horizontally":"Alinear Horizontalmente","Align Nodes":"Alinear nodos","Align Vertically":"Alinear Verticalmente","All this for just $6/month - less than your daily coffee ☕":"Todo esto por solo $6 al mes, menos que tu café diario ☕","Always presentation-ready":"Siempre listo para presentar","Amount":"Cantidad","An error occurred. Try resubmitting or email {0} directly.":["Se ha producido un error. Inténtalo de nuevo o envía un correo electrónico directamente a ",["0"],"."],"Appearance":"Apariencia","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"¿Estás seguro/a de que quieres eliminar el diagrama de flujo?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"¿Estás seguro/a de que quieres eliminar la carpeta?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"¿Estás seguro/a de que quieres eliminar la carpeta?","Are you sure?":"¿Estás seguro?","Arrow Size":"Tamaño de flecha","Attributes":"Atributos","August 2023":"Agosto 2023","Back":"Atrás","Back To Editor":"Volver al Editor","Background Color":"Color de fondo","Basic Flowchart":"Diagrama de Flujo Básico","Become a Github Sponsor":"Convierte en un Patrocinador de Github","Become a Pro User":"Convierte en un Usuario Pro","Begin your journey":"Comienza tu viaje","Billed annually at $48":"Facturado anualmente a $48","Billed monthly at $6":"Facturado mensualmente a $6","Blog":"Blog","Book a Meeting":"Reserva una reunión","Border Color":"Color de borde","Border Width":"Ancho de borde","Bottom to Top":"De abajo a arriba","Breadthfirst":"Primero en amplitud","Build your personal flowchart library":"Construye tu biblioteca personal de diagramas de flujo","Can I import my existing diagrams?":"¿Puedo importar mis diagramas existentes?","Cancel":"Cancelar","Cancel anytime":"Cancelar en cualquier momento","Cancel your subscription. Your hosted charts will become read-only.":"Cancele su suscripción. Sus gráficos alojados se convertirán en solo lectura.","Certain attributes can be used to customize the appearance or functionality of elements.":"Ciertos atributos se pueden usar para personalizar la apariencia o la funcionalidad de los elementos.","Change Email Address":"Cambiar dirección de correo electrónico","Changelog":"Registro de cambios","Charts":"Gráficos","Check out the guide:":"Echa un vistazo a la guía:","Check your email for a link to log in.<0/>You can close this window.":"Revise su correo electrónico para obtener un enlace para iniciar sesión. Puede cerrar esta ventana.","Choose":"Seleccionar","Choose Template":"Elige plantilla","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Elija entre una variedad de formas de flecha para la fuente y el destino de un borde. Las formas incluyen triángulo, triángulo-camiseta, círculo-triángulo, triángulo-cruz, triángulo-curva posterior, vee, camiseta, cuadrado, círculo, diamante, chevron, ninguno.","Choose how edges connect between nodes":"Elija cómo se conectan los bordes entre nodos","Choose how nodes are automatically arranged in your flowchart":"Elija cómo se organizan automáticamente los nodos en su diagrama de flujo","Circle":"Círculo","Classes":"Clases","Clear":"Claridad","Clear text?":"¿Texto claro?","Clone":"Clon","Clone Flowchart":"Clonar diagrama de flujo","Close":"Cerrar","Color":"Color","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Los colores incluyen rojo, naranja, amarillo, azul, morado, negro, blanco y gris.","Column":"Columna","Comment":"Comentario","Community templates":"Plantillas de la comunidad","Compare our plans and find the perfect fit for your flowcharting needs":"Compara nuestros planes y encuentra el ajuste perfecto para tus necesidades de diagramación de flujo","Concentric":"Concéntrico","Confirm New Email":"Confirmar nuevo correo electrónico","Confirm your email address to sign in.":"Confirma tu dirección de correo electrónico para iniciar sesión.","Connect your Data":"Conecta tus datos","Containers":"Contenedores","Containers are nodes that contain other nodes. They are declared using curly braces.":"Los contenedores son nodos que contienen otros nodos. Se declaran usando llaves.","Continue":"Continuar","Continue in Sandbox (Resets daily, work not saved)":"Continuar en el Área de Pruebas (Se reinicia diariamente, el trabajo no se guarda)","Controls the flow direction of hierarchical layouts":"Controla la dirección del flujo de los diseños jerárquicos","Convert":"Convertir","Convert to Flowchart":"Convertir a Diagrama de Flujo","Convert to hosted chart?":"¿Convertir a gráfico hospedado?","Cookie Policy":"Política de cookies","Copied SVG code to clipboard":"Código SVG copiado al portapapeles","Copied {format} to clipboard":[["format"]," copiado al portapapeles"],"Copy":"Copiar","Copy PNG Image":"Copiar imagen PNG","Copy SVG Code":"Copiar código SVG","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copia tu código Excalidraw y pégalo en <0>excalidraw.com0> para editar. Esta característica es experimental y puede que no funcione con todos los diagramas. Si encuentras un error, <1>háganoslo saber1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copia tu código mermaid.js o abrilo directamente en el editor en vivo de mermaid.js.","Create":"Crear","Create Flowcharts using AI":"Crear diagramas de flujo con IA","Create Unlimited Flowcharts":"Crear diagramas de flujo ilimitados","Create a New Chart":"Crea un nuevo gráfico","Create a flowchart showing the steps of planning and executing a school fundraising event":"Crear un diagrama de flujo que muestre los pasos de planificación y ejecución de un evento de recaudación de fondos escolar","Create a new flowchart to get started or organize your work with folders.":"Crea un nuevo diagrama de flujo para empezar o organiza tu trabajo con carpetas.","Create flowcharts instantly: Type or paste text, see it visualized.":"Crea diagramas de flujo al instante: Escribe o pega texto, míralo visualizado.","Create unlimited diagrams for just $6/month!":"¡Crea diagramas ilimitados por solo $6 al mes!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"¡Crea diagramas de flujo ilimitados almacenados en la nube, accesibles desde cualquier lugar!","Create with AI":"Crear con IA","Created Date":"Fecha de creación","Creating an edge between two nodes is done by indenting the second node below the first":"Crear un borde entre dos nodos se realiza al sangrar el segundo nodo debajo del primero","Curve Style":"Estilo de Curva","Custom CSS":"CSS personalizado","Custom Sharing Options":"Opciones de compartición personalizadas","Custom sharing & public links":"Compartir personalizado y enlaces públicos","Customer Portal":"Portal del cliente","Daily Sandbox Editor":"Editor de Sandbox diario","Dark":"Oscuro","Dark Mode":"Modo oscuro","Data Import (Visio, Lucidchart, CSV)":"Importación de datos (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Función de importación de datos para diagramas complejos","Date":"Fecha","Delete":"Borrar","Delete {0}":["Borrar ",["0"]],"Describe it and it appears":"Descríbelo y aparecerá","Describe your idea. Get a diagram worth presenting.":"Describe tu idea. Obtén un diagrama que valga la pena presentar.","Design a software development lifecycle flowchart for an agile team":"Diseñar un diagrama de flujo del ciclo de vida de desarrollo de software para un equipo ágil","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Desarrollar un árbol de decisiones para que un CEO evalúe posibles nuevas oportunidades de mercado","Direction":"Dirección","Dismiss":"Descartar","Do you offer discounts for students or nonprofits?":"¿Ofrecen descuentos para estudiantes o organizaciones sin fines de lucro?","Do you want to delete this?":"¿Quieres eliminar esto?","Document":"Documento","Don\'t Lose Your Work":"No pierdas tu trabajo","Download":"Descargar","Download JPG":"Descargar JPG","Download PNG":"Descargar PNG","Download SVG":"Descargar SVG","Drag and drop a CSV file here, or click to select a file":"Arrastre y suelte un archivo CSV aquí o haga clic para seleccionar un archivo","Draw an edge from multiple nodes by beginning the line with a reference":"Dibuje un borde desde varios nodos comenzando la línea con una referencia","Drop the file here ...":"Suelta el archivo aquí ...","Each line becomes a node":"Cada línea se convierte en un nodo","Edge ID, Classes, Attributes":"ID de borde, Clases, Atributos","Edge Label":"Etiqueta de borde","Edge Label Column":"Columna de etiqueta de borde","Edge Style":"Estilo de borde","Edge Text Size":"Tamaño de texto de borde","Edge missing indentation":"Falta de sangría de borde","Edges":"Bordes","Edges are declared in the same row as their source node":"Los bordes se declaran en la misma fila que su nodo de origen","Edges are declared in the same row as their target node":"Los bordes se declaran en la misma fila que su nodo de destino","Edges are declared in their own row":"Los bordes se declaran en su propia fila","Edges can also have ID\'s, classes, and attributes before the label":"Los bordes también pueden tener ID, clases y atributos antes de la etiqueta","Edges can be styled with dashed, dotted, or solid lines":"Los bordes se pueden estilizar con líneas discontinuas, punteadas o sólidas","Edges in Separate Rows":"Bordes en filas separadas","Edges in Source Node Row":"Bordes en la fila del nodo de origen","Edges in Target Node Row":"Bordes en la fila del nodo de destino","Edit":"Editar","Edit with AI":"Editar con IA","Editable":"Editable","Editor":"Editor","Email":"Correo electrónico","Empty":"Vacío","Enable to set a consistent height for all nodes":"Activar para establecer una altura consistente para todos los nodos","Enter a name for the cloned flowchart.":"Ingrese un nombre para el diagrama de flujo clonado.","Enter a name for the new folder.":"Ingrese un nombre para la nueva carpeta.","Enter a new name for the {0}.":["Ingrese un nuevo nombre para el ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Introduzca su dirección de correo electrónico y le enviaremos un enlace mágico para iniciar sesión.","Enter your email address below and we\'ll send you a link to reset your password.":"Ingresa tu dirección de correo electrónico a continuación y te enviaremos un enlace para restablecer tu contraseña.","Equal To":"Igual a","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Cada diagrama se exporta como PNG, SVG o enlace compartible, listo para la reunión, el documento o la presentación.","Everything you need to know about Flowchart Fun Pro":"Todo lo que necesitas saber sobre Flowchart Fun Pro","Examples":"Ejemplos","Excalidraw":"Excalidraw","Exclusive Office Hours":"Horario de oficina exclusivo","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Experimenta la eficiencia y seguridad de cargar archivos locales directamente en tu diagrama de flujo, perfecto para manejar documentos relacionados con el trabajo sin conexión. Desbloquea esta función exclusiva de Pro y más con Flowchart Fun Pro, disponible por solo $6 al mes.","Explore Pro":"Explorar Pro","Explore more":"Explora más","Export":"Exportar","Export clean diagrams without branding":"Exporta diagramas limpios sin marcas","Export to PNG & JPG":"Exportar a PNG y JPG","Export to PNG, JPG, and SVG":"Exportar a PNG, JPG y SVG","Feature Breakdown":"Desglose de características","Feedback":"Comentarios","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Siéntase libre de explorar y comuníquese con nosotros a través de la página de <0>Comentarios0> si tiene alguna preocupación.","Fine-tune layouts and visual styles":"Ajusta los diseños y estilos visuales","Fixed Height":"Altura fija","Fixed Node Height":"Altura de Nodo Fija","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro te ofrece diagramas de flujo ilimitados, colaboradores ilimitados y almacenamiento ilimitado por solo $6 al mes.","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun está creado y mantenido por un solo desarrollador. Tu apoyo lo mantiene en marcha.","Follow Us on Twitter":"Síguenos en Twitter","Font Family":"Familia de Fuentes","Forgot your password?":"¿Olvidaste tu contraseña?","Free":"Gratis","Free users: charts in the sandbox expire after 7 days.":"Usuarios gratuitos: los diagramas en el área de pruebas caducan después de 7 días.","Frequently Asked Questions":"Preguntas Frecuentes","Full-screen, read-only, and template sharing":"Pantalla completa, solo lectura y compartición de plantillas","Fullscreen":"Pantalla completa","General":"General","Generate flowcharts from text automatically":"Genera diagramas de flujo automáticamente a partir de texto","Get Pro Access Now":"Obtén acceso Pro ahora","Get Unlimited AI Requests":"Obtén solicitudes de IA ilimitadas","Get rapid responses to your questions":"Obtén respuestas rápidas a tus preguntas","Get unlimited flowcharts and premium features":"Obtén flujogramas ilimitados y funciones premium","Go back home":"Vuelve a casa","Go to the Editor":"Ir al editor","Go to your Sandbox":"Ve a tu Sandbox","Graph":"Gráfico","Green?":"¿Verde?","Grid":"Cuadrícula","Have complex questions or issues? We\'re here to help.":"¿Tiene preguntas o problemas complejos? Estamos aquí para ayudar.","Here are some Pro features you can now enjoy.":"Aquí hay algunas características Pro que ahora puedes disfrutar.","High-quality exports with embedded fonts":"Exportaciones de alta calidad con fuentes incrustadas","History":"Historia","Home":"Hogar","How are edges declared in this data?":"¿Cómo se declaran los bordes en estos datos?","How fast can I actually make something?":"¿Qué tan rápido puedo crear algo realmente?","How would you like to save your chart?":"¿Cómo te gustaría guardar tu gráfico?","I would like to request a new template:":"Me gustaría solicitar una nueva plantilla:","ID\'s":"ID","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Si una cuenta con ese correo electrónico existe, le hemos enviado un correo electrónico con instrucciones sobre cómo restablecer su contraseña.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Si desea crear un borde, indente esta línea. Si no, escapar el dos puntos con una barra invertida <0>\\\\:0>","Images":"Imágenes","Import Data":"Importar datos","Import data from a CSV file.":"Importar datos de un archivo CSV.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Importar datos de cualquier archivo CSV y asignarlo a un nuevo diagrama de flujo. Esta es una excelente manera de importar datos de otras fuentes como Lucidchart, Google Sheets y Visio.","Import from CSV":"Importar desde CSV","Import from Visio, Lucidchart, CSV":"Importar desde Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Importar desde Visio, Lucidchart y CSV","Import from anywhere":"Importar desde cualquier lugar","Import from popular diagram tools":"Importa desde herramientas populares de diagramas","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importa tu diagrama a Microsoft Visio usando uno de estos archivos CSV.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Importar datos es una función profesional. Puedes actualizar a Flowchart Fun Pro por solo $6/mes.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Incluye un título usando un atributo <0>title0>. Para usar el color de Visio, agrega un atributo <1>roleType1> igual a uno de los siguientes:","Indent to connect nodes":"Indenta para conectar nodos","Info":"Información","Is":"Es","Is my data private?":"¿Es privados mis datos?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas es una representación JSON de tu diagrama utilizada por <0>Obsidian0> Canvas y otras aplicaciones.","Join 2000+ professionals who\'ve upgraded their workflow":"Únete a más de 2000 profesionales que han mejorado su flujo de trabajo","Join thousands of happy users who love Flowchart Fun":"Únete a miles de usuarios felices que aman Flowchart Fun","Keep Things Private":"Mantener las cosas privadas","Keep changes?":"¿Mantener cambios?","Keep practicing":"Sigue practicando","Keep your data private on your computer":"Mantén tus datos privados en tu computadora","Language":"Idioma","Layout":"Diseño","Layout Algorithm":"Algoritmo de diseño","Layout Frozen":"Diseño Congelado","Leading References":"Referencias principales","Learn More":"Aprender más","Learn Syntax":"Aprender sintaxis","Learn about Flowchart Fun Pro":"Aprende sobre Flowchart Fun Pro","Left to Right":"De izquierda a derecha","Let us know why you\'re canceling. We\'re always looking to improve.":"Háganos saber por qué está cancelando. Siempre estamos buscando mejorar.","Light":"Luz","Light Mode":"Modo de luz","Link":"Enlace","Link back":"Volver al enlace","Load":"Cargar","Load Chart":"Cargar gráfico","Load File":"Cargar archivo","Load Files":"Cargar archivos","Load default content":"Cargar contenido predeterminado","Load from link?":"¿Cargar desde el enlace?","Load layout and styles":"Cargar diseño y estilos","Loading...":"Cargando...","Local File Support":"Soporte de archivos locales","Local saving for offline access":"Guardado local para acceder sin conexión","Lock Zoom to Graph":"Bloquear Zoom al gráfico","Log In":"Iniciar sesión","Log Out":"Cerrar sesión","Log in to Save":"Inicia sesión para guardar","Log in to upgrade your account":"Iniciar sesión para actualizar tu cuenta","Make a One-Time Donation":"Realizar una donación única","Make it yours":"Hazlo tuyo","Make publicly accessible":"Hacerlo accesible al público","Manage Billing":"Administrar facturación","Map Data":"Datos de mapa","Maximum width of text inside nodes":"Ancho máximo del texto dentro de los nodos","Monthly":"Mensual","Move":"Mover","Move {0}":["Mover ",["0"]],"Multiple pointers on same line":"Múltiples punteros en la misma línea","My dog ate my credit card!":"¡Mi perro se comió mi tarjeta de crédito!","Name":"Nombre","Name Chart":"Nombre del gráfico","Name your chart":"Nombre su gráfico","New":"Nuevo","New Email":"Nuevo Correo Electrónico","New Flowchart":"Nuevo Diagrama de Flujo","New Folder":"Nueva Carpeta","Next charge":"Próximo cargo","No Edges":"Sin Bordes","No Folder (Root)":"Sin Carpeta (Raíz)","No Watermarks!":"¡Sin marcas de agua!","No charts yet":"Sin gráficos aún","No items in this folder":"No hay elementos en esta carpeta","No matching charts found":"No se encontraron gráficos coincidentes","Node Border Style":"Estilo de borde de nodo","Node Colors":"Colores de nodo","Node ID":"ID de nodo","Node ID, Classes, Attributes":"ID de nodo, clases, atributos","Node Label":"Etiqueta de nodo","Node Shape":"Forma de Nodo","Node Shapes":"Formas de nodo","Nodes":"Nodos","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Los nodos se pueden estilizar con líneas discontinuas, punteadas o dobles. También se pueden eliminar los bordes con border_none.","Not Empty":"No vacío ","Now you\'re thinking with flowcharts!":"¡Ahora estás pensando con diagramas de flujo!","Office Hours":"Horas de oficina ","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"De vez en cuando, el enlace mágico acabará en tu carpeta de spam. Si no lo ves después de unos minutos, busca allí o solicita un nuevo enlace. ","One on One Support":"Soporte uno a uno","One-on-One Support":"Soporte individual","Open Customer Portal":"Abrir portal de clientes","Operation canceled":"Operación cancelada","Or maybe blue!":"¡O tal vez azul!","Organization Chart":"Organigrama","PNG & JPG export":"Exportar en PNG y JPG","Padding":"Relleno","Page not found":"Página no encontrada","Password":"Contraseña","Past Due":"Vencido","Paste a document to convert it":"Pegue un documento para convertirlo","Paste your document or outline here to convert it into an organized flowchart.":"Pegue su documento o esquema aquí para convertirlo en un diagrama de flujo organizado.","Pasted content detected. Convert to Flowchart Fun syntax?":"Contenido pegado detectado. ¿Convertir a sintaxis de Flowchart Fun?","Perfect for docs and quick sharing":"Perfecto para documentos y compartir rápidamente","Permanent Charts are a Pro Feature":"Los gráficos permanentes son una característica Pro","Playbook":"Libreta de juegos","Pointer and container on same line":"Puntero y contenedor en la misma línea","Priority One-on-One Support":"Soporte prioritario uno a uno","Priority support":"Soporte prioritario","Privacy Policy":"Política de privacidad","Pro starts at $4/mo billed yearly. Cancel anytime.":"La versión Pro comienza en $4/mes facturado anualmente. Cancelar en cualquier momento.","Pro tip: Right-click any node to customize its shape and color":"Consejo profesional: Haz clic derecho en cualquier nodo para personalizar su forma y color","Processing Data":"Procesamiento de datos","Processing...":"Procesando...","Prompt":"Indicación","Public":"Público","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Importar datos de Visio, Lucidchart, CSV o comenzar desde una plantilla. No recrees lo que ya existe.","Quick experimentation space that resets daily":"Espacio de experimentación rápida que se reinicia diariamente","Random":"Aleatorio","Rapid Deployment Templates":"Plantillas de implementación rápida","Rapid Templates":"Plantillas rápidas","Raster Export (PNG, JPG)":"Exportación de ráster (PNG, JPG)","Rate limit exceeded. Please try again later.":"Límite de tasa excedido. Por favor, inténtalo de nuevo más tarde.","Read-only":"Sólo lectura","Reference by Class":"Referencia por clase","Reference by ID":"Referencia por ID","Reference by Label":"Referencia por etiqueta","References":"Referencias","References are used to create edges between nodes that are created elsewhere in the document":"Las referencias se utilizan para crear bordes entre los nodos creados en otro lugar del documento","Referencing a node by its exact label":"Referenciando un nodo por su etiqueta exacta","Referencing a node by its unique ID":"Referenciando un nodo por su ID único","Referencing multiple nodes with the same assigned class":"Referenciando múltiples nodos con la misma clase asignada","Refresh Page":"Refrescar la página","Reload to Update":"Recargar para actualizar","Rename":"Renombrar","Rename {0}":["Cambiar nombre de ",["0"]],"Request Magic Link":"Solicitar enlace mágico","Request Password Reset":"Solicitar restablecimiento de contraseña","Reset":"Restablecer","Reset Password":"Restablecer la contraseña","Resume Subscription":"Reanudar la suscripción","Return":"Devolver","Right to Left":"De derecha a izquierda","Right-click nodes for options":"Haga clic derecho en los nodos para ver las opciones","Roadmap":"Hoja de ruta","Rotate Label":"Rotar etiqueta","SVG Export is a Pro Feature":"La exportación de SVG es una función Pro","SVG, PDF & all export formats":"SVG, PDF y todos los formatos de exportación","Satisfaction guaranteed or first payment refunded":"Garantía de satisfacción o reembolso del primer pago","Save":"Guardar","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Guardar localmente, trabajar sin conexión y controlar exactamente quién ve qué. Ningún dato sale de tu máquina a menos que lo autorices.","Save time with AI and dictation, making it easy to create diagrams.":"Ahorra tiempo con IA y dictado, lo que facilita la creación de diagramas.","Save to Cloud":"Guardar en la nube","Save to File":"Guardar en archivo","Save your Work":"Guarda tu trabajo","Schedule personal consultation sessions":"Programar sesiones de consulta personal","Secure payment":"Pago seguro","See more reviews on Product Hunt":"Ver más reseñas en Product Hunt","See what\'s possible":"Ver lo que es posible","Select a destination folder for \\"{0}\\".":"Selecciona una carpeta de destino para \\\\","Send us a message":"Envíanos un mensaje","Set a consistent height for all nodes":"Establecer una altura consistente para todos los nodos","Settings":"Configuración","Share":"Compartir","Sign In":"Iniciar sesión","Sign in with <0>GitHub0>":"Iniciar sesión con <0>GitHub0>","Sign in with <0>Google0>":"Iniciar sesión con <0>Google0>","Sorry! This page is only available in English.":"¡Lo sentimos! Esta página solo está disponible en inglés.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Lo siento, hubo un error al convertir el texto en un diagrama. Inténtalo de nuevo más tarde.","Sort Ascending":"Ordenar de forma ascendente","Sort Descending":"Ordenar de forma descendente","Sort by {0}":["Ordenar por ",["0"]],"Source Arrow Shape":"Forma de flecha de origen","Source Column":"Columna de origen","Source Delimiter":"Delimitador de Origen","Source Distance From Node":"Distancia del origen al nodo","Source/Target Arrow Shape":"Forma de Flecha de Origen/Destino","Spacing":"Espaciado","Special Attributes":"Atributos Especiales","Start":"Comienzo","Start Over":"Empezar de nuevo","Start faster with use-case specific templates":"Comenzar más rápido con plantillas específicas para casos de uso","Start for free":"Comenzar gratis","Status":"Estado","Step 1":"Paso 1","Step 2":"Paso 2","Step 3":"Paso 3","Store any data associated to a node":"Almacenar cualquier dato asociado a un nodo","Style Classes":"Clases de Estilo","Style with classes":"Estilo con clases","Submit":"Enviar","Subscription":"Suscripción","Subscription Successful!":"¡Suscripción exitosa!","Subscription will end":"La suscripción finalizará","Support":"Soporte","Target Arrow Shape":"Forma de flecha de destino","Target Column":"Columna objetivo","Target Delimiter":"Delimitador objetivo","Target Distance From Node":"Distancia objetivo desde el nodo","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Dile al AI lo que necesitas en inglés sencillo. Tu diagrama se construye en segundos.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Cuéntanos qué está funcionando y qué no. Cada mensaje es leído por el desarrollador.","Text Color":"Color del texto","Text Horizontal Offset":"Desplazamiento horizontal del texto","Text Leading":"Texto principal","Text Max Width":"Ancho máximo del texto","Text Vertical Offset":"Desplazamiento vertical del texto","Text followed by colon+space creates an edge with the text as the label":"El texto seguido de dos puntos y un espacio crea un borde con el texto como etiqueta","Text on a line creates a node with the text as the label":"El texto en una línea crea un nodo con el texto como etiqueta","Thank you for your feedback!":"¡Gracias por tu comentario!","The beauty and magic reside in the minimalism.":"La belleza y la magia residen en el minimalismo.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"La mejor manera de cambiar los estilos es hacer clic derecho en un nodo o un borde y seleccionar el estilo deseado.","The column that contains the edge label(s)":"La columna que contiene la etiqueta(s) de borde","The column that contains the source node ID(s)":"La columna que contiene el ID(s) del nodo de origen","The column that contains the target node ID(s)":"La columna que contiene el ID(s) del nodo de destino","The delimiter used to separate multiple source nodes":"El delimitador utilizado para separar múltiples nodos de origen","The delimiter used to separate multiple target nodes":"El delimitador utilizado para separar múltiples nodos de destino","The fastest way to turn what\'s in your head into something everyone else can understand.":"La forma más rápida de convertir lo que tienes en mente en algo que todos puedan entender.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"El plan gratuito funciona muy bien para el uso diario. Si necesitas funciones Pro, es mensual a $6/mes - cancela en cualquier momento sin compromiso.","The possible shapes are:":"Las formas posibles son:","Theme":"Tema","Theme Customization Editor":"Editor de Personalización de Temas","Theme Editor":"Editor de temas","Theme editor":"Editor de tema","There are no edges in this data":"No hay bordes en estos datos","This action cannot be undone.":"Esta acción no se puede deshacer.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Esta característica solo está disponible para usuarios profesionales. <0>Conviértete en un usuario profesional0> para desbloquearla.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Esto puede tardar entre 30 segundos y 2 minutos dependiendo de la longitud de su entrada.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Esta caja de arena es perfecta para experimentar, pero recuerda: se reinicia diariamente. ¡Actualiza ahora y guarda tu trabajo actual!","This will replace the current content.":"Esto reemplazará el contenido actual.","This will replace your current chart content with the template content.":"Esto reemplazará el contenido actual de tu gráfico con el contenido de la plantilla.","This will replace your current sandbox.":"Esto reemplazará su sandbox actual.","Time to decide":"Hora de decidir","Tip":"Consejo","To fix this change one of the edge IDs":"Para solucionar esto cambia uno de los IDs de borde","To fix this change one of the node IDs":"Para solucionar esto cambia uno de los IDs de nodo","To fix this move one pointer to the next line":"Para solucionar esto mueve un puntero a la siguiente línea","To fix this start the container <0/> on a different line":"Para solucionar esto, inicie el contenedor <0/> en una línea diferente","To learn more about why we require you to log in, please read <0>this blog post0>.":"Para obtener más información sobre por qué requerimos que inicie sesión, lea <0>esta publicación de blog0>.","Top to Bottom":"De arriba a abajo","Transform Your Ideas into Professional Diagrams in Seconds":"Transforma tus ideas en diagramas profesionales en segundos","Transform text into diagrams instantly":"Transforma texto en diagramas al instante.","Try AI":"Prueba IA","Try adjusting your search or filters to find what you\'re looking for.":"Prueba a ajustar tu búsqueda o filtros para encontrar lo que estás buscando.","Try again":"Inténtalo de nuevo","Try it free":"Pruébalo gratis","Two edges have the same ID":"Dos bordes tienen el mismo ID","Two nodes have the same ID":"Dos nodos tienen el mismo ID","Type it. See it.":"Escríbelo. Míralo.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"¡Ups, se acabaron tus solicitudes gratuitas! Actualiza a Flowchart Fun Pro para conversiones de diagramas ilimitadas, y sigue transformando texto en claros y visuales flujogramas tan fácilmente como copiar y pegar.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"En menos de 60 segundos. Escribe unas pocas líneas de texto o describe lo que necesitas al AI, y tu diagrama aparece al instante. Exporta o compártelo con un solo clic.","Undo":"Deshacer","Unescaped special character":"Carácter especial sin escape","Unique text value to identify a node":"Valor de texto único para identificar un nodo","Unknown":"Desconocido","Unknown Parsing Error":"Error de análisis desconocido","Unlimited Flowcharts":"Flujos de trabajo ilimitados","Unlimited Permanent Flowcharts":"Flujo de gráficos permanentes ilimitados","Unlimited cloud-saved flowcharts":"Diagramas de flujo guardados en la nube de forma ilimitada","Unlimited saved diagrams":"Diagramas guardados ilimitados","Unlock AI Features and never lose your work with a Pro account.":"Desbloquea las funciones de IA y nunca pierdas tu trabajo con una cuenta Pro.","Unlock Unlimited AI Flowcharts":"Desbloquea diagramas de flujo de IA ilimitados","Unpaid":"Impago","Update Email":"Actualizar correo electrónico","Updated Date":"Fecha actualizada","Upgrade Now - Save My Work":"Actualizar ahora - Guardar mi trabajo","Upgrade to Flowchart Fun Pro and unlock:":"Actualiza a Flowchart Fun Pro y desbloquea:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Actualiza a Flowchart Fun Pro para desbloquear la exportación de SVG y disfrutar de funciones más avanzadas para tus diagramas.","Upgrade to Pro":"Actualizar a Pro","Upgrade to Pro for permanent charts.":"Actualiza a Pro para gráficos permanentes.","Upload your File":"Subir tu archivo","Use Custom CSS Only":"Usar solo CSS personalizado","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"¿Usas Lucidchart o Visio? ¡La importación de CSV facilita obtener datos de cualquier fuente!","Use classes to group nodes":"Usar clases para agrupar nodos","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Utilice el atributo <0>href0> para establecer un enlace en un nodo que se abra en una nueva pestaña.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Utilice el atributo <0>src0> para establecer la imagen de un nodo. La imagen se escalará para ajustarse al nodo, por lo que es posible que deba ajustar el ancho y la altura del nodo para obtener el resultado deseado. Solo se admiten imágenes públicas (no bloqueadas por CORS).","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Utilice los atributos <0>w0> y <1>h1> para establecer explícitamente el ancho y la altura de un nodo.","Use the customer portal to change your billing information.":"Utilice el portal de clientes para cambiar su información de facturación.","Use these settings to adapt the look and behavior of your flowcharts":"Utilice estos ajustes para adaptar la apariencia y el comportamiento de sus diagramas de flujo","Use this file for org charts, hierarchies, and other organizational structures.":"Utilice este archivo para diagramas de organización, jerarquías y otras estructuras organizativas.","Use this file for sequences, processes, and workflows.":"Utilice este archivo para secuencias, procesos y flujos de trabajo.","Use this mode to modify and enhance your current chart.":"Utilice este modo para modificar y mejorar su gráfico actual.","Used at":"Utilizado en","User":"Usuario ","Vector Export (SVG)":"Exportación de vectores (SVG)","View on Github":"Ver en Github ","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"¿Quieres crear un diagrama a partir de un documento? Pégalo en el editor y haz clic en \\"Convertir a diagrama\\".","Watermark-Free Diagrams":"Diagramas sin marca de agua","Watermarks":"Marcas de agua","Welcome to Flowchart Fun":"Bienvenido a Flowchart Divertido","What if I just need it for one project?":"¿Y si solo lo necesito para un proyecto?","What our users are saying":"Lo que dicen nuestros usuarios","What\'s next?":"¿Qué sigue?","What\'s this?":"¿Qué es esto?","Width":"Ancho","Width and Height":"Ancho y Alto","Will my diagrams actually look professional?":"¿Mis diagramas se verán realmente profesionales?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Con la versión Pro de Flowchart Fun, puedes utilizar comandos de lenguaje natural para completar rápidamente los detalles de tu diagrama, ideal para crear diagramas sobre la marcha. Por $6/mes, obtén la facilidad de la edición de IA accesible para mejorar tu experiencia de creación de diagramas.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Con la versión pro puedes guardar y cargar archivos locales. Es perfecto para gestionar documentos relacionados con el trabajo sin conexión.","Would you like to continue?":"¿Te gustaría continuar?","Would you like to suggest a new example?":"¿Te gustaría sugerir un nuevo ejemplo?","Wrap text in parentheses to connect to any node":"Envuelve el texto entre paréntesis para conectarlo a cualquier nodo","Write like an outline":"Escribe como un esquema","Write your prompt here or click to enable the microphone, then press and hold to record.":"Escribe tu instrucción aquí o haz clic para activar el micrófono, luego mantén presionado para grabar.","Yearly":"Anualmente","Yes — send us a message and we\'ll set you up with a discounted rate.":"Sí - envíanos un mensaje y te proporcionaremos una tarifa con descuento.","Yes, Replace Content":"Sí, Reemplazar Contenido","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Sí. Cada diagrama utiliza diseños equilibrados y automáticos con tipografía limpia. Puedes personalizar temas, colores y estilos, y exportarlos como SVG nítidos o PNG de alta resolución que se vean geniales en cualquier presentación o documento.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Sí. La versión Pro admite la importación desde Visio, Lucidchart y CSV, para que puedas traer lo que ya tienes sin tener que recrearlo desde cero.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Sí. Puedes guardar y cargar archivos localmente, trabajar completamente sin conexión y controlar exactamente quién ve tus diagramas. Ningún dato sale de tu máquina a menos que decidas compartirlo.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Estás a punto de agregar ",["numNodes"]," nodos y ",["numEdges"]," bordes a tu gráfico."],"You need to log in to access this page.":"Necesitas iniciar sesión para acceder a esta página.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Ya eres un usuario Pro. <0>Gestionar suscripción0><1/>¿Tienes preguntas o solicitudes de funciones? <2>Háganos saber2>","You\'re doing great!":"¡Lo estás haciendo genial!","You\'re on the free plan.":"Estás en el plan gratuito.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Has utilizado todas tus conversiones de IA gratuitas. Actualiza a Pro para un uso ilimitado de IA, temas personalizados, uso privado compartido y más. ¡Sigue creando increíbles diagramas de flujo sin esfuerzo!","Your Charts":"Tus gráficos","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Su Sandbox es un espacio para experimentar libremente con nuestras herramientas de diagrama de flujo, reiniciando cada día para comenzar de nuevo.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Tus gráficos son de solo lectura porque tu cuenta ya no está activa. Visita la página de tu <0>cuenta0> para obtener más información.","Your next diagram should be your best one.":"Tu próximo diagrama debería ser el mejor.","Your subscription is <0>{statusDisplay}0>.":["Su suscripción es <0>",["statusDisplay"],"0>."],"Your work stays yours":"Tu trabajo se queda contigo.","Zoom In":"Zoom In","Zoom Out":"Zoom Out","month":"mes","or":"o","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"$48/año (ahorra 33%) · Cancelar en cualquier momento","$6/mo":"$6/mes","1 Temporary Flowchart":"1 Diagrama de Flujo Temporal","1 diagram at a time":"1 diagrama a la vez","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Solo CSS personalizado0> está habilitado. Solo se aplicarán los ajustes de Diseño y Avanzados.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> es un proyecto de código abierto hecho por <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Iniciar sesión0> / <1>Registrarse1> con correo electrónico y contraseña","A new version of the app is available. Please reload to update.":"Una nueva versión de la aplicación está disponible. Por favor, recargue para actualizar.","AI Creation & Editing":"Creación y edición de IA","AI generation & editing":"Generación y edición de IA","AI-Powered Flowchart Creation":"Creación de diagramas de flujo con inteligencia artificial","AI-generated from plain text in under 5 seconds.":"Generado por IA a partir de texto plano en menos de 5 segundos.","AI-powered editing to supercharge your workflow":"Edición impulsada por inteligencia artificial para potenciar tu flujo de trabajo","About":"Acerca de","Account":"Cuenta","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Agregue una barra invertida (<0>\\\\0>) antes de cualquier carácter especial: <1>(1>, <2>:2>, <3>#3>, o <4>.4>","Add some steps":"Agrega algunos pasos","Advanced":"Avanzado","Align Horizontally":"Alinear Horizontalmente","Align Nodes":"Alinear nodos","Align Vertically":"Alinear Verticalmente","All this for just $6/month - less than your daily coffee ☕":"Todo esto por solo $6 al mes, menos que tu café diario ☕","Always presentation-ready":"Siempre listo para presentar","Amount":"Cantidad","An error occurred. Try resubmitting or email {0} directly.":["Se ha producido un error. Inténtalo de nuevo o envía un correo electrónico directamente a ",["0"],"."],"Appearance":"Apariencia","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"¿Estás seguro/a de que quieres eliminar el diagrama de flujo?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"¿Estás seguro/a de que quieres eliminar la carpeta?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"¿Estás seguro/a de que quieres eliminar la carpeta?","Are you sure?":"¿Estás seguro?","Arrow Size":"Tamaño de flecha","Attributes":"Atributos","August 2023":"Agosto 2023","Back":"Atrás","Back To Editor":"Volver al Editor","Background Color":"Color de fondo","Basic Flowchart":"Diagrama de Flujo Básico","Become a Github Sponsor":"Convierte en un Patrocinador de Github","Become a Pro User":"Convierte en un Usuario Pro","Begin your journey":"Comienza tu viaje","Billed annually at $48":"Facturado anualmente a $48","Billed monthly at $6":"Facturado mensualmente a $6","Blog":"Blog","Book a Meeting":"Reserva una reunión","Border Color":"Color de borde","Border Width":"Ancho de borde","Bottom to Top":"De abajo a arriba","Breadthfirst":"Primero en amplitud","Build your personal flowchart library":"Construye tu biblioteca personal de diagramas de flujo","Can I import my existing diagrams?":"¿Puedo importar mis diagramas existentes?","Cancel":"Cancelar","Cancel anytime":"Cancelar en cualquier momento","Cancel your subscription. Your hosted charts will become read-only.":"Cancele su suscripción. Sus gráficos alojados se convertirán en solo lectura.","Certain attributes can be used to customize the appearance or functionality of elements.":"Ciertos atributos se pueden usar para personalizar la apariencia o la funcionalidad de los elementos.","Change Email Address":"Cambiar dirección de correo electrónico","Changelog":"Registro de cambios","Charts":"Gráficos","Check out the guide:":"Echa un vistazo a la guía:","Check your email for a link to log in.<0/>You can close this window.":"Revise su correo electrónico para obtener un enlace para iniciar sesión. Puede cerrar esta ventana.","Choose":"Seleccionar","Choose Template":"Elige plantilla","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Elija entre una variedad de formas de flecha para la fuente y el destino de un borde. Las formas incluyen triángulo, triángulo-camiseta, círculo-triángulo, triángulo-cruz, triángulo-curva posterior, vee, camiseta, cuadrado, círculo, diamante, chevron, ninguno.","Choose how edges connect between nodes":"Elija cómo se conectan los bordes entre nodos","Choose how nodes are automatically arranged in your flowchart":"Elija cómo se organizan automáticamente los nodos en su diagrama de flujo","Circle":"Círculo","Classes":"Clases","Clear":"Claridad","Clear text?":"¿Texto claro?","Clone":"Clon","Clone Flowchart":"Clonar diagrama de flujo","Close":"Cerrar","Color":"Color","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Los colores incluyen rojo, naranja, amarillo, azul, morado, negro, blanco y gris.","Column":"Columna","Comment":"Comentario","Community templates":"Plantillas de la comunidad","Compare our plans and find the perfect fit for your flowcharting needs":"Compara nuestros planes y encuentra el ajuste perfecto para tus necesidades de diagramación de flujo","Concentric":"Concéntrico","Confirm New Email":"Confirmar nuevo correo electrónico","Confirm your email address to sign in.":"Confirma tu dirección de correo electrónico para iniciar sesión.","Connect your Data":"Conecta tus datos","Containers":"Contenedores","Containers are nodes that contain other nodes. They are declared using curly braces.":"Los contenedores son nodos que contienen otros nodos. Se declaran usando llaves.","Continue":"Continuar","Continue in Sandbox (Resets daily, work not saved)":"Continuar en el Área de Pruebas (Se reinicia diariamente, el trabajo no se guarda)","Controls the flow direction of hierarchical layouts":"Controla la dirección del flujo de los diseños jerárquicos","Convert":"Convertir","Convert to Flowchart":"Convertir a Diagrama de Flujo","Convert to hosted chart?":"¿Convertir a gráfico hospedado?","Cookie Policy":"Política de cookies","Copied SVG code to clipboard":"Código SVG copiado al portapapeles","Copied {format} to clipboard":[["format"]," copiado al portapapeles"],"Copy":"Copiar","Copy PNG Image":"Copiar imagen PNG","Copy SVG Code":"Copiar código SVG","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copia tu código Excalidraw y pégalo en <0>excalidraw.com0> para editar. Esta característica es experimental y puede que no funcione con todos los diagramas. Si encuentras un error, <1>háganoslo saber1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copia tu código mermaid.js o abrilo directamente en el editor en vivo de mermaid.js.","Create":"Crear","Create Flowcharts using AI":"Crear diagramas de flujo con IA","Create Unlimited Flowcharts":"Crear diagramas de flujo ilimitados","Create a New Chart":"Crea un nuevo gráfico","Create a flowchart showing the steps of planning and executing a school fundraising event":"Crear un diagrama de flujo que muestre los pasos de planificación y ejecución de un evento de recaudación de fondos escolar","Create a new flowchart to get started or organize your work with folders.":"Crea un nuevo diagrama de flujo para empezar o organiza tu trabajo con carpetas.","Create flowcharts instantly: Type or paste text, see it visualized.":"Crea diagramas de flujo al instante: Escribe o pega texto, míralo visualizado.","Create unlimited diagrams for just $6/month!":"¡Crea diagramas ilimitados por solo $6 al mes!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"¡Crea diagramas de flujo ilimitados almacenados en la nube, accesibles desde cualquier lugar!","Create with AI":"Crear con IA","Created Date":"Fecha de creación","Creating an edge between two nodes is done by indenting the second node below the first":"Crear un borde entre dos nodos se realiza al sangrar el segundo nodo debajo del primero","Curve Style":"Estilo de Curva","Custom CSS":"CSS personalizado","Custom Sharing Options":"Opciones de compartición personalizadas","Custom sharing & public links":"Compartir personalizado y enlaces públicos","Customer Portal":"Portal del cliente","Daily Sandbox Editor":"Editor de Sandbox diario","Dark":"Oscuro","Dark Mode":"Modo oscuro","Data Import (Visio, Lucidchart, CSV)":"Importación de datos (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Función de importación de datos para diagramas complejos","Date":"Fecha","Delete":"Borrar","Delete {0}":["Borrar ",["0"]],"Describe it and it appears":"Descríbelo y aparecerá","Describe your idea. Get a diagram worth presenting.":"Describe tu idea. Obtén un diagrama que valga la pena presentar.","Design a software development lifecycle flowchart for an agile team":"Diseñar un diagrama de flujo del ciclo de vida de desarrollo de software para un equipo ágil","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Desarrollar un árbol de decisiones para que un CEO evalúe posibles nuevas oportunidades de mercado","Direction":"Dirección","Dismiss":"Descartar","Do you offer discounts for students or nonprofits?":"¿Ofrecen descuentos para estudiantes o organizaciones sin fines de lucro?","Do you want to delete this?":"¿Quieres eliminar esto?","Document":"Documento","Don\'t Lose Your Work":"No pierdas tu trabajo","Download":"Descargar","Download JPG":"Descargar JPG","Download PNG":"Descargar PNG","Download SVG":"Descargar SVG","Drag and drop a CSV file here, or click to select a file":"Arrastre y suelte un archivo CSV aquí o haga clic para seleccionar un archivo","Draw an edge from multiple nodes by beginning the line with a reference":"Dibuje un borde desde varios nodos comenzando la línea con una referencia","Drop the file here ...":"Suelta el archivo aquí ...","Each line becomes a node":"Cada línea se convierte en un nodo","Edge ID, Classes, Attributes":"ID de borde, Clases, Atributos","Edge Label":"Etiqueta de borde","Edge Label Column":"Columna de etiqueta de borde","Edge Style":"Estilo de borde","Edge Text Size":"Tamaño de texto de borde","Edge missing indentation":"Falta de sangría de borde","Edges":"Bordes","Edges are declared in the same row as their source node":"Los bordes se declaran en la misma fila que su nodo de origen","Edges are declared in the same row as their target node":"Los bordes se declaran en la misma fila que su nodo de destino","Edges are declared in their own row":"Los bordes se declaran en su propia fila","Edges can also have ID\'s, classes, and attributes before the label":"Los bordes también pueden tener ID, clases y atributos antes de la etiqueta","Edges can be styled with dashed, dotted, or solid lines":"Los bordes se pueden estilizar con líneas discontinuas, punteadas o sólidas","Edges in Separate Rows":"Bordes en filas separadas","Edges in Source Node Row":"Bordes en la fila del nodo de origen","Edges in Target Node Row":"Bordes en la fila del nodo de destino","Edit":"Editar","Edit with AI":"Editar con IA","Editable":"Editable","Editor":"Editor","Email":"Correo electrónico","Empty":"Vacío","Enable to set a consistent height for all nodes":"Activar para establecer una altura consistente para todos los nodos","Enter a name for the cloned flowchart.":"Ingrese un nombre para el diagrama de flujo clonado.","Enter a name for the new folder.":"Ingrese un nombre para la nueva carpeta.","Enter a new name for the {0}.":["Ingrese un nuevo nombre para el ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Introduzca su dirección de correo electrónico y le enviaremos un enlace mágico para iniciar sesión.","Enter your email address below and we\'ll send you a link to reset your password.":"Ingresa tu dirección de correo electrónico a continuación y te enviaremos un enlace para restablecer tu contraseña.","Equal To":"Igual a","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Cada diagrama se exporta como PNG, SVG o enlace compartible, listo para la reunión, el documento o la presentación.","Everything you need to know about Flowchart Fun Pro":"Todo lo que necesitas saber sobre Flowchart Fun Pro","Examples":"Ejemplos","Excalidraw":"Excalidraw","Exclusive Office Hours":"Horario de oficina exclusivo","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Experimenta la eficiencia y seguridad de cargar archivos locales directamente en tu diagrama de flujo, perfecto para manejar documentos relacionados con el trabajo sin conexión. Desbloquea esta función exclusiva de Pro y más con Flowchart Fun Pro, disponible por solo $6 al mes.","Explore Pro":"Explorar Pro","Explore more":"Explora más","Export":"Exportar","Export clean diagrams without branding":"Exporta diagramas limpios sin marcas","Export to PNG & JPG":"Exportar a PNG y JPG","Export to PNG, JPG, and SVG":"Exportar a PNG, JPG y SVG","Feature Breakdown":"Desglose de características","Feedback":"Comentarios","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Siéntase libre de explorar y comuníquese con nosotros a través de la página de <0>Comentarios0> si tiene alguna preocupación.","Fine-tune layouts and visual styles":"Ajusta los diseños y estilos visuales","Fixed Height":"Altura fija","Fixed Node Height":"Altura de Nodo Fija","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro te ofrece diagramas de flujo ilimitados, colaboradores ilimitados y almacenamiento ilimitado por solo $6 al mes.","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"Flowchart Fun es un proyecto de código abierto creado por <0>Tone\xA0Row0>","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun está creado y mantenido por un solo desarrollador. Tu apoyo lo mantiene en marcha.","Follow Us on Twitter":"Síguenos en Twitter","Font Family":"Familia de Fuentes","Forgot your password?":"¿Olvidaste tu contraseña?","Free":"Gratis","Free users: charts in the sandbox expire after 7 days.":"Usuarios gratuitos: los diagramas en el área de pruebas caducan después de 7 días.","Frequently Asked Questions":"Preguntas Frecuentes","Full-screen, read-only, and template sharing":"Pantalla completa, solo lectura y compartición de plantillas","Fullscreen":"Pantalla completa","General":"General","Generate flowcharts from text automatically":"Genera diagramas de flujo automáticamente a partir de texto","Get Pro Access Now":"Obtén acceso Pro ahora","Get Unlimited AI Requests":"Obtén solicitudes de IA ilimitadas","Get rapid responses to your questions":"Obtén respuestas rápidas a tus preguntas","Get unlimited flowcharts and premium features":"Obtén flujogramas ilimitados y funciones premium","Go back home":"Vuelve a casa","Go to the Editor":"Ir al editor","Go to your Sandbox":"Ve a tu Sandbox","Graph":"Gráfico","Green?":"¿Verde?","Grid":"Cuadrícula","Group ranking and ranked-choice voting, free":"Clasificación de grupos y votación de elección clasificada, gratis","Have complex questions or issues? We\'re here to help.":"¿Tiene preguntas o problemas complejos? Estamos aquí para ayudar.","Here are some Pro features you can now enjoy.":"Aquí hay algunas características Pro que ahora puedes disfrutar.","High-quality exports with embedded fonts":"Exportaciones de alta calidad con fuentes incrustadas","History":"Historia","Home":"Hogar","How are edges declared in this data?":"¿Cómo se declaran los bordes en estos datos?","How fast can I actually make something?":"¿Qué tan rápido puedo crear algo realmente?","How would you like to save your chart?":"¿Cómo te gustaría guardar tu gráfico?","I would like to request a new template:":"Me gustaría solicitar una nueva plantilla:","ID\'s":"ID","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Si una cuenta con ese correo electrónico existe, le hemos enviado un correo electrónico con instrucciones sobre cómo restablecer su contraseña.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Si desea crear un borde, indente esta línea. Si no, escapar el dos puntos con una barra invertida <0>\\\\:0>","Images":"Imágenes","Import Data":"Importar datos","Import data from a CSV file.":"Importar datos de un archivo CSV.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Importar datos de cualquier archivo CSV y asignarlo a un nuevo diagrama de flujo. Esta es una excelente manera de importar datos de otras fuentes como Lucidchart, Google Sheets y Visio.","Import from CSV":"Importar desde CSV","Import from Visio, Lucidchart, CSV":"Importar desde Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Importar desde Visio, Lucidchart y CSV","Import from anywhere":"Importar desde cualquier lugar","Import from popular diagram tools":"Importa desde herramientas populares de diagramas","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importa tu diagrama a Microsoft Visio usando uno de estos archivos CSV.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Importar datos es una función profesional. Puedes actualizar a Flowchart Fun Pro por solo $6/mes.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Incluye un título usando un atributo <0>title0>. Para usar el color de Visio, agrega un atributo <1>roleType1> igual a uno de los siguientes:","Indent to connect nodes":"Indenta para conectar nodos","Info":"Información","Is":"Es","Is my data private?":"¿Es privados mis datos?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas es una representación JSON de tu diagrama utilizada por <0>Obsidian0> Canvas y otras aplicaciones.","Join 2000+ professionals who\'ve upgraded their workflow":"Únete a más de 2000 profesionales que han mejorado su flujo de trabajo","Join thousands of happy users who love Flowchart Fun":"Únete a miles de usuarios felices que aman Flowchart Fun","Keep Things Private":"Mantener las cosas privadas","Keep changes?":"¿Mantener cambios?","Keep practicing":"Sigue practicando","Keep your data private on your computer":"Mantén tus datos privados en tu computadora","Language":"Idioma","Layout":"Diseño","Layout Algorithm":"Algoritmo de diseño","Layout Frozen":"Diseño Congelado","Leading References":"Referencias principales","Learn More":"Aprender más","Learn Syntax":"Aprender sintaxis","Learn about Flowchart Fun Pro":"Aprende sobre Flowchart Fun Pro","Left to Right":"De izquierda a derecha","Let us know why you\'re canceling. We\'re always looking to improve.":"Háganos saber por qué está cancelando. Siempre estamos buscando mejorar.","Light":"Luz","Light Mode":"Modo de luz","Link":"Enlace","Link back":"Volver al enlace","Load":"Cargar","Load Chart":"Cargar gráfico","Load File":"Cargar archivo","Load Files":"Cargar archivos","Load default content":"Cargar contenido predeterminado","Load from link?":"¿Cargar desde el enlace?","Load layout and styles":"Cargar diseño y estilos","Loading...":"Cargando...","Local File Support":"Soporte de archivos locales","Local saving for offline access":"Guardado local para acceder sin conexión","Lock Zoom to Graph":"Bloquear Zoom al gráfico","Log In":"Iniciar sesión","Log Out":"Cerrar sesión","Log in to Save":"Inicia sesión para guardar","Log in to upgrade your account":"Iniciar sesión para actualizar tu cuenta","Made by <0>Tone\xA0Row0>":"Creado por <0>Tone\xA0Row0>","Make a One-Time Donation":"Realizar una donación única","Make it yours":"Hazlo tuyo","Make publicly accessible":"Hacerlo accesible al público","Manage Billing":"Administrar facturación","Map Data":"Datos de mapa","Maximum width of text inside nodes":"Ancho máximo del texto dentro de los nodos","Monthly":"Mensual","More from Tone Row":"Más de Tone Row","More from Tone Row:":"Más de Tone Row:","More tools:":"Más herramientas:","Move":"Mover","Move {0}":["Mover ",["0"]],"Multiple pointers on same line":"Múltiples punteros en la misma línea","My dog ate my credit card!":"¡Mi perro se comió mi tarjeta de crédito!","Name":"Nombre","Name Chart":"Nombre del gráfico","Name your chart":"Nombre su gráfico","New":"Nuevo","New Email":"Nuevo Correo Electrónico","New Flowchart":"Nuevo Diagrama de Flujo","New Folder":"Nueva Carpeta","Next charge":"Próximo cargo","No Edges":"Sin Bordes","No Folder (Root)":"Sin Carpeta (Raíz)","No Watermarks!":"¡Sin marcas de agua!","No charts yet":"Sin gráficos aún","No items in this folder":"No hay elementos en esta carpeta","No matching charts found":"No se encontraron gráficos coincidentes","Node Border Style":"Estilo de borde de nodo","Node Colors":"Colores de nodo","Node ID":"ID de nodo","Node ID, Classes, Attributes":"ID de nodo, clases, atributos","Node Label":"Etiqueta de nodo","Node Shape":"Forma de Nodo","Node Shapes":"Formas de nodo","Nodes":"Nodos","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Los nodos se pueden estilizar con líneas discontinuas, punteadas o dobles. También se pueden eliminar los bordes con border_none.","Not Empty":"No vacío ","Now you\'re thinking with flowcharts!":"¡Ahora estás pensando con diagramas de flujo!","Office Hours":"Horas de oficina ","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"De vez en cuando, el enlace mágico acabará en tu carpeta de spam. Si no lo ves después de unos minutos, busca allí o solicita un nuevo enlace. ","One on One Support":"Soporte uno a uno","One-on-One Support":"Soporte individual","Open Customer Portal":"Abrir portal de clientes","Operation canceled":"Operación cancelada","Or maybe blue!":"¡O tal vez azul!","Organization Chart":"Organigrama","PNG & JPG export":"Exportar en PNG y JPG","Padding":"Relleno","Page not found":"Página no encontrada","Password":"Contraseña","Past Due":"Vencido","Paste a document to convert it":"Pegue un documento para convertirlo","Paste your document or outline here to convert it into an organized flowchart.":"Pegue su documento o esquema aquí para convertirlo en un diagrama de flujo organizado.","Pasted content detected. Convert to Flowchart Fun syntax?":"Contenido pegado detectado. ¿Convertir a sintaxis de Flowchart Fun?","Perfect for docs and quick sharing":"Perfecto para documentos y compartir rápidamente","Permanent Charts are a Pro Feature":"Los gráficos permanentes son una característica Pro","Playbook":"Libreta de juegos","Pointer and container on same line":"Puntero y contenedor en la misma línea","Pricing":"Precios","Priority One-on-One Support":"Soporte prioritario uno a uno","Priority support":"Soporte prioritario","Privacy Policy":"Política de privacidad","Pro starts at $4/mo billed yearly. Cancel anytime.":"La versión Pro comienza en $4/mes facturado anualmente. Cancelar en cualquier momento.","Pro tip: Right-click any node to customize its shape and color":"Consejo profesional: Haz clic derecho en cualquier nodo para personalizar su forma y color","Processing Data":"Procesamiento de datos","Processing...":"Procesando...","Prompt":"Indicación","Public":"Público","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Importar datos de Visio, Lucidchart, CSV o comenzar desde una plantilla. No recrees lo que ya existe.","Quick experimentation space that resets daily":"Espacio de experimentación rápida que se reinicia diariamente","Random":"Aleatorio","Rapid Deployment Templates":"Plantillas de implementación rápida","Rapid Templates":"Plantillas rápidas","Raster Export (PNG, JPG)":"Exportación de ráster (PNG, JPG)","Rate limit exceeded. Please try again later.":"Límite de tasa excedido. Por favor, inténtalo de nuevo más tarde.","Read-only":"Sólo lectura","Reference by Class":"Referencia por clase","Reference by ID":"Referencia por ID","Reference by Label":"Referencia por etiqueta","References":"Referencias","References are used to create edges between nodes that are created elsewhere in the document":"Las referencias se utilizan para crear bordes entre los nodos creados en otro lugar del documento","Referencing a node by its exact label":"Referenciando un nodo por su etiqueta exacta","Referencing a node by its unique ID":"Referenciando un nodo por su ID único","Referencing multiple nodes with the same assigned class":"Referenciando múltiples nodos con la misma clase asignada","Refresh Page":"Refrescar la página","Reload to Update":"Recargar para actualizar","Rename":"Renombrar","Rename {0}":["Cambiar nombre de ",["0"]],"Request Magic Link":"Solicitar enlace mágico","Request Password Reset":"Solicitar restablecimiento de contraseña","Reset":"Restablecer","Reset Password":"Restablecer la contraseña","Resume Subscription":"Reanudar la suscripción","Return":"Devolver","Right to Left":"De derecha a izquierda","Right-click nodes for options":"Haga clic derecho en los nodos para ver las opciones","Roadmap":"Hoja de ruta","Rotate Label":"Rotar etiqueta","SVG Export is a Pro Feature":"La exportación de SVG es una función Pro","SVG, PDF & all export formats":"SVG, PDF y todos los formatos de exportación","Satisfaction guaranteed or first payment refunded":"Garantía de satisfacción o reembolso del primer pago","Save":"Guardar","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Guardar localmente, trabajar sin conexión y controlar exactamente quién ve qué. Ningún dato sale de tu máquina a menos que lo autorices.","Save time with AI and dictation, making it easy to create diagrams.":"Ahorra tiempo con IA y dictado, lo que facilita la creación de diagramas.","Save to Cloud":"Guardar en la nube","Save to File":"Guardar en archivo","Save your Work":"Guarda tu trabajo","Schedule personal consultation sessions":"Programar sesiones de consulta personal","Secure payment":"Pago seguro","See more reviews on Product Hunt":"Ver más reseñas en Product Hunt","See what\'s possible":"Ver lo que es posible","Select a destination folder for \\"{0}\\".":"Selecciona una carpeta de destino para \\\\","Send us a message":"Envíanos un mensaje","Set a consistent height for all nodes":"Establecer una altura consistente para todos los nodos","Settings":"Configuración","Share":"Compartir","Sign In":"Iniciar sesión","Sign in with <0>GitHub0>":"Iniciar sesión con <0>GitHub0>","Sign in with <0>Google0>":"Iniciar sesión con <0>Google0>","Sorry! This page is only available in English.":"¡Lo sentimos! Esta página solo está disponible en inglés.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Lo siento, hubo un error al convertir el texto en un diagrama. Inténtalo de nuevo más tarde.","Sort Ascending":"Ordenar de forma ascendente","Sort Descending":"Ordenar de forma descendente","Sort by {0}":["Ordenar por ",["0"]],"Source Arrow Shape":"Forma de flecha de origen","Source Column":"Columna de origen","Source Delimiter":"Delimitador de Origen","Source Distance From Node":"Distancia del origen al nodo","Source/Target Arrow Shape":"Forma de Flecha de Origen/Destino","Spacing":"Espaciado","Special Attributes":"Atributos Especiales","Start":"Comienzo","Start Over":"Empezar de nuevo","Start faster with use-case specific templates":"Comenzar más rápido con plantillas específicas para casos de uso","Start for free":"Comenzar gratis","Status":"Estado","Step 1":"Paso 1","Step 2":"Paso 2","Step 3":"Paso 3","Store any data associated to a node":"Almacenar cualquier dato asociado a un nodo","Style Classes":"Clases de Estilo","Style with classes":"Estilo con clases","Submit":"Enviar","Subscription":"Suscripción","Subscription Successful!":"¡Suscripción exitosa!","Subscription will end":"La suscripción finalizará","Support":"Soporte","Target Arrow Shape":"Forma de flecha de destino","Target Column":"Columna objetivo","Target Delimiter":"Delimitador objetivo","Target Distance From Node":"Distancia objetivo desde el nodo","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Dile al AI lo que necesitas en inglés sencillo. Tu diagrama se construye en segundos.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Cuéntanos qué está funcionando y qué no. Cada mensaje es leído por el desarrollador.","Text Color":"Color del texto","Text Horizontal Offset":"Desplazamiento horizontal del texto","Text Leading":"Texto principal","Text Max Width":"Ancho máximo del texto","Text Vertical Offset":"Desplazamiento vertical del texto","Text followed by colon+space creates an edge with the text as the label":"El texto seguido de dos puntos y un espacio crea un borde con el texto como etiqueta","Text on a line creates a node with the text as the label":"El texto en una línea crea un nodo con el texto como etiqueta","Thank you for your feedback!":"¡Gracias por tu comentario!","The beauty and magic reside in the minimalism.":"La belleza y la magia residen en el minimalismo.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"La mejor manera de cambiar los estilos es hacer clic derecho en un nodo o un borde y seleccionar el estilo deseado.","The column that contains the edge label(s)":"La columna que contiene la etiqueta(s) de borde","The column that contains the source node ID(s)":"La columna que contiene el ID(s) del nodo de origen","The column that contains the target node ID(s)":"La columna que contiene el ID(s) del nodo de destino","The delimiter used to separate multiple source nodes":"El delimitador utilizado para separar múltiples nodos de origen","The delimiter used to separate multiple target nodes":"El delimitador utilizado para separar múltiples nodos de destino","The fastest way to turn what\'s in your head into something everyone else can understand.":"La forma más rápida de convertir lo que tienes en mente en algo que todos puedan entender.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"El plan gratuito funciona muy bien para el uso diario. Si necesitas funciones Pro, es mensual a $6/mes - cancela en cualquier momento sin compromiso.","The possible shapes are:":"Las formas posibles son:","Theme":"Tema","Theme Customization Editor":"Editor de Personalización de Temas","Theme Editor":"Editor de temas","Theme editor":"Editor de tema","There are no edges in this data":"No hay bordes en estos datos","This action cannot be undone.":"Esta acción no se puede deshacer.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Esta característica solo está disponible para usuarios profesionales. <0>Conviértete en un usuario profesional0> para desbloquearla.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Esto puede tardar entre 30 segundos y 2 minutos dependiendo de la longitud de su entrada.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Esta caja de arena es perfecta para experimentar, pero recuerda: se reinicia diariamente. ¡Actualiza ahora y guarda tu trabajo actual!","This will replace the current content.":"Esto reemplazará el contenido actual.","This will replace your current chart content with the template content.":"Esto reemplazará el contenido actual de tu gráfico con el contenido de la plantilla.","This will replace your current sandbox.":"Esto reemplazará su sandbox actual.","Time to decide":"Hora de decidir","Tip":"Consejo","To fix this change one of the edge IDs":"Para solucionar esto cambia uno de los IDs de borde","To fix this change one of the node IDs":"Para solucionar esto cambia uno de los IDs de nodo","To fix this move one pointer to the next line":"Para solucionar esto mueve un puntero a la siguiente línea","To fix this start the container <0/> on a different line":"Para solucionar esto, inicie el contenedor <0/> en una línea diferente","To learn more about why we require you to log in, please read <0>this blog post0>.":"Para obtener más información sobre por qué requerimos que inicie sesión, lea <0>esta publicación de blog0>.","Top to Bottom":"De arriba a abajo","Transform Your Ideas into Professional Diagrams in Seconds":"Transforma tus ideas en diagramas profesionales en segundos","Transform text into diagrams instantly":"Transforma texto en diagramas al instante.","Try AI":"Prueba IA","Try adjusting your search or filters to find what you\'re looking for.":"Prueba a ajustar tu búsqueda o filtros para encontrar lo que estás buscando.","Try again":"Inténtalo de nuevo","Try it free":"Pruébalo gratis","Turn documents into diagrams with AI":"Convierta documentos en diagramas con IA","Two edges have the same ID":"Dos bordes tienen el mismo ID","Two nodes have the same ID":"Dos nodos tienen el mismo ID","Type it. See it.":"Escríbelo. Míralo.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"¡Ups, se acabaron tus solicitudes gratuitas! Actualiza a Flowchart Fun Pro para conversiones de diagramas ilimitadas, y sigue transformando texto en claros y visuales flujogramas tan fácilmente como copiar y pegar.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"En menos de 60 segundos. Escribe unas pocas líneas de texto o describe lo que necesitas al AI, y tu diagrama aparece al instante. Exporta o compártelo con un solo clic.","Undo":"Deshacer","Unescaped special character":"Carácter especial sin escape","Unique text value to identify a node":"Valor de texto único para identificar un nodo","Unknown":"Desconocido","Unknown Parsing Error":"Error de análisis desconocido","Unlimited Flowcharts":"Flujos de trabajo ilimitados","Unlimited Permanent Flowcharts":"Flujo de gráficos permanentes ilimitados","Unlimited cloud-saved flowcharts":"Diagramas de flujo guardados en la nube de forma ilimitada","Unlimited saved diagrams":"Diagramas guardados ilimitados","Unlock AI Features and never lose your work with a Pro account.":"Desbloquea las funciones de IA y nunca pierdas tu trabajo con una cuenta Pro.","Unlock Unlimited AI Flowcharts":"Desbloquea diagramas de flujo de IA ilimitados","Unpaid":"Impago","Update Email":"Actualizar correo electrónico","Updated Date":"Fecha actualizada","Upgrade Now - Save My Work":"Actualizar ahora - Guardar mi trabajo","Upgrade to Flowchart Fun Pro and unlock:":"Actualiza a Flowchart Fun Pro y desbloquea:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"Actualice a Flowchart Fun Pro para obtener gráficos alojados ilimitados, exportaciones de alta resolución sin marcas de agua, edición de IA y más. $4/mes facturado anualmente.","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Actualiza a Flowchart Fun Pro para desbloquear la exportación de SVG y disfrutar de funciones más avanzadas para tus diagramas.","Upgrade to Pro":"Actualizar a Pro","Upgrade to Pro for permanent charts.":"Actualiza a Pro para gráficos permanentes.","Upload your File":"Subir tu archivo","Use Custom CSS Only":"Usar solo CSS personalizado","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"¿Usas Lucidchart o Visio? ¡La importación de CSV facilita obtener datos de cualquier fuente!","Use classes to group nodes":"Usar clases para agrupar nodos","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Utilice el atributo <0>href0> para establecer un enlace en un nodo que se abra en una nueva pestaña.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Utilice el atributo <0>src0> para establecer la imagen de un nodo. La imagen se escalará para ajustarse al nodo, por lo que es posible que deba ajustar el ancho y la altura del nodo para obtener el resultado deseado. Solo se admiten imágenes públicas (no bloqueadas por CORS).","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Utilice los atributos <0>w0> y <1>h1> para establecer explícitamente el ancho y la altura de un nodo.","Use the customer portal to change your billing information.":"Utilice el portal de clientes para cambiar su información de facturación.","Use these settings to adapt the look and behavior of your flowcharts":"Utilice estos ajustes para adaptar la apariencia y el comportamiento de sus diagramas de flujo","Use this file for org charts, hierarchies, and other organizational structures.":"Utilice este archivo para diagramas de organización, jerarquías y otras estructuras organizativas.","Use this file for sequences, processes, and workflows.":"Utilice este archivo para secuencias, procesos y flujos de trabajo.","Use this mode to modify and enhance your current chart.":"Utilice este modo para modificar y mejorar su gráfico actual.","Used at":"Utilizado en","User":"Usuario ","Vector Export (SVG)":"Exportación de vectores (SVG)","View on Github":"Ver en Github ","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"¿Quieres crear un diagrama a partir de un documento? Pégalo en el editor y haz clic en \\"Convertir a diagrama\\".","Watermark-Free Diagrams":"Diagramas sin marca de agua","Watermarks":"Marcas de agua","Welcome to Flowchart Fun":"Bienvenido a Flowchart Divertido","What if I just need it for one project?":"¿Y si solo lo necesito para un proyecto?","What our users are saying":"Lo que dicen nuestros usuarios","What\'s next?":"¿Qué sigue?","What\'s this?":"¿Qué es esto?","Width":"Ancho","Width and Height":"Ancho y Alto","Will my diagrams actually look professional?":"¿Mis diagramas se verán realmente profesionales?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Con la versión Pro de Flowchart Fun, puedes utilizar comandos de lenguaje natural para completar rápidamente los detalles de tu diagrama, ideal para crear diagramas sobre la marcha. Por $6/mes, obtén la facilidad de la edición de IA accesible para mejorar tu experiencia de creación de diagramas.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Con la versión pro puedes guardar y cargar archivos locales. Es perfecto para gestionar documentos relacionados con el trabajo sin conexión.","Would you like to continue?":"¿Te gustaría continuar?","Would you like to suggest a new example?":"¿Te gustaría sugerir un nuevo ejemplo?","Wrap text in parentheses to connect to any node":"Envuelve el texto entre paréntesis para conectarlo a cualquier nodo","Write like an outline":"Escribe como un esquema","Write your prompt here or click to enable the microphone, then press and hold to record.":"Escribe tu instrucción aquí o haz clic para activar el micrófono, luego mantén presionado para grabar.","Yearly":"Anualmente","Yes — send us a message and we\'ll set you up with a discounted rate.":"Sí - envíanos un mensaje y te proporcionaremos una tarifa con descuento.","Yes, Replace Content":"Sí, Reemplazar Contenido","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Sí. Cada diagrama utiliza diseños equilibrados y automáticos con tipografía limpia. Puedes personalizar temas, colores y estilos, y exportarlos como SVG nítidos o PNG de alta resolución que se vean geniales en cualquier presentación o documento.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Sí. La versión Pro admite la importación desde Visio, Lucidchart y CSV, para que puedas traer lo que ya tienes sin tener que recrearlo desde cero.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Sí. Puedes guardar y cargar archivos localmente, trabajar completamente sin conexión y controlar exactamente quién ve tus diagramas. Ningún dato sale de tu máquina a menos que decidas compartirlo.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Estás a punto de agregar ",["numNodes"]," nodos y ",["numEdges"]," bordes a tu gráfico."],"You need to log in to access this page.":"Necesitas iniciar sesión para acceder a esta página.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Ya eres un usuario Pro. <0>Gestionar suscripción0><1/>¿Tienes preguntas o solicitudes de funciones? <2>Háganos saber2>","You\'re doing great!":"¡Lo estás haciendo genial!","You\'re on the free plan.":"Estás en el plan gratuito.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Has utilizado todas tus conversiones de IA gratuitas. Actualiza a Pro para un uso ilimitado de IA, temas personalizados, uso privado compartido y más. ¡Sigue creando increíbles diagramas de flujo sin esfuerzo!","Your Charts":"Tus gráficos","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Su Sandbox es un espacio para experimentar libremente con nuestras herramientas de diagrama de flujo, reiniciando cada día para comenzar de nuevo.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Tus gráficos son de solo lectura porque tu cuenta ya no está activa. Visita la página de tu <0>cuenta0> para obtener más información.","Your next diagram should be your best one.":"Tu próximo diagrama debería ser el mejor.","Your subscription is <0>{statusDisplay}0>.":["Su suscripción es <0>",["statusDisplay"],"0>."],"Your work stays yours":"Tu trabajo se queda contigo.","Zoom In":"Zoom In","Zoom Out":"Zoom Out","month":"mes","or":"o","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/es/messages.po b/app/src/locales/es/messages.po
index 5748d9ee4..7bc56e50a 100644
--- a/app/src/locales/es/messages.po
+++ b/app/src/locales/es/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "$48/año (ahorra 33%) · Cancelar en cualquier momento"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "$6/mes"
@@ -25,7 +25,7 @@ msgstr "$6/mes"
msgid "1 Temporary Flowchart"
msgstr "1 Diagrama de Flujo Temporal"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "1 diagrama a la vez"
@@ -33,7 +33,7 @@ msgstr "1 diagrama a la vez"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>Solo CSS personalizado0> está habilitado. Solo se aplicarán los ajustes de Diseño y Avanzados."
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0> es un proyecto de código abierto hecho por <1>Tone Row1>"
@@ -49,7 +49,7 @@ msgstr "Una nueva versión de la aplicación está disponible. Por favor, recarg
msgid "AI Creation & Editing"
msgstr "Creación y edición de IA"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "Generación y edición de IA"
@@ -57,7 +57,7 @@ msgstr "Generación y edición de IA"
msgid "AI-Powered Flowchart Creation"
msgstr "Creación de diagramas de flujo con inteligencia artificial"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "Generado por IA a partir de texto plano en menos de 5 segundos."
@@ -65,12 +65,12 @@ msgstr "Generado por IA a partir de texto plano en menos de 5 segundos."
msgid "AI-powered editing to supercharge your workflow"
msgstr "Edición impulsada por inteligencia artificial para potenciar tu flujo de trabajo"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "Acerca de"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "Cuenta"
@@ -106,7 +106,7 @@ msgstr "Alinear Verticalmente"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "Todo esto por solo $6 al mes, menos que tu café diario ☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "Siempre listo para presentar"
@@ -118,7 +118,7 @@ msgstr "Cantidad"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "Se ha producido un error. Inténtalo de nuevo o envía un correo electrónico directamente a {0}."
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "Apariencia"
@@ -170,11 +170,11 @@ msgstr "Color de fondo"
msgid "Basic Flowchart"
msgstr "Diagrama de Flujo Básico"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "Convierte en un Patrocinador de Github"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "Convierte en un Usuario Pro"
@@ -191,8 +191,8 @@ msgstr "Facturado anualmente a $48"
msgid "Billed monthly at $6"
msgstr "Facturado mensualmente a $6"
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "Blog"
@@ -260,14 +260,14 @@ msgstr "Ciertos atributos se pueden usar para personalizar la apariencia o la fu
msgid "Change Email Address"
msgstr "Cambiar dirección de correo electrónico"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "Registro de cambios"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "Gráficos"
@@ -346,7 +346,7 @@ msgstr "Columna"
msgid "Comment"
msgstr "Comentario"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "Plantillas de la comunidad"
@@ -403,7 +403,7 @@ msgstr "Convertir a Diagrama de Flujo"
msgid "Convert to hosted chart?"
msgstr "¿Convertir a gráfico hospedado?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "Política de cookies"
@@ -500,7 +500,7 @@ msgstr "CSS personalizado"
msgid "Custom Sharing Options"
msgstr "Opciones de compartición personalizadas"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "Compartir personalizado y enlaces públicos"
@@ -516,8 +516,8 @@ msgstr "Editor de Sandbox diario"
msgid "Dark"
msgstr "Oscuro"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "Modo oscuro"
@@ -542,11 +542,11 @@ msgstr "Borrar"
msgid "Delete {0}"
msgstr "Borrar {0}"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "Descríbelo y aparecerá"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "Describe tu idea. Obtén un diagrama que valga la pena presentar."
@@ -696,8 +696,8 @@ msgstr "Editar con IA"
msgid "Editable"
msgstr "Editable"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "Editor"
@@ -742,7 +742,7 @@ msgstr "Ingresa tu dirección de correo electrónico a continuación y te enviar
msgid "Equal To"
msgstr "Igual a"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "Cada diagrama se exporta como PNG, SVG o enlace compartible, listo para la reunión, el documento o la presentación."
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "Desglose de características"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "Comentarios"
@@ -823,11 +823,15 @@ msgstr "Altura de Nodo Fija"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "Flowchart Fun Pro te ofrece diagramas de flujo ilimitados, colaboradores ilimitados y almacenamiento ilimitado por solo $6 al mes."
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "Flowchart Fun es un proyecto de código abierto creado por <0>Tone Row0>"
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "Flowchart Fun está creado y mantenido por un solo desarrollador. Tu apoyo lo mantiene en marcha."
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "Síguenos en Twitter"
@@ -909,6 +913,10 @@ msgstr "¿Verde?"
msgid "Grid"
msgstr "Cuadrícula"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "Clasificación de grupos y votación de elección clasificada, gratis"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "¿Tiene preguntas o problemas complejos? Estamos aquí para ayudar."
@@ -980,7 +988,7 @@ msgstr "Importar datos de cualquier archivo CSV y asignarlo a un nuevo diagrama
msgid "Import from CSV"
msgstr "Importar desde CSV"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "Importar desde Visio, Lucidchart, CSV"
@@ -988,7 +996,7 @@ msgstr "Importar desde Visio, Lucidchart, CSV"
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "Importar desde Visio, Lucidchart y CSV"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "Importar desde cualquier lugar"
@@ -1012,7 +1020,7 @@ msgstr "Incluye un título usando un atributo <0>title0>. Para usar el color d
msgid "Indent to connect nodes"
msgstr "Indenta para conectar nodos"
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "Información"
@@ -1052,7 +1060,7 @@ msgstr "Sigue practicando"
msgid "Keep your data private on your computer"
msgstr "Mantén tus datos privados en tu computadora"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "Idioma"
@@ -1101,8 +1109,8 @@ msgstr "Háganos saber por qué está cancelando. Siempre estamos buscando mejor
msgid "Light"
msgstr "Luz"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "Modo de luz"
@@ -1160,8 +1168,8 @@ msgstr "Guardado local para acceder sin conexión"
msgid "Lock Zoom to Graph"
msgstr "Bloquear Zoom al gráfico"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "Iniciar sesión"
@@ -1177,11 +1185,15 @@ msgstr "Inicia sesión para guardar"
msgid "Log in to upgrade your account"
msgstr "Iniciar sesión para actualizar tu cuenta"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "Creado por <0>Tone Row0>"
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "Realizar una donación única"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "Hazlo tuyo"
@@ -1205,6 +1217,18 @@ msgstr "Ancho máximo del texto dentro de los nodos"
msgid "Monthly"
msgstr "Mensual"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "Más de Tone Row"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "Más de Tone Row:"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "Más herramientas:"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "Nombre del gráfico"
msgid "Name your chart"
msgstr "Nombre su gráfico"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "Nuevo"
@@ -1363,7 +1387,7 @@ msgstr "¡O tal vez azul!"
msgid "Organization Chart"
msgstr "Organigrama"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "Exportar en PNG y JPG"
@@ -1412,21 +1436,25 @@ msgstr "Libreta de juegos"
msgid "Pointer and container on same line"
msgstr "Puntero y contenedor en la misma línea"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "Precios"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "Soporte prioritario uno a uno"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "Soporte prioritario"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "Política de privacidad"
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "La versión Pro comienza en $4/mes facturado anualmente. Cancelar en cualquier momento."
@@ -1451,7 +1479,7 @@ msgstr "Indicación"
msgid "Public"
msgstr "Público"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "Importar datos de Visio, Lucidchart, CSV o comenzar desde una plantilla. No recrees lo que ya existe."
@@ -1575,8 +1603,8 @@ msgstr "De derecha a izquierda"
msgid "Right-click nodes for options"
msgstr "Haga clic derecho en los nodos para ver las opciones"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "Hoja de ruta"
@@ -1590,7 +1618,7 @@ msgstr "Rotar etiqueta"
msgid "SVG Export is a Pro Feature"
msgstr "La exportación de SVG es una función Pro"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "SVG, PDF y todos los formatos de exportación"
@@ -1603,7 +1631,7 @@ msgstr "Garantía de satisfacción o reembolso del primer pago"
msgid "Save"
msgstr "Guardar"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "Guardar localmente, trabajar sin conexión y controlar exactamente quién ve qué. Ningún dato sale de tu máquina a menos que lo autorices."
@@ -1635,7 +1663,7 @@ msgstr "Pago seguro"
msgid "See more reviews on Product Hunt"
msgstr "Ver más reseñas en Product Hunt"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "Ver lo que es posible"
@@ -1651,9 +1679,9 @@ msgstr "Envíanos un mensaje"
msgid "Set a consistent height for all nodes"
msgstr "Establecer una altura consistente para todos los nodos"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "Configuración"
@@ -1738,7 +1766,7 @@ msgstr "Empezar de nuevo"
msgid "Start faster with use-case specific templates"
msgstr "Comenzar más rápido con plantillas específicas para casos de uso"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "Comenzar gratis"
@@ -1789,7 +1817,7 @@ msgstr "¡Suscripción exitosa!"
msgid "Subscription will end"
msgstr "La suscripción finalizará"
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "Soporte"
@@ -1812,7 +1840,7 @@ msgstr "Delimitador objetivo"
msgid "Target Distance From Node"
msgstr "Distancia objetivo desde el nodo"
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "Dile al AI lo que necesitas en inglés sencillo. Tu diagrama se construye en segundos."
@@ -1856,7 +1884,7 @@ msgstr "El texto en una línea crea un nodo con el texto como etiqueta"
msgid "Thank you for your feedback!"
msgstr "¡Gracias por tu comentario!"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "La belleza y la magia residen en el minimalismo."
@@ -1884,7 +1912,7 @@ msgstr "El delimitador utilizado para separar múltiples nodos de origen"
msgid "The delimiter used to separate multiple target nodes"
msgstr "El delimitador utilizado para separar múltiples nodos de destino"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "La forma más rápida de convertir lo que tienes en mente en algo que todos puedan entender."
@@ -1911,7 +1939,7 @@ msgstr "Editor de Personalización de Temas"
msgid "Theme Editor"
msgstr "Editor de temas"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "Editor de tema"
@@ -2000,10 +2028,14 @@ msgstr "Prueba a ajustar tu búsqueda o filtros para encontrar lo que estás bus
msgid "Try again"
msgstr "Inténtalo de nuevo"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "Pruébalo gratis"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "Convierta documentos en diagramas con IA"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "Dos bordes tienen el mismo ID"
@@ -2012,7 +2044,7 @@ msgstr "Dos bordes tienen el mismo ID"
msgid "Two nodes have the same ID"
msgstr "Dos nodos tienen el mismo ID"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "Escríbelo. Míralo."
@@ -2057,7 +2089,7 @@ msgstr "Flujo de gráficos permanentes ilimitados"
msgid "Unlimited cloud-saved flowcharts"
msgstr "Diagramas de flujo guardados en la nube de forma ilimitada"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "Diagramas guardados ilimitados"
@@ -2089,13 +2121,17 @@ msgstr "Actualizar ahora - Guardar mi trabajo"
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "Actualiza a Flowchart Fun Pro y desbloquea:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "Actualice a Flowchart Fun Pro para obtener gráficos alojados ilimitados, exportaciones de alta resolución sin marcas de agua, edición de IA y más. $4/mes facturado anualmente."
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "Actualiza a Flowchart Fun Pro para desbloquear la exportación de SVG y disfrutar de funciones más avanzadas para tus diagramas."
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "Actualizar a Pro"
@@ -2152,7 +2188,7 @@ msgstr "Utilice este archivo para secuencias, procesos y flujos de trabajo."
msgid "Use this mode to modify and enhance your current chart."
msgstr "Utilice este modo para modificar y mejorar su gráfico actual."
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "Utilizado en"
@@ -2164,7 +2200,7 @@ msgstr "Usuario "
msgid "Vector Export (SVG)"
msgstr "Exportación de vectores (SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "Ver en Github "
@@ -2302,7 +2338,7 @@ msgstr "Su Sandbox es un espacio para experimentar libremente con nuestras herra
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "Tus gráficos son de solo lectura porque tu cuenta ya no está activa. Visita la página de tu <0>cuenta0> para obtener más información."
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "Tu próximo diagrama debería ser el mejor."
@@ -2310,7 +2346,7 @@ msgstr "Tu próximo diagrama debería ser el mejor."
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "Su suscripción es <0>{statusDisplay}0>."
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "Tu trabajo se queda contigo."
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "o"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/locales/fr/messages.js b/app/src/locales/fr/messages.js
index 508dbf1b1..0b7f1406a 100644
--- a/app/src/locales/fr/messages.js
+++ b/app/src/locales/fr/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"48 $/an (économisez 33%) · Annulez à tout moment","$6/mo":"6 $/mois","1 Temporary Flowchart":"1 Organigramme temporaire","1 diagram at a time":"1 diagramme à la fois","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Seul le CSS personnalisé0> est activé. Seuls les paramètres de mise en page et avancés seront appliqués.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> est un projet open source réalisé par <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Se connecter0> / <1>S\'inscrire1> avec email et mot de passe","A new version of the app is available. Please reload to update.":"Une nouvelle version de l\'application est disponible. Veuillez recharger pour mettre à jour.","AI Creation & Editing":"Création et édition d\'IA","AI generation & editing":"Génération et édition par IA","AI-Powered Flowchart Creation":"Création de diagrammes de flux alimentés par l\'IA","AI-generated from plain text in under 5 seconds.":"Généré par IA à partir de texte simple en moins de 5 secondes.","AI-powered editing to supercharge your workflow":"Édition alimentée par l\'IA pour booster votre flux de travail","About":"À propos","Account":"Compte","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Ajoutez un backslash (<0>\\\\0>) avant tout caractère spécial: <1>(1>, <2>:2>, <3>#3>, ou <4>.4>","Add some steps":"Ajouter des étapes","Advanced":"Avancé ","Align Horizontally":"Aligner Horizontalement","Align Nodes":"Aligner les nœuds","Align Vertically":"Aligner Verticalement","All this for just $6/month - less than your daily coffee ☕":"Tout cela pour seulement 6 $ par mois - moins que votre café quotidien ☕","Always presentation-ready":"Toujours prêt pour la présentation","Amount":"Montant","An error occurred. Try resubmitting or email {0} directly.":["Une erreur s\'est produite. Essayez de l\'envoyer à nouveau ou bien envoyez un e-mail à l\'adresse ",["0"],"."],"Appearance":"Thème","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"Êtes-vous sûr de vouloir supprimer le diagramme de flux ?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"Êtes-vous sûr de vouloir supprimer le dossier ?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"Êtes-vous sûr de vouloir supprimer le dossier ?","Are you sure?":"Êtes-vous sûr(e) ?","Arrow Size":"Taille de la flèche","Attributes":"Attributs","August 2023":"Août 2023","Back":"Retour","Back To Editor":"Retour à l\'éditeur","Background Color":"Couleur de fond","Basic Flowchart":"Diagramme de flux de base","Become a Github Sponsor":"Devenez un sponsor Github","Become a Pro User":"Devenez un utilisateur Pro","Begin your journey":"Commencez votre voyage","Billed annually at $48":"Facturé annuellement à 48 $","Billed monthly at $6":"Facturé mensuellement à 6 $","Blog":"Blog","Book a Meeting":"Réserver une réunion","Border Color":"Couleur de bordure","Border Width":"Largeur de bordure","Bottom to Top":"De bas en haut","Breadthfirst":"Parcours en largeur","Build your personal flowchart library":"Construisez votre bibliothèque personnelle de diagrammes de flux","Can I import my existing diagrams?":"Puis-je importer mes diagrammes existants?","Cancel":"Annuler","Cancel anytime":"Annulez à tout moment","Cancel your subscription. Your hosted charts will become read-only.":"Résilier votre abonnement. Vos graphiques hébergés seront en lecture seule.","Certain attributes can be used to customize the appearance or functionality of elements.":"Certains attributs peuvent être utilisés pour personnaliser l\'apparence ou la fonctionnalité des éléments.","Change Email Address":"Changer l\'adresse email","Changelog":"Journal des modifications","Charts":"Graphiques","Check out the guide:":"Vérifiez le guide :","Check your email for a link to log in.<0/>You can close this window.":"Vérifiez votre e-mail pour un lien de connexion. Vous pouvez fermer cette fenêtre.","Choose":"Choisir","Choose Template":"Choisir un modèle","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Choisissez parmi une variété de formes de flèches pour la source et la cible d\'un bord. Les formes incluent triangle, triangle-tee, cercle-triangle, triangle-croix, triangle-backcurve, vee, tee, carré, cercle, diamant, chevron, aucun.","Choose how edges connect between nodes":"Choisissez comment les bords se connectent entre les nœuds","Choose how nodes are automatically arranged in your flowchart":"Choisissez comment les nœuds sont automatiquement disposés dans votre organigramme","Circle":"Cercle","Classes":"Classes","Clear":"Effacer","Clear text?":"Effacer le texte?","Clone":"Cloner","Clone Flowchart":"Cloner le diagramme de flux","Close":"Fermer","Color":"Couleur","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Les couleurs incluent le rouge, l\'orange, le jaune, le bleu, le pourpre, le noir, le blanc et le gris.","Column":"Colonne","Comment":"Commenter","Community templates":"Modèles de la communauté","Compare our plans and find the perfect fit for your flowcharting needs":"Comparez nos plans et trouvez celui qui convient parfaitement à vos besoins en matière de flowcharting","Concentric":"Concentrique","Confirm New Email":"Confirmer le nouveau Email","Confirm your email address to sign in.":"Confirmez votre adresse e-mail pour vous connecter.","Connect your Data":"Connectez vos données","Containers":"Conteneurs","Containers are nodes that contain other nodes. They are declared using curly braces.":"Les conteneurs sont des nœuds qui contiennent d\'autres nœuds. Ils sont déclarés à l\'aide de accolades.","Continue":"Continuer","Continue in Sandbox (Resets daily, work not saved)":"Continuer dans le bac à sable (Réinitialisé quotidiennement, travail non sauvegardé)","Controls the flow direction of hierarchical layouts":"Contrôle la direction du flux des mises en page hiérarchiques","Convert":"Convertir","Convert to Flowchart":"Convertir en diagramme","Convert to hosted chart?":"Convertir en graphique hébergé\xA0?","Cookie Policy":"Politique de cookies","Copied SVG code to clipboard":"Code SVG copié dans le presse-papier","Copied {format} to clipboard":[["format"]," copié dans le presse-papier"],"Copy":"Copier","Copy PNG Image":"Copier l\'image PNG","Copy SVG Code":"Copier le code SVG","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copiez votre code Excalidraw et collez-le sur <0>excalidraw.com0> pour le modifier. Cette fonctionnalité est expérimentale et peut ne pas fonctionner avec tous les diagrammes. Si vous trouvez un bug, <1>faites-le nous savoir1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copiez votre code mermaid.js ou ouvrez-le directement dans l\'éditeur en direct mermaid.js.","Create":"Créer","Create Flowcharts using AI":"Créer des organigrammes à l\'aide de l\'IA","Create Unlimited Flowcharts":"Créer des diagrammes illimités","Create a New Chart":"Créer un nouveau graphique","Create a flowchart showing the steps of planning and executing a school fundraising event":"Créer un organigramme montrant les étapes de la planification et de l\'exécution d\'un événement de collecte de fonds scolaire","Create a new flowchart to get started or organize your work with folders.":"Créez un nouveau diagramme de flux pour commencer ou organisez votre travail avec des dossiers.","Create flowcharts instantly: Type or paste text, see it visualized.":"Créez des organigrammes instantanément : Tapez ou collez du texte, visualisez-le.","Create unlimited diagrams for just $6/month!":"Créez des diagrammes illimités pour seulement 6 $/mois !","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Créez des diagrammes de flux illimités stockés dans le cloud, accessibles partout !","Create with AI":"Créer avec l\'intelligence artificielle","Created Date":"Date de création","Creating an edge between two nodes is done by indenting the second node below the first":"Créer une arête entre deux nœuds est fait en indentant le second nœud sous le premier","Curve Style":"Style de courbe","Custom CSS":"CSS personnalisé","Custom Sharing Options":"Options de partage personnalisées","Custom sharing & public links":"Partage personnalisé et liens publics","Customer Portal":"Portail Clients","Daily Sandbox Editor":"Éditeur Sandbox quotidien","Dark":"Sombre","Dark Mode":"Mode sombre","Data Import (Visio, Lucidchart, CSV)":"Importation de données (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Fonction d\'importation de données pour des diagrammes complexes","Date":"Date","Delete":"Supprimer","Delete {0}":["Supprimer ",["0"]],"Describe it and it appears":"Décrivez-le et il apparaît","Describe your idea. Get a diagram worth presenting.":"Décrivez votre idée. Obtenez un diagramme digne d\'être présenté.","Design a software development lifecycle flowchart for an agile team":"Concevoir un organigramme du cycle de développement de logiciels pour une équipe agile","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Élaborer un arbre de décision pour un PDG afin d\'évaluer de nouvelles opportunités de marché potentielles","Direction":"Direction","Dismiss":"Ignorer","Do you offer discounts for students or nonprofits?":"Offrez-vous des réductions pour les étudiants ou les organisations à but non lucratif?","Do you want to delete this?":"Souhaitez-vous supprimer ceci ?","Document":"Document","Don\'t Lose Your Work":"Ne perdez pas votre travail","Download":"Télécharger","Download JPG":"Télécharger JPG","Download PNG":"Télécharger PNG","Download SVG":"Télécharger SVG","Drag and drop a CSV file here, or click to select a file":"Glissez-déposez un fichier CSV ici, ou cliquez pour sélectionner un fichier","Draw an edge from multiple nodes by beginning the line with a reference":"Dessinez une arête à partir de plusieurs nœuds en commençant la ligne par une référence","Drop the file here ...":"Déposez le fichier ici ...","Each line becomes a node":"Chaque ligne devient un nœud","Edge ID, Classes, Attributes":"ID Edge, Classes, Attributs","Edge Label":"Étiquette Edge","Edge Label Column":"Colonne d\'étiquette Edge","Edge Style":"Style Edge","Edge Text Size":"Taille du texte de bord","Edge missing indentation":"Indentation manquante du bord","Edges":"Bords","Edges are declared in the same row as their source node":"Les bords sont déclarés dans la même ligne que leur nœud source","Edges are declared in the same row as their target node":"Les bords sont déclarés dans la même ligne que leur nœud cible","Edges are declared in their own row":"Les bords sont déclarés dans leur propre ligne","Edges can also have ID\'s, classes, and attributes before the label":"Les bords peuvent également avoir des ID, des classes et des attributs avant l\'étiquette","Edges can be styled with dashed, dotted, or solid lines":"Les bords peuvent être stylisés avec des lignes en pointillés, en pointillés ou en lignes continues","Edges in Separate Rows":"Bordures en Rangs Séparés","Edges in Source Node Row":"Bordures dans la Ligne du Nœud Source","Edges in Target Node Row":"Bordures dans la Ligne du Nœud Cible","Edit":"Modifier","Edit with AI":"Modifier avec l\'IA","Editable":"Modifiable","Editor":"Éditeur","Email":"E-mail","Empty":"Vide","Enable to set a consistent height for all nodes":"Activer pour définir une hauteur constante pour tous les nœuds","Enter a name for the cloned flowchart.":"Entrez un nom pour le flowchart cloné.","Enter a name for the new folder.":"Entrez un nom pour le nouveau dossier.","Enter a new name for the {0}.":["Entrez un nouveau nom pour le ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Entrez votre adresse e-mail et nous vous enverrons un lien magique pour vous connecter.","Enter your email address below and we\'ll send you a link to reset your password.":"Entrez votre adresse e-mail ci-dessous et nous vous enverrons un lien pour réinitialiser votre mot de passe.","Equal To":"Égal à","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Chaque diagramme s\'exporte en PNG, SVG ou lien partageable de qualité - prêt pour la réunion, le document ou la présentation.","Everything you need to know about Flowchart Fun Pro":"Tout ce que vous devez savoir sur Flowchart Fun Pro","Examples":"Exemples","Excalidraw":"Excalidraw","Exclusive Office Hours":"Heures de bureau exclusives","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Découvrez l\'efficacité et la sécurité du chargement de fichiers locaux directement dans votre organigramme, idéal pour gérer des documents professionnels hors ligne. Débloquez cette fonctionnalité exclusive Pro et bien plus encore avec Flowchart Fun Pro, disponible pour seulement 6 $/mois.","Explore Pro":"Découvrez Pro","Explore more":"Explorez plus","Export":"Exporter","Export clean diagrams without branding":"Exportez des diagrammes propres sans branding","Export to PNG & JPG":"Exporter en PNG et JPG","Export to PNG, JPG, and SVG":"Exporter en PNG, JPG et SVG","Feature Breakdown":"Démontage des fonctionnalités","Feedback":"Commentaire","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"N\'hésitez pas à explorer et à nous contacter via la page <0>Commentaires0> si vous avez des inquiétudes.","Fine-tune layouts and visual styles":"Affinez les mises en page et les styles visuels","Fixed Height":"Hauteur fixe","Fixed Node Height":"Hauteur de nœud fixe","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro vous offre des organigrammes illimités, des collaborateurs illimités et un stockage illimité pour seulement 6 $/mois.","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun est construit et maintenu par un seul développeur. Votre soutien permet de le garder en vie.","Follow Us on Twitter":"Suivez-nous sur Twitter","Font Family":"Famille de polices","Forgot your password?":"Mot de passe oublié ?","Free":"Gratuit ","Free users: charts in the sandbox expire after 7 days.":"Utilisateurs gratuits : les diagrammes dans le bac à sable expirent après 7 jours.","Frequently Asked Questions":"Foire aux questions","Full-screen, read-only, and template sharing":"Partage en plein écran, en lecture seule et de modèles","Fullscreen":"Plein écran","General":"Général ","Generate flowcharts from text automatically":"Générez automatiquement des diagrammes de flux à partir de texte","Get Pro Access Now":"Obtenez un accès Pro maintenant","Get Unlimited AI Requests":"Obtenez des demandes illimitées d\'IA","Get rapid responses to your questions":"Obtenez des réponses rapides à vos questions","Get unlimited flowcharts and premium features":"Obtenez des flux de travail illimités et des fonctionnalités premium","Go back home":"Retournez à la maison","Go to the Editor":"Aller à l\'éditeur","Go to your Sandbox":"Allez à votre bac à sable","Graph":"Graphique","Green?":"Vert?","Grid":"Quadrillage","Have complex questions or issues? We\'re here to help.":"Des questions ou des problèmes complexes ? Nous sommes là pour vous aider. ","Here are some Pro features you can now enjoy.":"Voici quelques fonctionnalités Pro dont vous pouvez maintenant profiter.","High-quality exports with embedded fonts":"Des exports de haute qualité avec des polices intégrées","History":"Historique","Home":"Accueil","How are edges declared in this data?":"Comment les bords sont-ils déclarés dans ces données?","How fast can I actually make something?":"À quelle vitesse puis-je réellement créer quelque chose ?","How would you like to save your chart?":"Comment souhaitez-vous enregistrer votre graphique?","I would like to request a new template:":"Je voudrais demander un nouveau modèle :","ID\'s":"ID","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Si un compte avec cet e-mail existe, nous vous avons envoyé un e-mail avec des instructions sur la façon de réinitialiser votre mot de passe.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Si vous souhaitez créer un bord, faites une indentation de cette ligne. Sinon, échappez le deux-points avec une barre oblique <0>\\\\:0>","Images":"Images","Import Data":"Importer des données","Import data from a CSV file.":"Importer des données à partir d\'un fichier CSV.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Importer des données à partir de n\'importe quel fichier CSV et les mapper à un nouveau diagramme. C\'est une excellente façon d\'importer des données à partir d\'autres sources telles que Lucidchart, Google Sheets et Visio.","Import from CSV":"Importer depuis CSV","Import from Visio, Lucidchart, CSV":"Importer depuis Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Importer à partir de Visio, Lucidchart et CSV","Import from anywhere":"Importer de n\'importe où","Import from popular diagram tools":"Importez à partir d\'outils de diagrammes populaires","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importez votre diagramme dans Microsoft Visio à l\'aide de l\'un de ces fichiers CSV.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"L\'importation de données est une fonctionnalité professionnelle. Vous pouvez passer à Flowchart Fun Pro pour seulement 6 $ par mois.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Incluez un titre en utilisant un attribut <0>title0>. Pour utiliser la coloration Visio, ajoutez un attribut <1>roleType1> égal à l\'un des éléments suivants:","Indent to connect nodes":"Indentez pour connecter les nœuds","Info":"Info","Is":"Est","Is my data private?":"Mes données sont-elles privées?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas est une représentation JSON de votre diagramme utilisée par <0>Obsidian0> Canvas et d\'autres applications.","Join 2000+ professionals who\'ve upgraded their workflow":"Rejoignez plus de 2000 professionnels qui ont amélioré leur flux de travail","Join thousands of happy users who love Flowchart Fun":"Rejoignez des milliers d\'utilisateurs satisfaits qui adorent Flowchart Fun","Keep Things Private":"Garder les choses privées","Keep changes?":"Conserver les modifications ?","Keep practicing":"Continuez à pratiquer","Keep your data private on your computer":"Gardez vos données privées sur votre ordinateur","Language":"Langue","Layout":"Disposition ","Layout Algorithm":"Algorithme de mise en page","Layout Frozen":"Mise en page gelée","Leading References":"Principales références","Learn More":"En savoir plus","Learn Syntax":"Apprendre la syntaxe","Learn about Flowchart Fun Pro":"En savoir plus sur Flowchart Fun Pro","Left to Right":"De gauche à droite","Let us know why you\'re canceling. We\'re always looking to improve.":"Faites-nous savoir pourquoi vous annulez. Nous cherchons toujours à nous améliorer.","Light":"Lumineux","Light Mode":"Mode lumineux","Link":"Lien","Link back":"Faites un lien en arrière","Load":"Charger","Load Chart":"Charger le graphique","Load File":"Charger le fichier","Load Files":"Charger des fichiers","Load default content":"Charger le contenu par défaut","Load from link?":"Charger à partir du lien?","Load layout and styles":"Charger la mise en page et les styles","Loading...":"Chargement...","Local File Support":"Support de fichier local","Local saving for offline access":"Enregistrement local pour un accès hors ligne","Lock Zoom to Graph":"Verrouiller le Zoom sur le Graphique","Log In":"Connexion","Log Out":"Déconnexion","Log in to Save":"Connectez-vous pour enregistrer","Log in to upgrade your account":"Connectez-vous pour mettre à niveau votre compte","Make a One-Time Donation":"Faites un don unique","Make it yours":"Rendez-le vôtre","Make publicly accessible":"Rendre accessible au public","Manage Billing":"Gérer la facturation","Map Data":"Cartographier les données","Maximum width of text inside nodes":"Largeur maximale du texte à l\'intérieur des nœuds","Monthly":"Mensuel","Move":"Déplacer","Move {0}":["Déplacer ",["0"]],"Multiple pointers on same line":"Plusieurs pointeurs sur la même ligne","My dog ate my credit card!":"Mon chien a mangé ma carte de crédit!","Name":"Nom","Name Chart":"Nommer le graphique","Name your chart":"Nommez votre graphique","New":"Nouveau","New Email":"Nouveau courriel","New Flowchart":"Nouveau Flowchart","New Folder":"Nouveau Dossier","Next charge":"Prochain paiement","No Edges":"Pas de bords","No Folder (Root)":"Aucun Dossier (Racine)","No Watermarks!":"Pas de filigranes !","No charts yet":"Aucun graphique pour le moment","No items in this folder":"Aucun élément dans ce dossier","No matching charts found":"Aucun graphique correspondant trouvé","Node Border Style":"Style de bordure de nœud","Node Colors":"Couleurs de nœud","Node ID":"Identifiant de nœud","Node ID, Classes, Attributes":"Identifiant de nœud, classes, attributs","Node Label":"Étiquette de nœud","Node Shape":"Forme de nœud","Node Shapes":"Formes de nœud","Nodes":"Nœuds","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Les nœuds peuvent être stylisés avec des traits, des points ou des doubles. Les bordures peuvent également être supprimées avec border_none.","Not Empty":"Pas vide","Now you\'re thinking with flowcharts!":"Maintenant vous pensez avec des organigrammes !","Office Hours":"Heures de travail","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":" temps en temps, le lien magique finira par atterrir dans votre dossier de pourriel. Si vous ne le voyez pas après quelques minutes, vérifiez-y ou demandez un nouveau lien.","One on One Support":"Un à un support","One-on-One Support":"Assistance individuelle","Open Customer Portal":"Ouvrir le portail client","Operation canceled":"Opération annulée","Or maybe blue!":"Ou peut-être bleu !","Organization Chart":"Organigramme","PNG & JPG export":"Exporter en PNG et JPG","Padding":"Rembourrage","Page not found":"Page non trouvée","Password":"Mot de passe ","Past Due":"En retard","Paste a document to convert it":"Collez un document pour le convertir","Paste your document or outline here to convert it into an organized flowchart.":"Collez votre document ou votre plan ici pour le convertir en un organigramme organisé.","Pasted content detected. Convert to Flowchart Fun syntax?":"Contenu collé détecté. Convertir en syntaxe de Flowchart Fun ?","Perfect for docs and quick sharing":"Parfait pour les documents et le partage rapide","Permanent Charts are a Pro Feature":"Les diagrammes permanents sont une fonctionnalité Pro","Playbook":"Livre-jeu","Pointer and container on same line":"Pointeur et conteneur sur la même ligne","Priority One-on-One Support":"Support prioritaire en tête-à-tête","Priority support":"Support prioritaire","Privacy Policy":"Politique de confidentialité","Pro starts at $4/mo billed yearly. Cancel anytime.":"La version Pro commence à 4€/mois facturés annuellement. Annulez à tout moment.","Pro tip: Right-click any node to customize its shape and color":"Astuce pro : faites un clic droit sur n\'importe quel noeud pour personnaliser sa forme et sa couleur","Processing Data":"Traitement des données","Processing...":"Traitement en cours...","Prompt":"Invite","Public":"Public","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Importer des données depuis Visio, Lucidchart, CSV ou partir d\'un modèle. Pas besoin de recréer ce qui existe déjà.","Quick experimentation space that resets daily":"Espace d\'expérimentation rapide qui se réinitialise quotidiennement","Random":"Aléatoire","Rapid Deployment Templates":"Modèles de déploiement rapide","Rapid Templates":"Modèles rapides","Raster Export (PNG, JPG)":"Exportation de rasters (PNG, JPG)","Rate limit exceeded. Please try again later.":"Limite de taux dépassée. Veuillez réessayer plus tard.","Read-only":"Lecture seulement","Reference by Class":"Référence par classe","Reference by ID":"Référence par ID","Reference by Label":"Référence par étiquette","References":"Références","References are used to create edges between nodes that are created elsewhere in the document":"Les références sont utilisées pour créer des arêtes entre les nœuds créés ailleurs dans le document","Referencing a node by its exact label":"Référencer un nœud par sa étiquette exacte","Referencing a node by its unique ID":"Référencer un nœud par son ID unique","Referencing multiple nodes with the same assigned class":"Référencement de multiples nœuds avec la même classe assignée","Refresh Page":"Rafraîchir la page","Reload to Update":"Recharger pour mettre à jour","Rename":"Renommer","Rename {0}":["Renommer ",["0"]],"Request Magic Link":"Demandez un lien magique","Request Password Reset":"Demandez une réinitialisation du mot de passe ","Reset":"Réinitialiser","Reset Password":"Réinitialiser le mot de passe","Resume Subscription":"Reprendre l\'abonnement","Return":"Retour","Right to Left":"De droite à gauche","Right-click nodes for options":"Cliquez avec le bouton droit sur les nœuds pour voir les options","Roadmap":"Roadmap","Rotate Label":"Faire pivoter l\'étiquette","SVG Export is a Pro Feature":"L\'exportation SVG est une fonctionnalité Pro","SVG, PDF & all export formats":"Formats d\'exportation SVG, PDF et tous les autres formats","Satisfaction guaranteed or first payment refunded":"Satisfaction garantie ou remboursement du premier paiement","Save":"Sauver","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Enregistrer localement, travailler hors ligne et contrôler exactement qui voit quoi. Aucune donnée ne quitte votre machine à moins que vous ne le souhaitiez.","Save time with AI and dictation, making it easy to create diagrams.":"Gagnez du temps avec l\'IA et la dictée, ce qui facilite la création de diagrammes.","Save to Cloud":"Enregistrer dans le Cloud","Save to File":"Enregistrer dans un fichier","Save your Work":"Enregistrer votre travail","Schedule personal consultation sessions":"Planifier des sessions de consultation personnelle","Secure payment":"Paiement sécurisé","See more reviews on Product Hunt":"Voir plus de critiques sur Product Hunt","See what\'s possible":"Découvrez les possibilités","Select a destination folder for \\"{0}\\".":"Sélectionner un dossier de destination pour \\\\","Send us a message":"Envoyez-nous un message","Set a consistent height for all nodes":"Définir une hauteur constante pour tous les nœuds","Settings":"Paramètres","Share":"Partager","Sign In":"Se connecter ","Sign in with <0>GitHub0>":"Se connecter avec <0>GitHub0>","Sign in with <0>Google0>":"Se connecter avec <0>Google0>","Sorry! This page is only available in English.":"Désolé ! Cette page n\'est disponible qu\'en anglais.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Désolé, une erreur s\'est produite lors de la conversion du texte en diagramme. Veuillez réessayer plus tard.","Sort Ascending":"Trier par ordre croissant","Sort Descending":"Trier par ordre décroissant","Sort by {0}":["Trier par ",["0"]],"Source Arrow Shape":"Forme de la flèche source","Source Column":"Colonne source","Source Delimiter":"Délimiteur source","Source Distance From Node":"Distance de la source du nœud","Source/Target Arrow Shape":"Forme de flèche source / cible","Spacing":"Espacement","Special Attributes":"Attributs spéciaux","Start":"Début","Start Over":"Recommencer","Start faster with use-case specific templates":"Démarrer plus rapidement avec des modèles spécifiques aux cas d\'utilisation","Start for free":"Commencez gratuitement","Status":"État","Step 1":"Étape 1","Step 2":"Étape 2","Step 3":"Étape 3","Store any data associated to a node":"Stocker toutes les données associées à un nœud","Style Classes":"Classes de style","Style with classes":"Style avec des classes","Submit":"Soumettre","Subscription":"Abonnement","Subscription Successful!":"Abonnement réussi !","Subscription will end":"L\'abonnement prendra fin","Support":"Support","Target Arrow Shape":"Forme de la flèche cible","Target Column":"Colonne cible","Target Delimiter":"Délimiteur cible","Target Distance From Node":"Distance cible du nœud","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Dites à l\'IA ce dont vous avez besoin en langage clair. Votre diagramme se construit en quelques secondes.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Dites-nous ce qui fonctionne et ce qui ne fonctionne pas. Chaque message est lu par le développeur.","Text Color":"Couleur du texte","Text Horizontal Offset":"Décalage horizontal du texte","Text Leading":"Texte principal","Text Max Width":"Largeur maximale du texte","Text Vertical Offset":"Décalage vertical du texte","Text followed by colon+space creates an edge with the text as the label":"Texte suivi d\'un deux-points + espace crée un bord avec le texte comme étiquette","Text on a line creates a node with the text as the label":"Texte sur une ligne crée un nœud avec le texte comme étiquette","Thank you for your feedback!":"Merci pour votre commentaire !","The beauty and magic reside in the minimalism.":"La beauté et la magie résident dans le minimalisme.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"La meilleure façon de changer les styles est de cliquer avec le bouton droit sur un nœud ou une arête et de sélectionner le style souhaité.","The column that contains the edge label(s)":"La colonne qui contient les étiquettes de bord","The column that contains the source node ID(s)":"La colonne qui contient les ID de nœud source","The column that contains the target node ID(s)":"La colonne qui contient les ID de nœud cible","The delimiter used to separate multiple source nodes":"Le délimiteur utilisé pour séparer plusieurs nœuds source","The delimiter used to separate multiple target nodes":"Le délimiteur utilisé pour séparer plusieurs nœuds cibles","The fastest way to turn what\'s in your head into something everyone else can understand.":"Le moyen le plus rapide de transformer ce qui se trouve dans votre tête en quelque chose que tout le monde peut comprendre.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"Le plan gratuit fonctionne parfaitement pour une utilisation quotidienne. Si vous avez besoin de fonctionnalités Pro, c\'est mois par mois à 6€/mois - annulez à tout moment sans engagement.","The possible shapes are:":"Les formes possibles sont :","Theme":"Thème","Theme Customization Editor":"Éditeur de personnalisation de thème","Theme Editor":"Éditeur de thème","Theme editor":"Éditeur de thème","There are no edges in this data":"Il n\'y a pas d\'arêtes dans ces données","This action cannot be undone.":"Cette action ne peut pas être annulée.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Cette fonctionnalité est uniquement disponible pour les utilisateurs pro. <0>Devenez un utilisateur pro0> pour la débloquer.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Cela peut prendre entre 30 secondes et 2 minutes en fonction de la longueur de votre entrée.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Ce bac à sable est parfait pour expérimenter, mais n\'oubliez pas - il se réinitialise quotidiennement. Mettez à niveau maintenant et conservez votre travail actuel!","This will replace the current content.":"Cela remplacera le contenu actuel.","This will replace your current chart content with the template content.":"Cela remplacera le contenu actuel de votre diagramme par le contenu du modèle.","This will replace your current sandbox.":"Cela remplacera votre bac à sable actuel.","Time to decide":"Temps de décider","Tip":"Astuce","To fix this change one of the edge IDs":"Pour corriger cela, changez l\'un des ID de bord","To fix this change one of the node IDs":"Pour corriger ceci, changez l\'un des ID de nœud","To fix this move one pointer to the next line":"Pour corriger ceci, déplacez un pointeur vers la ligne suivante","To fix this start the container <0/> on a different line":"Pour corriger cela, commencez le conteneur <0/> sur une ligne différente.","To learn more about why we require you to log in, please read <0>this blog post0>.":"Pour en savoir plus sur la raison pour laquelle nous vous demandons de vous connecter, veuillez lire <0>ce message de blog0>.","Top to Bottom":"De haut en bas","Transform Your Ideas into Professional Diagrams in Seconds":"Transformez vos idées en diagrammes professionnels en quelques secondes","Transform text into diagrams instantly":"Transformez instantanément du texte en diagrammes","Try AI":"Essayez l\'IA","Try adjusting your search or filters to find what you\'re looking for.":"Essayez d\'ajuster votre recherche ou vos filtres pour trouver ce que vous cherchez.","Try again":"Réessayer","Try it free":"Essayez-le gratuitement","Two edges have the same ID":"Deux arêtes ont le même ID","Two nodes have the same ID":"Deux nœuds ont le même ID","Type it. See it.":"Tapez-le. Voyez-le.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Oh oh, vous n\'avez plus de demandes gratuites ! Passez à Flowchart Fun Pro pour des conversions de diagrammes illimitées et continuez à transformer du texte en des flux visuels clairs aussi facilement que copier-coller.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Moins de 60 secondes. Tapez quelques lignes de texte ou décrivez ce dont vous avez besoin à l\'IA, et votre diagramme apparaît instantanément. Exportez-le ou partagez-le en un clic.","Undo":"Annuler","Unescaped special character":"Caractère spécial non échappé","Unique text value to identify a node":"Valeur de texte unique pour identifier un nœud","Unknown":"Inconnu","Unknown Parsing Error":"Erreur d\'analyse inconnue","Unlimited Flowcharts":"Flowcharts illimités","Unlimited Permanent Flowcharts":"Flux de diagrammes permanents illimités","Unlimited cloud-saved flowcharts":"Des organigrammes sauvegardés dans le cloud en illimité","Unlimited saved diagrams":"Diagrammes sauvegardés illimités","Unlock AI Features and never lose your work with a Pro account.":"Débloquez les fonctionnalités de l\'IA et ne perdez jamais votre travail avec un compte Pro.","Unlock Unlimited AI Flowcharts":"Débloquez des organigrammes AI illimités","Unpaid":"Impayé","Update Email":"Mettre à jour l\'e-mail","Updated Date":"Date de mise à jour","Upgrade Now - Save My Work":"Mettre à niveau maintenant - Sauvegarder mon travail","Upgrade to Flowchart Fun Pro and unlock:":"Passez à Flowchart Fun Pro et débloquez:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Mettez à niveau vers Flowchart Fun Pro pour débloquer les exportations SVG et profiter de fonctionnalités avancées pour vos diagrammes.","Upgrade to Pro":"Mettez à niveau vers Pro","Upgrade to Pro for permanent charts.":"Passez à la version Pro pour des diagrammes permanents.","Upload your File":"Téléchargez votre fichier","Use Custom CSS Only":"Utiliser uniquement du CSS personnalisé","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Utilisez Lucidchart ou Visio ? L\'importation CSV facilite l\'obtention de données à partir de n\'importe quelle source !","Use classes to group nodes":"Utilisez des classes pour regrouper les nœuds","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Utilisez l\'attribut <0>href0> pour créer un lien sur un nœud qui s\'ouvre dans un nouvel onglet.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Utilisez l\'attribut <0>src0> pour définir l\'image d\'un nœud. L\'image sera mise à l\'échelle pour s\'adapter au nœud, vous devrez donc peut-être ajuster la largeur et la hauteur du nœud pour obtenir le résultat souhaité. Seules les images publiques (non bloquées par CORS) sont prises en charge.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Utilisez les attributs <0>w0> et <1>h1> pour définir explicitement la largeur et la hauteur d\'un nœud.","Use the customer portal to change your billing information.":"Utilisez le portail client pour modifier vos informations de facturation.","Use these settings to adapt the look and behavior of your flowcharts":"Utilisez ces paramètres pour adapter l\'apparence et le comportement de vos diagrammes de flux","Use this file for org charts, hierarchies, and other organizational structures.":"Utilisez ce fichier pour les organigrammes, les hiérarchies et autres structures organisationnelles.","Use this file for sequences, processes, and workflows.":"Utilisez ce fichier pour les séquences, les processus et les workflows.","Use this mode to modify and enhance your current chart.":"Utilisez ce mode pour modifier et améliorer votre diagramme actuel.","Used at":"Utilisé à","User":"Utilisateur","Vector Export (SVG)":"Exportation de vecteurs (SVG)","View on Github":"Voir sur Github","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Vous souhaitez créer un diagramme à partir d\'un document ? Collez-le dans l\'éditeur et cliquez sur \'Convertir en diagramme\'","Watermark-Free Diagrams":"Diagrammes sans filigrane","Watermarks":"Filigranes","Welcome to Flowchart Fun":"Bienvenue dans Flowchart Fun","What if I just need it for one project?":"Et si je n\'en ai besoin que pour un seul projet ?","What our users are saying":"Ce que nos utilisateurs disent","What\'s next?":"Quelle est la prochaine étape ?","What\'s this?":"Qu\'est-ce que c\'est?","Width":"Largeur","Width and Height":"Largeur et hauteur","Will my diagrams actually look professional?":"Est-ce que mes diagrammes auront un aspect professionnel ?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Avec la version Pro de Flowchart Fun, vous pouvez utiliser des commandes en langage naturel pour rapidement détailler votre organigramme, idéal pour créer des diagrammes en déplacement. Pour 6 $ par mois, profitez de la facilité de l\'édition accessible par l\'IA pour améliorer votre expérience de création d\'organigrammes.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Avec la version pro, vous pouvez enregistrer et charger des fichiers locaux. C\'est parfait pour gérer des documents professionnels hors ligne.","Would you like to continue?":"Voulez-vous continuer ?","Would you like to suggest a new example?":"Souhaitez-vous suggérer un nouvel exemple ?","Wrap text in parentheses to connect to any node":"Entourez le texte entre parenthèses pour le connecter à n\'importe quel nœud","Write like an outline":"Écrivez comme un plan","Write your prompt here or click to enable the microphone, then press and hold to record.":"Écrivez votre message ici ou cliquez pour activer le microphone, puis maintenez pour enregistrer.","Yearly":"Annuellement","Yes — send us a message and we\'ll set you up with a discounted rate.":"Oui - envoyez-nous un message et nous vous fournirons un tarif réduit.","Yes, Replace Content":"Oui, remplacer le contenu","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Oui. Chaque diagramme utilise des mises en page équilibrées et automatiques avec une typographie propre. Vous pouvez personnaliser les thèmes, les couleurs et les styles - et exporter en tant que SVG net ou en tant que PNG haute résolution qui sera parfait dans toute présentation ou document.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Oui. La version Pro prend en charge l\'importation depuis Visio, Lucidchart et CSV - vous pouvez donc importer ce que vous avez déjà sans avoir à le recréer à partir de zéro.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Oui. Vous pouvez enregistrer et charger des fichiers localement, travailler entièrement hors ligne et contrôler exactement qui voit vos diagrammes. Aucune donnée ne quitte votre machine à moins que vous ne choisissiez de partager.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Vous êtes sur le point d\'ajouter ",["numNodes"]," nœuds et ",["numEdges"]," arêtes à votre graphe."],"You need to log in to access this page.":"Vous devez vous connecter pour accéder à cette page.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Vous êtes déjà un utilisateur Pro. <0>Gérer l\'abonnement0><1/>Vous avez des questions ou des demandes de fonctionnalités? <2>Faites-le nous savoir2>","You\'re doing great!":"Vous vous en sortez très bien !","You\'re on the free plan.":"Vous êtes sur le plan gratuit.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Vous avez utilisé toutes vos conversions gratuites d\'IA. Passez à la version Pro pour une utilisation illimitée de l\'IA, des thèmes personnalisés, un partage privé et plus encore. Continuez à créer des diagrammes de flux incroyables sans effort !","Your Charts":"Vos diagrammes","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Votre bac à sable est un espace pour expérimenter librement avec nos outils de diagramme, se réinitialisant chaque jour pour un nouveau départ.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Vos graphiques sont en lecture seule car votre compte n\'est plus actif. Visitez votre page <0>compte0> pour en savoir plus.","Your next diagram should be your best one.":"Votre prochain diagramme devrait être le meilleur.","Your subscription is <0>{statusDisplay}0>.":["Votre abonnement est <0>",["statusDisplay"],"0>."],"Your work stays yours":"Votre travail reste le vôtre.","Zoom In":"Zoomer","Zoom Out":"Zoomer vers l\'extérieur","month":"mois","or":"ou","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"48 $/an (économisez 33%) · Annulez à tout moment","$6/mo":"6 $/mois","1 Temporary Flowchart":"1 Organigramme temporaire","1 diagram at a time":"1 diagramme à la fois","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Seul le CSS personnalisé0> est activé. Seuls les paramètres de mise en page et avancés seront appliqués.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> est un projet open source réalisé par <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Se connecter0> / <1>S\'inscrire1> avec email et mot de passe","A new version of the app is available. Please reload to update.":"Une nouvelle version de l\'application est disponible. Veuillez recharger pour mettre à jour.","AI Creation & Editing":"Création et édition d\'IA","AI generation & editing":"Génération et édition par IA","AI-Powered Flowchart Creation":"Création de diagrammes de flux alimentés par l\'IA","AI-generated from plain text in under 5 seconds.":"Généré par IA à partir de texte simple en moins de 5 secondes.","AI-powered editing to supercharge your workflow":"Édition alimentée par l\'IA pour booster votre flux de travail","About":"À propos","Account":"Compte","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Ajoutez un backslash (<0>\\\\0>) avant tout caractère spécial: <1>(1>, <2>:2>, <3>#3>, ou <4>.4>","Add some steps":"Ajouter des étapes","Advanced":"Avancé ","Align Horizontally":"Aligner Horizontalement","Align Nodes":"Aligner les nœuds","Align Vertically":"Aligner Verticalement","All this for just $6/month - less than your daily coffee ☕":"Tout cela pour seulement 6 $ par mois - moins que votre café quotidien ☕","Always presentation-ready":"Toujours prêt pour la présentation","Amount":"Montant","An error occurred. Try resubmitting or email {0} directly.":["Une erreur s\'est produite. Essayez de l\'envoyer à nouveau ou bien envoyez un e-mail à l\'adresse ",["0"],"."],"Appearance":"Thème","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"Êtes-vous sûr de vouloir supprimer le diagramme de flux ?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"Êtes-vous sûr de vouloir supprimer le dossier ?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"Êtes-vous sûr de vouloir supprimer le dossier ?","Are you sure?":"Êtes-vous sûr(e) ?","Arrow Size":"Taille de la flèche","Attributes":"Attributs","August 2023":"Août 2023","Back":"Retour","Back To Editor":"Retour à l\'éditeur","Background Color":"Couleur de fond","Basic Flowchart":"Diagramme de flux de base","Become a Github Sponsor":"Devenez un sponsor Github","Become a Pro User":"Devenez un utilisateur Pro","Begin your journey":"Commencez votre voyage","Billed annually at $48":"Facturé annuellement à 48 $","Billed monthly at $6":"Facturé mensuellement à 6 $","Blog":"Blog","Book a Meeting":"Réserver une réunion","Border Color":"Couleur de bordure","Border Width":"Largeur de bordure","Bottom to Top":"De bas en haut","Breadthfirst":"Parcours en largeur","Build your personal flowchart library":"Construisez votre bibliothèque personnelle de diagrammes de flux","Can I import my existing diagrams?":"Puis-je importer mes diagrammes existants?","Cancel":"Annuler","Cancel anytime":"Annulez à tout moment","Cancel your subscription. Your hosted charts will become read-only.":"Résilier votre abonnement. Vos graphiques hébergés seront en lecture seule.","Certain attributes can be used to customize the appearance or functionality of elements.":"Certains attributs peuvent être utilisés pour personnaliser l\'apparence ou la fonctionnalité des éléments.","Change Email Address":"Changer l\'adresse email","Changelog":"Journal des modifications","Charts":"Graphiques","Check out the guide:":"Vérifiez le guide :","Check your email for a link to log in.<0/>You can close this window.":"Vérifiez votre e-mail pour un lien de connexion. Vous pouvez fermer cette fenêtre.","Choose":"Choisir","Choose Template":"Choisir un modèle","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Choisissez parmi une variété de formes de flèches pour la source et la cible d\'un bord. Les formes incluent triangle, triangle-tee, cercle-triangle, triangle-croix, triangle-backcurve, vee, tee, carré, cercle, diamant, chevron, aucun.","Choose how edges connect between nodes":"Choisissez comment les bords se connectent entre les nœuds","Choose how nodes are automatically arranged in your flowchart":"Choisissez comment les nœuds sont automatiquement disposés dans votre organigramme","Circle":"Cercle","Classes":"Classes","Clear":"Effacer","Clear text?":"Effacer le texte?","Clone":"Cloner","Clone Flowchart":"Cloner le diagramme de flux","Close":"Fermer","Color":"Couleur","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"Les couleurs incluent le rouge, l\'orange, le jaune, le bleu, le pourpre, le noir, le blanc et le gris.","Column":"Colonne","Comment":"Commenter","Community templates":"Modèles de la communauté","Compare our plans and find the perfect fit for your flowcharting needs":"Comparez nos plans et trouvez celui qui convient parfaitement à vos besoins en matière de flowcharting","Concentric":"Concentrique","Confirm New Email":"Confirmer le nouveau Email","Confirm your email address to sign in.":"Confirmez votre adresse e-mail pour vous connecter.","Connect your Data":"Connectez vos données","Containers":"Conteneurs","Containers are nodes that contain other nodes. They are declared using curly braces.":"Les conteneurs sont des nœuds qui contiennent d\'autres nœuds. Ils sont déclarés à l\'aide de accolades.","Continue":"Continuer","Continue in Sandbox (Resets daily, work not saved)":"Continuer dans le bac à sable (Réinitialisé quotidiennement, travail non sauvegardé)","Controls the flow direction of hierarchical layouts":"Contrôle la direction du flux des mises en page hiérarchiques","Convert":"Convertir","Convert to Flowchart":"Convertir en diagramme","Convert to hosted chart?":"Convertir en graphique hébergé\xA0?","Cookie Policy":"Politique de cookies","Copied SVG code to clipboard":"Code SVG copié dans le presse-papier","Copied {format} to clipboard":[["format"]," copié dans le presse-papier"],"Copy":"Copier","Copy PNG Image":"Copier l\'image PNG","Copy SVG Code":"Copier le code SVG","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copiez votre code Excalidraw et collez-le sur <0>excalidraw.com0> pour le modifier. Cette fonctionnalité est expérimentale et peut ne pas fonctionner avec tous les diagrammes. Si vous trouvez un bug, <1>faites-le nous savoir1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copiez votre code mermaid.js ou ouvrez-le directement dans l\'éditeur en direct mermaid.js.","Create":"Créer","Create Flowcharts using AI":"Créer des organigrammes à l\'aide de l\'IA","Create Unlimited Flowcharts":"Créer des diagrammes illimités","Create a New Chart":"Créer un nouveau graphique","Create a flowchart showing the steps of planning and executing a school fundraising event":"Créer un organigramme montrant les étapes de la planification et de l\'exécution d\'un événement de collecte de fonds scolaire","Create a new flowchart to get started or organize your work with folders.":"Créez un nouveau diagramme de flux pour commencer ou organisez votre travail avec des dossiers.","Create flowcharts instantly: Type or paste text, see it visualized.":"Créez des organigrammes instantanément : Tapez ou collez du texte, visualisez-le.","Create unlimited diagrams for just $6/month!":"Créez des diagrammes illimités pour seulement 6 $/mois !","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Créez des diagrammes de flux illimités stockés dans le cloud, accessibles partout !","Create with AI":"Créer avec l\'intelligence artificielle","Created Date":"Date de création","Creating an edge between two nodes is done by indenting the second node below the first":"Créer une arête entre deux nœuds est fait en indentant le second nœud sous le premier","Curve Style":"Style de courbe","Custom CSS":"CSS personnalisé","Custom Sharing Options":"Options de partage personnalisées","Custom sharing & public links":"Partage personnalisé et liens publics","Customer Portal":"Portail Clients","Daily Sandbox Editor":"Éditeur Sandbox quotidien","Dark":"Sombre","Dark Mode":"Mode sombre","Data Import (Visio, Lucidchart, CSV)":"Importation de données (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Fonction d\'importation de données pour des diagrammes complexes","Date":"Date","Delete":"Supprimer","Delete {0}":["Supprimer ",["0"]],"Describe it and it appears":"Décrivez-le et il apparaît","Describe your idea. Get a diagram worth presenting.":"Décrivez votre idée. Obtenez un diagramme digne d\'être présenté.","Design a software development lifecycle flowchart for an agile team":"Concevoir un organigramme du cycle de développement de logiciels pour une équipe agile","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Élaborer un arbre de décision pour un PDG afin d\'évaluer de nouvelles opportunités de marché potentielles","Direction":"Direction","Dismiss":"Ignorer","Do you offer discounts for students or nonprofits?":"Offrez-vous des réductions pour les étudiants ou les organisations à but non lucratif?","Do you want to delete this?":"Souhaitez-vous supprimer ceci ?","Document":"Document","Don\'t Lose Your Work":"Ne perdez pas votre travail","Download":"Télécharger","Download JPG":"Télécharger JPG","Download PNG":"Télécharger PNG","Download SVG":"Télécharger SVG","Drag and drop a CSV file here, or click to select a file":"Glissez-déposez un fichier CSV ici, ou cliquez pour sélectionner un fichier","Draw an edge from multiple nodes by beginning the line with a reference":"Dessinez une arête à partir de plusieurs nœuds en commençant la ligne par une référence","Drop the file here ...":"Déposez le fichier ici ...","Each line becomes a node":"Chaque ligne devient un nœud","Edge ID, Classes, Attributes":"ID Edge, Classes, Attributs","Edge Label":"Étiquette Edge","Edge Label Column":"Colonne d\'étiquette Edge","Edge Style":"Style Edge","Edge Text Size":"Taille du texte de bord","Edge missing indentation":"Indentation manquante du bord","Edges":"Bords","Edges are declared in the same row as their source node":"Les bords sont déclarés dans la même ligne que leur nœud source","Edges are declared in the same row as their target node":"Les bords sont déclarés dans la même ligne que leur nœud cible","Edges are declared in their own row":"Les bords sont déclarés dans leur propre ligne","Edges can also have ID\'s, classes, and attributes before the label":"Les bords peuvent également avoir des ID, des classes et des attributs avant l\'étiquette","Edges can be styled with dashed, dotted, or solid lines":"Les bords peuvent être stylisés avec des lignes en pointillés, en pointillés ou en lignes continues","Edges in Separate Rows":"Bordures en Rangs Séparés","Edges in Source Node Row":"Bordures dans la Ligne du Nœud Source","Edges in Target Node Row":"Bordures dans la Ligne du Nœud Cible","Edit":"Modifier","Edit with AI":"Modifier avec l\'IA","Editable":"Modifiable","Editor":"Éditeur","Email":"E-mail","Empty":"Vide","Enable to set a consistent height for all nodes":"Activer pour définir une hauteur constante pour tous les nœuds","Enter a name for the cloned flowchart.":"Entrez un nom pour le flowchart cloné.","Enter a name for the new folder.":"Entrez un nom pour le nouveau dossier.","Enter a new name for the {0}.":["Entrez un nouveau nom pour le ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Entrez votre adresse e-mail et nous vous enverrons un lien magique pour vous connecter.","Enter your email address below and we\'ll send you a link to reset your password.":"Entrez votre adresse e-mail ci-dessous et nous vous enverrons un lien pour réinitialiser votre mot de passe.","Equal To":"Égal à","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Chaque diagramme s\'exporte en PNG, SVG ou lien partageable de qualité - prêt pour la réunion, le document ou la présentation.","Everything you need to know about Flowchart Fun Pro":"Tout ce que vous devez savoir sur Flowchart Fun Pro","Examples":"Exemples","Excalidraw":"Excalidraw","Exclusive Office Hours":"Heures de bureau exclusives","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Découvrez l\'efficacité et la sécurité du chargement de fichiers locaux directement dans votre organigramme, idéal pour gérer des documents professionnels hors ligne. Débloquez cette fonctionnalité exclusive Pro et bien plus encore avec Flowchart Fun Pro, disponible pour seulement 6 $/mois.","Explore Pro":"Découvrez Pro","Explore more":"Explorez plus","Export":"Exporter","Export clean diagrams without branding":"Exportez des diagrammes propres sans branding","Export to PNG & JPG":"Exporter en PNG et JPG","Export to PNG, JPG, and SVG":"Exporter en PNG, JPG et SVG","Feature Breakdown":"Démontage des fonctionnalités","Feedback":"Commentaire","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"N\'hésitez pas à explorer et à nous contacter via la page <0>Commentaires0> si vous avez des inquiétudes.","Fine-tune layouts and visual styles":"Affinez les mises en page et les styles visuels","Fixed Height":"Hauteur fixe","Fixed Node Height":"Hauteur de nœud fixe","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro vous offre des organigrammes illimités, des collaborateurs illimités et un stockage illimité pour seulement 6 $/mois.","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"Flowchart Fun est un projet open source réalisé par <0>Tone\xA0Row0>","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun est construit et maintenu par un seul développeur. Votre soutien permet de le garder en vie.","Follow Us on Twitter":"Suivez-nous sur Twitter","Font Family":"Famille de polices","Forgot your password?":"Mot de passe oublié ?","Free":"Gratuit ","Free users: charts in the sandbox expire after 7 days.":"Utilisateurs gratuits : les diagrammes dans le bac à sable expirent après 7 jours.","Frequently Asked Questions":"Foire aux questions","Full-screen, read-only, and template sharing":"Partage en plein écran, en lecture seule et de modèles","Fullscreen":"Plein écran","General":"Général ","Generate flowcharts from text automatically":"Générez automatiquement des diagrammes de flux à partir de texte","Get Pro Access Now":"Obtenez un accès Pro maintenant","Get Unlimited AI Requests":"Obtenez des demandes illimitées d\'IA","Get rapid responses to your questions":"Obtenez des réponses rapides à vos questions","Get unlimited flowcharts and premium features":"Obtenez des flux de travail illimités et des fonctionnalités premium","Go back home":"Retournez à la maison","Go to the Editor":"Aller à l\'éditeur","Go to your Sandbox":"Allez à votre bac à sable","Graph":"Graphique","Green?":"Vert?","Grid":"Quadrillage","Group ranking and ranked-choice voting, free":"Classement de groupe et vote à choix classé, gratuit","Have complex questions or issues? We\'re here to help.":"Des questions ou des problèmes complexes ? Nous sommes là pour vous aider. ","Here are some Pro features you can now enjoy.":"Voici quelques fonctionnalités Pro dont vous pouvez maintenant profiter.","High-quality exports with embedded fonts":"Des exports de haute qualité avec des polices intégrées","History":"Historique","Home":"Accueil","How are edges declared in this data?":"Comment les bords sont-ils déclarés dans ces données?","How fast can I actually make something?":"À quelle vitesse puis-je réellement créer quelque chose ?","How would you like to save your chart?":"Comment souhaitez-vous enregistrer votre graphique?","I would like to request a new template:":"Je voudrais demander un nouveau modèle :","ID\'s":"ID","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Si un compte avec cet e-mail existe, nous vous avons envoyé un e-mail avec des instructions sur la façon de réinitialiser votre mot de passe.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Si vous souhaitez créer un bord, faites une indentation de cette ligne. Sinon, échappez le deux-points avec une barre oblique <0>\\\\:0>","Images":"Images","Import Data":"Importer des données","Import data from a CSV file.":"Importer des données à partir d\'un fichier CSV.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Importer des données à partir de n\'importe quel fichier CSV et les mapper à un nouveau diagramme. C\'est une excellente façon d\'importer des données à partir d\'autres sources telles que Lucidchart, Google Sheets et Visio.","Import from CSV":"Importer depuis CSV","Import from Visio, Lucidchart, CSV":"Importer depuis Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Importer à partir de Visio, Lucidchart et CSV","Import from anywhere":"Importer de n\'importe où","Import from popular diagram tools":"Importez à partir d\'outils de diagrammes populaires","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importez votre diagramme dans Microsoft Visio à l\'aide de l\'un de ces fichiers CSV.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"L\'importation de données est une fonctionnalité professionnelle. Vous pouvez passer à Flowchart Fun Pro pour seulement 6 $ par mois.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Incluez un titre en utilisant un attribut <0>title0>. Pour utiliser la coloration Visio, ajoutez un attribut <1>roleType1> égal à l\'un des éléments suivants:","Indent to connect nodes":"Indentez pour connecter les nœuds","Info":"Info","Is":"Est","Is my data private?":"Mes données sont-elles privées?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON Canvas est une représentation JSON de votre diagramme utilisée par <0>Obsidian0> Canvas et d\'autres applications.","Join 2000+ professionals who\'ve upgraded their workflow":"Rejoignez plus de 2000 professionnels qui ont amélioré leur flux de travail","Join thousands of happy users who love Flowchart Fun":"Rejoignez des milliers d\'utilisateurs satisfaits qui adorent Flowchart Fun","Keep Things Private":"Garder les choses privées","Keep changes?":"Conserver les modifications ?","Keep practicing":"Continuez à pratiquer","Keep your data private on your computer":"Gardez vos données privées sur votre ordinateur","Language":"Langue","Layout":"Disposition ","Layout Algorithm":"Algorithme de mise en page","Layout Frozen":"Mise en page gelée","Leading References":"Principales références","Learn More":"En savoir plus","Learn Syntax":"Apprendre la syntaxe","Learn about Flowchart Fun Pro":"En savoir plus sur Flowchart Fun Pro","Left to Right":"De gauche à droite","Let us know why you\'re canceling. We\'re always looking to improve.":"Faites-nous savoir pourquoi vous annulez. Nous cherchons toujours à nous améliorer.","Light":"Lumineux","Light Mode":"Mode lumineux","Link":"Lien","Link back":"Faites un lien en arrière","Load":"Charger","Load Chart":"Charger le graphique","Load File":"Charger le fichier","Load Files":"Charger des fichiers","Load default content":"Charger le contenu par défaut","Load from link?":"Charger à partir du lien?","Load layout and styles":"Charger la mise en page et les styles","Loading...":"Chargement...","Local File Support":"Support de fichier local","Local saving for offline access":"Enregistrement local pour un accès hors ligne","Lock Zoom to Graph":"Verrouiller le Zoom sur le Graphique","Log In":"Connexion","Log Out":"Déconnexion","Log in to Save":"Connectez-vous pour enregistrer","Log in to upgrade your account":"Connectez-vous pour mettre à niveau votre compte","Made by <0>Tone\xA0Row0>":"Réalisé par <0>Tone\xA0Row0>","Make a One-Time Donation":"Faites un don unique","Make it yours":"Rendez-le vôtre","Make publicly accessible":"Rendre accessible au public","Manage Billing":"Gérer la facturation","Map Data":"Cartographier les données","Maximum width of text inside nodes":"Largeur maximale du texte à l\'intérieur des nœuds","Monthly":"Mensuel","More from Tone Row":"Plus de Tone Row","More from Tone Row:":"Plus de Tone Row :","More tools:":"Plus d\'outils :","Move":"Déplacer","Move {0}":["Déplacer ",["0"]],"Multiple pointers on same line":"Plusieurs pointeurs sur la même ligne","My dog ate my credit card!":"Mon chien a mangé ma carte de crédit!","Name":"Nom","Name Chart":"Nommer le graphique","Name your chart":"Nommez votre graphique","New":"Nouveau","New Email":"Nouveau courriel","New Flowchart":"Nouveau Flowchart","New Folder":"Nouveau Dossier","Next charge":"Prochain paiement","No Edges":"Pas de bords","No Folder (Root)":"Aucun Dossier (Racine)","No Watermarks!":"Pas de filigranes !","No charts yet":"Aucun graphique pour le moment","No items in this folder":"Aucun élément dans ce dossier","No matching charts found":"Aucun graphique correspondant trouvé","Node Border Style":"Style de bordure de nœud","Node Colors":"Couleurs de nœud","Node ID":"Identifiant de nœud","Node ID, Classes, Attributes":"Identifiant de nœud, classes, attributs","Node Label":"Étiquette de nœud","Node Shape":"Forme de nœud","Node Shapes":"Formes de nœud","Nodes":"Nœuds","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Les nœuds peuvent être stylisés avec des traits, des points ou des doubles. Les bordures peuvent également être supprimées avec border_none.","Not Empty":"Pas vide","Now you\'re thinking with flowcharts!":"Maintenant vous pensez avec des organigrammes !","Office Hours":"Heures de travail","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":" temps en temps, le lien magique finira par atterrir dans votre dossier de pourriel. Si vous ne le voyez pas après quelques minutes, vérifiez-y ou demandez un nouveau lien.","One on One Support":"Un à un support","One-on-One Support":"Assistance individuelle","Open Customer Portal":"Ouvrir le portail client","Operation canceled":"Opération annulée","Or maybe blue!":"Ou peut-être bleu !","Organization Chart":"Organigramme","PNG & JPG export":"Exporter en PNG et JPG","Padding":"Rembourrage","Page not found":"Page non trouvée","Password":"Mot de passe ","Past Due":"En retard","Paste a document to convert it":"Collez un document pour le convertir","Paste your document or outline here to convert it into an organized flowchart.":"Collez votre document ou votre plan ici pour le convertir en un organigramme organisé.","Pasted content detected. Convert to Flowchart Fun syntax?":"Contenu collé détecté. Convertir en syntaxe de Flowchart Fun ?","Perfect for docs and quick sharing":"Parfait pour les documents et le partage rapide","Permanent Charts are a Pro Feature":"Les diagrammes permanents sont une fonctionnalité Pro","Playbook":"Livre-jeu","Pointer and container on same line":"Pointeur et conteneur sur la même ligne","Pricing":"Tarification","Priority One-on-One Support":"Support prioritaire en tête-à-tête","Priority support":"Support prioritaire","Privacy Policy":"Politique de confidentialité","Pro starts at $4/mo billed yearly. Cancel anytime.":"La version Pro commence à 4€/mois facturés annuellement. Annulez à tout moment.","Pro tip: Right-click any node to customize its shape and color":"Astuce pro : faites un clic droit sur n\'importe quel noeud pour personnaliser sa forme et sa couleur","Processing Data":"Traitement des données","Processing...":"Traitement en cours...","Prompt":"Invite","Public":"Public","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Importer des données depuis Visio, Lucidchart, CSV ou partir d\'un modèle. Pas besoin de recréer ce qui existe déjà.","Quick experimentation space that resets daily":"Espace d\'expérimentation rapide qui se réinitialise quotidiennement","Random":"Aléatoire","Rapid Deployment Templates":"Modèles de déploiement rapide","Rapid Templates":"Modèles rapides","Raster Export (PNG, JPG)":"Exportation de rasters (PNG, JPG)","Rate limit exceeded. Please try again later.":"Limite de taux dépassée. Veuillez réessayer plus tard.","Read-only":"Lecture seulement","Reference by Class":"Référence par classe","Reference by ID":"Référence par ID","Reference by Label":"Référence par étiquette","References":"Références","References are used to create edges between nodes that are created elsewhere in the document":"Les références sont utilisées pour créer des arêtes entre les nœuds créés ailleurs dans le document","Referencing a node by its exact label":"Référencer un nœud par sa étiquette exacte","Referencing a node by its unique ID":"Référencer un nœud par son ID unique","Referencing multiple nodes with the same assigned class":"Référencement de multiples nœuds avec la même classe assignée","Refresh Page":"Rafraîchir la page","Reload to Update":"Recharger pour mettre à jour","Rename":"Renommer","Rename {0}":["Renommer ",["0"]],"Request Magic Link":"Demandez un lien magique","Request Password Reset":"Demandez une réinitialisation du mot de passe ","Reset":"Réinitialiser","Reset Password":"Réinitialiser le mot de passe","Resume Subscription":"Reprendre l\'abonnement","Return":"Retour","Right to Left":"De droite à gauche","Right-click nodes for options":"Cliquez avec le bouton droit sur les nœuds pour voir les options","Roadmap":"Roadmap","Rotate Label":"Faire pivoter l\'étiquette","SVG Export is a Pro Feature":"L\'exportation SVG est une fonctionnalité Pro","SVG, PDF & all export formats":"Formats d\'exportation SVG, PDF et tous les autres formats","Satisfaction guaranteed or first payment refunded":"Satisfaction garantie ou remboursement du premier paiement","Save":"Sauver","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Enregistrer localement, travailler hors ligne et contrôler exactement qui voit quoi. Aucune donnée ne quitte votre machine à moins que vous ne le souhaitiez.","Save time with AI and dictation, making it easy to create diagrams.":"Gagnez du temps avec l\'IA et la dictée, ce qui facilite la création de diagrammes.","Save to Cloud":"Enregistrer dans le Cloud","Save to File":"Enregistrer dans un fichier","Save your Work":"Enregistrer votre travail","Schedule personal consultation sessions":"Planifier des sessions de consultation personnelle","Secure payment":"Paiement sécurisé","See more reviews on Product Hunt":"Voir plus de critiques sur Product Hunt","See what\'s possible":"Découvrez les possibilités","Select a destination folder for \\"{0}\\".":"Sélectionner un dossier de destination pour \\\\","Send us a message":"Envoyez-nous un message","Set a consistent height for all nodes":"Définir une hauteur constante pour tous les nœuds","Settings":"Paramètres","Share":"Partager","Sign In":"Se connecter ","Sign in with <0>GitHub0>":"Se connecter avec <0>GitHub0>","Sign in with <0>Google0>":"Se connecter avec <0>Google0>","Sorry! This page is only available in English.":"Désolé ! Cette page n\'est disponible qu\'en anglais.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Désolé, une erreur s\'est produite lors de la conversion du texte en diagramme. Veuillez réessayer plus tard.","Sort Ascending":"Trier par ordre croissant","Sort Descending":"Trier par ordre décroissant","Sort by {0}":["Trier par ",["0"]],"Source Arrow Shape":"Forme de la flèche source","Source Column":"Colonne source","Source Delimiter":"Délimiteur source","Source Distance From Node":"Distance de la source du nœud","Source/Target Arrow Shape":"Forme de flèche source / cible","Spacing":"Espacement","Special Attributes":"Attributs spéciaux","Start":"Début","Start Over":"Recommencer","Start faster with use-case specific templates":"Démarrer plus rapidement avec des modèles spécifiques aux cas d\'utilisation","Start for free":"Commencez gratuitement","Status":"État","Step 1":"Étape 1","Step 2":"Étape 2","Step 3":"Étape 3","Store any data associated to a node":"Stocker toutes les données associées à un nœud","Style Classes":"Classes de style","Style with classes":"Style avec des classes","Submit":"Soumettre","Subscription":"Abonnement","Subscription Successful!":"Abonnement réussi !","Subscription will end":"L\'abonnement prendra fin","Support":"Support","Target Arrow Shape":"Forme de la flèche cible","Target Column":"Colonne cible","Target Delimiter":"Délimiteur cible","Target Distance From Node":"Distance cible du nœud","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Dites à l\'IA ce dont vous avez besoin en langage clair. Votre diagramme se construit en quelques secondes.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Dites-nous ce qui fonctionne et ce qui ne fonctionne pas. Chaque message est lu par le développeur.","Text Color":"Couleur du texte","Text Horizontal Offset":"Décalage horizontal du texte","Text Leading":"Texte principal","Text Max Width":"Largeur maximale du texte","Text Vertical Offset":"Décalage vertical du texte","Text followed by colon+space creates an edge with the text as the label":"Texte suivi d\'un deux-points + espace crée un bord avec le texte comme étiquette","Text on a line creates a node with the text as the label":"Texte sur une ligne crée un nœud avec le texte comme étiquette","Thank you for your feedback!":"Merci pour votre commentaire !","The beauty and magic reside in the minimalism.":"La beauté et la magie résident dans le minimalisme.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"La meilleure façon de changer les styles est de cliquer avec le bouton droit sur un nœud ou une arête et de sélectionner le style souhaité.","The column that contains the edge label(s)":"La colonne qui contient les étiquettes de bord","The column that contains the source node ID(s)":"La colonne qui contient les ID de nœud source","The column that contains the target node ID(s)":"La colonne qui contient les ID de nœud cible","The delimiter used to separate multiple source nodes":"Le délimiteur utilisé pour séparer plusieurs nœuds source","The delimiter used to separate multiple target nodes":"Le délimiteur utilisé pour séparer plusieurs nœuds cibles","The fastest way to turn what\'s in your head into something everyone else can understand.":"Le moyen le plus rapide de transformer ce qui se trouve dans votre tête en quelque chose que tout le monde peut comprendre.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"Le plan gratuit fonctionne parfaitement pour une utilisation quotidienne. Si vous avez besoin de fonctionnalités Pro, c\'est mois par mois à 6€/mois - annulez à tout moment sans engagement.","The possible shapes are:":"Les formes possibles sont :","Theme":"Thème","Theme Customization Editor":"Éditeur de personnalisation de thème","Theme Editor":"Éditeur de thème","Theme editor":"Éditeur de thème","There are no edges in this data":"Il n\'y a pas d\'arêtes dans ces données","This action cannot be undone.":"Cette action ne peut pas être annulée.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Cette fonctionnalité est uniquement disponible pour les utilisateurs pro. <0>Devenez un utilisateur pro0> pour la débloquer.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Cela peut prendre entre 30 secondes et 2 minutes en fonction de la longueur de votre entrée.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Ce bac à sable est parfait pour expérimenter, mais n\'oubliez pas - il se réinitialise quotidiennement. Mettez à niveau maintenant et conservez votre travail actuel!","This will replace the current content.":"Cela remplacera le contenu actuel.","This will replace your current chart content with the template content.":"Cela remplacera le contenu actuel de votre diagramme par le contenu du modèle.","This will replace your current sandbox.":"Cela remplacera votre bac à sable actuel.","Time to decide":"Temps de décider","Tip":"Astuce","To fix this change one of the edge IDs":"Pour corriger cela, changez l\'un des ID de bord","To fix this change one of the node IDs":"Pour corriger ceci, changez l\'un des ID de nœud","To fix this move one pointer to the next line":"Pour corriger ceci, déplacez un pointeur vers la ligne suivante","To fix this start the container <0/> on a different line":"Pour corriger cela, commencez le conteneur <0/> sur une ligne différente.","To learn more about why we require you to log in, please read <0>this blog post0>.":"Pour en savoir plus sur la raison pour laquelle nous vous demandons de vous connecter, veuillez lire <0>ce message de blog0>.","Top to Bottom":"De haut en bas","Transform Your Ideas into Professional Diagrams in Seconds":"Transformez vos idées en diagrammes professionnels en quelques secondes","Transform text into diagrams instantly":"Transformez instantanément du texte en diagrammes","Try AI":"Essayez l\'IA","Try adjusting your search or filters to find what you\'re looking for.":"Essayez d\'ajuster votre recherche ou vos filtres pour trouver ce que vous cherchez.","Try again":"Réessayer","Try it free":"Essayez-le gratuitement","Turn documents into diagrams with AI":"Transformez des documents en diagrammes avec l\'IA","Two edges have the same ID":"Deux arêtes ont le même ID","Two nodes have the same ID":"Deux nœuds ont le même ID","Type it. See it.":"Tapez-le. Voyez-le.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Oh oh, vous n\'avez plus de demandes gratuites ! Passez à Flowchart Fun Pro pour des conversions de diagrammes illimitées et continuez à transformer du texte en des flux visuels clairs aussi facilement que copier-coller.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Moins de 60 secondes. Tapez quelques lignes de texte ou décrivez ce dont vous avez besoin à l\'IA, et votre diagramme apparaît instantanément. Exportez-le ou partagez-le en un clic.","Undo":"Annuler","Unescaped special character":"Caractère spécial non échappé","Unique text value to identify a node":"Valeur de texte unique pour identifier un nœud","Unknown":"Inconnu","Unknown Parsing Error":"Erreur d\'analyse inconnue","Unlimited Flowcharts":"Flowcharts illimités","Unlimited Permanent Flowcharts":"Flux de diagrammes permanents illimités","Unlimited cloud-saved flowcharts":"Des organigrammes sauvegardés dans le cloud en illimité","Unlimited saved diagrams":"Diagrammes sauvegardés illimités","Unlock AI Features and never lose your work with a Pro account.":"Débloquez les fonctionnalités de l\'IA et ne perdez jamais votre travail avec un compte Pro.","Unlock Unlimited AI Flowcharts":"Débloquez des organigrammes AI illimités","Unpaid":"Impayé","Update Email":"Mettre à jour l\'e-mail","Updated Date":"Date de mise à jour","Upgrade Now - Save My Work":"Mettre à niveau maintenant - Sauvegarder mon travail","Upgrade to Flowchart Fun Pro and unlock:":"Passez à Flowchart Fun Pro et débloquez:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"Passez à Flowchart Fun Pro pour des diagrammes hébergés illimités, des exports haute résolution sans filigrane, l\'édition avec l\'IA, et plus encore. 4 €/mois facturés annuellement.","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Mettez à niveau vers Flowchart Fun Pro pour débloquer les exportations SVG et profiter de fonctionnalités avancées pour vos diagrammes.","Upgrade to Pro":"Mettez à niveau vers Pro","Upgrade to Pro for permanent charts.":"Passez à la version Pro pour des diagrammes permanents.","Upload your File":"Téléchargez votre fichier","Use Custom CSS Only":"Utiliser uniquement du CSS personnalisé","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Utilisez Lucidchart ou Visio ? L\'importation CSV facilite l\'obtention de données à partir de n\'importe quelle source !","Use classes to group nodes":"Utilisez des classes pour regrouper les nœuds","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Utilisez l\'attribut <0>href0> pour créer un lien sur un nœud qui s\'ouvre dans un nouvel onglet.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Utilisez l\'attribut <0>src0> pour définir l\'image d\'un nœud. L\'image sera mise à l\'échelle pour s\'adapter au nœud, vous devrez donc peut-être ajuster la largeur et la hauteur du nœud pour obtenir le résultat souhaité. Seules les images publiques (non bloquées par CORS) sont prises en charge.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Utilisez les attributs <0>w0> et <1>h1> pour définir explicitement la largeur et la hauteur d\'un nœud.","Use the customer portal to change your billing information.":"Utilisez le portail client pour modifier vos informations de facturation.","Use these settings to adapt the look and behavior of your flowcharts":"Utilisez ces paramètres pour adapter l\'apparence et le comportement de vos diagrammes de flux","Use this file for org charts, hierarchies, and other organizational structures.":"Utilisez ce fichier pour les organigrammes, les hiérarchies et autres structures organisationnelles.","Use this file for sequences, processes, and workflows.":"Utilisez ce fichier pour les séquences, les processus et les workflows.","Use this mode to modify and enhance your current chart.":"Utilisez ce mode pour modifier et améliorer votre diagramme actuel.","Used at":"Utilisé à","User":"Utilisateur","Vector Export (SVG)":"Exportation de vecteurs (SVG)","View on Github":"Voir sur Github","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Vous souhaitez créer un diagramme à partir d\'un document ? Collez-le dans l\'éditeur et cliquez sur \'Convertir en diagramme\'","Watermark-Free Diagrams":"Diagrammes sans filigrane","Watermarks":"Filigranes","Welcome to Flowchart Fun":"Bienvenue dans Flowchart Fun","What if I just need it for one project?":"Et si je n\'en ai besoin que pour un seul projet ?","What our users are saying":"Ce que nos utilisateurs disent","What\'s next?":"Quelle est la prochaine étape ?","What\'s this?":"Qu\'est-ce que c\'est?","Width":"Largeur","Width and Height":"Largeur et hauteur","Will my diagrams actually look professional?":"Est-ce que mes diagrammes auront un aspect professionnel ?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Avec la version Pro de Flowchart Fun, vous pouvez utiliser des commandes en langage naturel pour rapidement détailler votre organigramme, idéal pour créer des diagrammes en déplacement. Pour 6 $ par mois, profitez de la facilité de l\'édition accessible par l\'IA pour améliorer votre expérience de création d\'organigrammes.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Avec la version pro, vous pouvez enregistrer et charger des fichiers locaux. C\'est parfait pour gérer des documents professionnels hors ligne.","Would you like to continue?":"Voulez-vous continuer ?","Would you like to suggest a new example?":"Souhaitez-vous suggérer un nouvel exemple ?","Wrap text in parentheses to connect to any node":"Entourez le texte entre parenthèses pour le connecter à n\'importe quel nœud","Write like an outline":"Écrivez comme un plan","Write your prompt here or click to enable the microphone, then press and hold to record.":"Écrivez votre message ici ou cliquez pour activer le microphone, puis maintenez pour enregistrer.","Yearly":"Annuellement","Yes — send us a message and we\'ll set you up with a discounted rate.":"Oui - envoyez-nous un message et nous vous fournirons un tarif réduit.","Yes, Replace Content":"Oui, remplacer le contenu","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Oui. Chaque diagramme utilise des mises en page équilibrées et automatiques avec une typographie propre. Vous pouvez personnaliser les thèmes, les couleurs et les styles - et exporter en tant que SVG net ou en tant que PNG haute résolution qui sera parfait dans toute présentation ou document.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Oui. La version Pro prend en charge l\'importation depuis Visio, Lucidchart et CSV - vous pouvez donc importer ce que vous avez déjà sans avoir à le recréer à partir de zéro.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Oui. Vous pouvez enregistrer et charger des fichiers localement, travailler entièrement hors ligne et contrôler exactement qui voit vos diagrammes. Aucune donnée ne quitte votre machine à moins que vous ne choisissiez de partager.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Vous êtes sur le point d\'ajouter ",["numNodes"]," nœuds et ",["numEdges"]," arêtes à votre graphe."],"You need to log in to access this page.":"Vous devez vous connecter pour accéder à cette page.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Vous êtes déjà un utilisateur Pro. <0>Gérer l\'abonnement0><1/>Vous avez des questions ou des demandes de fonctionnalités? <2>Faites-le nous savoir2>","You\'re doing great!":"Vous vous en sortez très bien !","You\'re on the free plan.":"Vous êtes sur le plan gratuit.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Vous avez utilisé toutes vos conversions gratuites d\'IA. Passez à la version Pro pour une utilisation illimitée de l\'IA, des thèmes personnalisés, un partage privé et plus encore. Continuez à créer des diagrammes de flux incroyables sans effort !","Your Charts":"Vos diagrammes","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Votre bac à sable est un espace pour expérimenter librement avec nos outils de diagramme, se réinitialisant chaque jour pour un nouveau départ.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Vos graphiques sont en lecture seule car votre compte n\'est plus actif. Visitez votre page <0>compte0> pour en savoir plus.","Your next diagram should be your best one.":"Votre prochain diagramme devrait être le meilleur.","Your subscription is <0>{statusDisplay}0>.":["Votre abonnement est <0>",["statusDisplay"],"0>."],"Your work stays yours":"Votre travail reste le vôtre.","Zoom In":"Zoomer","Zoom Out":"Zoomer vers l\'extérieur","month":"mois","or":"ou","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/fr/messages.po b/app/src/locales/fr/messages.po
index 579d33f91..1531844ee 100644
--- a/app/src/locales/fr/messages.po
+++ b/app/src/locales/fr/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "48 $/an (économisez 33%) · Annulez à tout moment"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "6 $/mois"
@@ -25,7 +25,7 @@ msgstr "6 $/mois"
msgid "1 Temporary Flowchart"
msgstr "1 Organigramme temporaire"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "1 diagramme à la fois"
@@ -33,7 +33,7 @@ msgstr "1 diagramme à la fois"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>Seul le CSS personnalisé0> est activé. Seuls les paramètres de mise en page et avancés seront appliqués."
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0> est un projet open source réalisé par <1>Tone Row1>"
@@ -49,7 +49,7 @@ msgstr "Une nouvelle version de l'application est disponible. Veuillez recharger
msgid "AI Creation & Editing"
msgstr "Création et édition d'IA"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "Génération et édition par IA"
@@ -57,7 +57,7 @@ msgstr "Génération et édition par IA"
msgid "AI-Powered Flowchart Creation"
msgstr "Création de diagrammes de flux alimentés par l'IA"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "Généré par IA à partir de texte simple en moins de 5 secondes."
@@ -65,12 +65,12 @@ msgstr "Généré par IA à partir de texte simple en moins de 5 secondes."
msgid "AI-powered editing to supercharge your workflow"
msgstr "Édition alimentée par l'IA pour booster votre flux de travail"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "À propos"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "Compte"
@@ -106,7 +106,7 @@ msgstr "Aligner Verticalement"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "Tout cela pour seulement 6 $ par mois - moins que votre café quotidien ☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "Toujours prêt pour la présentation"
@@ -118,7 +118,7 @@ msgstr "Montant"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "Une erreur s'est produite. Essayez de l'envoyer à nouveau ou bien envoyez un e-mail à l'adresse {0}."
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "Thème"
@@ -170,11 +170,11 @@ msgstr "Couleur de fond"
msgid "Basic Flowchart"
msgstr "Diagramme de flux de base"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "Devenez un sponsor Github"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "Devenez un utilisateur Pro"
@@ -191,8 +191,8 @@ msgstr "Facturé annuellement à 48 $"
msgid "Billed monthly at $6"
msgstr "Facturé mensuellement à 6 $"
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "Blog"
@@ -260,14 +260,14 @@ msgstr "Certains attributs peuvent être utilisés pour personnaliser l'apparenc
msgid "Change Email Address"
msgstr "Changer l'adresse email"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "Journal des modifications"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "Graphiques"
@@ -346,7 +346,7 @@ msgstr "Colonne"
msgid "Comment"
msgstr "Commenter"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "Modèles de la communauté"
@@ -403,7 +403,7 @@ msgstr "Convertir en diagramme"
msgid "Convert to hosted chart?"
msgstr "Convertir en graphique hébergé ?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "Politique de cookies"
@@ -500,7 +500,7 @@ msgstr "CSS personnalisé"
msgid "Custom Sharing Options"
msgstr "Options de partage personnalisées"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "Partage personnalisé et liens publics"
@@ -516,8 +516,8 @@ msgstr "Éditeur Sandbox quotidien"
msgid "Dark"
msgstr "Sombre"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "Mode sombre"
@@ -542,11 +542,11 @@ msgstr "Supprimer"
msgid "Delete {0}"
msgstr "Supprimer {0}"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "Décrivez-le et il apparaît"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "Décrivez votre idée. Obtenez un diagramme digne d'être présenté."
@@ -696,8 +696,8 @@ msgstr "Modifier avec l'IA"
msgid "Editable"
msgstr "Modifiable"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "Éditeur"
@@ -742,7 +742,7 @@ msgstr "Entrez votre adresse e-mail ci-dessous et nous vous enverrons un lien po
msgid "Equal To"
msgstr "Égal à"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "Chaque diagramme s'exporte en PNG, SVG ou lien partageable de qualité - prêt pour la réunion, le document ou la présentation."
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "Démontage des fonctionnalités"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "Commentaire"
@@ -823,11 +823,15 @@ msgstr "Hauteur de nœud fixe"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "Flowchart Fun Pro vous offre des organigrammes illimités, des collaborateurs illimités et un stockage illimité pour seulement 6 $/mois."
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "Flowchart Fun est un projet open source réalisé par <0>Tone Row0>"
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "Flowchart Fun est construit et maintenu par un seul développeur. Votre soutien permet de le garder en vie."
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "Suivez-nous sur Twitter"
@@ -909,6 +913,10 @@ msgstr "Vert?"
msgid "Grid"
msgstr "Quadrillage"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "Classement de groupe et vote à choix classé, gratuit"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "Des questions ou des problèmes complexes ? Nous sommes là pour vous aider. "
@@ -980,7 +988,7 @@ msgstr "Importer des données à partir de n'importe quel fichier CSV et les map
msgid "Import from CSV"
msgstr "Importer depuis CSV"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "Importer depuis Visio, Lucidchart, CSV"
@@ -988,7 +996,7 @@ msgstr "Importer depuis Visio, Lucidchart, CSV"
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "Importer à partir de Visio, Lucidchart et CSV"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "Importer de n'importe où"
@@ -1012,7 +1020,7 @@ msgstr "Incluez un titre en utilisant un attribut <0>title0>. Pour utiliser la
msgid "Indent to connect nodes"
msgstr "Indentez pour connecter les nœuds"
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "Info"
@@ -1052,7 +1060,7 @@ msgstr "Continuez à pratiquer"
msgid "Keep your data private on your computer"
msgstr "Gardez vos données privées sur votre ordinateur"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "Langue"
@@ -1101,8 +1109,8 @@ msgstr "Faites-nous savoir pourquoi vous annulez. Nous cherchons toujours à nou
msgid "Light"
msgstr "Lumineux"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "Mode lumineux"
@@ -1160,8 +1168,8 @@ msgstr "Enregistrement local pour un accès hors ligne"
msgid "Lock Zoom to Graph"
msgstr "Verrouiller le Zoom sur le Graphique"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "Connexion"
@@ -1177,11 +1185,15 @@ msgstr "Connectez-vous pour enregistrer"
msgid "Log in to upgrade your account"
msgstr "Connectez-vous pour mettre à niveau votre compte"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "Réalisé par <0>Tone Row0>"
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "Faites un don unique"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "Rendez-le vôtre"
@@ -1205,6 +1217,18 @@ msgstr "Largeur maximale du texte à l'intérieur des nœuds"
msgid "Monthly"
msgstr "Mensuel"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "Plus de Tone Row"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "Plus de Tone Row :"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "Plus d'outils :"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "Nommer le graphique"
msgid "Name your chart"
msgstr "Nommez votre graphique"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "Nouveau"
@@ -1363,7 +1387,7 @@ msgstr "Ou peut-être bleu !"
msgid "Organization Chart"
msgstr "Organigramme"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "Exporter en PNG et JPG"
@@ -1412,21 +1436,25 @@ msgstr "Livre-jeu"
msgid "Pointer and container on same line"
msgstr "Pointeur et conteneur sur la même ligne"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "Tarification"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "Support prioritaire en tête-à-tête"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "Support prioritaire"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "Politique de confidentialité"
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "La version Pro commence à 4€/mois facturés annuellement. Annulez à tout moment."
@@ -1451,7 +1479,7 @@ msgstr "Invite"
msgid "Public"
msgstr "Public"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "Importer des données depuis Visio, Lucidchart, CSV ou partir d'un modèle. Pas besoin de recréer ce qui existe déjà."
@@ -1575,8 +1603,8 @@ msgstr "De droite à gauche"
msgid "Right-click nodes for options"
msgstr "Cliquez avec le bouton droit sur les nœuds pour voir les options"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "Roadmap"
@@ -1590,7 +1618,7 @@ msgstr "Faire pivoter l'étiquette"
msgid "SVG Export is a Pro Feature"
msgstr "L'exportation SVG est une fonctionnalité Pro"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "Formats d'exportation SVG, PDF et tous les autres formats"
@@ -1603,7 +1631,7 @@ msgstr "Satisfaction garantie ou remboursement du premier paiement"
msgid "Save"
msgstr "Sauver"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "Enregistrer localement, travailler hors ligne et contrôler exactement qui voit quoi. Aucune donnée ne quitte votre machine à moins que vous ne le souhaitiez."
@@ -1635,7 +1663,7 @@ msgstr "Paiement sécurisé"
msgid "See more reviews on Product Hunt"
msgstr "Voir plus de critiques sur Product Hunt"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "Découvrez les possibilités"
@@ -1651,9 +1679,9 @@ msgstr "Envoyez-nous un message"
msgid "Set a consistent height for all nodes"
msgstr "Définir une hauteur constante pour tous les nœuds"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "Paramètres"
@@ -1738,7 +1766,7 @@ msgstr "Recommencer"
msgid "Start faster with use-case specific templates"
msgstr "Démarrer plus rapidement avec des modèles spécifiques aux cas d'utilisation"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "Commencez gratuitement"
@@ -1789,7 +1817,7 @@ msgstr "Abonnement réussi !"
msgid "Subscription will end"
msgstr "L'abonnement prendra fin"
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "Support"
@@ -1812,7 +1840,7 @@ msgstr "Délimiteur cible"
msgid "Target Distance From Node"
msgstr "Distance cible du nœud"
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "Dites à l'IA ce dont vous avez besoin en langage clair. Votre diagramme se construit en quelques secondes."
@@ -1856,7 +1884,7 @@ msgstr "Texte sur une ligne crée un nœud avec le texte comme étiquette"
msgid "Thank you for your feedback!"
msgstr "Merci pour votre commentaire !"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "La beauté et la magie résident dans le minimalisme."
@@ -1884,7 +1912,7 @@ msgstr "Le délimiteur utilisé pour séparer plusieurs nœuds source"
msgid "The delimiter used to separate multiple target nodes"
msgstr "Le délimiteur utilisé pour séparer plusieurs nœuds cibles"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "Le moyen le plus rapide de transformer ce qui se trouve dans votre tête en quelque chose que tout le monde peut comprendre."
@@ -1911,7 +1939,7 @@ msgstr "Éditeur de personnalisation de thème"
msgid "Theme Editor"
msgstr "Éditeur de thème"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "Éditeur de thème"
@@ -2000,10 +2028,14 @@ msgstr "Essayez d'ajuster votre recherche ou vos filtres pour trouver ce que vou
msgid "Try again"
msgstr "Réessayer"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "Essayez-le gratuitement"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "Transformez des documents en diagrammes avec l'IA"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "Deux arêtes ont le même ID"
@@ -2012,7 +2044,7 @@ msgstr "Deux arêtes ont le même ID"
msgid "Two nodes have the same ID"
msgstr "Deux nœuds ont le même ID"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "Tapez-le. Voyez-le."
@@ -2057,7 +2089,7 @@ msgstr "Flux de diagrammes permanents illimités"
msgid "Unlimited cloud-saved flowcharts"
msgstr "Des organigrammes sauvegardés dans le cloud en illimité"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "Diagrammes sauvegardés illimités"
@@ -2089,13 +2121,17 @@ msgstr "Mettre à niveau maintenant - Sauvegarder mon travail"
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "Passez à Flowchart Fun Pro et débloquez:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "Passez à Flowchart Fun Pro pour des diagrammes hébergés illimités, des exports haute résolution sans filigrane, l'édition avec l'IA, et plus encore. 4 €/mois facturés annuellement."
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "Mettez à niveau vers Flowchart Fun Pro pour débloquer les exportations SVG et profiter de fonctionnalités avancées pour vos diagrammes."
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "Mettez à niveau vers Pro"
@@ -2152,7 +2188,7 @@ msgstr "Utilisez ce fichier pour les séquences, les processus et les workflows.
msgid "Use this mode to modify and enhance your current chart."
msgstr "Utilisez ce mode pour modifier et améliorer votre diagramme actuel."
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "Utilisé à"
@@ -2164,7 +2200,7 @@ msgstr "Utilisateur"
msgid "Vector Export (SVG)"
msgstr "Exportation de vecteurs (SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "Voir sur Github"
@@ -2302,7 +2338,7 @@ msgstr "Votre bac à sable est un espace pour expérimenter librement avec nos o
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "Vos graphiques sont en lecture seule car votre compte n'est plus actif. Visitez votre page <0>compte0> pour en savoir plus."
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "Votre prochain diagramme devrait être le meilleur."
@@ -2310,7 +2346,7 @@ msgstr "Votre prochain diagramme devrait être le meilleur."
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "Votre abonnement est <0>{statusDisplay}0>."
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "Votre travail reste le vôtre."
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "ou"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/locales/hi/messages.js b/app/src/locales/hi/messages.js
index 71bbacbc7..d8f96ad18 100644
--- a/app/src/locales/hi/messages.js
+++ b/app/src/locales/hi/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"$48/वर्ष (33% बचाएं) · कभी भी रद्द करें","$6/mo":"$6/महीना","1 Temporary Flowchart":"1 अस्थायी फ्लोचार्ट","1 diagram at a time":"एक डायग्राम एक समय में","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>कस्टम CSS केवल0> सक्षम है। केवल लेआउट और एडवांस्ड सेटिंग्स लागू की जाएगी।","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> <1>Tone Row1> द्वारा बनाई गई एक खुला स्रोत परियोजना है ","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>साइन इन0> / <1>साइन अप1> ईमेल और पासवर्ड के साथ","A new version of the app is available. Please reload to update.":"एप्प का एक नया वर्जन उपलब्ध है। अपडेट करने के लिए रीलोड करें।","AI Creation & Editing":"एआई निर्माण और संपादन","AI generation & editing":"एआई उत्पादन और संपादन","AI-Powered Flowchart Creation":"एआई-पावर्ड फ्लोचार्ट निर्माण","AI-generated from plain text in under 5 seconds.":"एआई द्वारा सादा पाठ से 5 सेकंड के अंदर उत्पन्न किया गया।","AI-powered editing to supercharge your workflow":"एआई पावर्ड संपादन आपके वर्कफ्लो को तेज करने के लिए","About":"के बारे में","Account":"खाता","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"किसी भी विशेष वर्ण के पहले एक बैकस्लैश (<0>\\\\0>) जोड़ें: <1>(1>, <2>:2>, <3>#3>, या <4>.4>","Add some steps":"कुछ चरण जोड़ें","Advanced":"उन्नत","Align Horizontally":"आड़े सारी तरफ","Align Nodes":"नोड्स को संरेखित करें","Align Vertically":"ऊपर-नीचे सारी तरफ","All this for just $6/month - less than your daily coffee ☕":"सिर्फ $6/महीने में यह सब - आपके दैनिक कॉफ़ी से कम ☕","Always presentation-ready":"हमेशा प्रस्तुति के लिए तैयार","Amount":"रकम","An error occurred. Try resubmitting or email {0} directly.":["एक एरर हो गया. फिर से सबमिट करने की कोशिश करें या सीधे ",["0"]," ईमेल करें."],"Appearance":"दिखावट","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"क्या आप वाकई फ्लोचार्ट को हटाना चाहते हैं? ","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"क्या आप वाकई फ़ोल्डर को हटाना चाहते हैं? ","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"क्या आप वाकई फ़ोल्डर को हटाना चाहते हैं? ","Are you sure?":"क्या आप निश्चित हैं?","Arrow Size":"तीर आकार","Attributes":"गुण","August 2023":"2023 अगस्त","Back":"वापस","Back To Editor":"संपादक पर वापस जाएं","Background Color":"पृष्ठभूमि रंग","Basic Flowchart":"बेसिक फ्लोचार्ट","Become a Github Sponsor":"गिटहब स्पॉन्सर बनें","Become a Pro User":"प्रो उपयोगकर्ता बनें","Begin your journey":"अपनी यात्रा शुरू करें","Billed annually at $48":"वार्षिक रूप से $48 का बिल बनाया जाएगा","Billed monthly at $6":"मासिक रूप से $6 पर बिल किया जाता है","Blog":"ब्लॉग","Book a Meeting":"एक बैठक बुक करें","Border Color":"सीमा रंग","Border Width":"सीमा चौड़ाई","Bottom to Top":"नीचे से शीर्ष तक","Breadthfirst":"चौड़ाई पहले","Build your personal flowchart library":"अपनी निजी फ्लोचार्ट लाइब्रेरी बनाएं","Can I import my existing diagrams?":"क्या मैं अपने मौजूदा आरेखों को आयात कर सकता हूं?","Cancel":"रद्द करें","Cancel anytime":"कभी भी रद्द करें","Cancel your subscription. Your hosted charts will become read-only.":"अपनी सदस्यता रद्द करें. आपके होस्ट किये गए चार्ट सिर्फ़ पढ़े जा सकेंगे.","Certain attributes can be used to customize the appearance or functionality of elements.":"कुछ गुण तत्वों की दिखता या कार्यक्षमता को अनुकूलित करने के लिए उपयोग किए जा सकते हैं।","Change Email Address":"ईमेल पता बदलें","Changelog":"बदलाव का","Charts":"चार्ट","Check out the guide:":"गाइड की जाँच करें:","Check your email for a link to log in.<0/>You can close this window.":"लॉग इन करने के लिए अपने ईमेल की जाँच करें। आप इस विंडो को बंद कर सकते हैं।","Choose":"चुनें","Choose Template":"टेम्पलेट चुनें","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"एक किनारे के स्रोत और लक्ष्य के लिए विभिन्न तीर आकारों से चुनें। आकार शामिल हैं त्रिकोण, त्रिकोण-टी, सर्कल-त्रिकोण, त्रिकोण-क्रॉस, त्रिकोण-बैककर्व, वी, टी, चौकोर, हीरा, चेवरॉन और कोई नहीं।","Choose how edges connect between nodes":"नोड्स के बीच एज कैसे कनेक्ट करें चुनें","Choose how nodes are automatically arranged in your flowchart":"अपने फ्लोचार्ट में नोडों को स्वचालित रूप से व्यवस्थित कैसे करें चुनें","Circle":"परिधि","Classes":"वर्ग","Clear":"साफ़","Clear text?":"पाठ साफ़ करें?","Clone":"क्लोन करें","Clone Flowchart":"फ्लोचार्ट को क्लोन करें ","Close":"बंद करें","Color":"रंग","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"रंग में लाल, नारंगी, पीला, नीला, बैंगनी, काला, सफेद, और ग्रे शामिल हैं।","Column":"स्तंभ","Comment":"टिप्पणी","Community templates":"समुदाय टेम्पलेट","Compare our plans and find the perfect fit for your flowcharting needs":"हमारे प्लानों की तुलना करें और अपनी फ्लोचार्टिंग की आवश्यकताओं के लिए सही विकल्प खोजें","Concentric":"गाढ़ा","Confirm New Email":"नई ईमेल की पुष्टि करें","Confirm your email address to sign in.":"साइन इन करने के लिए अपना ईमेल पता पुष्टि करें।","Connect your Data":"अपने डेटा को कनेक्ट करें","Containers":"कंटेनर","Containers are nodes that contain other nodes. They are declared using curly braces.":"कंटेनर उन नोड्स हैं जो अन्य नोड्स को सम्मिलित करते हैं। वे कर्ली ब्रेस का उपयोग करके घोषित किया जाता है।","Continue":"जारी रखें","Continue in Sandbox (Resets daily, work not saved)":"सैंडबॉक्स में जारी रखें (दैनिक रूप से रीसेट होता है, काम सहेजा नहीं जाता)","Controls the flow direction of hierarchical layouts":"वर्गीकृत लेआउट की धारा को नियंत्रित करता है","Convert":"परिवर्तन करें","Convert to Flowchart":"फ्लोचार्ट में बदलें","Convert to hosted chart?":"होस्टेड चार्ट में कनवर्ट करें?","Cookie Policy":"कुकी नीति","Copied SVG code to clipboard":"क्लिपबोर्ड पर SVG कोड कॉपी किया गया","Copied {format} to clipboard":["क्लिपबोर्ड पर ",["प्रारूप"]," कॉपी किया गया"],"Copy":"कॉपी करें","Copy PNG Image":"PNG छवि कॉपी करें","Copy SVG Code":"SVG कोड कॉपी करें","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"अपने Excalidraw कोड को कॉपी करें और <0>excalidraw.com0> में पेस्ट करें ताकि आप संपादित कर सकें। यह सुविधा प्रयोगात्मक है और सभी आरेखों के साथ काम नहीं कर सकती। यदि आपको कोई बग मिलता है, तो <1>हमें जानकारी दें।1>","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"अपना मर्मेड.जेएस कोड कॉपी करें या मर्मेड.जेएस लाइव एडिटर में सीधे खोलें।","Create":"बनाएं","Create Flowcharts using AI":"एआई का उपयोग करके फ्लोचार्ट बनाएं","Create Unlimited Flowcharts":"असीमित पारितकथाओं बनाएं","Create a New Chart":"एक नया चार्ट बनाएं","Create a flowchart showing the steps of planning and executing a school fundraising event":"एक स्कूल रेस्ट्रोइज़िंग इवेंट की योजना और निष्पादन के चरणों को दिखाने वाला फ्लोचार्ट बनाएं","Create a new flowchart to get started or organize your work with folders.":"शुरू करने के लिए एक नया फ्लोचार्ट बनाएं या फ़ोल्डर के साथ अपना काम संगठित करें। ","Create flowcharts instantly: Type or paste text, see it visualized.":"तुरंत फ्लोचार्ट बनाएं: पाठ लिखें या पेस्ट करें, उसे दृश्यीकृत करें।","Create unlimited diagrams for just $6/month!":"सिर्फ $6/महीने में असीमित आरेख बनाएं!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"आकार में असीमित फ्लोचार्ट को क्लाउड में संग्रहीत करें - किसी भी जगह से उपलब्ध!","Create with AI":"AI के साथ बनाएं","Created Date":"बनाई गई तारीख","Creating an edge between two nodes is done by indenting the second node below the first":"दो नोड्स के बीच एक एज बनाने के लिए दूसरा नोड पहले वाले के नीचे इंडेंट करना होता है","Curve Style":"वक्र शैली","Custom CSS":"कस्टम CSS","Custom Sharing Options":"कस्टम शेयरिंग विकल्प","Custom sharing & public links":"कस्टम साझा करने और सार्वजनिक लिंक","Customer Portal":"ग्राहक पोर्टल","Daily Sandbox Editor":"दैनिक सैंडबॉक्स संपादक","Dark":"डार्क","Dark Mode":"डार्क मोड","Data Import (Visio, Lucidchart, CSV)":"डेटा आयात (विशियो, ल्यूसिडचार्ट, सीएसवी)","Data import feature for complex diagrams":"जटिल आरेखों के लिए डेटा आयात सुविधा","Date":"तारीख़","Delete":"हटाएँ","Delete {0}":["हटाएँ ",["0"]],"Describe it and it appears":"इसे वर्णन करें और वह दिखाई देगा","Describe your idea. Get a diagram worth presenting.":"अपनी विचारों का वर्णन करें। प्रस्तुत करने योग्य आरेख प्राप्त करें।","Design a software development lifecycle flowchart for an agile team":"एक एजाइल टीम के लिए सॉफ्टवेयर विकास जीवनचक्र फ्लोचार्ट डिज़ाइन करें","Develop a decision tree for a CEO to evaluate potential new market opportunities":"एक सीईओ के लिए नए बाजार के अवसरों का मूल्यांकन करने के लिए एक फैसले का पेड़ विकसित करें","Direction":"दिशा","Dismiss":"खारिज करें","Do you offer discounts for students or nonprofits?":"क्या आप छात्रों या गैर-लाभकारी संगठनों के लिए छूट प्रदान करते हैं?","Do you want to delete this?":"क्या आप इसे डिलीट करना चाहते हैं?","Document":"दस्तावेज़","Don\'t Lose Your Work":"अपना काम न खो दें","Download":"डाउनलोड","Download JPG":"JPG डाउनलोड करें","Download PNG":"PNG डाउनलोड करें","Download SVG":"SVG डाउनलोड करें","Drag and drop a CSV file here, or click to select a file":"CSV फ़ाइल यहां ड्रैग और ड्रॉप करें, या फ़ाइल का चयन करने के लिए क्लिक करें","Draw an edge from multiple nodes by beginning the line with a reference":"एक से अधिक नोड्स से एज ड्रा करने के लिए लाइन को एक संदर्भ के साथ शुरू करें","Drop the file here ...":"फाइल यहाँ ड्रॉप करें ...","Each line becomes a node":"प्रत्येक पंक्ति एक नोड बन जाती है","Edge ID, Classes, Attributes":"किनारे आईडी, वर्ग, गुण","Edge Label":"किनारे लेबल","Edge Label Column":"किनारे लेबल कॉलम","Edge Style":"किनारे शैली","Edge Text Size":"एड्ज टेक्स्ट आकार","Edge missing indentation":"एड्ज अंतराल गुम है","Edges":"किन्तुओं","Edges are declared in the same row as their source node":"उनके स्रोत नोड के ही पंक्ति में किन्तुओं की घोषणा की जाती है","Edges are declared in the same row as their target node":"उनके लक्ष्य नोड के ही पंक्ति में किन्तुओं की घोषणा की जाती है","Edges are declared in their own row":"किन्तुओं को अपनी खुद की पंक्ति में घोषणा की जाती है","Edges can also have ID\'s, classes, and attributes before the label":"लेबल से पहले, किन्तुओं को आईडीज़, क्लासेज़ और गुण देने की अनुमति होती है","Edges can be styled with dashed, dotted, or solid lines":"किन्तुओं को डैश्ड, डॉटेड या सॉलिड लाइन्स के साथ स्टाइल किया जा सकता है","Edges in Separate Rows":"अलग पंक्तियों में किन्हें","Edges in Source Node Row":"स्रोत नोड पंक्ति में किन्हें","Edges in Target Node Row":"लक्ष्य नोड पंक्ति में किन्हें","Edit":"संपादित करें","Edit with AI":"एआई के साथ संपादित करें","Editable":"संपादन योग्य","Editor":"संपादक","Email":"ईमेल","Empty":"खाली","Enable to set a consistent height for all nodes":"सभी नोड्स के लिए एक समान ऊंचाई सेट करने के लिए सक्षम करें","Enter a name for the cloned flowchart.":"क्लोन फ्लोचार्ट के लिए एक नाम दर्ज करें।","Enter a name for the new folder.":"नए फोल्डर के लिए एक नाम दर्ज करें।","Enter a new name for the {0}.":[["0"]," के लिए एक नया नाम दर्ज करें।"],"Enter your email address and we\'ll send you a magic link to sign in.":"अपना ईमेल पता दर्ज करें और हम आपको साइन इन करने के लिए एक जादूगरी लिंक भेजेंगे।","Enter your email address below and we\'ll send you a link to reset your password.":"नीचे अपना ईमेल पता दर्ज करें और हम आपको अपना पासवर्ड रीसेट करने के लिए एक लिंक भेजेंगे।","Equal To":"बराबर","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"हर चित्र ताजगी से PNG, SVG या साझा करने योग्य लिंक के रूप में निर्यात किया जाता है - मीटिंग, दस्तावेज़, या डेक के लिए तैयार है।","Everything you need to know about Flowchart Fun Pro":"Flowchart Fun Pro के बारे में आपको सब कुछ जानने की जरूरत है","Examples":"उदाहरण","Excalidraw":"Excalidraw","Exclusive Office Hours":"अनन्य ऑफिस घंटे","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"अपने फ्लोचार्ट में स्थानीय फाइलों को सीधे लोड करने की क्षमता का अनुभव करें, जो काम से संबंधित दस्तावेजों को ऑफ़लाइन प्रबंधित करने के लिए उत्कृष्ट है। फ्लोचार्ट फन प्रो के साथ इस अनूठे प्रो फीचर को और भी खोलें, सिर्फ $6/महीने में उपलब्ध है।","Explore Pro":"प्रो खोजें","Explore more":"और ज्ञान प्राप्त करें","Export":"एक्सपोर्ट करें","Export clean diagrams without branding":"ब्रांडिंग के बिना साफ आरेख निर्यात करें","Export to PNG & JPG":"PNG और JPG में निर्यात करें","Export to PNG, JPG, and SVG":"PNG, JPG और SVG में निर्यात करें","Feature Breakdown":"विशेषता विभाजन","Feedback":"फ़ीडबैक","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"किसी भी चिंता के लिए हमसे फीडबैक पेज के माध्यम से संपर्क करने के लिए स्वतंत्रता से अन्वेषण करें और प्रवेश करें।","Fine-tune layouts and visual styles":"लेआउट और दृश्य शैलियों को समायोजित करें","Fixed Height":"निश्चित ऊंचाई","Fixed Node Height":"निर्धारित नोड ऊंचाई","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"फ्लोचार्ट फन प्रो आपको सिर्फ $6/महीने में असीमित फ्लोचार्ट, असीमित सहयोगी और असीमित स्टोरेज प्रदान करता है।","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"फ्लोचार्ट फन एक डेवलपर द्वारा बनाया और रखा जाता है। आपका समर्थन इसे चलाने में सहायता करता है।","Follow Us on Twitter":"हमारे साथ ट्विटर पर फॉलो करें","Font Family":"फॉन्ट परिवार","Forgot your password?":"अपना पासवर्ड भूल गए?","Free":"मुफ्त","Free users: charts in the sandbox expire after 7 days.":"नि: शुल्क उपयोगकर्ताओं: सैंडबॉक्स में चार्ट 7 दिनों के बाद समाप्त हो जाते हैं।","Frequently Asked Questions":"अक्सर पूछे जाने वाले सवाल","Full-screen, read-only, and template sharing":"पूर्ण स्क्रीन, केवल पढ़ने के लिए और टेम्पलेट साझा करें","Fullscreen":"फ़ुलस्क्रीन","General":"सामान्य","Generate flowcharts from text automatically":"पाठ से स्वचालित रूप से फ्लोचार्ट उत्पन्न करें","Get Pro Access Now":"अब प्रो एक्सेस प्राप्त करें","Get Unlimited AI Requests":"असीमित एआई अनुरोध प्राप्त करें","Get rapid responses to your questions":"अपने सवालों के लिए त्वरित प्रतिक्रियाएं प्राप्त करें","Get unlimited flowcharts and premium features":"असीमित फ्लोचार्ट और प्रीमियम सुविधाओं का लाभ लें","Go back home":"घर वापस जाओ","Go to the Editor":"संपादक पर जाएं","Go to your Sandbox":"अपने सैंडबॉक्स पर जाएं","Graph":"ग्राफ़","Green?":"हरा?","Grid":"ग्रिड","Have complex questions or issues? We\'re here to help.":"जटिल सवाल या समस्याएं हैं? हम यहां आपकी मदद के लिए हैं।","Here are some Pro features you can now enjoy.":"यहाँ आपको कुछ प्रो फीचर आनंद लेने को मिल रहे हैं।","High-quality exports with embedded fonts":"एम्बेडेड फोंट के साथ उच्च गुणवत्ता वाले निर्यात","History":"हिस्ट्री","Home":"होम","How are edges declared in this data?":"इस डेटा में कैसे किन्हीं कड़ियाँ घोषित होती हैं?","How fast can I actually make something?":"मैं कितनी तेजी से कुछ बना सकता हूँ?","How would you like to save your chart?":"आप अपने चार्ट को कैसे सहेजना चाहेंगे?","I would like to request a new template:":"मैं एक नया टेम्पलेट अनुरोध करना चाहता हूँ:","ID\'s":"आईडीज़","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"अगर उस ईमेल के साथ एक खाता मौजूद है, तो हमने आपको पासवर्ड रीसेट करने के लिए निर्देशों के साथ एक ईमेल भेजा है।","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"यदि आप एक एड्ज बनाने के लिए मतलब है, तो इस लाइन को इंडेंट करें। यदि नहीं, तो कॉलन को बैक स्लैश के साथ भागो <0> \\\\: 0>","Images":"छवियाँ","Import Data":"डेटा आयात करें","Import data from a CSV file.":"CSV फ़ाइल से डेटा आयात करें।","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"किसी भी CSV फ़ाइल से डेटा आयात करें और इसे एक नए प्रक्रिया चार्ट में मैप करें। यह अन्य स्रोतों जैसे लुसिडचार्ट, गूगल शीट्स और विसिओ से डेटा आयात करने के लिए एक अच्छा तरीका है।","Import from CSV":"CSV से आयात करें","Import from Visio, Lucidchart, CSV":"विसियो, लुसिडचार्ट, सीएसवी से आयात करें","Import from Visio, Lucidchart, and CSV":"Visio, Lucidchart और CSV से आयात करें","Import from anywhere":"कहीं से आयात करें","Import from popular diagram tools":"प्रसिद्ध आरेख उपकरणों से आयात करें","Import your diagram it into Microsoft Visio using one of these CSV files.":"इन CSV फ़ाइलों में से एक का उपयोग करके अपनी आरेख Microsoft Visio में आयात करें।","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"डेटा आयात करना एक पेशेवर सुविधा है। आप केवल $6/माह के लिए Flowchart Fun Pro पर अपग्रेड कर सकते हैं।","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"एक <0>title0> विशेषता का उपयोग करके एक शीर्षक शामिल करें। Visio रंगीनी का उपयोग करने के लिए, निम्नलिखित में से किसी एक के बराबर एक <1>roleType1> विशेषता जोड़ें:","Indent to connect nodes":"नोड को जोड़ने के लिए इंडेंट करें","Info":"जानकारी","Is":"हाँ","Is my data private?":"क्या मेरा डेटा निजी है?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON कैनवास आपके द्वारा बनाई गई आपकी आरेख का एक JSON प्रतिनिधि है, जो <0>Obsidian0> कैनवास और अन्य एप्लिकेशनों द्वारा उपयोग किया जाता है।","Join 2000+ professionals who\'ve upgraded their workflow":"अपने वर्कफ्लो को अपग्रेड कर चुके 2000+ पेशेवरों में शामिल हों","Join thousands of happy users who love Flowchart Fun":"हजारों खुश उपयोगकर्ताओं के साथ शामिल हों जो Flowchart Fun से प्यार करते हैं","Keep Things Private":"चीजों को निजी रखें","Keep changes?":"परिवर्तन रखें?","Keep practicing":"अभ्यास जारी रखें","Keep your data private on your computer":"अपने डेटा को अपने कंप्यूटर पर निजी रखें","Language":"भाषा","Layout":"रूपरेखा","Layout Algorithm":"लेआउट एल्गोरिदम","Layout Frozen":"लेआउट फ्रोज़न","Leading References":"प्रमुख संदर्भ","Learn More":"और अधिक जानें","Learn Syntax":"सिंटैक्स सीखें","Learn about Flowchart Fun Pro":"Flowchart Fun Pro के बारे में जानें","Left to Right":"बाएं से दाएं","Let us know why you\'re canceling. We\'re always looking to improve.":"हमें बताएं कि आप क्यों रद्द कर रहे हैं। हम हमेशा सुधार करने की कोशिश कर रहे हैं।","Light":"लाइट","Light Mode":"लाइट मोड","Link":"लिंक","Link back":"वापस लिंक करें","Load":"लोड","Load Chart":"चार्ट लोड करें","Load File":"फ़ाइल लोड करें","Load Files":"फ़ाइलें लोड करें","Load default content":"डिफ़ॉल्ट सामग्री लोड करें","Load from link?":"लिंक से लोड करें?","Load layout and styles":"लोड लेआउट और शैलियां","Loading...":"लोड हो रहा है...","Local File Support":"स्थानीय फ़ाइल समर्थन","Local saving for offline access":"ऑफ़लाइन उपयोग के लिए स्थानीय सहेजना","Lock Zoom to Graph":"ग्राफ पर जूम लॉक करें","Log In":"लॉग इन करें","Log Out":"लॉग आउट","Log in to Save":"सेव में लॉग इन करें","Log in to upgrade your account":"अपने खाते को अपग्रेड करने के लिए लॉग इन करें","Make a One-Time Donation":"एक बार दान करें","Make it yours":"अपना बनाएं","Make publicly accessible":"सार्वजनिक रूप से एक्सेस दें","Manage Billing":"बिलिंग प्रबंधित करें","Map Data":"डेटा मैप","Maximum width of text inside nodes":"नोड्स के अंदर टेक्स्ट की अधिकतम चौड़ाई","Monthly":"मासिक","Move":"चलो","Move {0}":["चलो ",["0"]],"Multiple pointers on same line":"एक ही लाइन पर कई प्रतीक","My dog ate my credit card!":"मेरा कुत्ता मेरा क्रेडिट कार्ड खा गया!","Name":"नाम","Name Chart":"चार्ट का नाम","Name your chart":"अपने चार्ट को नाम दें","New":"नया","New Email":"नई ईमेल","New Flowchart":"नया फ्लोचार्ट","New Folder":"नया फोल्डर","Next charge":"अगला चार्ज","No Edges":"कोई किनारे नहीं","No Folder (Root)":"कोई फोल्डर नहीं (मूल)","No Watermarks!":"कोई वॉटरमार्क्स नहीं!","No charts yet":"अभी तक कोई चार्ट नहीं","No items in this folder":"इस फोल्डर में कोई आइटम नहीं","No matching charts found":"कोई मिलते जुलते चार्ट नहीं मिले","Node Border Style":"नोड सीमा शैली","Node Colors":"नोड रंग","Node ID":"नोड आईडी","Node ID, Classes, Attributes":"नोड आईडी, वर्ग, गुण","Node Label":"नोड लेबल","Node Shape":"नोड आकार","Node Shapes":"नोड आकार","Nodes":"नोड्स","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"नोड्स को डैश्ड, डॉट्ड, या डबल के साथ शैलीयित किया जा सकता है। सीमाओं को बॉर्डर_नोन के साथ हटाया जा सकता है।","Not Empty":"खाली नहीं","Now you\'re thinking with flowcharts!":"अब आप फ्लोचार्ट के साथ सोच रहे हैं!","Office Hours":"कार्यालय अवधि","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"कभी-कभी मैजिक लिंक आपके स्पैम फोल्डर में खत्म हो जाता है। अगर आप कुछ मिनट बाद उसे नहीं देख रहे हैं, तो वहां जाकर देखें या एक नया लिंक अनुरोध करें।","One on One Support":"एक प्रति एक समर्थन","One-on-One Support":"एक-पर-एक समर्थन","Open Customer Portal":"ग्राहक पोर्टल खोलें","Operation canceled":"ऑपरेशन रद्द किया गया है","Or maybe blue!":"या शायद नीला!","Organization Chart":"संगठन चार्ट","PNG & JPG export":"PNG और JPG निर्यात","Padding":"पैडिंग","Page not found":"पृष्ठ नहीं मिला","Password":"पासवर्ड","Past Due":"पिछले दौरान","Paste a document to convert it":"एक दस्तावेज़ को पेस्ट करें और उसे रूपांतरित करें","Paste your document or outline here to convert it into an organized flowchart.":"अपने दस्तावेज़ या रूपरेखा को यहां पेस्ट करें ताकि इसे एक व्यवस्थित फ्लोचार्ट में बदला जा सके।","Pasted content detected. Convert to Flowchart Fun syntax?":"पेस्ट की गई सामग्री का पता लगाया गया है। फ्लोचार्ट फन सिंटैक्स में रूपांतरित करें?","Perfect for docs and quick sharing":"दस्तावेज़ और त्वरित साझाकरण के लिए उपयुक्त","Permanent Charts are a Pro Feature":"स्थायी चार्ट एक प्रो सुविधा हैं","Playbook":"प्लेबुक","Pointer and container on same line":"प्रतीक और कंटेनर एक ही लाइन पर","Priority One-on-One Support":"प्राथमिकता वाला एक-से-एक समर्थन","Priority support":"प्राथमिकता समर्थन","Privacy Policy":"गोपनीयता नीति ","Pro starts at $4/mo billed yearly. Cancel anytime.":"प्रो शुरू होता है $4/माह वार्षिक बिल किया जाता है। कभी भी रद्द करें।","Pro tip: Right-click any node to customize its shape and color":"प्रो टिप: किसी भी नोड पर दायां-तीर क्लिक करें और उसकी आकृति और रंग को अनुकूलित करें।","Processing Data":"डेटा प्रसंस्करण","Processing...":"प्रसंस्करण हो रहा है...","Prompt":"प्रश्न","Public":"पब्लिक","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"विशियो, लुसिडचार्ट, सीएसवी से डेटा लाएं या टेम्पलेट से शुरू करें। पहले से मौजूद चीज़ों को दोहराना नहीं।","Quick experimentation space that resets daily":"रोजाना रीसेट होने वाला त्वरित प्रयोग क्षेत्र","Random":"अनियमित","Rapid Deployment Templates":"त्वरित डिप्लॉयमेंट टेम्पलेट्स","Rapid Templates":"त्वरित टेम्पलेट्स","Raster Export (PNG, JPG)":"रास्टर निर्यात (PNG, JPG)","Rate limit exceeded. Please try again later.":"रेट लिमिट पार हो गई है। कृपया बाद में पुनः प्रयास करें।","Read-only":"केवल पढ़ने के लिए","Reference by Class":"क्लास के द्वारा संदर्भ","Reference by ID":"आईडी द्वारा संदर्भ","Reference by Label":"लेबल द्वारा संदर्भ","References":"संदर्भ","References are used to create edges between nodes that are created elsewhere in the document":"संदर्भ दस्तावेज के अन्य भागों में बनाए गए नोड्स के बीच कड़ियाँ बनाने के लिए उपयोग किए जाते हैं","Referencing a node by its exact label":"सटीक लेबल द्वारा नोड का संदर्भ करना","Referencing a node by its unique ID":"अद्वितीय आईडी द्वारा नोड का संदर्भ करना","Referencing multiple nodes with the same assigned class":"एक ही निर्धारित कक्षा के साथ कई नोड का उल्लेख करना","Refresh Page":"पृष्ठ को ताज़ा करें","Reload to Update":"अपडेट करने के लिए रीलोड करें","Rename":"फिर से नाम बदलें","Rename {0}":["नाम बदलें ",["0"]],"Request Magic Link":"अनुरोध जादू लिंक","Request Password Reset":"पासवर्ड रीसेट का अनुरोध करें","Reset":"रीसेट करें","Reset Password":"पासवर्ड रीसेट करें","Resume Subscription":"सदस्यता फिर से शुरू करें","Return":"वापसी","Right to Left":"दाएं से बाएं","Right-click nodes for options":"विकल्पों के लिए नोड को दायां-बांयां क्लिक करें","Roadmap":"रोडमैप","Rotate Label":"लेबल को घुमाएँ","SVG Export is a Pro Feature":"SVG निर्यात एक प्रो सुविधा है","SVG, PDF & all export formats":"SVG, पीडीएफ और सभी निर्यात प्रारूप","Satisfaction guaranteed or first payment refunded":"संतुष्टि की गारंटी या पहली भुगतान की राशि वापस कर दी जाएगी","Save":"सहेजें","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"स्थानीय रूप से सहेजें, ऑफ़लाइन में काम करें, और साफ़ करें कि कौन क्या देख सकता है। जब तक आप नहीं कहते, कोई डेटा आपकी मशीन से बाहर नहीं जाता है।","Save time with AI and dictation, making it easy to create diagrams.":"एआई और बोलने की सुविधा के साथ समय बचाएं, जो आसान डायग्राम बनाने को बनाता है।","Save to Cloud":"क्लौड में सेव करें","Save to File":"फाइल में सेव करें","Save your Work":"अपनी कार्यवाही सुरक्षित करें","Schedule personal consultation sessions":"निजी परामर्श सत्रों की अनुसूची बनाएं","Secure payment":"सुरक्षित भुगतान","See more reviews on Product Hunt":"Product Hunt पर अधिक समीक्षा देखें","See what\'s possible":"क्या संभव है देखें","Select a destination folder for \\"{0}\\".":"के लिए एक लक्षित फोल्डर का चयन करें \\\\","Send us a message":"हमें एक संदेश भेजें","Set a consistent height for all nodes":"सभी नोड्स के लिए एक समान ऊंचाई सेट करें","Settings":"सेटिंग","Share":"साझा करें","Sign In":"साइन इन करें","Sign in with <0>GitHub0>":"<0>GitHub0> के साथ साइन इन करें","Sign in with <0>Google0>":"<0>Google0> के साथ साइन इन करें","Sorry! This page is only available in English.":"माफ़ करें! यह पेज केवल अंग्रेजी में उपलब्ध है।","Sorry, there was an error converting the text to a flowchart. Try again later.":"क्षमा करें, टेक्स्ट को फ्लोचार्ट में रूपांतरित करने में एक त्रुटि हुई। बाद में पुनः प्रयास करें।","Sort Ascending":"आरोही क्रम में छाँटें","Sort Descending":"अवरोहण करें","Sort by {0}":[["0"]," द्वारा क्रमबद्ध करें"],"Source Arrow Shape":"स्रोत तीर आकार","Source Column":"स्रोत स्तंभ","Source Delimiter":"स्रोत डिलिमिटर","Source Distance From Node":"नोड से स्रोत दूरी","Source/Target Arrow Shape":"स्रोत / लक्ष्य तीर आकार","Spacing":"अंतराल","Special Attributes":"विशेष गुण","Start":"शुरू","Start Over":"शुरू करें","Start faster with use-case specific templates":"उपयोग मामले विशिष्ट टेम्पलेट के साथ तेजी से शुरू करें","Start for free":"मुफ़्त शुरू करें","Status":"स्टेटस","Step 1":"कदम 1","Step 2":"कदम 2","Step 3":"कदम 3","Store any data associated to a node":"किसी नोड से संबंधित किसी भी डेटा स्टोर करें","Style Classes":"शैली क्लासेज","Style with classes":"क्लासेस के साथ स्टाइल","Submit":"भेजना","Subscription":"सदस्यता","Subscription Successful!":"सदस्यता सफल हुआ!","Subscription will end":"सदस्यता समाप्त हो जाएगी","Support":"समर्थन","Target Arrow Shape":"लक्ष्य तीर आकार","Target Column":"लक्ष्य कॉलम","Target Delimiter":"लक्ष्य डेलीमीटर","Target Distance From Node":"नोड से लक्ष्य दूरी","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"एआई को सादा अंग्रेजी में बताएं कि आपको क्या चाहिए। आपका डायग्राम कुछ ही सेकंड में बन जाएगा।","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"हमें बताएं कि क्या काम कर रहा है और क्या नहीं। हर संदेश डेवलपर द्वारा पढ़ा जाता है।","Text Color":"पाठ रंग","Text Horizontal Offset":"टेक्स्ट की क्षैतिज ओफसेट","Text Leading":"पाठ प्रमुख","Text Max Width":"टेक्स्ट की अधिकतम चौड़ाई","Text Vertical Offset":"पाठ लंबाई ऑफसेट","Text followed by colon+space creates an edge with the text as the label":"स्क्लीन के बाद कोलन + स्पेस एक किरदार बनाता है जिसका पाठ लेबल है","Text on a line creates a node with the text as the label":"एक पंक्ति पर पाठ एक नोड बनाता है जिसका पाठ लेबल है","Thank you for your feedback!":"आपके फ़ीडबैक के लिए धन्यवाद!","The beauty and magic reside in the minimalism.":"सुंदरता और जादू संक्षेपता में हैं।","The best way to change styles is to right-click on a node or an edge and select the style you want.":"शैलीयित करने के लिए सर्वश्रेष्ठ तरीका नोड या एड्ज पर राइट-क्लिक करके आपके द्वारा चाहिए शैली का चयन करना है।","The column that contains the edge label(s)":"कॉलम जो एड्ज लेबल (ओं) को शामिल करता है","The column that contains the source node ID(s)":"कॉलम जो स्रोत नोड आईडी (ओं) को शामिल करता है","The column that contains the target node ID(s)":"कॉलम जो लक्ष्य नोड आईडी (ओं) को शामिल करता है","The delimiter used to separate multiple source nodes":"कई स्रोत नोड्स को अलग करने के लिए उपयोग किया गया डिलिमिटर","The delimiter used to separate multiple target nodes":"कई लक्ष्य नोड्स को अलग करने के लिए उपयोग किया गया डिलिमिटर","The fastest way to turn what\'s in your head into something everyone else can understand.":"अपने दिमाग में क्या है उसे कुछ ऐसा बनाएं कि सभी उसे समझ सकें।","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"फ्री प्लान दैनिक उपयोग के लिए बहुत अच्छा काम करता है। अगर आपको प्रो फीचर्स की आवश्यकता है, तो महीने-ब्य-महीने $6 का खर्चा होगा - कोई बाध्यता के साथ कभी भी रद्द कर सकते हैं।","The possible shapes are:":"संभव आकृतियाँ हैं:","Theme":"थीम","Theme Customization Editor":"थीम कस्टमाइज़ेशन संपादक","Theme Editor":"थीम संपादक","Theme editor":"थीम संपादक","There are no edges in this data":"इस डेटा में कोई एड्ज नहीं है","This action cannot be undone.":"इस क्रिया को पूर्ववत नहीं किया जा सकता।","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"यह सुविधा केवल प्रो उपयोगकर्ताओं के लिए उपलब्ध है। <0>प्रो उपयोगकर्ता बनें0> इसे अनलॉक करने के लिए।","This may take between 30 seconds and 2 minutes depending on the length of your input.":"आपके इनपुट की लंबाई के आधार पर, यह 30 सेकंड से 2 मिनट तक लग सकता है।","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"यह सैंडबॉक्स प्रयोग करने के लिए परफेक्ट है, लेकिन ध्यान रखें - यह दैनिक रूप से रीसेट होता है। अभी अपग्रेड करें और अपना वर्तमान काम रखें!","This will replace the current content.":"यह वर्तमान सामग्री को बदल देगा।","This will replace your current chart content with the template content.":"यह आपके मौजूदा चार्ट की सामग्री को टेम्पलेट की सामग्री से बदल देगा।","This will replace your current sandbox.":"यह आपके वर्तमान सैंडबॉक्स को बदल देगा।","Time to decide":"फैसला लेने का समय","Tip":"सुझाव","To fix this change one of the edge IDs":"इसे ठीक करने के लिए एड्ज आईडी के एक को बदलें","To fix this change one of the node IDs":"इसे ठीक करने के लिए नोड आईडी के एक को बदलें","To fix this move one pointer to the next line":"इसे ठीक करने के लिए प्रतीक को अगली पंक्ति पर ले जाएं","To fix this start the container <0/> on a different line":"इसे ठीक करने के लिए कंटेनर <0/> को एक अलग पंक्ति पर शुरू करें","To learn more about why we require you to log in, please read <0>this blog post0>.":"हमें आपको लॉगिन करने के लिए आवश्यक क्यों है, कृपया <0>यह ब्लॉग पोस्ट0> पढ़ें।","Top to Bottom":"ऊपर से नीचे","Transform Your Ideas into Professional Diagrams in Seconds":"अपने विचारों को सेकंड में प्रोफेशनल डायरेक्टरी में रूपांतरित करें","Transform text into diagrams instantly":"पाठ को तुरंत आरेख में बदलें","Try AI":"एआई को आजमाएं","Try adjusting your search or filters to find what you\'re looking for.":"अपनी खोज या फ़िल्टरों को समायोजित करने का प्रयास करें ताकि आप जो ढूंढ रहे हैं उसे ढूंढ सकें।","Try again":"फिर से कोशिश करें","Try it free":"इसे मुफ्त में आज़माएं","Two edges have the same ID":"दो किनारे उसी आईडी के हैं","Two nodes have the same ID":"दो नोड उसी आईडी के हैं","Type it. See it.":"इसे टाइप करें। देखें।","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"उह ओह, आपके पास मुफ्त अनुरोधों की सीमा पूरी हो गई है! असीमित डायग्राम परिवर्तन के लिए Flowchart Fun Pro पर अपग्रेड करें, और पाठ को स्पष्ट, दृश्यमान फ्लोचार्ट में आसानी से कॉपी और पेस्ट करते रहें।","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"60 सेकंड से कम समय में। कुछ पंक्तियां टाइप करें या AI को बताएं, और आपका आरेख तुरंत दिखाई देगा। एक क्लिक से निर्यात या साझा करें।","Undo":"वापस ले जाएं","Unescaped special character":"अस्केप्ड विशेष वर्ण","Unique text value to identify a node":"एक नोड को पहचानने के लिए अद्वितीय पाठ मूल्य","Unknown":"अज्ञात","Unknown Parsing Error":"अज्ञात पार्सिंग त्रुटि","Unlimited Flowcharts":"असीमित फ्लोचार्ट्स","Unlimited Permanent Flowcharts":"असीमित स्थायी प्रवाहगतीं ","Unlimited cloud-saved flowcharts":"असीमित क्लाउड-सहेजे फ्लोचार्ट्स","Unlimited saved diagrams":"असीमित सहेजे गए आरेख","Unlock AI Features and never lose your work with a Pro account.":"प्रो खाते से AI फीचर्स खोलें और कभी भी अपना काम न खोएं।","Unlock Unlimited AI Flowcharts":"असीमित AI फ्लोचार्ट्स को अनलॉक करें","Unpaid":"अवैतनिक","Update Email":"ईमेल अपडेट करें","Updated Date":"अपडेट की गई तारीख","Upgrade Now - Save My Work":"अपग्रेड करें अब - मेरा काम सहेजें","Upgrade to Flowchart Fun Pro and unlock:":"फ्लोचार्ट फन प्रो पर अपग्रेड करें और अनलॉक करें:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"अपने डायग्राम के लिए एसवीजी निर्यात और अधिक उन्नत सुविधाओं का आनंद लेने के लिए फ्लोचार्ट फन प्रो पर अपग्रेड करें।","Upgrade to Pro":"प्रो को अपग्रेड करें","Upgrade to Pro for permanent charts.":"प्रो अपग्रेड करें और स्थायी चार्ट प्राप्त करें।","Upload your File":"अपनी फाइल अपलोड करें","Use Custom CSS Only":"केवल कस्टम CSS का उपयोग करें","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"क्या आप Lucidchart या Visio का उपयोग करते हैं? CSV आयात किसी भी स्रोत से डेटा प्राप्त करने को आसान बनाता है!","Use classes to group nodes":"नोड्स को समूहों में सम्मिलित करने के लिए वर्ग उपयोग करें","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"नोड पर एक लिंक सेट करने के लिए गुण <0>href0> उपयोग करें जो एक नये टैब में खुलेगा।","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"नोड की छवि सेट करने के लिए <0>src0> गुण का उपयोग करें। छवि नोड के आकार में स्केल की जाएगी, इसलिए आपको आवश्यक प्रतिस्थापित करने के लिए नोड की चौड़ाई और ऊँचाई को समायोजित करना होगा। केवल सार्वजनिक छवियाँ (CORS द्वारा ब्लॉक नहीं की गई) समर्थित हैं।","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"नोड की विशिष्ट चौड़ाई और ऊँचाई सेट करने के लिए <0>w0> और <1>h1> गुण का उपयोग करें।","Use the customer portal to change your billing information.":"अपनी बिलिंग जानकारी बदलने के लिए ग्राहक पोर्टल का उपयोग करें।","Use these settings to adapt the look and behavior of your flowcharts":"अपने फ्लोचार्ट की दिखता और व्यवहार को अनुकूलित करने के लिए इन सेटिंग्स का उपयोग करें","Use this file for org charts, hierarchies, and other organizational structures.":"संगठनात्मक चार्ट, पदानुक्रमों और अन्य संगठनात्मक संरचनाओं के लिए इस फ़ाइल का उपयोग करें।","Use this file for sequences, processes, and workflows.":"अनुक्रमों, प्रक्रियाओं और कार्यप्रवाहों के लिए इस फ़ाइल का उपयोग करें।","Use this mode to modify and enhance your current chart.":"अपने मौजूदा चार्ट को संशोधित और सुधारित करने के लिए इस मोड का उपयोग करें।","Used at":"इस्तेमाल किया गया","User":"यूज़र","Vector Export (SVG)":"वेक्टर निर्यात (SVG)","View on Github":"Github पर देखें","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"क्या आप एक दस्तावेज़ से फ्लोचार्ट बनाना चाहते हैं? संपादक में इसे पेस्ट करें और \'फ्लोचार्ट में परिवर्तित करें\' पर क्लिक करें।","Watermark-Free Diagrams":"वॉटरमार्क-मुक्त आरेख","Watermarks":"वॉटरमार्क","Welcome to Flowchart Fun":"फ्लोचार्ट फन में आपका स्वागत है","What if I just need it for one project?":"क्या मुझे केवल एक प्रोजेक्ट के लिए ही इसकी आवश्यकता है?","What our users are saying":"हमारे उपयोगकर्ताओं के क्या कहने हैं","What\'s next?":"अगला क्या है?","What\'s this?":"यह क्या है?","Width":"चौड़ाई","Width and Height":"चौड़ाई और ऊँचाई","Will my diagrams actually look professional?":"क्या मेरे डायग्राम वास्तव में पेशेवर दिखेंगे?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"फ्लोचार्ट फन के प्रो संस्करण के साथ, आप प्राकृतिक भाषा के आदेशों का उपयोग करके अपने फ्लोचार्ट विवरणों को त्वरित रूप से समाप्त कर सकते हैं, यात्रा पर आरेख बनाने के लिए आदर्श। $6/महीने के लिए, अपने फ्लोचार्टिंग अनुभव को बढ़ाने के लिए पहुंचने योग्य AI संपादन की सुविधा प्राप्त करें।","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"प्रो संस्करण के साथ आप स्थानीय फ़ाइलों को सहेज और लोड कर सकते हैं। यह ऑफ़लाइन काम से जुड़े दस्तावेज़ों को प्रबंधित करने के लिए उपयुक्त है।","Would you like to continue?":"क्या आप जारी रखना चाहते हैं?","Would you like to suggest a new example?":"क्या आप एक नया उदाहरण सुझाना चाहेंगे?","Wrap text in parentheses to connect to any node":"किसी भी नोड से जुड़ने के लिए ब्रैकेट में लिखें","Write like an outline":"आउटलाइन की तरह लिखें","Write your prompt here or click to enable the microphone, then press and hold to record.":"अपना प्रॉम्प्ट यहां लिखें या माइक्रोफोन को सक्षम करने के लिए क्लिक करें, फिर रिकॉर्ड करने के लिए दबाएं और रखें।","Yearly":"वार्षिक","Yes — send us a message and we\'ll set you up with a discounted rate.":"हाँ - हमें एक संदेश भेजें और हम आपको छूट दर से सेट कर देंगे।","Yes, Replace Content":"हाँ, सामग्री को बदलें","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"हाँ। हर डायग्राम बैलेंस्ड, स्वचालित लेआउट का उपयोग करता है जो साफ टाइपोग्राफी के साथ होता है। आप थीम, रंग और स्टाइल को अनुकूलित कर सकते हैं - और क्रिस्प SVG या हाई-रेज़ोल्यूशन PNG के रूप में निर्यात कर सकते हैं जो किसी भी प्रस्तुति या दस्तावेज़ में बेहतर दिखता है।","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"हाँ। प्रो विशियो, लुसिडचार्ट और सीएसवी से आयात का समर्थन करता है - इसलिए आप उसे बिना एकदम से फिर से बनाए बिना अपने पास लाए सकते हैं।","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"हाँ। आप स्थानीय रूप से फ़ाइलें सहेज सकते हैं, पूरी तरह से ऑफ़लाइन काम कर सकते हैं, और अपनी डायग्राम को किसी भी व्यक्ति को दिखाने के लिए नियंत्रित कर सकते हैं। डेटा आपकी मशीन से नहीं जाता है जब तक आप शेयर करने के लिए नहीं चुनते हैं।","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["आप अपने ग्राफ में ",["numNodes"]," नोड्स और ",["numEdges"]," एड्ज़ जोड़ने वाले हैं।"],"You need to log in to access this page.":"इस पृष्ठ तक पहुँचने के लिए आपको लॉग इन करना होगा।","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"आप पहले से ही एक प्रो उपयोगकर्ता हैं। <0>सदस्यता प्रबंधित करें0><1/>क्या आपके पास कोई सवाल या सुविधा अनुरोध है? <2>हमें बताएं2>","You\'re doing great!":"आप बहुत अच्छा कर रहे हैं!","You\'re on the free plan.":"आप मुफ़्त योजना पर हैं।","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"आपने अपने सभी नि: शुल्क एआई रूपांतरण का उपयोग किया है। असीमित एआई उपयोग, कस्टम थीम, निजी साझाकरण और अधिक के लिए प्रो पर अपग्रेड करें। अब आसानी से शानदार फ्लोचार्ट बनाते रहें!","Your Charts":"आपके चार्ट","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"आपका सैंडबॉक्स हमारी फ्लोचार्ट टूल के साथ निःशुल्क प्रयोग करने के लिए एक स्थान है, जो हर दिन एक नए शुरुआत के लिए रीसेट होता है।","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"आपके चार्ट रीड-ओनली हैं क्योंकि आपका खाता अब सक्रिय नहीं है। अपने <0>खाता0> पेज पर जाकर अधिक जानकारी प्राप्त करें।","Your next diagram should be your best one.":"आपकी अगली डायग्राम आपकी सबसे अच्छी होनी चाहिए।","Your subscription is <0>{statusDisplay}0>.":["आपका सदस्यता <0>",["statusDisplay"],"0> है।"],"Your work stays yours":"आपका काम आपका ही रहता है।","Zoom In":"ज़ूम इन करें","Zoom Out":"आउट ज़ूम करें","month":"महीना","or":"या","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"$48/वर्ष (33% बचाएं) · कभी भी रद्द करें","$6/mo":"$6/महीना","1 Temporary Flowchart":"1 अस्थायी फ्लोचार्ट","1 diagram at a time":"एक डायग्राम एक समय में","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>कस्टम CSS केवल0> सक्षम है। केवल लेआउट और एडवांस्ड सेटिंग्स लागू की जाएगी।","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> <1>Tone Row1> द्वारा बनाई गई एक खुला स्रोत परियोजना है ","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>साइन इन0> / <1>साइन अप1> ईमेल और पासवर्ड के साथ","A new version of the app is available. Please reload to update.":"एप्प का एक नया वर्जन उपलब्ध है। अपडेट करने के लिए रीलोड करें।","AI Creation & Editing":"एआई निर्माण और संपादन","AI generation & editing":"एआई उत्पादन और संपादन","AI-Powered Flowchart Creation":"एआई-पावर्ड फ्लोचार्ट निर्माण","AI-generated from plain text in under 5 seconds.":"एआई द्वारा सादा पाठ से 5 सेकंड के अंदर उत्पन्न किया गया।","AI-powered editing to supercharge your workflow":"एआई पावर्ड संपादन आपके वर्कफ्लो को तेज करने के लिए","About":"के बारे में","Account":"खाता","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"किसी भी विशेष वर्ण के पहले एक बैकस्लैश (<0>\\\\0>) जोड़ें: <1>(1>, <2>:2>, <3>#3>, या <4>.4>","Add some steps":"कुछ चरण जोड़ें","Advanced":"उन्नत","Align Horizontally":"आड़े सारी तरफ","Align Nodes":"नोड्स को संरेखित करें","Align Vertically":"ऊपर-नीचे सारी तरफ","All this for just $6/month - less than your daily coffee ☕":"सिर्फ $6/महीने में यह सब - आपके दैनिक कॉफ़ी से कम ☕","Always presentation-ready":"हमेशा प्रस्तुति के लिए तैयार","Amount":"रकम","An error occurred. Try resubmitting or email {0} directly.":["एक एरर हो गया. फिर से सबमिट करने की कोशिश करें या सीधे ",["0"]," ईमेल करें."],"Appearance":"दिखावट","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"क्या आप वाकई फ्लोचार्ट को हटाना चाहते हैं? ","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"क्या आप वाकई फ़ोल्डर को हटाना चाहते हैं? ","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"क्या आप वाकई फ़ोल्डर को हटाना चाहते हैं? ","Are you sure?":"क्या आप निश्चित हैं?","Arrow Size":"तीर आकार","Attributes":"गुण","August 2023":"2023 अगस्त","Back":"वापस","Back To Editor":"संपादक पर वापस जाएं","Background Color":"पृष्ठभूमि रंग","Basic Flowchart":"बेसिक फ्लोचार्ट","Become a Github Sponsor":"गिटहब स्पॉन्सर बनें","Become a Pro User":"प्रो उपयोगकर्ता बनें","Begin your journey":"अपनी यात्रा शुरू करें","Billed annually at $48":"वार्षिक रूप से $48 का बिल बनाया जाएगा","Billed monthly at $6":"मासिक रूप से $6 पर बिल किया जाता है","Blog":"ब्लॉग","Book a Meeting":"एक बैठक बुक करें","Border Color":"सीमा रंग","Border Width":"सीमा चौड़ाई","Bottom to Top":"नीचे से शीर्ष तक","Breadthfirst":"चौड़ाई पहले","Build your personal flowchart library":"अपनी निजी फ्लोचार्ट लाइब्रेरी बनाएं","Can I import my existing diagrams?":"क्या मैं अपने मौजूदा आरेखों को आयात कर सकता हूं?","Cancel":"रद्द करें","Cancel anytime":"कभी भी रद्द करें","Cancel your subscription. Your hosted charts will become read-only.":"अपनी सदस्यता रद्द करें. आपके होस्ट किये गए चार्ट सिर्फ़ पढ़े जा सकेंगे.","Certain attributes can be used to customize the appearance or functionality of elements.":"कुछ गुण तत्वों की दिखता या कार्यक्षमता को अनुकूलित करने के लिए उपयोग किए जा सकते हैं।","Change Email Address":"ईमेल पता बदलें","Changelog":"बदलाव का","Charts":"चार्ट","Check out the guide:":"गाइड की जाँच करें:","Check your email for a link to log in.<0/>You can close this window.":"लॉग इन करने के लिए अपने ईमेल की जाँच करें। आप इस विंडो को बंद कर सकते हैं।","Choose":"चुनें","Choose Template":"टेम्पलेट चुनें","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"एक किनारे के स्रोत और लक्ष्य के लिए विभिन्न तीर आकारों से चुनें। आकार शामिल हैं त्रिकोण, त्रिकोण-टी, सर्कल-त्रिकोण, त्रिकोण-क्रॉस, त्रिकोण-बैककर्व, वी, टी, चौकोर, हीरा, चेवरॉन और कोई नहीं।","Choose how edges connect between nodes":"नोड्स के बीच एज कैसे कनेक्ट करें चुनें","Choose how nodes are automatically arranged in your flowchart":"अपने फ्लोचार्ट में नोडों को स्वचालित रूप से व्यवस्थित कैसे करें चुनें","Circle":"परिधि","Classes":"वर्ग","Clear":"साफ़","Clear text?":"पाठ साफ़ करें?","Clone":"क्लोन करें","Clone Flowchart":"फ्लोचार्ट को क्लोन करें ","Close":"बंद करें","Color":"रंग","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"रंग में लाल, नारंगी, पीला, नीला, बैंगनी, काला, सफेद, और ग्रे शामिल हैं।","Column":"स्तंभ","Comment":"टिप्पणी","Community templates":"समुदाय टेम्पलेट","Compare our plans and find the perfect fit for your flowcharting needs":"हमारे प्लानों की तुलना करें और अपनी फ्लोचार्टिंग की आवश्यकताओं के लिए सही विकल्प खोजें","Concentric":"गाढ़ा","Confirm New Email":"नई ईमेल की पुष्टि करें","Confirm your email address to sign in.":"साइन इन करने के लिए अपना ईमेल पता पुष्टि करें।","Connect your Data":"अपने डेटा को कनेक्ट करें","Containers":"कंटेनर","Containers are nodes that contain other nodes. They are declared using curly braces.":"कंटेनर उन नोड्स हैं जो अन्य नोड्स को सम्मिलित करते हैं। वे कर्ली ब्रेस का उपयोग करके घोषित किया जाता है।","Continue":"जारी रखें","Continue in Sandbox (Resets daily, work not saved)":"सैंडबॉक्स में जारी रखें (दैनिक रूप से रीसेट होता है, काम सहेजा नहीं जाता)","Controls the flow direction of hierarchical layouts":"वर्गीकृत लेआउट की धारा को नियंत्रित करता है","Convert":"परिवर्तन करें","Convert to Flowchart":"फ्लोचार्ट में बदलें","Convert to hosted chart?":"होस्टेड चार्ट में कनवर्ट करें?","Cookie Policy":"कुकी नीति","Copied SVG code to clipboard":"क्लिपबोर्ड पर SVG कोड कॉपी किया गया","Copied {format} to clipboard":["क्लिपबोर्ड पर ",["प्रारूप"]," कॉपी किया गया"],"Copy":"कॉपी करें","Copy PNG Image":"PNG छवि कॉपी करें","Copy SVG Code":"SVG कोड कॉपी करें","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"अपने Excalidraw कोड को कॉपी करें और <0>excalidraw.com0> में पेस्ट करें ताकि आप संपादित कर सकें। यह सुविधा प्रयोगात्मक है और सभी आरेखों के साथ काम नहीं कर सकती। यदि आपको कोई बग मिलता है, तो <1>हमें जानकारी दें।1>","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"अपना मर्मेड.जेएस कोड कॉपी करें या मर्मेड.जेएस लाइव एडिटर में सीधे खोलें।","Create":"बनाएं","Create Flowcharts using AI":"एआई का उपयोग करके फ्लोचार्ट बनाएं","Create Unlimited Flowcharts":"असीमित पारितकथाओं बनाएं","Create a New Chart":"एक नया चार्ट बनाएं","Create a flowchart showing the steps of planning and executing a school fundraising event":"एक स्कूल रेस्ट्रोइज़िंग इवेंट की योजना और निष्पादन के चरणों को दिखाने वाला फ्लोचार्ट बनाएं","Create a new flowchart to get started or organize your work with folders.":"शुरू करने के लिए एक नया फ्लोचार्ट बनाएं या फ़ोल्डर के साथ अपना काम संगठित करें। ","Create flowcharts instantly: Type or paste text, see it visualized.":"तुरंत फ्लोचार्ट बनाएं: पाठ लिखें या पेस्ट करें, उसे दृश्यीकृत करें।","Create unlimited diagrams for just $6/month!":"सिर्फ $6/महीने में असीमित आरेख बनाएं!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"आकार में असीमित फ्लोचार्ट को क्लाउड में संग्रहीत करें - किसी भी जगह से उपलब्ध!","Create with AI":"AI के साथ बनाएं","Created Date":"बनाई गई तारीख","Creating an edge between two nodes is done by indenting the second node below the first":"दो नोड्स के बीच एक एज बनाने के लिए दूसरा नोड पहले वाले के नीचे इंडेंट करना होता है","Curve Style":"वक्र शैली","Custom CSS":"कस्टम CSS","Custom Sharing Options":"कस्टम शेयरिंग विकल्प","Custom sharing & public links":"कस्टम साझा करने और सार्वजनिक लिंक","Customer Portal":"ग्राहक पोर्टल","Daily Sandbox Editor":"दैनिक सैंडबॉक्स संपादक","Dark":"डार्क","Dark Mode":"डार्क मोड","Data Import (Visio, Lucidchart, CSV)":"डेटा आयात (विशियो, ल्यूसिडचार्ट, सीएसवी)","Data import feature for complex diagrams":"जटिल आरेखों के लिए डेटा आयात सुविधा","Date":"तारीख़","Delete":"हटाएँ","Delete {0}":["हटाएँ ",["0"]],"Describe it and it appears":"इसे वर्णन करें और वह दिखाई देगा","Describe your idea. Get a diagram worth presenting.":"अपनी विचारों का वर्णन करें। प्रस्तुत करने योग्य आरेख प्राप्त करें।","Design a software development lifecycle flowchart for an agile team":"एक एजाइल टीम के लिए सॉफ्टवेयर विकास जीवनचक्र फ्लोचार्ट डिज़ाइन करें","Develop a decision tree for a CEO to evaluate potential new market opportunities":"एक सीईओ के लिए नए बाजार के अवसरों का मूल्यांकन करने के लिए एक फैसले का पेड़ विकसित करें","Direction":"दिशा","Dismiss":"खारिज करें","Do you offer discounts for students or nonprofits?":"क्या आप छात्रों या गैर-लाभकारी संगठनों के लिए छूट प्रदान करते हैं?","Do you want to delete this?":"क्या आप इसे डिलीट करना चाहते हैं?","Document":"दस्तावेज़","Don\'t Lose Your Work":"अपना काम न खो दें","Download":"डाउनलोड","Download JPG":"JPG डाउनलोड करें","Download PNG":"PNG डाउनलोड करें","Download SVG":"SVG डाउनलोड करें","Drag and drop a CSV file here, or click to select a file":"CSV फ़ाइल यहां ड्रैग और ड्रॉप करें, या फ़ाइल का चयन करने के लिए क्लिक करें","Draw an edge from multiple nodes by beginning the line with a reference":"एक से अधिक नोड्स से एज ड्रा करने के लिए लाइन को एक संदर्भ के साथ शुरू करें","Drop the file here ...":"फाइल यहाँ ड्रॉप करें ...","Each line becomes a node":"प्रत्येक पंक्ति एक नोड बन जाती है","Edge ID, Classes, Attributes":"किनारे आईडी, वर्ग, गुण","Edge Label":"किनारे लेबल","Edge Label Column":"किनारे लेबल कॉलम","Edge Style":"किनारे शैली","Edge Text Size":"एड्ज टेक्स्ट आकार","Edge missing indentation":"एड्ज अंतराल गुम है","Edges":"किन्तुओं","Edges are declared in the same row as their source node":"उनके स्रोत नोड के ही पंक्ति में किन्तुओं की घोषणा की जाती है","Edges are declared in the same row as their target node":"उनके लक्ष्य नोड के ही पंक्ति में किन्तुओं की घोषणा की जाती है","Edges are declared in their own row":"किन्तुओं को अपनी खुद की पंक्ति में घोषणा की जाती है","Edges can also have ID\'s, classes, and attributes before the label":"लेबल से पहले, किन्तुओं को आईडीज़, क्लासेज़ और गुण देने की अनुमति होती है","Edges can be styled with dashed, dotted, or solid lines":"किन्तुओं को डैश्ड, डॉटेड या सॉलिड लाइन्स के साथ स्टाइल किया जा सकता है","Edges in Separate Rows":"अलग पंक्तियों में किन्हें","Edges in Source Node Row":"स्रोत नोड पंक्ति में किन्हें","Edges in Target Node Row":"लक्ष्य नोड पंक्ति में किन्हें","Edit":"संपादित करें","Edit with AI":"एआई के साथ संपादित करें","Editable":"संपादन योग्य","Editor":"संपादक","Email":"ईमेल","Empty":"खाली","Enable to set a consistent height for all nodes":"सभी नोड्स के लिए एक समान ऊंचाई सेट करने के लिए सक्षम करें","Enter a name for the cloned flowchart.":"क्लोन फ्लोचार्ट के लिए एक नाम दर्ज करें।","Enter a name for the new folder.":"नए फोल्डर के लिए एक नाम दर्ज करें।","Enter a new name for the {0}.":[["0"]," के लिए एक नया नाम दर्ज करें।"],"Enter your email address and we\'ll send you a magic link to sign in.":"अपना ईमेल पता दर्ज करें और हम आपको साइन इन करने के लिए एक जादूगरी लिंक भेजेंगे।","Enter your email address below and we\'ll send you a link to reset your password.":"नीचे अपना ईमेल पता दर्ज करें और हम आपको अपना पासवर्ड रीसेट करने के लिए एक लिंक भेजेंगे।","Equal To":"बराबर","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"हर चित्र ताजगी से PNG, SVG या साझा करने योग्य लिंक के रूप में निर्यात किया जाता है - मीटिंग, दस्तावेज़, या डेक के लिए तैयार है।","Everything you need to know about Flowchart Fun Pro":"Flowchart Fun Pro के बारे में आपको सब कुछ जानने की जरूरत है","Examples":"उदाहरण","Excalidraw":"Excalidraw","Exclusive Office Hours":"अनन्य ऑफिस घंटे","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"अपने फ्लोचार्ट में स्थानीय फाइलों को सीधे लोड करने की क्षमता का अनुभव करें, जो काम से संबंधित दस्तावेजों को ऑफ़लाइन प्रबंधित करने के लिए उत्कृष्ट है। फ्लोचार्ट फन प्रो के साथ इस अनूठे प्रो फीचर को और भी खोलें, सिर्फ $6/महीने में उपलब्ध है।","Explore Pro":"प्रो खोजें","Explore more":"और ज्ञान प्राप्त करें","Export":"एक्सपोर्ट करें","Export clean diagrams without branding":"ब्रांडिंग के बिना साफ आरेख निर्यात करें","Export to PNG & JPG":"PNG और JPG में निर्यात करें","Export to PNG, JPG, and SVG":"PNG, JPG और SVG में निर्यात करें","Feature Breakdown":"विशेषता विभाजन","Feedback":"फ़ीडबैक","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"किसी भी चिंता के लिए हमसे फीडबैक पेज के माध्यम से संपर्क करने के लिए स्वतंत्रता से अन्वेषण करें और प्रवेश करें।","Fine-tune layouts and visual styles":"लेआउट और दृश्य शैलियों को समायोजित करें","Fixed Height":"निश्चित ऊंचाई","Fixed Node Height":"निर्धारित नोड ऊंचाई","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"फ्लोचार्ट फन प्रो आपको सिर्फ $6/महीने में असीमित फ्लोचार्ट, असीमित सहयोगी और असीमित स्टोरेज प्रदान करता है।","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"फ्लोचार्ट फन एक ओपन सोर्स प्रोजेक्ट है जो <0>टोन रो0> द्वारा बनाया गया है","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"फ्लोचार्ट फन एक डेवलपर द्वारा बनाया और रखा जाता है। आपका समर्थन इसे चलाने में सहायता करता है।","Follow Us on Twitter":"हमारे साथ ट्विटर पर फॉलो करें","Font Family":"फॉन्ट परिवार","Forgot your password?":"अपना पासवर्ड भूल गए?","Free":"मुफ्त","Free users: charts in the sandbox expire after 7 days.":"नि: शुल्क उपयोगकर्ताओं: सैंडबॉक्स में चार्ट 7 दिनों के बाद समाप्त हो जाते हैं।","Frequently Asked Questions":"अक्सर पूछे जाने वाले सवाल","Full-screen, read-only, and template sharing":"पूर्ण स्क्रीन, केवल पढ़ने के लिए और टेम्पलेट साझा करें","Fullscreen":"फ़ुलस्क्रीन","General":"सामान्य","Generate flowcharts from text automatically":"पाठ से स्वचालित रूप से फ्लोचार्ट उत्पन्न करें","Get Pro Access Now":"अब प्रो एक्सेस प्राप्त करें","Get Unlimited AI Requests":"असीमित एआई अनुरोध प्राप्त करें","Get rapid responses to your questions":"अपने सवालों के लिए त्वरित प्रतिक्रियाएं प्राप्त करें","Get unlimited flowcharts and premium features":"असीमित फ्लोचार्ट और प्रीमियम सुविधाओं का लाभ लें","Go back home":"घर वापस जाओ","Go to the Editor":"संपादक पर जाएं","Go to your Sandbox":"अपने सैंडबॉक्स पर जाएं","Graph":"ग्राफ़","Green?":"हरा?","Grid":"ग्रिड","Group ranking and ranked-choice voting, free":"समूह रैंकिंग और रैंक चुनाव, मुफ्त","Have complex questions or issues? We\'re here to help.":"जटिल सवाल या समस्याएं हैं? हम यहां आपकी मदद के लिए हैं।","Here are some Pro features you can now enjoy.":"यहाँ आपको कुछ प्रो फीचर आनंद लेने को मिल रहे हैं।","High-quality exports with embedded fonts":"एम्बेडेड फोंट के साथ उच्च गुणवत्ता वाले निर्यात","History":"हिस्ट्री","Home":"होम","How are edges declared in this data?":"इस डेटा में कैसे किन्हीं कड़ियाँ घोषित होती हैं?","How fast can I actually make something?":"मैं कितनी तेजी से कुछ बना सकता हूँ?","How would you like to save your chart?":"आप अपने चार्ट को कैसे सहेजना चाहेंगे?","I would like to request a new template:":"मैं एक नया टेम्पलेट अनुरोध करना चाहता हूँ:","ID\'s":"आईडीज़","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"अगर उस ईमेल के साथ एक खाता मौजूद है, तो हमने आपको पासवर्ड रीसेट करने के लिए निर्देशों के साथ एक ईमेल भेजा है।","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"यदि आप एक एड्ज बनाने के लिए मतलब है, तो इस लाइन को इंडेंट करें। यदि नहीं, तो कॉलन को बैक स्लैश के साथ भागो <0> \\\\: 0>","Images":"छवियाँ","Import Data":"डेटा आयात करें","Import data from a CSV file.":"CSV फ़ाइल से डेटा आयात करें।","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"किसी भी CSV फ़ाइल से डेटा आयात करें और इसे एक नए प्रक्रिया चार्ट में मैप करें। यह अन्य स्रोतों जैसे लुसिडचार्ट, गूगल शीट्स और विसिओ से डेटा आयात करने के लिए एक अच्छा तरीका है।","Import from CSV":"CSV से आयात करें","Import from Visio, Lucidchart, CSV":"विसियो, लुसिडचार्ट, सीएसवी से आयात करें","Import from Visio, Lucidchart, and CSV":"Visio, Lucidchart और CSV से आयात करें","Import from anywhere":"कहीं से आयात करें","Import from popular diagram tools":"प्रसिद्ध आरेख उपकरणों से आयात करें","Import your diagram it into Microsoft Visio using one of these CSV files.":"इन CSV फ़ाइलों में से एक का उपयोग करके अपनी आरेख Microsoft Visio में आयात करें।","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"डेटा आयात करना एक पेशेवर सुविधा है। आप केवल $6/माह के लिए Flowchart Fun Pro पर अपग्रेड कर सकते हैं।","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"एक <0>title0> विशेषता का उपयोग करके एक शीर्षक शामिल करें। Visio रंगीनी का उपयोग करने के लिए, निम्नलिखित में से किसी एक के बराबर एक <1>roleType1> विशेषता जोड़ें:","Indent to connect nodes":"नोड को जोड़ने के लिए इंडेंट करें","Info":"जानकारी","Is":"हाँ","Is my data private?":"क्या मेरा डेटा निजी है?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON कैनवास आपके द्वारा बनाई गई आपकी आरेख का एक JSON प्रतिनिधि है, जो <0>Obsidian0> कैनवास और अन्य एप्लिकेशनों द्वारा उपयोग किया जाता है।","Join 2000+ professionals who\'ve upgraded their workflow":"अपने वर्कफ्लो को अपग्रेड कर चुके 2000+ पेशेवरों में शामिल हों","Join thousands of happy users who love Flowchart Fun":"हजारों खुश उपयोगकर्ताओं के साथ शामिल हों जो Flowchart Fun से प्यार करते हैं","Keep Things Private":"चीजों को निजी रखें","Keep changes?":"परिवर्तन रखें?","Keep practicing":"अभ्यास जारी रखें","Keep your data private on your computer":"अपने डेटा को अपने कंप्यूटर पर निजी रखें","Language":"भाषा","Layout":"रूपरेखा","Layout Algorithm":"लेआउट एल्गोरिदम","Layout Frozen":"लेआउट फ्रोज़न","Leading References":"प्रमुख संदर्भ","Learn More":"और अधिक जानें","Learn Syntax":"सिंटैक्स सीखें","Learn about Flowchart Fun Pro":"Flowchart Fun Pro के बारे में जानें","Left to Right":"बाएं से दाएं","Let us know why you\'re canceling. We\'re always looking to improve.":"हमें बताएं कि आप क्यों रद्द कर रहे हैं। हम हमेशा सुधार करने की कोशिश कर रहे हैं।","Light":"लाइट","Light Mode":"लाइट मोड","Link":"लिंक","Link back":"वापस लिंक करें","Load":"लोड","Load Chart":"चार्ट लोड करें","Load File":"फ़ाइल लोड करें","Load Files":"फ़ाइलें लोड करें","Load default content":"डिफ़ॉल्ट सामग्री लोड करें","Load from link?":"लिंक से लोड करें?","Load layout and styles":"लोड लेआउट और शैलियां","Loading...":"लोड हो रहा है...","Local File Support":"स्थानीय फ़ाइल समर्थन","Local saving for offline access":"ऑफ़लाइन उपयोग के लिए स्थानीय सहेजना","Lock Zoom to Graph":"ग्राफ पर जूम लॉक करें","Log In":"लॉग इन करें","Log Out":"लॉग आउट","Log in to Save":"सेव में लॉग इन करें","Log in to upgrade your account":"अपने खाते को अपग्रेड करने के लिए लॉग इन करें","Made by <0>Tone\xA0Row0>":"<0>टोन रो0> द्वारा बनाया गया है","Make a One-Time Donation":"एक बार दान करें","Make it yours":"अपना बनाएं","Make publicly accessible":"सार्वजनिक रूप से एक्सेस दें","Manage Billing":"बिलिंग प्रबंधित करें","Map Data":"डेटा मैप","Maximum width of text inside nodes":"नोड्स के अंदर टेक्स्ट की अधिकतम चौड़ाई","Monthly":"मासिक","More from Tone Row":"टोन रो से अधिक","More from Tone Row:":"टोन रो से अधिक:","More tools:":"अधिक उपकरण:","Move":"चलो","Move {0}":["चलो ",["0"]],"Multiple pointers on same line":"एक ही लाइन पर कई प्रतीक","My dog ate my credit card!":"मेरा कुत्ता मेरा क्रेडिट कार्ड खा गया!","Name":"नाम","Name Chart":"चार्ट का नाम","Name your chart":"अपने चार्ट को नाम दें","New":"नया","New Email":"नई ईमेल","New Flowchart":"नया फ्लोचार्ट","New Folder":"नया फोल्डर","Next charge":"अगला चार्ज","No Edges":"कोई किनारे नहीं","No Folder (Root)":"कोई फोल्डर नहीं (मूल)","No Watermarks!":"कोई वॉटरमार्क्स नहीं!","No charts yet":"अभी तक कोई चार्ट नहीं","No items in this folder":"इस फोल्डर में कोई आइटम नहीं","No matching charts found":"कोई मिलते जुलते चार्ट नहीं मिले","Node Border Style":"नोड सीमा शैली","Node Colors":"नोड रंग","Node ID":"नोड आईडी","Node ID, Classes, Attributes":"नोड आईडी, वर्ग, गुण","Node Label":"नोड लेबल","Node Shape":"नोड आकार","Node Shapes":"नोड आकार","Nodes":"नोड्स","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"नोड्स को डैश्ड, डॉट्ड, या डबल के साथ शैलीयित किया जा सकता है। सीमाओं को बॉर्डर_नोन के साथ हटाया जा सकता है।","Not Empty":"खाली नहीं","Now you\'re thinking with flowcharts!":"अब आप फ्लोचार्ट के साथ सोच रहे हैं!","Office Hours":"कार्यालय अवधि","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"कभी-कभी मैजिक लिंक आपके स्पैम फोल्डर में खत्म हो जाता है। अगर आप कुछ मिनट बाद उसे नहीं देख रहे हैं, तो वहां जाकर देखें या एक नया लिंक अनुरोध करें।","One on One Support":"एक प्रति एक समर्थन","One-on-One Support":"एक-पर-एक समर्थन","Open Customer Portal":"ग्राहक पोर्टल खोलें","Operation canceled":"ऑपरेशन रद्द किया गया है","Or maybe blue!":"या शायद नीला!","Organization Chart":"संगठन चार्ट","PNG & JPG export":"PNG और JPG निर्यात","Padding":"पैडिंग","Page not found":"पृष्ठ नहीं मिला","Password":"पासवर्ड","Past Due":"पिछले दौरान","Paste a document to convert it":"एक दस्तावेज़ को पेस्ट करें और उसे रूपांतरित करें","Paste your document or outline here to convert it into an organized flowchart.":"अपने दस्तावेज़ या रूपरेखा को यहां पेस्ट करें ताकि इसे एक व्यवस्थित फ्लोचार्ट में बदला जा सके।","Pasted content detected. Convert to Flowchart Fun syntax?":"पेस्ट की गई सामग्री का पता लगाया गया है। फ्लोचार्ट फन सिंटैक्स में रूपांतरित करें?","Perfect for docs and quick sharing":"दस्तावेज़ और त्वरित साझाकरण के लिए उपयुक्त","Permanent Charts are a Pro Feature":"स्थायी चार्ट एक प्रो सुविधा हैं","Playbook":"प्लेबुक","Pointer and container on same line":"प्रतीक और कंटेनर एक ही लाइन पर","Pricing":"मूल्य निर्धारण","Priority One-on-One Support":"प्राथमिकता वाला एक-से-एक समर्थन","Priority support":"प्राथमिकता समर्थन","Privacy Policy":"गोपनीयता नीति ","Pro starts at $4/mo billed yearly. Cancel anytime.":"प्रो शुरू होता है $4/माह वार्षिक बिल किया जाता है। कभी भी रद्द करें।","Pro tip: Right-click any node to customize its shape and color":"प्रो टिप: किसी भी नोड पर दायां-तीर क्लिक करें और उसकी आकृति और रंग को अनुकूलित करें।","Processing Data":"डेटा प्रसंस्करण","Processing...":"प्रसंस्करण हो रहा है...","Prompt":"प्रश्न","Public":"पब्लिक","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"विशियो, लुसिडचार्ट, सीएसवी से डेटा लाएं या टेम्पलेट से शुरू करें। पहले से मौजूद चीज़ों को दोहराना नहीं।","Quick experimentation space that resets daily":"रोजाना रीसेट होने वाला त्वरित प्रयोग क्षेत्र","Random":"अनियमित","Rapid Deployment Templates":"त्वरित डिप्लॉयमेंट टेम्पलेट्स","Rapid Templates":"त्वरित टेम्पलेट्स","Raster Export (PNG, JPG)":"रास्टर निर्यात (PNG, JPG)","Rate limit exceeded. Please try again later.":"रेट लिमिट पार हो गई है। कृपया बाद में पुनः प्रयास करें।","Read-only":"केवल पढ़ने के लिए","Reference by Class":"क्लास के द्वारा संदर्भ","Reference by ID":"आईडी द्वारा संदर्भ","Reference by Label":"लेबल द्वारा संदर्भ","References":"संदर्भ","References are used to create edges between nodes that are created elsewhere in the document":"संदर्भ दस्तावेज के अन्य भागों में बनाए गए नोड्स के बीच कड़ियाँ बनाने के लिए उपयोग किए जाते हैं","Referencing a node by its exact label":"सटीक लेबल द्वारा नोड का संदर्भ करना","Referencing a node by its unique ID":"अद्वितीय आईडी द्वारा नोड का संदर्भ करना","Referencing multiple nodes with the same assigned class":"एक ही निर्धारित कक्षा के साथ कई नोड का उल्लेख करना","Refresh Page":"पृष्ठ को ताज़ा करें","Reload to Update":"अपडेट करने के लिए रीलोड करें","Rename":"फिर से नाम बदलें","Rename {0}":["नाम बदलें ",["0"]],"Request Magic Link":"अनुरोध जादू लिंक","Request Password Reset":"पासवर्ड रीसेट का अनुरोध करें","Reset":"रीसेट करें","Reset Password":"पासवर्ड रीसेट करें","Resume Subscription":"सदस्यता फिर से शुरू करें","Return":"वापसी","Right to Left":"दाएं से बाएं","Right-click nodes for options":"विकल्पों के लिए नोड को दायां-बांयां क्लिक करें","Roadmap":"रोडमैप","Rotate Label":"लेबल को घुमाएँ","SVG Export is a Pro Feature":"SVG निर्यात एक प्रो सुविधा है","SVG, PDF & all export formats":"SVG, पीडीएफ और सभी निर्यात प्रारूप","Satisfaction guaranteed or first payment refunded":"संतुष्टि की गारंटी या पहली भुगतान की राशि वापस कर दी जाएगी","Save":"सहेजें","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"स्थानीय रूप से सहेजें, ऑफ़लाइन में काम करें, और साफ़ करें कि कौन क्या देख सकता है। जब तक आप नहीं कहते, कोई डेटा आपकी मशीन से बाहर नहीं जाता है।","Save time with AI and dictation, making it easy to create diagrams.":"एआई और बोलने की सुविधा के साथ समय बचाएं, जो आसान डायग्राम बनाने को बनाता है।","Save to Cloud":"क्लौड में सेव करें","Save to File":"फाइल में सेव करें","Save your Work":"अपनी कार्यवाही सुरक्षित करें","Schedule personal consultation sessions":"निजी परामर्श सत्रों की अनुसूची बनाएं","Secure payment":"सुरक्षित भुगतान","See more reviews on Product Hunt":"Product Hunt पर अधिक समीक्षा देखें","See what\'s possible":"क्या संभव है देखें","Select a destination folder for \\"{0}\\".":"के लिए एक लक्षित फोल्डर का चयन करें \\\\","Send us a message":"हमें एक संदेश भेजें","Set a consistent height for all nodes":"सभी नोड्स के लिए एक समान ऊंचाई सेट करें","Settings":"सेटिंग","Share":"साझा करें","Sign In":"साइन इन करें","Sign in with <0>GitHub0>":"<0>GitHub0> के साथ साइन इन करें","Sign in with <0>Google0>":"<0>Google0> के साथ साइन इन करें","Sorry! This page is only available in English.":"माफ़ करें! यह पेज केवल अंग्रेजी में उपलब्ध है।","Sorry, there was an error converting the text to a flowchart. Try again later.":"क्षमा करें, टेक्स्ट को फ्लोचार्ट में रूपांतरित करने में एक त्रुटि हुई। बाद में पुनः प्रयास करें।","Sort Ascending":"आरोही क्रम में छाँटें","Sort Descending":"अवरोहण करें","Sort by {0}":[["0"]," द्वारा क्रमबद्ध करें"],"Source Arrow Shape":"स्रोत तीर आकार","Source Column":"स्रोत स्तंभ","Source Delimiter":"स्रोत डिलिमिटर","Source Distance From Node":"नोड से स्रोत दूरी","Source/Target Arrow Shape":"स्रोत / लक्ष्य तीर आकार","Spacing":"अंतराल","Special Attributes":"विशेष गुण","Start":"शुरू","Start Over":"शुरू करें","Start faster with use-case specific templates":"उपयोग मामले विशिष्ट टेम्पलेट के साथ तेजी से शुरू करें","Start for free":"मुफ़्त शुरू करें","Status":"स्टेटस","Step 1":"कदम 1","Step 2":"कदम 2","Step 3":"कदम 3","Store any data associated to a node":"किसी नोड से संबंधित किसी भी डेटा स्टोर करें","Style Classes":"शैली क्लासेज","Style with classes":"क्लासेस के साथ स्टाइल","Submit":"भेजना","Subscription":"सदस्यता","Subscription Successful!":"सदस्यता सफल हुआ!","Subscription will end":"सदस्यता समाप्त हो जाएगी","Support":"समर्थन","Target Arrow Shape":"लक्ष्य तीर आकार","Target Column":"लक्ष्य कॉलम","Target Delimiter":"लक्ष्य डेलीमीटर","Target Distance From Node":"नोड से लक्ष्य दूरी","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"एआई को सादा अंग्रेजी में बताएं कि आपको क्या चाहिए। आपका डायग्राम कुछ ही सेकंड में बन जाएगा।","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"हमें बताएं कि क्या काम कर रहा है और क्या नहीं। हर संदेश डेवलपर द्वारा पढ़ा जाता है।","Text Color":"पाठ रंग","Text Horizontal Offset":"टेक्स्ट की क्षैतिज ओफसेट","Text Leading":"पाठ प्रमुख","Text Max Width":"टेक्स्ट की अधिकतम चौड़ाई","Text Vertical Offset":"पाठ लंबाई ऑफसेट","Text followed by colon+space creates an edge with the text as the label":"स्क्लीन के बाद कोलन + स्पेस एक किरदार बनाता है जिसका पाठ लेबल है","Text on a line creates a node with the text as the label":"एक पंक्ति पर पाठ एक नोड बनाता है जिसका पाठ लेबल है","Thank you for your feedback!":"आपके फ़ीडबैक के लिए धन्यवाद!","The beauty and magic reside in the minimalism.":"सुंदरता और जादू संक्षेपता में हैं।","The best way to change styles is to right-click on a node or an edge and select the style you want.":"शैलीयित करने के लिए सर्वश्रेष्ठ तरीका नोड या एड्ज पर राइट-क्लिक करके आपके द्वारा चाहिए शैली का चयन करना है।","The column that contains the edge label(s)":"कॉलम जो एड्ज लेबल (ओं) को शामिल करता है","The column that contains the source node ID(s)":"कॉलम जो स्रोत नोड आईडी (ओं) को शामिल करता है","The column that contains the target node ID(s)":"कॉलम जो लक्ष्य नोड आईडी (ओं) को शामिल करता है","The delimiter used to separate multiple source nodes":"कई स्रोत नोड्स को अलग करने के लिए उपयोग किया गया डिलिमिटर","The delimiter used to separate multiple target nodes":"कई लक्ष्य नोड्स को अलग करने के लिए उपयोग किया गया डिलिमिटर","The fastest way to turn what\'s in your head into something everyone else can understand.":"अपने दिमाग में क्या है उसे कुछ ऐसा बनाएं कि सभी उसे समझ सकें।","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"फ्री प्लान दैनिक उपयोग के लिए बहुत अच्छा काम करता है। अगर आपको प्रो फीचर्स की आवश्यकता है, तो महीने-ब्य-महीने $6 का खर्चा होगा - कोई बाध्यता के साथ कभी भी रद्द कर सकते हैं।","The possible shapes are:":"संभव आकृतियाँ हैं:","Theme":"थीम","Theme Customization Editor":"थीम कस्टमाइज़ेशन संपादक","Theme Editor":"थीम संपादक","Theme editor":"थीम संपादक","There are no edges in this data":"इस डेटा में कोई एड्ज नहीं है","This action cannot be undone.":"इस क्रिया को पूर्ववत नहीं किया जा सकता।","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"यह सुविधा केवल प्रो उपयोगकर्ताओं के लिए उपलब्ध है। <0>प्रो उपयोगकर्ता बनें0> इसे अनलॉक करने के लिए।","This may take between 30 seconds and 2 minutes depending on the length of your input.":"आपके इनपुट की लंबाई के आधार पर, यह 30 सेकंड से 2 मिनट तक लग सकता है।","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"यह सैंडबॉक्स प्रयोग करने के लिए परफेक्ट है, लेकिन ध्यान रखें - यह दैनिक रूप से रीसेट होता है। अभी अपग्रेड करें और अपना वर्तमान काम रखें!","This will replace the current content.":"यह वर्तमान सामग्री को बदल देगा।","This will replace your current chart content with the template content.":"यह आपके मौजूदा चार्ट की सामग्री को टेम्पलेट की सामग्री से बदल देगा।","This will replace your current sandbox.":"यह आपके वर्तमान सैंडबॉक्स को बदल देगा।","Time to decide":"फैसला लेने का समय","Tip":"सुझाव","To fix this change one of the edge IDs":"इसे ठीक करने के लिए एड्ज आईडी के एक को बदलें","To fix this change one of the node IDs":"इसे ठीक करने के लिए नोड आईडी के एक को बदलें","To fix this move one pointer to the next line":"इसे ठीक करने के लिए प्रतीक को अगली पंक्ति पर ले जाएं","To fix this start the container <0/> on a different line":"इसे ठीक करने के लिए कंटेनर <0/> को एक अलग पंक्ति पर शुरू करें","To learn more about why we require you to log in, please read <0>this blog post0>.":"हमें आपको लॉगिन करने के लिए आवश्यक क्यों है, कृपया <0>यह ब्लॉग पोस्ट0> पढ़ें।","Top to Bottom":"ऊपर से नीचे","Transform Your Ideas into Professional Diagrams in Seconds":"अपने विचारों को सेकंड में प्रोफेशनल डायरेक्टरी में रूपांतरित करें","Transform text into diagrams instantly":"पाठ को तुरंत आरेख में बदलें","Try AI":"एआई को आजमाएं","Try adjusting your search or filters to find what you\'re looking for.":"अपनी खोज या फ़िल्टरों को समायोजित करने का प्रयास करें ताकि आप जो ढूंढ रहे हैं उसे ढूंढ सकें।","Try again":"फिर से कोशिश करें","Try it free":"इसे मुफ्त में आज़माएं","Turn documents into diagrams with AI":"एआई के साथ दस्तावेज़ों को आरेखण में बदलें","Two edges have the same ID":"दो किनारे उसी आईडी के हैं","Two nodes have the same ID":"दो नोड उसी आईडी के हैं","Type it. See it.":"इसे टाइप करें। देखें।","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"उह ओह, आपके पास मुफ्त अनुरोधों की सीमा पूरी हो गई है! असीमित डायग्राम परिवर्तन के लिए Flowchart Fun Pro पर अपग्रेड करें, और पाठ को स्पष्ट, दृश्यमान फ्लोचार्ट में आसानी से कॉपी और पेस्ट करते रहें।","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"60 सेकंड से कम समय में। कुछ पंक्तियां टाइप करें या AI को बताएं, और आपका आरेख तुरंत दिखाई देगा। एक क्लिक से निर्यात या साझा करें।","Undo":"वापस ले जाएं","Unescaped special character":"अस्केप्ड विशेष वर्ण","Unique text value to identify a node":"एक नोड को पहचानने के लिए अद्वितीय पाठ मूल्य","Unknown":"अज्ञात","Unknown Parsing Error":"अज्ञात पार्सिंग त्रुटि","Unlimited Flowcharts":"असीमित फ्लोचार्ट्स","Unlimited Permanent Flowcharts":"असीमित स्थायी प्रवाहगतीं ","Unlimited cloud-saved flowcharts":"असीमित क्लाउड-सहेजे फ्लोचार्ट्स","Unlimited saved diagrams":"असीमित सहेजे गए आरेख","Unlock AI Features and never lose your work with a Pro account.":"प्रो खाते से AI फीचर्स खोलें और कभी भी अपना काम न खोएं।","Unlock Unlimited AI Flowcharts":"असीमित AI फ्लोचार्ट्स को अनलॉक करें","Unpaid":"अवैतनिक","Update Email":"ईमेल अपडेट करें","Updated Date":"अपडेट की गई तारीख","Upgrade Now - Save My Work":"अपग्रेड करें अब - मेरा काम सहेजें","Upgrade to Flowchart Fun Pro and unlock:":"फ्लोचार्ट फन प्रो पर अपग्रेड करें और अनलॉक करें:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"असीमित होस्ट किए गए आरेखण, जल-छाप मुक्त उच्च रिज़ॉल्यूशन निर्यात, एआई संपादन, और अधिक के लिए फ्लोचार्ट फन प्रो पर अपग्रेड करें। $4/माह वार्षिक बिल किया जाता है।","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"अपने डायग्राम के लिए एसवीजी निर्यात और अधिक उन्नत सुविधाओं का आनंद लेने के लिए फ्लोचार्ट फन प्रो पर अपग्रेड करें।","Upgrade to Pro":"प्रो को अपग्रेड करें","Upgrade to Pro for permanent charts.":"प्रो अपग्रेड करें और स्थायी चार्ट प्राप्त करें।","Upload your File":"अपनी फाइल अपलोड करें","Use Custom CSS Only":"केवल कस्टम CSS का उपयोग करें","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"क्या आप Lucidchart या Visio का उपयोग करते हैं? CSV आयात किसी भी स्रोत से डेटा प्राप्त करने को आसान बनाता है!","Use classes to group nodes":"नोड्स को समूहों में सम्मिलित करने के लिए वर्ग उपयोग करें","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"नोड पर एक लिंक सेट करने के लिए गुण <0>href0> उपयोग करें जो एक नये टैब में खुलेगा।","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"नोड की छवि सेट करने के लिए <0>src0> गुण का उपयोग करें। छवि नोड के आकार में स्केल की जाएगी, इसलिए आपको आवश्यक प्रतिस्थापित करने के लिए नोड की चौड़ाई और ऊँचाई को समायोजित करना होगा। केवल सार्वजनिक छवियाँ (CORS द्वारा ब्लॉक नहीं की गई) समर्थित हैं।","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"नोड की विशिष्ट चौड़ाई और ऊँचाई सेट करने के लिए <0>w0> और <1>h1> गुण का उपयोग करें।","Use the customer portal to change your billing information.":"अपनी बिलिंग जानकारी बदलने के लिए ग्राहक पोर्टल का उपयोग करें।","Use these settings to adapt the look and behavior of your flowcharts":"अपने फ्लोचार्ट की दिखता और व्यवहार को अनुकूलित करने के लिए इन सेटिंग्स का उपयोग करें","Use this file for org charts, hierarchies, and other organizational structures.":"संगठनात्मक चार्ट, पदानुक्रमों और अन्य संगठनात्मक संरचनाओं के लिए इस फ़ाइल का उपयोग करें।","Use this file for sequences, processes, and workflows.":"अनुक्रमों, प्रक्रियाओं और कार्यप्रवाहों के लिए इस फ़ाइल का उपयोग करें।","Use this mode to modify and enhance your current chart.":"अपने मौजूदा चार्ट को संशोधित और सुधारित करने के लिए इस मोड का उपयोग करें।","Used at":"इस्तेमाल किया गया","User":"यूज़र","Vector Export (SVG)":"वेक्टर निर्यात (SVG)","View on Github":"Github पर देखें","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"क्या आप एक दस्तावेज़ से फ्लोचार्ट बनाना चाहते हैं? संपादक में इसे पेस्ट करें और \'फ्लोचार्ट में परिवर्तित करें\' पर क्लिक करें।","Watermark-Free Diagrams":"वॉटरमार्क-मुक्त आरेख","Watermarks":"वॉटरमार्क","Welcome to Flowchart Fun":"फ्लोचार्ट फन में आपका स्वागत है","What if I just need it for one project?":"क्या मुझे केवल एक प्रोजेक्ट के लिए ही इसकी आवश्यकता है?","What our users are saying":"हमारे उपयोगकर्ताओं के क्या कहने हैं","What\'s next?":"अगला क्या है?","What\'s this?":"यह क्या है?","Width":"चौड़ाई","Width and Height":"चौड़ाई और ऊँचाई","Will my diagrams actually look professional?":"क्या मेरे डायग्राम वास्तव में पेशेवर दिखेंगे?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"फ्लोचार्ट फन के प्रो संस्करण के साथ, आप प्राकृतिक भाषा के आदेशों का उपयोग करके अपने फ्लोचार्ट विवरणों को त्वरित रूप से समाप्त कर सकते हैं, यात्रा पर आरेख बनाने के लिए आदर्श। $6/महीने के लिए, अपने फ्लोचार्टिंग अनुभव को बढ़ाने के लिए पहुंचने योग्य AI संपादन की सुविधा प्राप्त करें।","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"प्रो संस्करण के साथ आप स्थानीय फ़ाइलों को सहेज और लोड कर सकते हैं। यह ऑफ़लाइन काम से जुड़े दस्तावेज़ों को प्रबंधित करने के लिए उपयुक्त है।","Would you like to continue?":"क्या आप जारी रखना चाहते हैं?","Would you like to suggest a new example?":"क्या आप एक नया उदाहरण सुझाना चाहेंगे?","Wrap text in parentheses to connect to any node":"किसी भी नोड से जुड़ने के लिए ब्रैकेट में लिखें","Write like an outline":"आउटलाइन की तरह लिखें","Write your prompt here or click to enable the microphone, then press and hold to record.":"अपना प्रॉम्प्ट यहां लिखें या माइक्रोफोन को सक्षम करने के लिए क्लिक करें, फिर रिकॉर्ड करने के लिए दबाएं और रखें।","Yearly":"वार्षिक","Yes — send us a message and we\'ll set you up with a discounted rate.":"हाँ - हमें एक संदेश भेजें और हम आपको छूट दर से सेट कर देंगे।","Yes, Replace Content":"हाँ, सामग्री को बदलें","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"हाँ। हर डायग्राम बैलेंस्ड, स्वचालित लेआउट का उपयोग करता है जो साफ टाइपोग्राफी के साथ होता है। आप थीम, रंग और स्टाइल को अनुकूलित कर सकते हैं - और क्रिस्प SVG या हाई-रेज़ोल्यूशन PNG के रूप में निर्यात कर सकते हैं जो किसी भी प्रस्तुति या दस्तावेज़ में बेहतर दिखता है।","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"हाँ। प्रो विशियो, लुसिडचार्ट और सीएसवी से आयात का समर्थन करता है - इसलिए आप उसे बिना एकदम से फिर से बनाए बिना अपने पास लाए सकते हैं।","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"हाँ। आप स्थानीय रूप से फ़ाइलें सहेज सकते हैं, पूरी तरह से ऑफ़लाइन काम कर सकते हैं, और अपनी डायग्राम को किसी भी व्यक्ति को दिखाने के लिए नियंत्रित कर सकते हैं। डेटा आपकी मशीन से नहीं जाता है जब तक आप शेयर करने के लिए नहीं चुनते हैं।","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["आप अपने ग्राफ में ",["numNodes"]," नोड्स और ",["numEdges"]," एड्ज़ जोड़ने वाले हैं।"],"You need to log in to access this page.":"इस पृष्ठ तक पहुँचने के लिए आपको लॉग इन करना होगा।","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"आप पहले से ही एक प्रो उपयोगकर्ता हैं। <0>सदस्यता प्रबंधित करें0><1/>क्या आपके पास कोई सवाल या सुविधा अनुरोध है? <2>हमें बताएं2>","You\'re doing great!":"आप बहुत अच्छा कर रहे हैं!","You\'re on the free plan.":"आप मुफ़्त योजना पर हैं।","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"आपने अपने सभी नि: शुल्क एआई रूपांतरण का उपयोग किया है। असीमित एआई उपयोग, कस्टम थीम, निजी साझाकरण और अधिक के लिए प्रो पर अपग्रेड करें। अब आसानी से शानदार फ्लोचार्ट बनाते रहें!","Your Charts":"आपके चार्ट","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"आपका सैंडबॉक्स हमारी फ्लोचार्ट टूल के साथ निःशुल्क प्रयोग करने के लिए एक स्थान है, जो हर दिन एक नए शुरुआत के लिए रीसेट होता है।","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"आपके चार्ट रीड-ओनली हैं क्योंकि आपका खाता अब सक्रिय नहीं है। अपने <0>खाता0> पेज पर जाकर अधिक जानकारी प्राप्त करें।","Your next diagram should be your best one.":"आपकी अगली डायग्राम आपकी सबसे अच्छी होनी चाहिए।","Your subscription is <0>{statusDisplay}0>.":["आपका सदस्यता <0>",["statusDisplay"],"0> है।"],"Your work stays yours":"आपका काम आपका ही रहता है।","Zoom In":"ज़ूम इन करें","Zoom Out":"आउट ज़ूम करें","month":"महीना","or":"या","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/hi/messages.po b/app/src/locales/hi/messages.po
index df7ae36bb..de73cd954 100644
--- a/app/src/locales/hi/messages.po
+++ b/app/src/locales/hi/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "$48/वर्ष (33% बचाएं) · कभी भी रद्द करें"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "$6/महीना"
@@ -25,7 +25,7 @@ msgstr "$6/महीना"
msgid "1 Temporary Flowchart"
msgstr "1 अस्थायी फ्लोचार्ट"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "एक डायग्राम एक समय में"
@@ -33,7 +33,7 @@ msgstr "एक डायग्राम एक समय में"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>कस्टम CSS केवल0> सक्षम है। केवल लेआउट और एडवांस्ड सेटिंग्स लागू की जाएगी।"
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0> <1>Tone Row1> द्वारा बनाई गई एक खुला स्रोत परियोजना है "
@@ -49,7 +49,7 @@ msgstr "एप्प का एक नया वर्जन उपलब्ध
msgid "AI Creation & Editing"
msgstr "एआई निर्माण और संपादन"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "एआई उत्पादन और संपादन"
@@ -57,7 +57,7 @@ msgstr "एआई उत्पादन और संपादन"
msgid "AI-Powered Flowchart Creation"
msgstr "एआई-पावर्ड फ्लोचार्ट निर्माण"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "एआई द्वारा सादा पाठ से 5 सेकंड के अंदर उत्पन्न किया गया।"
@@ -65,12 +65,12 @@ msgstr "एआई द्वारा सादा पाठ से 5 सेक
msgid "AI-powered editing to supercharge your workflow"
msgstr "एआई पावर्ड संपादन आपके वर्कफ्लो को तेज करने के लिए"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "के बारे में"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "खाता"
@@ -106,7 +106,7 @@ msgstr "ऊपर-नीचे सारी तरफ"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "सिर्फ $6/महीने में यह सब - आपके दैनिक कॉफ़ी से कम ☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "हमेशा प्रस्तुति के लिए तैयार"
@@ -118,7 +118,7 @@ msgstr "रकम"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "एक एरर हो गया. फिर से सबमिट करने की कोशिश करें या सीधे {0} ईमेल करें."
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "दिखावट"
@@ -170,11 +170,11 @@ msgstr "पृष्ठभूमि रंग"
msgid "Basic Flowchart"
msgstr "बेसिक फ्लोचार्ट"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "गिटहब स्पॉन्सर बनें"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "प्रो उपयोगकर्ता बनें"
@@ -191,8 +191,8 @@ msgstr "वार्षिक रूप से $48 का बिल बनाय
msgid "Billed monthly at $6"
msgstr "मासिक रूप से $6 पर बिल किया जाता है"
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "ब्लॉग"
@@ -260,14 +260,14 @@ msgstr "कुछ गुण तत्वों की दिखता या क
msgid "Change Email Address"
msgstr "ईमेल पता बदलें"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "बदलाव का"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "चार्ट"
@@ -346,7 +346,7 @@ msgstr "स्तंभ"
msgid "Comment"
msgstr "टिप्पणी"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "समुदाय टेम्पलेट"
@@ -403,7 +403,7 @@ msgstr "फ्लोचार्ट में बदलें"
msgid "Convert to hosted chart?"
msgstr "होस्टेड चार्ट में कनवर्ट करें?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "कुकी नीति"
@@ -500,7 +500,7 @@ msgstr "कस्टम CSS"
msgid "Custom Sharing Options"
msgstr "कस्टम शेयरिंग विकल्प"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "कस्टम साझा करने और सार्वजनिक लिंक"
@@ -516,8 +516,8 @@ msgstr "दैनिक सैंडबॉक्स संपादक"
msgid "Dark"
msgstr "डार्क"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "डार्क मोड"
@@ -542,11 +542,11 @@ msgstr "हटाएँ"
msgid "Delete {0}"
msgstr "हटाएँ {0}"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "इसे वर्णन करें और वह दिखाई देगा"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "अपनी विचारों का वर्णन करें। प्रस्तुत करने योग्य आरेख प्राप्त करें।"
@@ -696,8 +696,8 @@ msgstr "एआई के साथ संपादित करें"
msgid "Editable"
msgstr "संपादन योग्य"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "संपादक"
@@ -742,7 +742,7 @@ msgstr "नीचे अपना ईमेल पता दर्ज करे
msgid "Equal To"
msgstr "बराबर"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "हर चित्र ताजगी से PNG, SVG या साझा करने योग्य लिंक के रूप में निर्यात किया जाता है - मीटिंग, दस्तावेज़, या डेक के लिए तैयार है।"
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "विशेषता विभाजन"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "फ़ीडबैक"
@@ -823,11 +823,15 @@ msgstr "निर्धारित नोड ऊंचाई"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "फ्लोचार्ट फन प्रो आपको सिर्फ $6/महीने में असीमित फ्लोचार्ट, असीमित सहयोगी और असीमित स्टोरेज प्रदान करता है।"
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "फ्लोचार्ट फन एक ओपन सोर्स प्रोजेक्ट है जो <0>टोन रो0> द्वारा बनाया गया है"
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "फ्लोचार्ट फन एक डेवलपर द्वारा बनाया और रखा जाता है। आपका समर्थन इसे चलाने में सहायता करता है।"
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "हमारे साथ ट्विटर पर फॉलो करें"
@@ -909,6 +913,10 @@ msgstr "हरा?"
msgid "Grid"
msgstr "ग्रिड"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "समूह रैंकिंग और रैंक चुनाव, मुफ्त"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "जटिल सवाल या समस्याएं हैं? हम यहां आपकी मदद के लिए हैं।"
@@ -980,7 +988,7 @@ msgstr "किसी भी CSV फ़ाइल से डेटा आयात
msgid "Import from CSV"
msgstr "CSV से आयात करें"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "विसियो, लुसिडचार्ट, सीएसवी से आयात करें"
@@ -988,7 +996,7 @@ msgstr "विसियो, लुसिडचार्ट, सीएसवी
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "Visio, Lucidchart और CSV से आयात करें"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "कहीं से आयात करें"
@@ -1012,7 +1020,7 @@ msgstr "एक <0>title0> विशेषता का उपयोग कर
msgid "Indent to connect nodes"
msgstr "नोड को जोड़ने के लिए इंडेंट करें"
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "जानकारी"
@@ -1052,7 +1060,7 @@ msgstr "अभ्यास जारी रखें"
msgid "Keep your data private on your computer"
msgstr "अपने डेटा को अपने कंप्यूटर पर निजी रखें"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "भाषा"
@@ -1101,8 +1109,8 @@ msgstr "हमें बताएं कि आप क्यों रद्द
msgid "Light"
msgstr "लाइट"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "लाइट मोड"
@@ -1160,8 +1168,8 @@ msgstr "ऑफ़लाइन उपयोग के लिए स्थान
msgid "Lock Zoom to Graph"
msgstr "ग्राफ पर जूम लॉक करें"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "लॉग इन करें"
@@ -1177,11 +1185,15 @@ msgstr "सेव में लॉग इन करें"
msgid "Log in to upgrade your account"
msgstr "अपने खाते को अपग्रेड करने के लिए लॉग इन करें"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "<0>टोन रो0> द्वारा बनाया गया है"
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "एक बार दान करें"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "अपना बनाएं"
@@ -1205,6 +1217,18 @@ msgstr "नोड्स के अंदर टेक्स्ट की अध
msgid "Monthly"
msgstr "मासिक"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "टोन रो से अधिक"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "टोन रो से अधिक:"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "अधिक उपकरण:"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "चार्ट का नाम"
msgid "Name your chart"
msgstr "अपने चार्ट को नाम दें"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "नया"
@@ -1363,7 +1387,7 @@ msgstr "या शायद नीला!"
msgid "Organization Chart"
msgstr "संगठन चार्ट"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "PNG और JPG निर्यात"
@@ -1412,21 +1436,25 @@ msgstr "प्लेबुक"
msgid "Pointer and container on same line"
msgstr "प्रतीक और कंटेनर एक ही लाइन पर"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "मूल्य निर्धारण"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "प्राथमिकता वाला एक-से-एक समर्थन"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "प्राथमिकता समर्थन"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "गोपनीयता नीति "
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "प्रो शुरू होता है $4/माह वार्षिक बिल किया जाता है। कभी भी रद्द करें।"
@@ -1451,7 +1479,7 @@ msgstr "प्रश्न"
msgid "Public"
msgstr "पब्लिक"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "विशियो, लुसिडचार्ट, सीएसवी से डेटा लाएं या टेम्पलेट से शुरू करें। पहले से मौजूद चीज़ों को दोहराना नहीं।"
@@ -1575,8 +1603,8 @@ msgstr "दाएं से बाएं"
msgid "Right-click nodes for options"
msgstr "विकल्पों के लिए नोड को दायां-बांयां क्लिक करें"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "रोडमैप"
@@ -1590,7 +1618,7 @@ msgstr "लेबल को घुमाएँ"
msgid "SVG Export is a Pro Feature"
msgstr "SVG निर्यात एक प्रो सुविधा है"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "SVG, पीडीएफ और सभी निर्यात प्रारूप"
@@ -1603,7 +1631,7 @@ msgstr "संतुष्टि की गारंटी या पहली
msgid "Save"
msgstr "सहेजें"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "स्थानीय रूप से सहेजें, ऑफ़लाइन में काम करें, और साफ़ करें कि कौन क्या देख सकता है। जब तक आप नहीं कहते, कोई डेटा आपकी मशीन से बाहर नहीं जाता है।"
@@ -1635,7 +1663,7 @@ msgstr "सुरक्षित भुगतान"
msgid "See more reviews on Product Hunt"
msgstr "Product Hunt पर अधिक समीक्षा देखें"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "क्या संभव है देखें"
@@ -1651,9 +1679,9 @@ msgstr "हमें एक संदेश भेजें"
msgid "Set a consistent height for all nodes"
msgstr "सभी नोड्स के लिए एक समान ऊंचाई सेट करें"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "सेटिंग"
@@ -1738,7 +1766,7 @@ msgstr "शुरू करें"
msgid "Start faster with use-case specific templates"
msgstr "उपयोग मामले विशिष्ट टेम्पलेट के साथ तेजी से शुरू करें"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "मुफ़्त शुरू करें"
@@ -1789,7 +1817,7 @@ msgstr "सदस्यता सफल हुआ!"
msgid "Subscription will end"
msgstr "सदस्यता समाप्त हो जाएगी"
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "समर्थन"
@@ -1812,7 +1840,7 @@ msgstr "लक्ष्य डेलीमीटर"
msgid "Target Distance From Node"
msgstr "नोड से लक्ष्य दूरी"
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "एआई को सादा अंग्रेजी में बताएं कि आपको क्या चाहिए। आपका डायग्राम कुछ ही सेकंड में बन जाएगा।"
@@ -1856,7 +1884,7 @@ msgstr "एक पंक्ति पर पाठ एक नोड बनात
msgid "Thank you for your feedback!"
msgstr "आपके फ़ीडबैक के लिए धन्यवाद!"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "सुंदरता और जादू संक्षेपता में हैं।"
@@ -1884,7 +1912,7 @@ msgstr "कई स्रोत नोड्स को अलग करने क
msgid "The delimiter used to separate multiple target nodes"
msgstr "कई लक्ष्य नोड्स को अलग करने के लिए उपयोग किया गया डिलिमिटर"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "अपने दिमाग में क्या है उसे कुछ ऐसा बनाएं कि सभी उसे समझ सकें।"
@@ -1911,7 +1939,7 @@ msgstr "थीम कस्टमाइज़ेशन संपादक"
msgid "Theme Editor"
msgstr "थीम संपादक"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "थीम संपादक"
@@ -2000,10 +2028,14 @@ msgstr "अपनी खोज या फ़िल्टरों को सम
msgid "Try again"
msgstr "फिर से कोशिश करें"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "इसे मुफ्त में आज़माएं"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "एआई के साथ दस्तावेज़ों को आरेखण में बदलें"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "दो किनारे उसी आईडी के हैं"
@@ -2012,7 +2044,7 @@ msgstr "दो किनारे उसी आईडी के हैं"
msgid "Two nodes have the same ID"
msgstr "दो नोड उसी आईडी के हैं"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "इसे टाइप करें। देखें।"
@@ -2057,7 +2089,7 @@ msgstr "असीमित स्थायी प्रवाहगतीं "
msgid "Unlimited cloud-saved flowcharts"
msgstr "असीमित क्लाउड-सहेजे फ्लोचार्ट्स"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "असीमित सहेजे गए आरेख"
@@ -2089,13 +2121,17 @@ msgstr "अपग्रेड करें अब - मेरा काम स
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "फ्लोचार्ट फन प्रो पर अपग्रेड करें और अनलॉक करें:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "असीमित होस्ट किए गए आरेखण, जल-छाप मुक्त उच्च रिज़ॉल्यूशन निर्यात, एआई संपादन, और अधिक के लिए फ्लोचार्ट फन प्रो पर अपग्रेड करें। $4/माह वार्षिक बिल किया जाता है।"
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "अपने डायग्राम के लिए एसवीजी निर्यात और अधिक उन्नत सुविधाओं का आनंद लेने के लिए फ्लोचार्ट फन प्रो पर अपग्रेड करें।"
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "प्रो को अपग्रेड करें"
@@ -2152,7 +2188,7 @@ msgstr "अनुक्रमों, प्रक्रियाओं और
msgid "Use this mode to modify and enhance your current chart."
msgstr "अपने मौजूदा चार्ट को संशोधित और सुधारित करने के लिए इस मोड का उपयोग करें।"
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "इस्तेमाल किया गया"
@@ -2164,7 +2200,7 @@ msgstr "यूज़र"
msgid "Vector Export (SVG)"
msgstr "वेक्टर निर्यात (SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "Github पर देखें"
@@ -2302,7 +2338,7 @@ msgstr "आपका सैंडबॉक्स हमारी फ्लोच
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "आपके चार्ट रीड-ओनली हैं क्योंकि आपका खाता अब सक्रिय नहीं है। अपने <0>खाता0> पेज पर जाकर अधिक जानकारी प्राप्त करें।"
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "आपकी अगली डायग्राम आपकी सबसे अच्छी होनी चाहिए।"
@@ -2310,7 +2346,7 @@ msgstr "आपकी अगली डायग्राम आपकी सब
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "आपका सदस्यता <0>{statusDisplay}0> है।"
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "आपका काम आपका ही रहता है।"
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "या"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/locales/ko/messages.js b/app/src/locales/ko/messages.js
index 3b18ea769..d5e1b2200 100644
--- a/app/src/locales/ko/messages.js
+++ b/app/src/locales/ko/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"연간 $48 (33% 할인) · 언제든지 취소 가능","$6/mo":"월 $6","1 Temporary Flowchart":"1 임시 플로차트","1 diagram at a time":"한 번에 1개의 다이어그램","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>사용자 정의 CSS만0>이 활성화되었습니다. 레이아웃과 고급 설정만 적용됩니다.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0>은 <1>Tone Row1>가 만든 오픈 소스 프로젝트입니다.","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>로그인0> / <1>회원가입1> 이메일과 비밀번호로","A new version of the app is available. Please reload to update.":"새로운 버전의 앱이 사용 가능합니다. 업데이트하려면 다시로드하십시오.","AI Creation & Editing":"AI 생성 및 편집","AI generation & editing":"AI 생성 및 편집","AI-Powered Flowchart Creation":"인공지능 기반 플로우차트 생성","AI-generated from plain text in under 5 seconds.":"일반 텍스트에서 5초 이내에 AI로 생성됨.","AI-powered editing to supercharge your workflow":"워크플로우를 강화하기 위한 AI 기반 편집 기능","About":"소개","Account":"계정","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"특수 문자 앞에는 역슬래시 (<0>\\\\0>)를 추가하세요: <1>(1>, <2>:2>, <3>#3>, 또는 <4>.4>","Add some steps":"몇 가지 단계를 추가하세요.","Advanced":"고급","Align Horizontally":"수평 정렬","Align Nodes":"노드 정렬하기","Align Vertically":"수직 정렬","All this for just $6/month - less than your daily coffee ☕":"하루 커피 값보다 저렴한 월 $6로 이 모든 것을 이용하세요 ☕","Always presentation-ready":"항상 프레젠테이션용으로 준비됨","Amount":"금액","An error occurred. Try resubmitting or email {0} directly.":["오류가 발생하였습니다. 다시 제출하거나 ",["0"],"으로 직접 이메일을 보내주십시오."],"Appearance":"외관","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"플로우차트를 삭제하시겠습니까?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"폴더를 삭제하시겠습니까?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"폴더를 복제하시겠습니까?","Are you sure?":"확실합니까?","Arrow Size":"화살표 크기","Attributes":"속성","August 2023":"2023년 8월","Back":"뒤로","Back To Editor":"편집기로 돌아가기","Background Color":"배경색","Basic Flowchart":"기본 플로우 차트","Become a Github Sponsor":"깃허브 스폰서가 되기","Become a Pro User":"프로 사용자가 되기","Begin your journey":"여정을 시작하세요.","Billed annually at $48":"매년 $48로 청구됩니다","Billed monthly at $6":"매달 $6에 청구됩니다.","Blog":"블로그","Book a Meeting":"미팅 예약","Border Color":"테두리 색","Border Width":"테두리 너비","Bottom to Top":"아래에서 위로","Breadthfirst":"폭 우선","Build your personal flowchart library":"개인용 플로우차트 라이브러리 만들기","Can I import my existing diagrams?":"기존 다이어그램을 가져올 수 있나요?","Cancel":"취소","Cancel anytime":"언제든 취소 가능","Cancel your subscription. Your hosted charts will become read-only.":"구독을 취소하십시오. 귀하의 호스트 차트가 읽기 전용이 됩니다.","Certain attributes can be used to customize the appearance or functionality of elements.":"일부 속성은 요소의 모양 또는 기능을 사용자 정의하기 위해 사용할 수 있습니다.","Change Email Address":"이메일 주소 변경","Changelog":"변경 로그","Charts":"차트","Check out the guide:":"가이드를 확인하세요:","Check your email for a link to log in.<0/>You can close this window.":"로그인할 링크가 들어있는 이메일을 확인하세요. 이 창은 닫을 수 있습니다.","Choose":"선택하세요","Choose Template":"템플릿 선택","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"에지의 소스와 목적지를 위한 다양한 화살표 모양을 선택합니다. 모양에는 삼각형, 삼각형-티, 원-삼각형, 삼각형-가위형, 삼각형-뒤곡선, 베이, 티, 사각형, 원, 다이아몬드, 쉐브론, 없음이 포함됩니다.","Choose how edges connect between nodes":"노드 간 연결 방식 선택","Choose how nodes are automatically arranged in your flowchart":"플로우차트에서 노드가 자동으로 정렬되는 방식을 선택하세요.","Circle":"원","Classes":"클래스","Clear":"지우다","Clear text?":"텍스트를 지우시겠습니까?","Clone":"클론","Clone Flowchart":"플로우차트 복제","Close":"닫기","Color":"색상","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"색상에는 빨강, 주황, 노랑, 파랑, 보라, 검정, 흰색, 회색이 포함됩니다.","Column":"열","Comment":"댓글 달기","Community templates":"커뮤니티 템플릿","Compare our plans and find the perfect fit for your flowcharting needs":"우리의 요금제를 비교하고 당신의 플로우차트 작성 요구에 맞는 완벽한 선택을 찾으세요","Concentric":"동심","Confirm New Email":"새 이메일 확인","Confirm your email address to sign in.":"로그인하려면 이메일 주소를 확인하세요.","Connect your Data":"데이터 연결","Containers":"컨테이너","Containers are nodes that contain other nodes. They are declared using curly braces.":"컨테이너는 다른 노드를 포함하는 노드입니다. 중괄호를 사용하여 선언됩니다.","Continue":"계속하기","Continue in Sandbox (Resets daily, work not saved)":"샌드박스에서 계속하기 (매일 초기화되며 작업은 저장되지 않음)","Controls the flow direction of hierarchical layouts":"계층적 레이아웃의 흐름 방향을 제어합니다.","Convert":"변환하기","Convert to Flowchart":"흐름도로 변환","Convert to hosted chart?":"호스팅 차트로 변환하시겠습니까?","Cookie Policy":"쿠키 정책","Copied SVG code to clipboard":"클립보드에 SVG 코드 복사","Copied {format} to clipboard":["클립보드에 ",["format"]," 복사"],"Copy":"복사","Copy PNG Image":"PNG 이미지 복사","Copy SVG Code":"SVG 코드 복사","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Excalidraw 코드를 복사해서 <0>excalidraw.com0>에 붙여넣어서 편집하세요. 이 기능은 실험적이며 모든 다이어그램과 작동하지 않을 수 있습니다. 버그를 발견하면 <1>알려주세요1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"mermaid.js 코드를 복사하거나 mermaid.js 라이브 편집기에서 직접 열어주세요.","Create":"만들기","Create Flowcharts using AI":"AI를 사용하여 플로차트를 만들어보세요","Create Unlimited Flowcharts":"무제한 플로차트 만들기","Create a New Chart":"새 차트 만들기","Create a flowchart showing the steps of planning and executing a school fundraising event":"학교 모금 행사를 계획하고 실행하는 단계를 보여주는 플로우차트를 작성하십시오.","Create a new flowchart to get started or organize your work with folders.":"새로운 플로우차트를 만들어 시작하거나 폴더로 작업을 정리하세요.","Create flowcharts instantly: Type or paste text, see it visualized.":"즉시 플로우차트 생성: 텍스트를 입력하거나 붙여넣고 시각화해보세요.","Create unlimited diagrams for just $6/month!":"매달 $6로 무제한 다이어그램을 생성하세요!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"클라우드에 저장된 무한 플로우 차트 생성 - 어디서나 액세스 가능!","Create with AI":"AI로 만들기","Created Date":"생성일자","Creating an edge between two nodes is done by indenting the second node below the first":"두 노드 사이에 엣지를 만드는 것은 첫 번째 노드 아래에 두 번째 노드를 들여 쓰는 것으로 합니다.","Curve Style":"곡선 스타일","Custom CSS":"사용자 정의 CSS","Custom Sharing Options":"커스텀 공유 옵션","Custom sharing & public links":"사용자 정의 공유 및 공개 링크","Customer Portal":"고객 포털","Daily Sandbox Editor":"매일 샌드박스 편집기","Dark":"다크","Dark Mode":"다크 모드","Data Import (Visio, Lucidchart, CSV)":"데이터 가져오기 (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"복잡한 다이어그램을 위한 데이터 가져오기 기능","Date":"날짜","Delete":"삭제","Delete {0}":[["0"]," 삭제"],"Describe it and it appears":"설명하면 나타납니다","Describe your idea. Get a diagram worth presenting.":"아이디어를 설명하세요. 발표할 가치가 있는 다이어그램을 얻으세요.","Design a software development lifecycle flowchart for an agile team":"애자일 팀을 위한 소프트웨어 개발 라이프사이클 플로우차트를 디자인하십시오.","Develop a decision tree for a CEO to evaluate potential new market opportunities":"CEO가 잠재적인 새 시장 기회를 평가하기 위해 사용할 수 있는 의사결정 트리를 개발하십시오.","Direction":"방향","Dismiss":"해지","Do you offer discounts for students or nonprofits?":"학생이나 비영리 단체에 할인을 제공하나요?","Do you want to delete this?":"본 항목을 삭제하시겠습니까?","Document":"문서","Don\'t Lose Your Work":"당신의 작업을 잃지 마세요","Download":"다운로드","Download JPG":"JPG 다운로드","Download PNG":"PNG 다운로드","Download SVG":"SVG 다운로드","Drag and drop a CSV file here, or click to select a file":"CSV 파일을 여기에 드래그 앤 드롭하거나 파일을 선택하려면 클릭하세요.","Draw an edge from multiple nodes by beginning the line with a reference":"참조를 시작하여 여러 노드로부터 엣지를 그립니다.","Drop the file here ...":"파일을 여기에 드롭하세요 ...","Each line becomes a node":"각 줄은 노드가 됩니다.","Edge ID, Classes, Attributes":"가장자리 ID, 클래스, 속성","Edge Label":"가장자리 라벨","Edge Label Column":"가장자리 라벨 열","Edge Style":"가장자리 스타일","Edge Text Size":"가장자리 텍스트 크기","Edge missing indentation":"들여쓰기가 누락된 가장자리","Edges":"가장자리","Edges are declared in the same row as their source node":"가장자리는 소스 노드가 있는 같은 행에 선언됩니다.","Edges are declared in the same row as their target node":"가장자리는 목표 노드가 있는 같은 행에 선언됩니다.","Edges are declared in their own row":"가장자리는 자신의 행에 선언됩니다.","Edges can also have ID\'s, classes, and attributes before the label":"라벨 앞에 ID, 클래스 및 속성도 가질 수 있습니다.","Edges can be styled with dashed, dotted, or solid lines":"가장자리는 점선, 점선 또는 실선으로 스타일이 지정될 수 있습니다.","Edges in Separate Rows":"각 행별로 간선","Edges in Source Node Row":"출발 노드 행에 간선","Edges in Target Node Row":"도착 노드 행에 간선","Edit":"편집하기","Edit with AI":"AI로 편집하기","Editable":"편집 가능","Editor":"에디터","Email":"이메일","Empty":"비어 있음","Enable to set a consistent height for all nodes":"모든 노드의 일관된 높이 설정 가능","Enter a name for the cloned flowchart.":"복제된 플로우차트의 이름을 입력하세요.","Enter a name for the new folder.":"새 폴더의 이름을 입력하세요.","Enter a new name for the {0}.":[["0"],"의 새 이름을 입력하세요."],"Enter your email address and we\'ll send you a magic link to sign in.":"이메일 주소를 입력하면 자동으로 로그인할 수 있는 링크를 보내드립니다.","Enter your email address below and we\'ll send you a link to reset your password.":"아래에 이메일 주소를 입력하면 비밀번호 재설정을 위한 링크를 보내드립니다.","Equal To":"같음","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"모든 다이어그램은 선명한 PNG, SVG 또는 공유 가능한 링크로 내보낼 수 있습니다 - 회의, 문서 또는 프레젠테이션에 준비 완료.","Everything you need to know about Flowchart Fun Pro":"Flowchart Fun Pro에 대해 알아야 할 모든 것","Examples":"예시","Excalidraw":"Excalidraw","Exclusive Office Hours":"독점 오피스 시간","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"로컬 파일을 직접 플로우차트에 로드하여 효율성과 보안성을 경험해보세요. 오프라인에서 업무 관련 문서를 관리하기에 완벽한 기능입니다. Flowchart Fun Pro를 구독하면 이 독점적인 프로 기능과 더 많은 기능을 이용할 수 있습니다. 매달 $6로 이용 가능합니다.","Explore Pro":"Pro 모드 탐색","Explore more":"더 탐험하세요.","Export":"내보내기","Export clean diagrams without branding":"브랜딩 없이 깔끔한 다이어그램 내보내기","Export to PNG & JPG":"PNG 및 JPG로 내보내기","Export to PNG, JPG, and SVG":"PNG, JPG 및 SVG로 내보내기","Feature Breakdown":"기능 분해","Feedback":"피드백","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"우리에게 연락하고 자유롭게 탐색하시고 <0>피드백0> 페이지를 통해 의견을 제시하실 수 있습니다.","Fine-tune layouts and visual styles":"레이아웃과 시각적 스타일을 세밀하게 조정하기","Fixed Height":"고정 높이","Fixed Node Height":"고정된 노드 높이","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro는 매달 $6로 무제한 플로우차트, 무제한 공동 작업자 및 무제한 저장 공간을 제공합니다.","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun은 한 명의 개발자가 만들고 유지보수합니다. 당신의 지원으로 계속 운영됩니다.","Follow Us on Twitter":"트위터에서 우리를 팔로우하기","Font Family":"글꼴 가족","Forgot your password?":"비밀번호를 잊으셨나요?","Free":"무료","Free users: charts in the sandbox expire after 7 days.":"무료 사용자: 샌드박스에 있는 차트는 7일 후에 만료됩니다.","Frequently Asked Questions":"자주 묻는 질문들","Full-screen, read-only, and template sharing":"전체 화면, 읽기 전용, 그리고 템플릿 공유","Fullscreen":"전체 화면","General":"일반","Generate flowcharts from text automatically":"텍스트로부터 자동으로 플로우차트 생성하기","Get Pro Access Now":"지금 프로 액세스 받기","Get Unlimited AI Requests":"무제한 AI 요청 받기","Get rapid responses to your questions":"귀하의 질문에 신속한 답변 받기","Get unlimited flowcharts and premium features":"무제한 플로우차트 및 프리미엄 기능 이용하기","Go back home":"집으로 돌아가기","Go to the Editor":"편집기로 가기","Go to your Sandbox":"너의 샌드박스로 가기","Graph":"그래프","Green?":"초록색?","Grid":"그리드","Have complex questions or issues? We\'re here to help.":"복잡한 문제가 있나요? 여기에서 도와드리겠습니다.","Here are some Pro features you can now enjoy.":"이제 즐길 수 있는 Pro 기능들이 있습니다.","High-quality exports with embedded fonts":"내장된 글꼴로 고품질의 내보내기","History":"기록","Home":"집","How are edges declared in this data?":"이 데이터에서 간선은 어떻게 선언됩니까?","How fast can I actually make something?":"실제로 얼마나 빨리 무언가를 만들 수 있을까요?","How would you like to save your chart?":"당신의 차트를 저장하려면 어떻게 하시겠습니까?","I would like to request a new template:":"새로운 템플릿을 요청하고 싶습니다:","ID\'s":"식별자","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"해당 이메일로 계정이 있다면 비밀번호 재설정을 위한 안내를 포함한 이메일을 보내드립니다.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"만약 가장자리를 만들려면, 이 줄을 들여쓰기하십시오. 만약 그렇지 않다면, 콜론을 백슬래시로 이스케이프하십시오 <0>\\\\:0>","Images":"이미지","Import Data":"데이터 가져오기","Import data from a CSV file.":"CSV 파일에서 데이터를 가져옵니다.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"CSV 파일에서 데이터를 가져와 새로운 플로우 차트로 매핑합니다. 이것은 Lucidchart, Google Sheets, Visio 등의 다른 소스에서 데이터를 가져오는 데 좋은 방법입니다.","Import from CSV":"CSV로 가져오기","Import from Visio, Lucidchart, CSV":"Visio, Lucidchart, CSV에서 가져오기","Import from Visio, Lucidchart, and CSV":"Visio, Lucidchart 및 CSV에서 가져오기","Import from anywhere":"어디에서든 가져오기","Import from popular diagram tools":"인기 있는 다이어그램 도구에서 가져오기","Import your diagram it into Microsoft Visio using one of these CSV files.":"이러한 CSV 파일 중 하나를 사용하여 다이어그램을 Microsoft Visio로 가져옵니다.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"데이터를 가져오는 것은 프로 기능입니다. Flowchart Fun Pro로 업그레이드하면 매월 $6에 이용할 수 있습니다.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"<0>title0> 속성을 사용하여 제목을 포함시키십시오. Visio 색상을 사용하려면 다음 중 하나와 같은 <1>roleType1> 속성을 추가하십시오:","Indent to connect nodes":"노드를 연결하기 위해 들여쓰기하세요.","Info":"정보","Is":"있다","Is my data private?":"내 데이터는 개인 정보로 보호되나요?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON 캔버스는 <0>Obsidian0> 캔버스 및 다른 응용 프로그램에서 사용되는 다이어그램의 JSON 표현입니다.","Join 2000+ professionals who\'ve upgraded their workflow":"워크플로우를 업그레이드한 2000명 이상의 전문가들과 함께하세요","Join thousands of happy users who love Flowchart Fun":"플로우 차트 어플을 사랑하는 수천 명의 행복한 사용자들과 함께하세요","Keep Things Private":"개인 정보 유지하기","Keep changes?":"변경 사항을 유지하시겠습니까?","Keep practicing":"계속 연습하세요","Keep your data private on your computer":"컴퓨터에서 데이터를 개인적으로 보호하기","Language":"언어","Layout":"레이아웃","Layout Algorithm":"레이아웃 알고리즘","Layout Frozen":"레이아웃 동결","Leading References":"주목할만한 참고","Learn More":"더 알아보기","Learn Syntax":"구문 배우기","Learn about Flowchart Fun Pro":"Flowchart Fun Pro에 대해 알아보기","Left to Right":"왼쪽에서 오른쪽으로","Let us know why you\'re canceling. We\'re always looking to improve.":"취소하는 이유를 알려주세요. 우리는 항상 개선하고 있습니다.","Light":"라이트","Light Mode":"라이트 모드","Link":"링크","Link back":"링크를 걸어 돌아가세요","Load":"로드","Load Chart":"로드 차트","Load File":"로드 파일","Load Files":"로드 파일","Load default content":"기본 내용 로드","Load from link?":"링크에서 불러오기?","Load layout and styles":"레이아웃과 스타일 로드","Loading...":"로딩 중...","Local File Support":"로컬 파일 지원","Local saving for offline access":"오프라인 접속을 위한 로컬 저장 기능","Lock Zoom to Graph":"그래프에 룩 줌을 고정하다","Log In":"로그인","Log Out":"로그아웃","Log in to Save":"로그인하여 저장하기","Log in to upgrade your account":"계정 업그레이드를 위해 로그인","Make a One-Time Donation":"한 번 선물하기","Make it yours":"나만의 것으로 만들기","Make publicly accessible":"공개적으로 액세스 가능하게 만들기","Manage Billing":"청구 관리","Map Data":"데이터 지도","Maximum width of text inside nodes":"노드 내부 텍스트의 최대 너비","Monthly":"월간","Move":"이동","Move {0}":["이동 ",["0"]],"Multiple pointers on same line":"같은 줄에 여러 포인터","My dog ate my credit card!":"내 개가 내 신용 카드를 먹었어요!","Name":"이름","Name Chart":"차트 이름","Name your chart":"차트 이름 지정","New":"신규","New Email":"새 이메일","New Flowchart":"새 플로우차트","New Folder":"새 폴더","Next charge":"다음 청구 금액","No Edges":"노드 없음","No Folder (Root)":"폴더 없음 (루트)","No Watermarks!":"물방울 없음!","No charts yet":"아직 차트가 없습니다","No items in this folder":"이 폴더에 항목이 없습니다","No matching charts found":"일치하는 차트를 찾을 수 없습니다","Node Border Style":"노드 경계 스타일","Node Colors":"노드 색상","Node ID":"노드 ID","Node ID, Classes, Attributes":"노드 ID, 클래스, 속성","Node Label":"노드 라벨","Node Shape":"노드 모양","Node Shapes":"노드 모양","Nodes":"노드","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"노드는 점선, 점점선 또는 이중 선으로 스타일링 할 수 있습니다. 또한 border_none을 사용하여 테두리를 제거할 수도 있습니다.","Not Empty":"비어 있지 않음","Now you\'re thinking with flowcharts!":"이제 플로우차트로 생각하고 있어요!","Office Hours":"근무 시간","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"가끔 마술 링크가 스팸 폴더에 도착할 수도 있습니다. 몇 분 후에도 보이지 않으면 거기를 확인하거나 새로운 링크를 요청하십시오.","One on One Support":"1:1 지원","One-on-One Support":"일대일 지원","Open Customer Portal":"고객 포털 열기","Operation canceled":"작업이 취소되었습니다.","Or maybe blue!":"아니면 파란색으로!","Organization Chart":"조직도","PNG & JPG export":"PNG 및 JPG 내보내기","Padding":"채우기","Page not found":"페이지를 찾을 수 없습니다.","Password":"비밀번호","Past Due":"연체","Paste a document to convert it":"문서를 붙여서 변환하세요","Paste your document or outline here to convert it into an organized flowchart.":"문서나 개요를 여기에 붙여넣어 조직화된 플로우차트로 변환하세요.","Pasted content detected. Convert to Flowchart Fun syntax?":"붙여넣은 내용이 감지되었습니다. Flowchart Fun 구문으로 변환하시겠습니까?","Perfect for docs and quick sharing":"문서 작성 및 빠른 공유에 완벽함","Permanent Charts are a Pro Feature":"영구 차트는 프로 기능입니다","Playbook":"플레이북","Pointer and container on same line":"같은 줄에 포인터와 컨테이너","Priority One-on-One Support":"우선순위 일대일 지원","Priority support":"우선순위 지원","Privacy Policy":"개인정보보호정책","Pro starts at $4/mo billed yearly. Cancel anytime.":"Pro는 연간 $4에 시작합니다. 언제든지 취소할 수 있습니다.","Pro tip: Right-click any node to customize its shape and color":"팁: 노드를 우클릭하여 모양과 색상을 사용자 정의할 수 있습니다.","Processing Data":"데이터 처리","Processing...":"처리 중...","Prompt":"프롬프트","Public":"공용","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Visio, Lucidchart, CSV에서 데이터 가져오기 또는 템플릿에서 시작하기. 이미 존재하는 것을 다시 만들 필요 없음.","Quick experimentation space that resets daily":"매일 초기화되는 빠른 실험 공간","Random":"무작위","Rapid Deployment Templates":"빠른 배포 템플릿","Rapid Templates":"급변화 템플릿","Raster Export (PNG, JPG)":"래스터 내보내기 (PNG, JPG)","Rate limit exceeded. Please try again later.":"요청 제한이 초과되었습니다. 나중에 다시 시도해주세요.","Read-only":"읽기 전용","Reference by Class":"클래스로 참조","Reference by ID":"ID로 참조","Reference by Label":"레이블로 참조","References":"참조","References are used to create edges between nodes that are created elsewhere in the document":"참조는 문서 내부에서 만들어진 노드 사이에 간선을 만들기 위해 사용됩니다.","Referencing a node by its exact label":"정확한 레이블로 노드를 참조하기","Referencing a node by its unique ID":"고유한 ID로 노드를 참조하기","Referencing multiple nodes with the same assigned class":"동일한 할당 된 클래스로 여러 노드를 참조하기 ","Refresh Page":"페이지 새로 고침 ","Reload to Update":"업데이트하려면 다시 로드하기 ","Rename":"이름 바꾸기","Rename {0}":[["0"],"의 이름 바꾸기"],"Request Magic Link":"마법 링크 요청","Request Password Reset":"비밀번호 재설정 요청","Reset":"재설정","Reset Password":"비밀번호 재설정","Resume Subscription":"구독 재개","Return":"반품","Right to Left":"오른쪽에서 왼쪽으로","Right-click nodes for options":"옵션을 위해 노드를 오른쪽 클릭하세요","Roadmap":"로드맵","Rotate Label":"라벨 회전","SVG Export is a Pro Feature":"SVG 내보내기는 프로 기능입니다","SVG, PDF & all export formats":"SVG, PDF 및 모든 내보내기 형식","Satisfaction guaranteed or first payment refunded":"만족도 보장 또는 첫 번째 결제 환불","Save":"구하다","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"로컬에 저장하고 오프라인에서 작업하며 정확히 누가 무엇을 볼 수 있는지 제어합니다. 데이터는 사용자가 허용하지 않는 한 컴퓨터를 벗어나지 않습니다.","Save time with AI and dictation, making it easy to create diagrams.":"인공지능과 딕테이션을 통해 시간을 절약하고 쉽게 다이어그램을 작성할 수 있습니다.","Save to Cloud":"클라우드에 저장하기","Save to File":"파일에 저장하기","Save your Work":"작업 저장","Schedule personal consultation sessions":"개인 상담 세션 일정 잡기","Secure payment":"안전한 결제","See more reviews on Product Hunt":"Product Hunt에서 더 많은 리뷰를 확인하세요","See what\'s possible":"가능한 것을 확인하세요","Select a destination folder for \\"{0}\\".":"\\\\에 대한 대상 폴더 선택","Send us a message":"메시지 보내기","Set a consistent height for all nodes":"모든 노드의 일관된 높이 설정하기","Settings":"설정","Share":"공유하기","Sign In":"로그인","Sign in with <0>GitHub0>":"<0>GitHub0>으로 로그인","Sign in with <0>Google0>":"<0>Google0>으로 로그인","Sorry! This page is only available in English.":"죄송합니다! 이 페이지는 영어로만 제공됩니다.","Sorry, there was an error converting the text to a flowchart. Try again later.":"죄송합니다, 텍스트를 플로우차트로 변환하는 중에 오류가 발생했습니다. 나중에 다시 시도해주세요.","Sort Ascending":"오름차순 정렬하기","Sort Descending":"내림차순 정렬","Sort by {0}":[["0"],"로 정렬"],"Source Arrow Shape":"소스 화살표 모양","Source Column":"소스 열","Source Delimiter":"소스 구분자","Source Distance From Node":"노드에서 소스 거리","Source/Target Arrow Shape":"소스/대상 화살표 모양","Spacing":"간격","Special Attributes":"특별한 속성","Start":"시작","Start Over":"처음부터 다시 시작하기","Start faster with use-case specific templates":"사용 사례에 맞는 템플릿으로 더 빠르게 시작하기","Start for free":"무료로 시작하기","Status":"상태","Step 1":"단계 1","Step 2":"단계 2","Step 3":"단계 3","Store any data associated to a node":"노드에 관련된 모든 데이터 저장하기","Style Classes":"스타일 클래스","Style with classes":"클래스로 스타일링","Submit":"보내다","Subscription":"구독","Subscription Successful!":"구독 성공!","Subscription will end":"구독이 종료될 예정입니다.","Support":"지원","Target Arrow Shape":"대상 화살표 모양","Target Column":"대상 열","Target Delimiter":"대상 구분자","Target Distance From Node":"노드로부터의 목표 거리","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"AI에게 필요한 것을 평문으로 말해주세요. 당신의 다이어그램은 몇 초만에 자동으로 생성됩니다.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"잘 작동하는 부분과 문제가 있는 부분을 알려주세요. 모든 메시지는 개발자가 읽습니다.","Text Color":"텍스트 색상","Text Horizontal Offset":"텍스트 수평 오프셋","Text Leading":"텍스트 리딩","Text Max Width":"텍스트 최대 너비","Text Vertical Offset":"텍스트 수직 오프셋","Text followed by colon+space creates an edge with the text as the label":"콜론 뒤에 공백이 따라오는 텍스트는 텍스트를 레이블로 하는 엣지를 만듭니다.","Text on a line creates a node with the text as the label":"한 줄에 있는 텍스트는 텍스트를 레이블로 하는 노드를 만듭니다.","Thank you for your feedback!":"피드백을 해주셔서 감사합니다!","The beauty and magic reside in the minimalism.":"아름다움과 마법은 최소주의에 있습니다.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"스타일을 변경하는 가장 좋은 방법은 노드 또는 엣지를 오른쪽 클릭하고 원하는 스타일을 선택하는 것입니다.","The column that contains the edge label(s)":"엣지 레이블이 포함된 열","The column that contains the source node ID(s)":"소스 노드 ID가 포함된 열","The column that contains the target node ID(s)":"타겟 노드 ID가 포함된 열","The delimiter used to separate multiple source nodes":"여러 개의 소스 노드를 구분하기 위해 사용되는 구분 기호","The delimiter used to separate multiple target nodes":"여러 개의 목표 노드를 구분하기 위해 사용되는 구분 기호","The fastest way to turn what\'s in your head into something everyone else can understand.":"머리 속에 있는 것을 다른 사람들이 이해할 수 있는 것으로 바꾸는 가장 빠른 방법입니다.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"무료 요금제는 일상적인 사용에 적합합니다. Pro 기능이 필요한 경우 매월 $6로 이용 가능하며, 언제든지 해지할 수 있습니다.","The possible shapes are:":"가능한 모양은 다음과 같습니다:","Theme":"테마","Theme Customization Editor":"테마 커스터마이즈 편집기","Theme Editor":"테마 편집기","Theme editor":"테마 편집기","There are no edges in this data":"이 데이터에는 엣지가 없습니다.","This action cannot be undone.":"이 작업은 취소할 수 없습니다.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"이 기능은 프로 사용자에게만 제공됩니다. <0>프로 사용자가 되어0> 이 기능을 사용할 수 있게 하세요.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"입력 길이에 따라 30초에서 2분 사이의 시간이 소요될 수 있습니다.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"이 모래상자는 실험하기에 완벽하지만 기억하세요 - 매일 초기화됩니다. 지금 업그레이드하고 현재 작업을 유지하세요!","This will replace the current content.":"이것은 현재 내용을 대체합니다.","This will replace your current chart content with the template content.":"이것은 템플릿 콘텐츠로 현재 차트 콘텐츠를 대체합니다.","This will replace your current sandbox.":"이것은 현재 샌드 박스를 대체합니다.","Time to decide":"결정할 시간","Tip":"팁","To fix this change one of the edge IDs":"이를 수정하려면, 가장자리 ID 중 하나를 변경하십시오.","To fix this change one of the node IDs":"이것을 수정하려면 노드 ID 중 하나를 변경하십시오","To fix this move one pointer to the next line":"이것을 수정하려면 포인터를 다음 줄로 이동하십시오","To fix this start the container <0/> on a different line":"이것을 수정하려면 컨테이너 <0/>을 다른 줄에 시작하십시오","To learn more about why we require you to log in, please read <0>this blog post0>.":"왜 로그인을 해야하는지 자세히 알아보려면 <0>이 블로그 글0>을 읽어보세요.","Top to Bottom":"위에서 아래로","Transform Your Ideas into Professional Diagrams in Seconds":"초 내에 전문 다이어그램으로 생각을 변형하세요.","Transform text into diagrams instantly":"텍스트를 즉시 다이어그램으로 변환하세요.","Try AI":"AI 시도해보기","Try adjusting your search or filters to find what you\'re looking for.":"검색 또는 필터를 조정하여 원하는 내용을 찾아보세요.","Try again":"다시 시도하세요","Try it free":"무료로 시도해보세요","Two edges have the same ID":"두 개의 간선이 같은 ID를 가지고 있습니다","Two nodes have the same ID":"두 개의 노드가 같은 ID를 가지고 있습니다","Type it. See it.":"입력하고 보세요.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"이런, 무료 요청이 모두 소진되었습니다! 무제한 다이어그램 변환을 위해 Flowchart Fun Pro로 업그레이드하고 텍스트를 복사하여 쉽게 명확한 시각적 흐름도로 변환하세요.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"60초 이내에. 몇 줄의 텍스트를 입력하거나 인공지능에게 필요한 것을 설명하면 즉시 다이어그램이 나타납니다. 한 번의 클릭으로 내보내거나 공유하세요.","Undo":"취소","Unescaped special character":"이스케이프되지 않은 특수 문자","Unique text value to identify a node":"노드를 식별하기 위한 고유한 텍스트 값","Unknown":"알 수 없음","Unknown Parsing Error":"알 수 없는 구문 분석 오류","Unlimited Flowcharts":"무제한 다이어그램","Unlimited Permanent Flowcharts":"무제한 영구 플로차트","Unlimited cloud-saved flowcharts":"무제한 클라우드 저장 플로우차트","Unlimited saved diagrams":"무제한 저장된 다이어그램","Unlock AI Features and never lose your work with a Pro account.":"AI 기능 잠금 해제 및 프로 계정으로 작업을 절대 잃지 않습니다.","Unlock Unlimited AI Flowcharts":"무제한 AI 플로우차트 잠금 해제","Unpaid":"미납","Update Email":"이메일 업데이트","Updated Date":"업데이트 날짜","Upgrade Now - Save My Work":"지금 업그레이드 - 내 작업 저장","Upgrade to Flowchart Fun Pro and unlock:":"Flowchart Fun Pro로 업그레이드하고 다음을 잠금 해제하세요:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Flowchart Fun Pro로 업그레이드하여 SVG 내보내기를 잠금 해제하고 다이어그램에 대한 더 고급 기능을 즐기세요.","Upgrade to Pro":"프로로 업그레이드","Upgrade to Pro for permanent charts.":"프로로 업그레이드하면 영구적인 차트를 사용할 수 있습니다.","Upload your File":"파일을 업로드하세요.","Use Custom CSS Only":"사용자 정의 CSS만 사용","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Lucidchart나 Visio를 사용하고 계신가요? CSV 가져오기를 통해 모든 소스에서 데이터를 쉽게 가져올 수 있습니다!","Use classes to group nodes":"노드를 그룹화하기 위해 클래스를 사용하십시오.","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"새 탭에서 링크를 설정하기 위해 속성 <0>href0>을 사용하십시오.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"노드의 이미지를 설정하려면 <0>src0> 속성을 사용하세요. 이미지는 노드에 맞게 크기가 조정되므로 노드의 너비와 높이를 조절해야 할 수도 있습니다. CORS로 차단되지 않은 공개 이미지만 지원됩니다.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"노드의 너비와 높이를 명시적으로 설정하려면 <0>w0> 및 <1>h1> 속성을 사용하세요.","Use the customer portal to change your billing information.":"청구 정보를 변경하려면 고객 포털을 사용하십시오.","Use these settings to adapt the look and behavior of your flowcharts":"이 설정을 사용하여 흐름 도표의 모양과 동작을 조정하십시오","Use this file for org charts, hierarchies, and other organizational structures.":"조직도, 계층 구조 및 기타 조직 구조를 위해 이 파일을 사용하십시오.","Use this file for sequences, processes, and workflows.":"시퀀스, 프로세스 및 워크플로우에 대해 이 파일을 사용하십시오.","Use this mode to modify and enhance your current chart.":"현재 차트를 수정하고 개선하는 데 이 모드를 사용하세요.","Used at":"사용처","User":"사용자","Vector Export (SVG)":"벡터 내보내기 (SVG)","View on Github":"Github에서 보기","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"문서에서 플로우차트를 만들고 싶으세요? 편집기에 붙여넣고 \'플로우차트로 변환\'을 클릭하세요.","Watermark-Free Diagrams":"워터마크 없는 다이어그램","Watermarks":"물감","Welcome to Flowchart Fun":"Flowchart Fun에 오신 것을 환영합니다","What if I just need it for one project?":"한 프로젝트에만 필요한 경우 어떻게 해야 하나요?","What our users are saying":"우리 사용자들의 이야기","What\'s next?":"다음은 무엇인가요?","What\'s this?":"이것이 무엇인가요?","Width":"너비","Width and Height":"너비와 높이","Will my diagrams actually look professional?":"내 다이어그램이 전문적으로 보일까요?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Flowchart Fun의 Pro 버전을 사용하면 자연어 명령을 사용하여 흐름도 세부 정보를 빠르게 완성할 수 있으며, 이동 중에 다이어그램을 만드는 데 이상적입니다. 매월 $6로 접근 가능한 AI 편집의 편리함을 느껴보세요.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"프로 버전으로는 로컬 파일을 저장하고 불러올 수 있습니다. 오프라인에서 작업 관련 문서를 관리하는 데 최적입니다.","Would you like to continue?":"계속하시겠습니까?","Would you like to suggest a new example?":"새로운 예시를 제안하시겠습니까?","Wrap text in parentheses to connect to any node":"괄호 안에 텍스트를 감싸서 어떤 노드에 연결하세요","Write like an outline":"아웃라인처럼 작성하세요","Write your prompt here or click to enable the microphone, then press and hold to record.":"여기에 프롬프트를 작성하거나 마이크를 활성화하려면 클릭한 다음 눌러서 녹음하세요.","Yearly":"연간","Yes — send us a message and we\'ll set you up with a discounted rate.":"네 - 메시지를 보내주세요, 그리고 할인된 가격으로 설정해드릴게요.","Yes, Replace Content":"예, 콘텐츠 대체하기","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"네. 모든 다이어그램은 균형 잡힌, 자동 레이아웃과 깔끔한 타이포그래피를 사용합니다. 테마, 색상, 스타일을 사용자 정의할 수 있으며, 선명한 SVG 또는 고해상도 PNG로 내보낼 수 있어서 어떤 프레젠테이션이나 문서에서도 멋지게 보입니다.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"네. Pro는 Visio, Lucidchart, CSV에서 가져오기를 지원합니다 - 따라서 처음부터 다시 만들지 않고 이미 있는 것을 가져올 수 있습니다.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"예. 로컬로 파일을 저장하고 불러올 수 있으며 완전히 오프라인에서 작업할 수 있으며 다이어그램을 볼 수 있는 사람을 정확하게 제어할 수 있습니다. 데이터는 공유하지 않는 한 기기를 떠나지 않습니다.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["그래프에 ",["numNodes"],"개의 노드와 ",["numEdges"],"개의 간선을 추가하려고 합니다."],"You need to log in to access this page.":"페이지에 접근하려면 로그인해야합니다.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"이미 프로 사용자입니다. <0>구독 관리0><1/>질문이나 기능 요청이 있으신가요? <2>문의하기2>","You\'re doing great!":"잘하고 있어요!","You\'re on the free plan.":"무료 요금제를 사용 중입니다.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"모든 무료 AI 변환을 사용하셨습니다. 무제한 AI 사용, 사용자 정의 테마, 개인 공유 등을 위해 Pro로 업그레이드하세요. 쉽게 멋진 플로우차트를 만들어 나가세요!","Your Charts":"당신의 차트","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"당신의 샌드박스는 우리의 플로우차트 도구로 자유롭게 실험할 수 있는 공간으로, 매일 새로운 시작을 위해 재설정됩니다.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"당신의 차트는 계정이 더 이상 활성화되지 않았기 때문에 읽기 전용입니다. <0>계정0> 페이지를 방문하여 자세한 내용을 알아보세요.","Your next diagram should be your best one.":"다음 다이어그램은 최고의 작품이 되어야 합니다.","Your subscription is <0>{statusDisplay}0>.":["귀하의 구독 상태는 <0>",["statusDisplay"],"0>입니다."],"Your work stays yours":"작업물은 당신의 것으로 남습니다.","Zoom In":"확대","Zoom Out":"축소하기","month":"월","or":"또는","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"연간 $48 (33% 할인) · 언제든지 취소 가능","$6/mo":"월 $6","1 Temporary Flowchart":"1 임시 플로차트","1 diagram at a time":"한 번에 1개의 다이어그램","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>사용자 정의 CSS만0>이 활성화되었습니다. 레이아웃과 고급 설정만 적용됩니다.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0>은 <1>Tone Row1>가 만든 오픈 소스 프로젝트입니다.","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>로그인0> / <1>회원가입1> 이메일과 비밀번호로","A new version of the app is available. Please reload to update.":"새로운 버전의 앱이 사용 가능합니다. 업데이트하려면 다시로드하십시오.","AI Creation & Editing":"AI 생성 및 편집","AI generation & editing":"AI 생성 및 편집","AI-Powered Flowchart Creation":"인공지능 기반 플로우차트 생성","AI-generated from plain text in under 5 seconds.":"일반 텍스트에서 5초 이내에 AI로 생성됨.","AI-powered editing to supercharge your workflow":"워크플로우를 강화하기 위한 AI 기반 편집 기능","About":"소개","Account":"계정","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"특수 문자 앞에는 역슬래시 (<0>\\\\0>)를 추가하세요: <1>(1>, <2>:2>, <3>#3>, 또는 <4>.4>","Add some steps":"몇 가지 단계를 추가하세요.","Advanced":"고급","Align Horizontally":"수평 정렬","Align Nodes":"노드 정렬하기","Align Vertically":"수직 정렬","All this for just $6/month - less than your daily coffee ☕":"하루 커피 값보다 저렴한 월 $6로 이 모든 것을 이용하세요 ☕","Always presentation-ready":"항상 프레젠테이션용으로 준비됨","Amount":"금액","An error occurred. Try resubmitting or email {0} directly.":["오류가 발생하였습니다. 다시 제출하거나 ",["0"],"으로 직접 이메일을 보내주십시오."],"Appearance":"외관","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"플로우차트를 삭제하시겠습니까?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"폴더를 삭제하시겠습니까?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"폴더를 복제하시겠습니까?","Are you sure?":"확실합니까?","Arrow Size":"화살표 크기","Attributes":"속성","August 2023":"2023년 8월","Back":"뒤로","Back To Editor":"편집기로 돌아가기","Background Color":"배경색","Basic Flowchart":"기본 플로우 차트","Become a Github Sponsor":"깃허브 스폰서가 되기","Become a Pro User":"프로 사용자가 되기","Begin your journey":"여정을 시작하세요.","Billed annually at $48":"매년 $48로 청구됩니다","Billed monthly at $6":"매달 $6에 청구됩니다.","Blog":"블로그","Book a Meeting":"미팅 예약","Border Color":"테두리 색","Border Width":"테두리 너비","Bottom to Top":"아래에서 위로","Breadthfirst":"폭 우선","Build your personal flowchart library":"개인용 플로우차트 라이브러리 만들기","Can I import my existing diagrams?":"기존 다이어그램을 가져올 수 있나요?","Cancel":"취소","Cancel anytime":"언제든 취소 가능","Cancel your subscription. Your hosted charts will become read-only.":"구독을 취소하십시오. 귀하의 호스트 차트가 읽기 전용이 됩니다.","Certain attributes can be used to customize the appearance or functionality of elements.":"일부 속성은 요소의 모양 또는 기능을 사용자 정의하기 위해 사용할 수 있습니다.","Change Email Address":"이메일 주소 변경","Changelog":"변경 로그","Charts":"차트","Check out the guide:":"가이드를 확인하세요:","Check your email for a link to log in.<0/>You can close this window.":"로그인할 링크가 들어있는 이메일을 확인하세요. 이 창은 닫을 수 있습니다.","Choose":"선택하세요","Choose Template":"템플릿 선택","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"에지의 소스와 목적지를 위한 다양한 화살표 모양을 선택합니다. 모양에는 삼각형, 삼각형-티, 원-삼각형, 삼각형-가위형, 삼각형-뒤곡선, 베이, 티, 사각형, 원, 다이아몬드, 쉐브론, 없음이 포함됩니다.","Choose how edges connect between nodes":"노드 간 연결 방식 선택","Choose how nodes are automatically arranged in your flowchart":"플로우차트에서 노드가 자동으로 정렬되는 방식을 선택하세요.","Circle":"원","Classes":"클래스","Clear":"지우다","Clear text?":"텍스트를 지우시겠습니까?","Clone":"클론","Clone Flowchart":"플로우차트 복제","Close":"닫기","Color":"색상","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"색상에는 빨강, 주황, 노랑, 파랑, 보라, 검정, 흰색, 회색이 포함됩니다.","Column":"열","Comment":"댓글 달기","Community templates":"커뮤니티 템플릿","Compare our plans and find the perfect fit for your flowcharting needs":"우리의 요금제를 비교하고 당신의 플로우차트 작성 요구에 맞는 완벽한 선택을 찾으세요","Concentric":"동심","Confirm New Email":"새 이메일 확인","Confirm your email address to sign in.":"로그인하려면 이메일 주소를 확인하세요.","Connect your Data":"데이터 연결","Containers":"컨테이너","Containers are nodes that contain other nodes. They are declared using curly braces.":"컨테이너는 다른 노드를 포함하는 노드입니다. 중괄호를 사용하여 선언됩니다.","Continue":"계속하기","Continue in Sandbox (Resets daily, work not saved)":"샌드박스에서 계속하기 (매일 초기화되며 작업은 저장되지 않음)","Controls the flow direction of hierarchical layouts":"계층적 레이아웃의 흐름 방향을 제어합니다.","Convert":"변환하기","Convert to Flowchart":"흐름도로 변환","Convert to hosted chart?":"호스팅 차트로 변환하시겠습니까?","Cookie Policy":"쿠키 정책","Copied SVG code to clipboard":"클립보드에 SVG 코드 복사","Copied {format} to clipboard":["클립보드에 ",["format"]," 복사"],"Copy":"복사","Copy PNG Image":"PNG 이미지 복사","Copy SVG Code":"SVG 코드 복사","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Excalidraw 코드를 복사해서 <0>excalidraw.com0>에 붙여넣어서 편집하세요. 이 기능은 실험적이며 모든 다이어그램과 작동하지 않을 수 있습니다. 버그를 발견하면 <1>알려주세요1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"mermaid.js 코드를 복사하거나 mermaid.js 라이브 편집기에서 직접 열어주세요.","Create":"만들기","Create Flowcharts using AI":"AI를 사용하여 플로차트를 만들어보세요","Create Unlimited Flowcharts":"무제한 플로차트 만들기","Create a New Chart":"새 차트 만들기","Create a flowchart showing the steps of planning and executing a school fundraising event":"학교 모금 행사를 계획하고 실행하는 단계를 보여주는 플로우차트를 작성하십시오.","Create a new flowchart to get started or organize your work with folders.":"새로운 플로우차트를 만들어 시작하거나 폴더로 작업을 정리하세요.","Create flowcharts instantly: Type or paste text, see it visualized.":"즉시 플로우차트 생성: 텍스트를 입력하거나 붙여넣고 시각화해보세요.","Create unlimited diagrams for just $6/month!":"매달 $6로 무제한 다이어그램을 생성하세요!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"클라우드에 저장된 무한 플로우 차트 생성 - 어디서나 액세스 가능!","Create with AI":"AI로 만들기","Created Date":"생성일자","Creating an edge between two nodes is done by indenting the second node below the first":"두 노드 사이에 엣지를 만드는 것은 첫 번째 노드 아래에 두 번째 노드를 들여 쓰는 것으로 합니다.","Curve Style":"곡선 스타일","Custom CSS":"사용자 정의 CSS","Custom Sharing Options":"커스텀 공유 옵션","Custom sharing & public links":"사용자 정의 공유 및 공개 링크","Customer Portal":"고객 포털","Daily Sandbox Editor":"매일 샌드박스 편집기","Dark":"다크","Dark Mode":"다크 모드","Data Import (Visio, Lucidchart, CSV)":"데이터 가져오기 (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"복잡한 다이어그램을 위한 데이터 가져오기 기능","Date":"날짜","Delete":"삭제","Delete {0}":[["0"]," 삭제"],"Describe it and it appears":"설명하면 나타납니다","Describe your idea. Get a diagram worth presenting.":"아이디어를 설명하세요. 발표할 가치가 있는 다이어그램을 얻으세요.","Design a software development lifecycle flowchart for an agile team":"애자일 팀을 위한 소프트웨어 개발 라이프사이클 플로우차트를 디자인하십시오.","Develop a decision tree for a CEO to evaluate potential new market opportunities":"CEO가 잠재적인 새 시장 기회를 평가하기 위해 사용할 수 있는 의사결정 트리를 개발하십시오.","Direction":"방향","Dismiss":"해지","Do you offer discounts for students or nonprofits?":"학생이나 비영리 단체에 할인을 제공하나요?","Do you want to delete this?":"본 항목을 삭제하시겠습니까?","Document":"문서","Don\'t Lose Your Work":"당신의 작업을 잃지 마세요","Download":"다운로드","Download JPG":"JPG 다운로드","Download PNG":"PNG 다운로드","Download SVG":"SVG 다운로드","Drag and drop a CSV file here, or click to select a file":"CSV 파일을 여기에 드래그 앤 드롭하거나 파일을 선택하려면 클릭하세요.","Draw an edge from multiple nodes by beginning the line with a reference":"참조를 시작하여 여러 노드로부터 엣지를 그립니다.","Drop the file here ...":"파일을 여기에 드롭하세요 ...","Each line becomes a node":"각 줄은 노드가 됩니다.","Edge ID, Classes, Attributes":"가장자리 ID, 클래스, 속성","Edge Label":"가장자리 라벨","Edge Label Column":"가장자리 라벨 열","Edge Style":"가장자리 스타일","Edge Text Size":"가장자리 텍스트 크기","Edge missing indentation":"들여쓰기가 누락된 가장자리","Edges":"가장자리","Edges are declared in the same row as their source node":"가장자리는 소스 노드가 있는 같은 행에 선언됩니다.","Edges are declared in the same row as their target node":"가장자리는 목표 노드가 있는 같은 행에 선언됩니다.","Edges are declared in their own row":"가장자리는 자신의 행에 선언됩니다.","Edges can also have ID\'s, classes, and attributes before the label":"라벨 앞에 ID, 클래스 및 속성도 가질 수 있습니다.","Edges can be styled with dashed, dotted, or solid lines":"가장자리는 점선, 점선 또는 실선으로 스타일이 지정될 수 있습니다.","Edges in Separate Rows":"각 행별로 간선","Edges in Source Node Row":"출발 노드 행에 간선","Edges in Target Node Row":"도착 노드 행에 간선","Edit":"편집하기","Edit with AI":"AI로 편집하기","Editable":"편집 가능","Editor":"에디터","Email":"이메일","Empty":"비어 있음","Enable to set a consistent height for all nodes":"모든 노드의 일관된 높이 설정 가능","Enter a name for the cloned flowchart.":"복제된 플로우차트의 이름을 입력하세요.","Enter a name for the new folder.":"새 폴더의 이름을 입력하세요.","Enter a new name for the {0}.":[["0"],"의 새 이름을 입력하세요."],"Enter your email address and we\'ll send you a magic link to sign in.":"이메일 주소를 입력하면 자동으로 로그인할 수 있는 링크를 보내드립니다.","Enter your email address below and we\'ll send you a link to reset your password.":"아래에 이메일 주소를 입력하면 비밀번호 재설정을 위한 링크를 보내드립니다.","Equal To":"같음","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"모든 다이어그램은 선명한 PNG, SVG 또는 공유 가능한 링크로 내보낼 수 있습니다 - 회의, 문서 또는 프레젠테이션에 준비 완료.","Everything you need to know about Flowchart Fun Pro":"Flowchart Fun Pro에 대해 알아야 할 모든 것","Examples":"예시","Excalidraw":"Excalidraw","Exclusive Office Hours":"독점 오피스 시간","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"로컬 파일을 직접 플로우차트에 로드하여 효율성과 보안성을 경험해보세요. 오프라인에서 업무 관련 문서를 관리하기에 완벽한 기능입니다. Flowchart Fun Pro를 구독하면 이 독점적인 프로 기능과 더 많은 기능을 이용할 수 있습니다. 매달 $6로 이용 가능합니다.","Explore Pro":"Pro 모드 탐색","Explore more":"더 탐험하세요.","Export":"내보내기","Export clean diagrams without branding":"브랜딩 없이 깔끔한 다이어그램 내보내기","Export to PNG & JPG":"PNG 및 JPG로 내보내기","Export to PNG, JPG, and SVG":"PNG, JPG 및 SVG로 내보내기","Feature Breakdown":"기능 분해","Feedback":"피드백","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"우리에게 연락하고 자유롭게 탐색하시고 <0>피드백0> 페이지를 통해 의견을 제시하실 수 있습니다.","Fine-tune layouts and visual styles":"레이아웃과 시각적 스타일을 세밀하게 조정하기","Fixed Height":"고정 높이","Fixed Node Height":"고정된 노드 높이","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro는 매달 $6로 무제한 플로우차트, 무제한 공동 작업자 및 무제한 저장 공간을 제공합니다.","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"Flowchart Fun은 <0>Tone\xA0Row0>가 만든 오픈 소스 프로젝트입니다.","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun은 한 명의 개발자가 만들고 유지보수합니다. 당신의 지원으로 계속 운영됩니다.","Follow Us on Twitter":"트위터에서 우리를 팔로우하기","Font Family":"글꼴 가족","Forgot your password?":"비밀번호를 잊으셨나요?","Free":"무료","Free users: charts in the sandbox expire after 7 days.":"무료 사용자: 샌드박스에 있는 차트는 7일 후에 만료됩니다.","Frequently Asked Questions":"자주 묻는 질문들","Full-screen, read-only, and template sharing":"전체 화면, 읽기 전용, 그리고 템플릿 공유","Fullscreen":"전체 화면","General":"일반","Generate flowcharts from text automatically":"텍스트로부터 자동으로 플로우차트 생성하기","Get Pro Access Now":"지금 프로 액세스 받기","Get Unlimited AI Requests":"무제한 AI 요청 받기","Get rapid responses to your questions":"귀하의 질문에 신속한 답변 받기","Get unlimited flowcharts and premium features":"무제한 플로우차트 및 프리미엄 기능 이용하기","Go back home":"집으로 돌아가기","Go to the Editor":"편집기로 가기","Go to your Sandbox":"너의 샌드박스로 가기","Graph":"그래프","Green?":"초록색?","Grid":"그리드","Group ranking and ranked-choice voting, free":"그룹 순위 및 순위 선택 투표, 무료","Have complex questions or issues? We\'re here to help.":"복잡한 문제가 있나요? 여기에서 도와드리겠습니다.","Here are some Pro features you can now enjoy.":"이제 즐길 수 있는 Pro 기능들이 있습니다.","High-quality exports with embedded fonts":"내장된 글꼴로 고품질의 내보내기","History":"기록","Home":"집","How are edges declared in this data?":"이 데이터에서 간선은 어떻게 선언됩니까?","How fast can I actually make something?":"실제로 얼마나 빨리 무언가를 만들 수 있을까요?","How would you like to save your chart?":"당신의 차트를 저장하려면 어떻게 하시겠습니까?","I would like to request a new template:":"새로운 템플릿을 요청하고 싶습니다:","ID\'s":"식별자","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"해당 이메일로 계정이 있다면 비밀번호 재설정을 위한 안내를 포함한 이메일을 보내드립니다.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"만약 가장자리를 만들려면, 이 줄을 들여쓰기하십시오. 만약 그렇지 않다면, 콜론을 백슬래시로 이스케이프하십시오 <0>\\\\:0>","Images":"이미지","Import Data":"데이터 가져오기","Import data from a CSV file.":"CSV 파일에서 데이터를 가져옵니다.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"CSV 파일에서 데이터를 가져와 새로운 플로우 차트로 매핑합니다. 이것은 Lucidchart, Google Sheets, Visio 등의 다른 소스에서 데이터를 가져오는 데 좋은 방법입니다.","Import from CSV":"CSV로 가져오기","Import from Visio, Lucidchart, CSV":"Visio, Lucidchart, CSV에서 가져오기","Import from Visio, Lucidchart, and CSV":"Visio, Lucidchart 및 CSV에서 가져오기","Import from anywhere":"어디에서든 가져오기","Import from popular diagram tools":"인기 있는 다이어그램 도구에서 가져오기","Import your diagram it into Microsoft Visio using one of these CSV files.":"이러한 CSV 파일 중 하나를 사용하여 다이어그램을 Microsoft Visio로 가져옵니다.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"데이터를 가져오는 것은 프로 기능입니다. Flowchart Fun Pro로 업그레이드하면 매월 $6에 이용할 수 있습니다.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"<0>title0> 속성을 사용하여 제목을 포함시키십시오. Visio 색상을 사용하려면 다음 중 하나와 같은 <1>roleType1> 속성을 추가하십시오:","Indent to connect nodes":"노드를 연결하기 위해 들여쓰기하세요.","Info":"정보","Is":"있다","Is my data private?":"내 데이터는 개인 정보로 보호되나요?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON 캔버스는 <0>Obsidian0> 캔버스 및 다른 응용 프로그램에서 사용되는 다이어그램의 JSON 표현입니다.","Join 2000+ professionals who\'ve upgraded their workflow":"워크플로우를 업그레이드한 2000명 이상의 전문가들과 함께하세요","Join thousands of happy users who love Flowchart Fun":"플로우 차트 어플을 사랑하는 수천 명의 행복한 사용자들과 함께하세요","Keep Things Private":"개인 정보 유지하기","Keep changes?":"변경 사항을 유지하시겠습니까?","Keep practicing":"계속 연습하세요","Keep your data private on your computer":"컴퓨터에서 데이터를 개인적으로 보호하기","Language":"언어","Layout":"레이아웃","Layout Algorithm":"레이아웃 알고리즘","Layout Frozen":"레이아웃 동결","Leading References":"주목할만한 참고","Learn More":"더 알아보기","Learn Syntax":"구문 배우기","Learn about Flowchart Fun Pro":"Flowchart Fun Pro에 대해 알아보기","Left to Right":"왼쪽에서 오른쪽으로","Let us know why you\'re canceling. We\'re always looking to improve.":"취소하는 이유를 알려주세요. 우리는 항상 개선하고 있습니다.","Light":"라이트","Light Mode":"라이트 모드","Link":"링크","Link back":"링크를 걸어 돌아가세요","Load":"로드","Load Chart":"로드 차트","Load File":"로드 파일","Load Files":"로드 파일","Load default content":"기본 내용 로드","Load from link?":"링크에서 불러오기?","Load layout and styles":"레이아웃과 스타일 로드","Loading...":"로딩 중...","Local File Support":"로컬 파일 지원","Local saving for offline access":"오프라인 접속을 위한 로컬 저장 기능","Lock Zoom to Graph":"그래프에 룩 줌을 고정하다","Log In":"로그인","Log Out":"로그아웃","Log in to Save":"로그인하여 저장하기","Log in to upgrade your account":"계정 업그레이드를 위해 로그인","Made by <0>Tone\xA0Row0>":"<0>Tone\xA0Row0>가 만들었습니다.","Make a One-Time Donation":"한 번 선물하기","Make it yours":"나만의 것으로 만들기","Make publicly accessible":"공개적으로 액세스 가능하게 만들기","Manage Billing":"청구 관리","Map Data":"데이터 지도","Maximum width of text inside nodes":"노드 내부 텍스트의 최대 너비","Monthly":"월간","More from Tone Row":"Tone Row에서 더 보기","More from Tone Row:":"Tone Row에서 더 보기:","More tools:":"더 많은 도구:","Move":"이동","Move {0}":["이동 ",["0"]],"Multiple pointers on same line":"같은 줄에 여러 포인터","My dog ate my credit card!":"내 개가 내 신용 카드를 먹었어요!","Name":"이름","Name Chart":"차트 이름","Name your chart":"차트 이름 지정","New":"신규","New Email":"새 이메일","New Flowchart":"새 플로우차트","New Folder":"새 폴더","Next charge":"다음 청구 금액","No Edges":"노드 없음","No Folder (Root)":"폴더 없음 (루트)","No Watermarks!":"물방울 없음!","No charts yet":"아직 차트가 없습니다","No items in this folder":"이 폴더에 항목이 없습니다","No matching charts found":"일치하는 차트를 찾을 수 없습니다","Node Border Style":"노드 경계 스타일","Node Colors":"노드 색상","Node ID":"노드 ID","Node ID, Classes, Attributes":"노드 ID, 클래스, 속성","Node Label":"노드 라벨","Node Shape":"노드 모양","Node Shapes":"노드 모양","Nodes":"노드","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"노드는 점선, 점점선 또는 이중 선으로 스타일링 할 수 있습니다. 또한 border_none을 사용하여 테두리를 제거할 수도 있습니다.","Not Empty":"비어 있지 않음","Now you\'re thinking with flowcharts!":"이제 플로우차트로 생각하고 있어요!","Office Hours":"근무 시간","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"가끔 마술 링크가 스팸 폴더에 도착할 수도 있습니다. 몇 분 후에도 보이지 않으면 거기를 확인하거나 새로운 링크를 요청하십시오.","One on One Support":"1:1 지원","One-on-One Support":"일대일 지원","Open Customer Portal":"고객 포털 열기","Operation canceled":"작업이 취소되었습니다.","Or maybe blue!":"아니면 파란색으로!","Organization Chart":"조직도","PNG & JPG export":"PNG 및 JPG 내보내기","Padding":"채우기","Page not found":"페이지를 찾을 수 없습니다.","Password":"비밀번호","Past Due":"연체","Paste a document to convert it":"문서를 붙여서 변환하세요","Paste your document or outline here to convert it into an organized flowchart.":"문서나 개요를 여기에 붙여넣어 조직화된 플로우차트로 변환하세요.","Pasted content detected. Convert to Flowchart Fun syntax?":"붙여넣은 내용이 감지되었습니다. Flowchart Fun 구문으로 변환하시겠습니까?","Perfect for docs and quick sharing":"문서 작성 및 빠른 공유에 완벽함","Permanent Charts are a Pro Feature":"영구 차트는 프로 기능입니다","Playbook":"플레이북","Pointer and container on same line":"같은 줄에 포인터와 컨테이너","Pricing":"가격 정책","Priority One-on-One Support":"우선순위 일대일 지원","Priority support":"우선순위 지원","Privacy Policy":"개인정보보호정책","Pro starts at $4/mo billed yearly. Cancel anytime.":"Pro는 연간 $4에 시작합니다. 언제든지 취소할 수 있습니다.","Pro tip: Right-click any node to customize its shape and color":"팁: 노드를 우클릭하여 모양과 색상을 사용자 정의할 수 있습니다.","Processing Data":"데이터 처리","Processing...":"처리 중...","Prompt":"프롬프트","Public":"공용","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Visio, Lucidchart, CSV에서 데이터 가져오기 또는 템플릿에서 시작하기. 이미 존재하는 것을 다시 만들 필요 없음.","Quick experimentation space that resets daily":"매일 초기화되는 빠른 실험 공간","Random":"무작위","Rapid Deployment Templates":"빠른 배포 템플릿","Rapid Templates":"급변화 템플릿","Raster Export (PNG, JPG)":"래스터 내보내기 (PNG, JPG)","Rate limit exceeded. Please try again later.":"요청 제한이 초과되었습니다. 나중에 다시 시도해주세요.","Read-only":"읽기 전용","Reference by Class":"클래스로 참조","Reference by ID":"ID로 참조","Reference by Label":"레이블로 참조","References":"참조","References are used to create edges between nodes that are created elsewhere in the document":"참조는 문서 내부에서 만들어진 노드 사이에 간선을 만들기 위해 사용됩니다.","Referencing a node by its exact label":"정확한 레이블로 노드를 참조하기","Referencing a node by its unique ID":"고유한 ID로 노드를 참조하기","Referencing multiple nodes with the same assigned class":"동일한 할당 된 클래스로 여러 노드를 참조하기 ","Refresh Page":"페이지 새로 고침 ","Reload to Update":"업데이트하려면 다시 로드하기 ","Rename":"이름 바꾸기","Rename {0}":[["0"],"의 이름 바꾸기"],"Request Magic Link":"마법 링크 요청","Request Password Reset":"비밀번호 재설정 요청","Reset":"재설정","Reset Password":"비밀번호 재설정","Resume Subscription":"구독 재개","Return":"반품","Right to Left":"오른쪽에서 왼쪽으로","Right-click nodes for options":"옵션을 위해 노드를 오른쪽 클릭하세요","Roadmap":"로드맵","Rotate Label":"라벨 회전","SVG Export is a Pro Feature":"SVG 내보내기는 프로 기능입니다","SVG, PDF & all export formats":"SVG, PDF 및 모든 내보내기 형식","Satisfaction guaranteed or first payment refunded":"만족도 보장 또는 첫 번째 결제 환불","Save":"구하다","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"로컬에 저장하고 오프라인에서 작업하며 정확히 누가 무엇을 볼 수 있는지 제어합니다. 데이터는 사용자가 허용하지 않는 한 컴퓨터를 벗어나지 않습니다.","Save time with AI and dictation, making it easy to create diagrams.":"인공지능과 딕테이션을 통해 시간을 절약하고 쉽게 다이어그램을 작성할 수 있습니다.","Save to Cloud":"클라우드에 저장하기","Save to File":"파일에 저장하기","Save your Work":"작업 저장","Schedule personal consultation sessions":"개인 상담 세션 일정 잡기","Secure payment":"안전한 결제","See more reviews on Product Hunt":"Product Hunt에서 더 많은 리뷰를 확인하세요","See what\'s possible":"가능한 것을 확인하세요","Select a destination folder for \\"{0}\\".":"\\\\에 대한 대상 폴더 선택","Send us a message":"메시지 보내기","Set a consistent height for all nodes":"모든 노드의 일관된 높이 설정하기","Settings":"설정","Share":"공유하기","Sign In":"로그인","Sign in with <0>GitHub0>":"<0>GitHub0>으로 로그인","Sign in with <0>Google0>":"<0>Google0>으로 로그인","Sorry! This page is only available in English.":"죄송합니다! 이 페이지는 영어로만 제공됩니다.","Sorry, there was an error converting the text to a flowchart. Try again later.":"죄송합니다, 텍스트를 플로우차트로 변환하는 중에 오류가 발생했습니다. 나중에 다시 시도해주세요.","Sort Ascending":"오름차순 정렬하기","Sort Descending":"내림차순 정렬","Sort by {0}":[["0"],"로 정렬"],"Source Arrow Shape":"소스 화살표 모양","Source Column":"소스 열","Source Delimiter":"소스 구분자","Source Distance From Node":"노드에서 소스 거리","Source/Target Arrow Shape":"소스/대상 화살표 모양","Spacing":"간격","Special Attributes":"특별한 속성","Start":"시작","Start Over":"처음부터 다시 시작하기","Start faster with use-case specific templates":"사용 사례에 맞는 템플릿으로 더 빠르게 시작하기","Start for free":"무료로 시작하기","Status":"상태","Step 1":"단계 1","Step 2":"단계 2","Step 3":"단계 3","Store any data associated to a node":"노드에 관련된 모든 데이터 저장하기","Style Classes":"스타일 클래스","Style with classes":"클래스로 스타일링","Submit":"보내다","Subscription":"구독","Subscription Successful!":"구독 성공!","Subscription will end":"구독이 종료될 예정입니다.","Support":"지원","Target Arrow Shape":"대상 화살표 모양","Target Column":"대상 열","Target Delimiter":"대상 구분자","Target Distance From Node":"노드로부터의 목표 거리","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"AI에게 필요한 것을 평문으로 말해주세요. 당신의 다이어그램은 몇 초만에 자동으로 생성됩니다.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"잘 작동하는 부분과 문제가 있는 부분을 알려주세요. 모든 메시지는 개발자가 읽습니다.","Text Color":"텍스트 색상","Text Horizontal Offset":"텍스트 수평 오프셋","Text Leading":"텍스트 리딩","Text Max Width":"텍스트 최대 너비","Text Vertical Offset":"텍스트 수직 오프셋","Text followed by colon+space creates an edge with the text as the label":"콜론 뒤에 공백이 따라오는 텍스트는 텍스트를 레이블로 하는 엣지를 만듭니다.","Text on a line creates a node with the text as the label":"한 줄에 있는 텍스트는 텍스트를 레이블로 하는 노드를 만듭니다.","Thank you for your feedback!":"피드백을 해주셔서 감사합니다!","The beauty and magic reside in the minimalism.":"아름다움과 마법은 최소주의에 있습니다.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"스타일을 변경하는 가장 좋은 방법은 노드 또는 엣지를 오른쪽 클릭하고 원하는 스타일을 선택하는 것입니다.","The column that contains the edge label(s)":"엣지 레이블이 포함된 열","The column that contains the source node ID(s)":"소스 노드 ID가 포함된 열","The column that contains the target node ID(s)":"타겟 노드 ID가 포함된 열","The delimiter used to separate multiple source nodes":"여러 개의 소스 노드를 구분하기 위해 사용되는 구분 기호","The delimiter used to separate multiple target nodes":"여러 개의 목표 노드를 구분하기 위해 사용되는 구분 기호","The fastest way to turn what\'s in your head into something everyone else can understand.":"머리 속에 있는 것을 다른 사람들이 이해할 수 있는 것으로 바꾸는 가장 빠른 방법입니다.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"무료 요금제는 일상적인 사용에 적합합니다. Pro 기능이 필요한 경우 매월 $6로 이용 가능하며, 언제든지 해지할 수 있습니다.","The possible shapes are:":"가능한 모양은 다음과 같습니다:","Theme":"테마","Theme Customization Editor":"테마 커스터마이즈 편집기","Theme Editor":"테마 편집기","Theme editor":"테마 편집기","There are no edges in this data":"이 데이터에는 엣지가 없습니다.","This action cannot be undone.":"이 작업은 취소할 수 없습니다.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"이 기능은 프로 사용자에게만 제공됩니다. <0>프로 사용자가 되어0> 이 기능을 사용할 수 있게 하세요.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"입력 길이에 따라 30초에서 2분 사이의 시간이 소요될 수 있습니다.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"이 모래상자는 실험하기에 완벽하지만 기억하세요 - 매일 초기화됩니다. 지금 업그레이드하고 현재 작업을 유지하세요!","This will replace the current content.":"이것은 현재 내용을 대체합니다.","This will replace your current chart content with the template content.":"이것은 템플릿 콘텐츠로 현재 차트 콘텐츠를 대체합니다.","This will replace your current sandbox.":"이것은 현재 샌드 박스를 대체합니다.","Time to decide":"결정할 시간","Tip":"팁","To fix this change one of the edge IDs":"이를 수정하려면, 가장자리 ID 중 하나를 변경하십시오.","To fix this change one of the node IDs":"이것을 수정하려면 노드 ID 중 하나를 변경하십시오","To fix this move one pointer to the next line":"이것을 수정하려면 포인터를 다음 줄로 이동하십시오","To fix this start the container <0/> on a different line":"이것을 수정하려면 컨테이너 <0/>을 다른 줄에 시작하십시오","To learn more about why we require you to log in, please read <0>this blog post0>.":"왜 로그인을 해야하는지 자세히 알아보려면 <0>이 블로그 글0>을 읽어보세요.","Top to Bottom":"위에서 아래로","Transform Your Ideas into Professional Diagrams in Seconds":"초 내에 전문 다이어그램으로 생각을 변형하세요.","Transform text into diagrams instantly":"텍스트를 즉시 다이어그램으로 변환하세요.","Try AI":"AI 시도해보기","Try adjusting your search or filters to find what you\'re looking for.":"검색 또는 필터를 조정하여 원하는 내용을 찾아보세요.","Try again":"다시 시도하세요","Try it free":"무료로 시도해보세요","Turn documents into diagrams with AI":"문서를 AI로 다이어그램으로 변환","Two edges have the same ID":"두 개의 간선이 같은 ID를 가지고 있습니다","Two nodes have the same ID":"두 개의 노드가 같은 ID를 가지고 있습니다","Type it. See it.":"입력하고 보세요.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"이런, 무료 요청이 모두 소진되었습니다! 무제한 다이어그램 변환을 위해 Flowchart Fun Pro로 업그레이드하고 텍스트를 복사하여 쉽게 명확한 시각적 흐름도로 변환하세요.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"60초 이내에. 몇 줄의 텍스트를 입력하거나 인공지능에게 필요한 것을 설명하면 즉시 다이어그램이 나타납니다. 한 번의 클릭으로 내보내거나 공유하세요.","Undo":"취소","Unescaped special character":"이스케이프되지 않은 특수 문자","Unique text value to identify a node":"노드를 식별하기 위한 고유한 텍스트 값","Unknown":"알 수 없음","Unknown Parsing Error":"알 수 없는 구문 분석 오류","Unlimited Flowcharts":"무제한 다이어그램","Unlimited Permanent Flowcharts":"무제한 영구 플로차트","Unlimited cloud-saved flowcharts":"무제한 클라우드 저장 플로우차트","Unlimited saved diagrams":"무제한 저장된 다이어그램","Unlock AI Features and never lose your work with a Pro account.":"AI 기능 잠금 해제 및 프로 계정으로 작업을 절대 잃지 않습니다.","Unlock Unlimited AI Flowcharts":"무제한 AI 플로우차트 잠금 해제","Unpaid":"미납","Update Email":"이메일 업데이트","Updated Date":"업데이트 날짜","Upgrade Now - Save My Work":"지금 업그레이드 - 내 작업 저장","Upgrade to Flowchart Fun Pro and unlock:":"Flowchart Fun Pro로 업그레이드하고 다음을 잠금 해제하세요:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"무제한 호스팅 차트, 워터마크 없는 고해상도 내보내기, AI 편집 등을 위한 Flowchart Fun Pro 업그레이드. 매년 $4에 청구됩니다.","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Flowchart Fun Pro로 업그레이드하여 SVG 내보내기를 잠금 해제하고 다이어그램에 대한 더 고급 기능을 즐기세요.","Upgrade to Pro":"프로로 업그레이드","Upgrade to Pro for permanent charts.":"프로로 업그레이드하면 영구적인 차트를 사용할 수 있습니다.","Upload your File":"파일을 업로드하세요.","Use Custom CSS Only":"사용자 정의 CSS만 사용","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Lucidchart나 Visio를 사용하고 계신가요? CSV 가져오기를 통해 모든 소스에서 데이터를 쉽게 가져올 수 있습니다!","Use classes to group nodes":"노드를 그룹화하기 위해 클래스를 사용하십시오.","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"새 탭에서 링크를 설정하기 위해 속성 <0>href0>을 사용하십시오.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"노드의 이미지를 설정하려면 <0>src0> 속성을 사용하세요. 이미지는 노드에 맞게 크기가 조정되므로 노드의 너비와 높이를 조절해야 할 수도 있습니다. CORS로 차단되지 않은 공개 이미지만 지원됩니다.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"노드의 너비와 높이를 명시적으로 설정하려면 <0>w0> 및 <1>h1> 속성을 사용하세요.","Use the customer portal to change your billing information.":"청구 정보를 변경하려면 고객 포털을 사용하십시오.","Use these settings to adapt the look and behavior of your flowcharts":"이 설정을 사용하여 흐름 도표의 모양과 동작을 조정하십시오","Use this file for org charts, hierarchies, and other organizational structures.":"조직도, 계층 구조 및 기타 조직 구조를 위해 이 파일을 사용하십시오.","Use this file for sequences, processes, and workflows.":"시퀀스, 프로세스 및 워크플로우에 대해 이 파일을 사용하십시오.","Use this mode to modify and enhance your current chart.":"현재 차트를 수정하고 개선하는 데 이 모드를 사용하세요.","Used at":"사용처","User":"사용자","Vector Export (SVG)":"벡터 내보내기 (SVG)","View on Github":"Github에서 보기","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"문서에서 플로우차트를 만들고 싶으세요? 편집기에 붙여넣고 \'플로우차트로 변환\'을 클릭하세요.","Watermark-Free Diagrams":"워터마크 없는 다이어그램","Watermarks":"물감","Welcome to Flowchart Fun":"Flowchart Fun에 오신 것을 환영합니다","What if I just need it for one project?":"한 프로젝트에만 필요한 경우 어떻게 해야 하나요?","What our users are saying":"우리 사용자들의 이야기","What\'s next?":"다음은 무엇인가요?","What\'s this?":"이것이 무엇인가요?","Width":"너비","Width and Height":"너비와 높이","Will my diagrams actually look professional?":"내 다이어그램이 전문적으로 보일까요?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Flowchart Fun의 Pro 버전을 사용하면 자연어 명령을 사용하여 흐름도 세부 정보를 빠르게 완성할 수 있으며, 이동 중에 다이어그램을 만드는 데 이상적입니다. 매월 $6로 접근 가능한 AI 편집의 편리함을 느껴보세요.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"프로 버전으로는 로컬 파일을 저장하고 불러올 수 있습니다. 오프라인에서 작업 관련 문서를 관리하는 데 최적입니다.","Would you like to continue?":"계속하시겠습니까?","Would you like to suggest a new example?":"새로운 예시를 제안하시겠습니까?","Wrap text in parentheses to connect to any node":"괄호 안에 텍스트를 감싸서 어떤 노드에 연결하세요","Write like an outline":"아웃라인처럼 작성하세요","Write your prompt here or click to enable the microphone, then press and hold to record.":"여기에 프롬프트를 작성하거나 마이크를 활성화하려면 클릭한 다음 눌러서 녹음하세요.","Yearly":"연간","Yes — send us a message and we\'ll set you up with a discounted rate.":"네 - 메시지를 보내주세요, 그리고 할인된 가격으로 설정해드릴게요.","Yes, Replace Content":"예, 콘텐츠 대체하기","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"네. 모든 다이어그램은 균형 잡힌, 자동 레이아웃과 깔끔한 타이포그래피를 사용합니다. 테마, 색상, 스타일을 사용자 정의할 수 있으며, 선명한 SVG 또는 고해상도 PNG로 내보낼 수 있어서 어떤 프레젠테이션이나 문서에서도 멋지게 보입니다.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"네. Pro는 Visio, Lucidchart, CSV에서 가져오기를 지원합니다 - 따라서 처음부터 다시 만들지 않고 이미 있는 것을 가져올 수 있습니다.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"예. 로컬로 파일을 저장하고 불러올 수 있으며 완전히 오프라인에서 작업할 수 있으며 다이어그램을 볼 수 있는 사람을 정확하게 제어할 수 있습니다. 데이터는 공유하지 않는 한 기기를 떠나지 않습니다.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["그래프에 ",["numNodes"],"개의 노드와 ",["numEdges"],"개의 간선을 추가하려고 합니다."],"You need to log in to access this page.":"페이지에 접근하려면 로그인해야합니다.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"이미 프로 사용자입니다. <0>구독 관리0><1/>질문이나 기능 요청이 있으신가요? <2>문의하기2>","You\'re doing great!":"잘하고 있어요!","You\'re on the free plan.":"무료 요금제를 사용 중입니다.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"모든 무료 AI 변환을 사용하셨습니다. 무제한 AI 사용, 사용자 정의 테마, 개인 공유 등을 위해 Pro로 업그레이드하세요. 쉽게 멋진 플로우차트를 만들어 나가세요!","Your Charts":"당신의 차트","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"당신의 샌드박스는 우리의 플로우차트 도구로 자유롭게 실험할 수 있는 공간으로, 매일 새로운 시작을 위해 재설정됩니다.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"당신의 차트는 계정이 더 이상 활성화되지 않았기 때문에 읽기 전용입니다. <0>계정0> 페이지를 방문하여 자세한 내용을 알아보세요.","Your next diagram should be your best one.":"다음 다이어그램은 최고의 작품이 되어야 합니다.","Your subscription is <0>{statusDisplay}0>.":["귀하의 구독 상태는 <0>",["statusDisplay"],"0>입니다."],"Your work stays yours":"작업물은 당신의 것으로 남습니다.","Zoom In":"확대","Zoom Out":"축소하기","month":"월","or":"또는","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/ko/messages.po b/app/src/locales/ko/messages.po
index 53a714b75..83f64e580 100644
--- a/app/src/locales/ko/messages.po
+++ b/app/src/locales/ko/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "연간 $48 (33% 할인) · 언제든지 취소 가능"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "월 $6"
@@ -25,7 +25,7 @@ msgstr "월 $6"
msgid "1 Temporary Flowchart"
msgstr "1 임시 플로차트"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "한 번에 1개의 다이어그램"
@@ -33,7 +33,7 @@ msgstr "한 번에 1개의 다이어그램"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>사용자 정의 CSS만0>이 활성화되었습니다. 레이아웃과 고급 설정만 적용됩니다."
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0>은 <1>Tone Row1>가 만든 오픈 소스 프로젝트입니다."
@@ -49,7 +49,7 @@ msgstr "새로운 버전의 앱이 사용 가능합니다. 업데이트하려면
msgid "AI Creation & Editing"
msgstr "AI 생성 및 편집"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "AI 생성 및 편집"
@@ -57,7 +57,7 @@ msgstr "AI 생성 및 편집"
msgid "AI-Powered Flowchart Creation"
msgstr "인공지능 기반 플로우차트 생성"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "일반 텍스트에서 5초 이내에 AI로 생성됨."
@@ -65,12 +65,12 @@ msgstr "일반 텍스트에서 5초 이내에 AI로 생성됨."
msgid "AI-powered editing to supercharge your workflow"
msgstr "워크플로우를 강화하기 위한 AI 기반 편집 기능"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "소개"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "계정"
@@ -106,7 +106,7 @@ msgstr "수직 정렬"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "하루 커피 값보다 저렴한 월 $6로 이 모든 것을 이용하세요 ☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "항상 프레젠테이션용으로 준비됨"
@@ -118,7 +118,7 @@ msgstr "금액"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "오류가 발생하였습니다. 다시 제출하거나 {0}으로 직접 이메일을 보내주십시오."
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "외관"
@@ -170,11 +170,11 @@ msgstr "배경색"
msgid "Basic Flowchart"
msgstr "기본 플로우 차트"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "깃허브 스폰서가 되기"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "프로 사용자가 되기"
@@ -191,8 +191,8 @@ msgstr "매년 $48로 청구됩니다"
msgid "Billed monthly at $6"
msgstr "매달 $6에 청구됩니다."
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "블로그"
@@ -260,14 +260,14 @@ msgstr "일부 속성은 요소의 모양 또는 기능을 사용자 정의하
msgid "Change Email Address"
msgstr "이메일 주소 변경"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "변경 로그"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "차트"
@@ -346,7 +346,7 @@ msgstr "열"
msgid "Comment"
msgstr "댓글 달기"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "커뮤니티 템플릿"
@@ -403,7 +403,7 @@ msgstr "흐름도로 변환"
msgid "Convert to hosted chart?"
msgstr "호스팅 차트로 변환하시겠습니까?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "쿠키 정책"
@@ -500,7 +500,7 @@ msgstr "사용자 정의 CSS"
msgid "Custom Sharing Options"
msgstr "커스텀 공유 옵션"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "사용자 정의 공유 및 공개 링크"
@@ -516,8 +516,8 @@ msgstr "매일 샌드박스 편집기"
msgid "Dark"
msgstr "다크"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "다크 모드"
@@ -542,11 +542,11 @@ msgstr "삭제"
msgid "Delete {0}"
msgstr "{0} 삭제"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "설명하면 나타납니다"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "아이디어를 설명하세요. 발표할 가치가 있는 다이어그램을 얻으세요."
@@ -696,8 +696,8 @@ msgstr "AI로 편집하기"
msgid "Editable"
msgstr "편집 가능"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "에디터"
@@ -742,7 +742,7 @@ msgstr "아래에 이메일 주소를 입력하면 비밀번호 재설정을 위
msgid "Equal To"
msgstr "같음"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "모든 다이어그램은 선명한 PNG, SVG 또는 공유 가능한 링크로 내보낼 수 있습니다 - 회의, 문서 또는 프레젠테이션에 준비 완료."
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "기능 분해"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "피드백"
@@ -823,11 +823,15 @@ msgstr "고정된 노드 높이"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "Flowchart Fun Pro는 매달 $6로 무제한 플로우차트, 무제한 공동 작업자 및 무제한 저장 공간을 제공합니다."
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "Flowchart Fun은 <0>Tone Row0>가 만든 오픈 소스 프로젝트입니다."
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "Flowchart Fun은 한 명의 개발자가 만들고 유지보수합니다. 당신의 지원으로 계속 운영됩니다."
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "트위터에서 우리를 팔로우하기"
@@ -909,6 +913,10 @@ msgstr "초록색?"
msgid "Grid"
msgstr "그리드"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "그룹 순위 및 순위 선택 투표, 무료"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "복잡한 문제가 있나요? 여기에서 도와드리겠습니다."
@@ -980,7 +988,7 @@ msgstr "CSV 파일에서 데이터를 가져와 새로운 플로우 차트로
msgid "Import from CSV"
msgstr "CSV로 가져오기"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "Visio, Lucidchart, CSV에서 가져오기"
@@ -988,7 +996,7 @@ msgstr "Visio, Lucidchart, CSV에서 가져오기"
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "Visio, Lucidchart 및 CSV에서 가져오기"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "어디에서든 가져오기"
@@ -1012,7 +1020,7 @@ msgstr "<0>title0> 속성을 사용하여 제목을 포함시키십시오. Vis
msgid "Indent to connect nodes"
msgstr "노드를 연결하기 위해 들여쓰기하세요."
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "정보"
@@ -1052,7 +1060,7 @@ msgstr "계속 연습하세요"
msgid "Keep your data private on your computer"
msgstr "컴퓨터에서 데이터를 개인적으로 보호하기"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "언어"
@@ -1101,8 +1109,8 @@ msgstr "취소하는 이유를 알려주세요. 우리는 항상 개선하고
msgid "Light"
msgstr "라이트"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "라이트 모드"
@@ -1160,8 +1168,8 @@ msgstr "오프라인 접속을 위한 로컬 저장 기능"
msgid "Lock Zoom to Graph"
msgstr "그래프에 룩 줌을 고정하다"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "로그인"
@@ -1177,11 +1185,15 @@ msgstr "로그인하여 저장하기"
msgid "Log in to upgrade your account"
msgstr "계정 업그레이드를 위해 로그인"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "<0>Tone Row0>가 만들었습니다."
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "한 번 선물하기"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "나만의 것으로 만들기"
@@ -1205,6 +1217,18 @@ msgstr "노드 내부 텍스트의 최대 너비"
msgid "Monthly"
msgstr "월간"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "Tone Row에서 더 보기"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "Tone Row에서 더 보기:"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "더 많은 도구:"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "차트 이름"
msgid "Name your chart"
msgstr "차트 이름 지정"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "신규"
@@ -1363,7 +1387,7 @@ msgstr "아니면 파란색으로!"
msgid "Organization Chart"
msgstr "조직도"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "PNG 및 JPG 내보내기"
@@ -1412,21 +1436,25 @@ msgstr "플레이북"
msgid "Pointer and container on same line"
msgstr "같은 줄에 포인터와 컨테이너"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "가격 정책"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "우선순위 일대일 지원"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "우선순위 지원"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "개인정보보호정책"
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "Pro는 연간 $4에 시작합니다. 언제든지 취소할 수 있습니다."
@@ -1451,7 +1479,7 @@ msgstr "프롬프트"
msgid "Public"
msgstr "공용"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "Visio, Lucidchart, CSV에서 데이터 가져오기 또는 템플릿에서 시작하기. 이미 존재하는 것을 다시 만들 필요 없음."
@@ -1575,8 +1603,8 @@ msgstr "오른쪽에서 왼쪽으로"
msgid "Right-click nodes for options"
msgstr "옵션을 위해 노드를 오른쪽 클릭하세요"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "로드맵"
@@ -1590,7 +1618,7 @@ msgstr "라벨 회전"
msgid "SVG Export is a Pro Feature"
msgstr "SVG 내보내기는 프로 기능입니다"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "SVG, PDF 및 모든 내보내기 형식"
@@ -1603,7 +1631,7 @@ msgstr "만족도 보장 또는 첫 번째 결제 환불"
msgid "Save"
msgstr "구하다"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "로컬에 저장하고 오프라인에서 작업하며 정확히 누가 무엇을 볼 수 있는지 제어합니다. 데이터는 사용자가 허용하지 않는 한 컴퓨터를 벗어나지 않습니다."
@@ -1635,7 +1663,7 @@ msgstr "안전한 결제"
msgid "See more reviews on Product Hunt"
msgstr "Product Hunt에서 더 많은 리뷰를 확인하세요"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "가능한 것을 확인하세요"
@@ -1651,9 +1679,9 @@ msgstr "메시지 보내기"
msgid "Set a consistent height for all nodes"
msgstr "모든 노드의 일관된 높이 설정하기"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "설정"
@@ -1738,7 +1766,7 @@ msgstr "처음부터 다시 시작하기"
msgid "Start faster with use-case specific templates"
msgstr "사용 사례에 맞는 템플릿으로 더 빠르게 시작하기"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "무료로 시작하기"
@@ -1789,7 +1817,7 @@ msgstr "구독 성공!"
msgid "Subscription will end"
msgstr "구독이 종료될 예정입니다."
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "지원"
@@ -1812,7 +1840,7 @@ msgstr "대상 구분자"
msgid "Target Distance From Node"
msgstr "노드로부터의 목표 거리"
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "AI에게 필요한 것을 평문으로 말해주세요. 당신의 다이어그램은 몇 초만에 자동으로 생성됩니다."
@@ -1856,7 +1884,7 @@ msgstr "한 줄에 있는 텍스트는 텍스트를 레이블로 하는 노드
msgid "Thank you for your feedback!"
msgstr "피드백을 해주셔서 감사합니다!"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "아름다움과 마법은 최소주의에 있습니다."
@@ -1884,7 +1912,7 @@ msgstr "여러 개의 소스 노드를 구분하기 위해 사용되는 구분
msgid "The delimiter used to separate multiple target nodes"
msgstr "여러 개의 목표 노드를 구분하기 위해 사용되는 구분 기호"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "머리 속에 있는 것을 다른 사람들이 이해할 수 있는 것으로 바꾸는 가장 빠른 방법입니다."
@@ -1911,7 +1939,7 @@ msgstr "테마 커스터마이즈 편집기"
msgid "Theme Editor"
msgstr "테마 편집기"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "테마 편집기"
@@ -2000,10 +2028,14 @@ msgstr "검색 또는 필터를 조정하여 원하는 내용을 찾아보세요
msgid "Try again"
msgstr "다시 시도하세요"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "무료로 시도해보세요"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "문서를 AI로 다이어그램으로 변환"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "두 개의 간선이 같은 ID를 가지고 있습니다"
@@ -2012,7 +2044,7 @@ msgstr "두 개의 간선이 같은 ID를 가지고 있습니다"
msgid "Two nodes have the same ID"
msgstr "두 개의 노드가 같은 ID를 가지고 있습니다"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "입력하고 보세요."
@@ -2057,7 +2089,7 @@ msgstr "무제한 영구 플로차트"
msgid "Unlimited cloud-saved flowcharts"
msgstr "무제한 클라우드 저장 플로우차트"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "무제한 저장된 다이어그램"
@@ -2089,13 +2121,17 @@ msgstr "지금 업그레이드 - 내 작업 저장"
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "Flowchart Fun Pro로 업그레이드하고 다음을 잠금 해제하세요:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "무제한 호스팅 차트, 워터마크 없는 고해상도 내보내기, AI 편집 등을 위한 Flowchart Fun Pro 업그레이드. 매년 $4에 청구됩니다."
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "Flowchart Fun Pro로 업그레이드하여 SVG 내보내기를 잠금 해제하고 다이어그램에 대한 더 고급 기능을 즐기세요."
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "프로로 업그레이드"
@@ -2152,7 +2188,7 @@ msgstr "시퀀스, 프로세스 및 워크플로우에 대해 이 파일을 사
msgid "Use this mode to modify and enhance your current chart."
msgstr "현재 차트를 수정하고 개선하는 데 이 모드를 사용하세요."
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "사용처"
@@ -2164,7 +2200,7 @@ msgstr "사용자"
msgid "Vector Export (SVG)"
msgstr "벡터 내보내기 (SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "Github에서 보기"
@@ -2302,7 +2338,7 @@ msgstr "당신의 샌드박스는 우리의 플로우차트 도구로 자유롭
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "당신의 차트는 계정이 더 이상 활성화되지 않았기 때문에 읽기 전용입니다. <0>계정0> 페이지를 방문하여 자세한 내용을 알아보세요."
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "다음 다이어그램은 최고의 작품이 되어야 합니다."
@@ -2310,7 +2346,7 @@ msgstr "다음 다이어그램은 최고의 작품이 되어야 합니다."
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "귀하의 구독 상태는 <0>{statusDisplay}0>입니다."
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "작업물은 당신의 것으로 남습니다."
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "또는"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/locales/pt-br/messages.js b/app/src/locales/pt-br/messages.js
index 10467e169..0d7db38fe 100644
--- a/app/src/locales/pt-br/messages.js
+++ b/app/src/locales/pt-br/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"R$48/ano (33% de desconto) · Cancelar a qualquer momento","$6/mo":"R$6/mês","1 Temporary Flowchart":"1 Fluxograma Temporário","1 diagram at a time":"1 diagrama por vez","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Somente CSS Personalizado0> está habilitado. Somente as configurações de Layout e Avançadas serão aplicadas.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> é um projeto de código aberto feito por <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Entrar0> / <1>Cadastrar1> com e-mail e senha","A new version of the app is available. Please reload to update.":"Uma nova versão do aplicativo está disponível. Por favor, recarregue para atualizar.","AI Creation & Editing":"Criação e Edição de IA","AI generation & editing":"Geração e edição de IA","AI-Powered Flowchart Creation":"Criação de fluxogramas com Inteligência Artificial","AI-generated from plain text in under 5 seconds.":"Gerado por IA a partir de texto simples em menos de 5 segundos.","AI-powered editing to supercharge your workflow":"Edição com inteligência artificial para turbinar seu fluxo de trabalho","About":"Sobre","Account":"Conta","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Adicione uma barra invertida (<0>\\\\0>) antes de quaisquer caracteres especiais: <1>(1>, <2>:2>, <3>#3>, ou <4>.4>","Add some steps":"Adicione alguns passos","Advanced":"Avançado","Align Horizontally":"Alinhar Horizontalmente","Align Nodes":"Alinhar Nós","Align Vertically":"Alinhar Verticalmente","All this for just $6/month - less than your daily coffee ☕":"Tudo isso por apenas $6/mês - menos que o seu café diário ☕","Always presentation-ready":"Sempre pronto para apresentação","Amount":"Total","An error occurred. Try resubmitting or email {0} directly.":["Ocorreu um erro. Tente reenviar ou envie um e-mail direto para ",["0"],"."],"Appearance":"Aparência","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"Tem certeza de que deseja excluir o fluxograma? ","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"Tem certeza de que deseja excluir a pasta? ","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"Tem certeza de que deseja excluir a pasta? ","Are you sure?":"Tem certeza?","Arrow Size":"Tamanho da Seta","Attributes":"Atributos","August 2023":"Agosto de 2023","Back":"Voltar","Back To Editor":"Voltar ao editor","Background Color":"Cor de Fundo","Basic Flowchart":"Fluxograma Básico","Become a Github Sponsor":"Seja um patrocinador do Github","Become a Pro User":"Se torne um usuário Pro","Begin your journey":"Comece sua jornada","Billed annually at $48":"Cobrado anualmente a $48","Billed monthly at $6":"Cobrado mensalmente em $6","Blog":"Blog","Book a Meeting":"Reserve uma Reunião","Border Color":"Cor da Borda","Border Width":"Largura da Borda","Bottom to Top":"De baixo para cima","Breadthfirst":"Por extensão","Build your personal flowchart library":"Construa sua biblioteca pessoal de fluxogramas","Can I import my existing diagrams?":"Posso importar meus diagramas existentes?","Cancel":"Cancelar","Cancel anytime":"Cancelar a qualquer momento","Cancel your subscription. Your hosted charts will become read-only.":"Cancele sua inscrição. Seus diagramas hospedados não serão modificáveis.","Certain attributes can be used to customize the appearance or functionality of elements.":"Certos atributos podem ser usados para personalizar a aparência ou funcionalidade dos elementos.","Change Email Address":"Mude o endereço de email","Changelog":"Registro de alterações","Charts":"Diagramas","Check out the guide:":"Confira o guia:","Check your email for a link to log in.<0/>You can close this window.":"Verifique seu e-mail para um link para fazer login. Você pode fechar esta janela.","Choose":"Escolha","Choose Template":"Escolha o Modelo","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Escolha entre uma variedade de formas de seta para a origem e o destino de uma aresta. As formas incluem triângulo, triângulo-tee, triângulo-círculo, triângulo-cruz, triângulo-curva-inversa, vee, tee, quadrado, círculo, diamante, chevron e nenhum.","Choose how edges connect between nodes":"Escolha como as arestas se conectam entre os nós","Choose how nodes are automatically arranged in your flowchart":"Escolha como os nós são automaticamente dispostos em seu fluxograma","Circle":"Círculo","Classes":"Classes","Clear":"Apagar","Clear text?":"Limpar o texto?","Clone":"Clonar","Clone Flowchart":"Clonar Fluxograma","Close":"Fechar","Color":"Cor","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"As cores incluem vermelho, laranja, amarelo, azul, roxo, preto, branco e cinza.","Column":"Coluna","Comment":"Comente","Community templates":"Modelos da comunidade","Compare our plans and find the perfect fit for your flowcharting needs":"Compare nossos planos e encontre o ajuste perfeito para suas necessidades de fluxograma","Concentric":"Concêntrico","Confirm New Email":"Confirme o novo email","Confirm your email address to sign in.":"Confirme seu endereço de e-mail para fazer login.","Connect your Data":"Conecte seus Dados","Containers":"Recipientes","Containers are nodes that contain other nodes. They are declared using curly braces.":"Os containers são nós que contêm outros nós. Eles são declarados usando chaves.","Continue":"Continuar","Continue in Sandbox (Resets daily, work not saved)":"Continuar no Sandbox (Redefine diariamente, trabalho não salvo)","Controls the flow direction of hierarchical layouts":"Controla a direção do fluxo dos layouts hierárquicos","Convert":"Converter","Convert to Flowchart":"Converter para Fluxograma","Convert to hosted chart?":"Converter em diagrama hospedado?","Cookie Policy":"Política de Cookies","Copied SVG code to clipboard":"Código SVG copiado para a área de transferência","Copied {format} to clipboard":[["format"]," copiado para a área de transferência"],"Copy":"Copiar","Copy PNG Image":"Copiar imagem PNG","Copy SVG Code":"Copiar código SVG","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copie o seu código Excalidraw e cole-o em <0>excalidraw.com0> para editar. Esta funcionalidade é experimental e pode não funcionar com todos os diagramas. Se você encontrar um bug, por favor <1>deixe-nos saber1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copie seu código mermaid.js ou abra diretamente no editor ao vivo mermaid.js.","Create":"Criar","Create Flowcharts using AI":"Criar Fluxogramas usando IA","Create Unlimited Flowcharts":"Crie fluxogramas ilimitados","Create a New Chart":"Criar um Novo Gráfico","Create a flowchart showing the steps of planning and executing a school fundraising event":"Criar um fluxograma mostrando os passos de planejamento e execução de um evento de arrecadação de fundos escolar","Create a new flowchart to get started or organize your work with folders.":"Crie um novo fluxograma para começar ou organize seu trabalho com pastas.","Create flowcharts instantly: Type or paste text, see it visualized.":"Crie fluxogramas instantaneamente: Digite ou cole o texto, veja-o visualizado.","Create unlimited diagrams for just $6/month!":"Crie diagramas ilimitados por apenas $6/mês!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Crie fluxogramas ilimitados armazenados na nuvem - acessíveis em qualquer lugar!","Create with AI":"Crie com IA","Created Date":"Data de Criação","Creating an edge between two nodes is done by indenting the second node below the first":"Criar uma aresta entre dois nós é feito indentando o segundo nó abaixo do primeiro","Curve Style":"Estilo de Curva","Custom CSS":"CSS Personalizado","Custom Sharing Options":"Opções de Compartilhamento Personalizadas","Custom sharing & public links":"Compartilhamento personalizado e links públicos","Customer Portal":"Portal do cliente","Daily Sandbox Editor":"Editor de Sandbox diário","Dark":"Escuro","Dark Mode":"Modo escuro","Data Import (Visio, Lucidchart, CSV)":"Importação de dados (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Funcionalidade de importação de dados para diagramas complexos","Date":"Data","Delete":"Excluir","Delete {0}":["Excluir ",["0"]],"Describe it and it appears":"Descreva e ele aparecerá","Describe your idea. Get a diagram worth presenting.":"Descreva sua ideia. Obtenha um diagrama que vale a pena apresentar.","Design a software development lifecycle flowchart for an agile team":"Projetar um fluxograma do ciclo de vida de desenvolvimento de software para uma equipe ágil","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Desenvolver uma árvore de decisão para um CEO avaliar novas oportunidades de mercado potenciais","Direction":"Direção","Dismiss":"Dispensar","Do you offer discounts for students or nonprofits?":"Vocês oferecem descontos para estudantes ou organizações sem fins lucrativos?","Do you want to delete this?":"Você deseja deletar isso?","Document":"Documento","Don\'t Lose Your Work":"Não Perca Seu Trabalho","Download":"Baixar","Download JPG":"Baixar JPG","Download PNG":"Baixar PNG","Download SVG":"Baixar SVG","Drag and drop a CSV file here, or click to select a file":"Arraste e solte um arquivo CSV aqui ou clique para selecionar um arquivo","Draw an edge from multiple nodes by beginning the line with a reference":"Desenhe uma aresta de vários nós começando a linha com uma referência","Drop the file here ...":"Solte o arquivo aqui ...","Each line becomes a node":"Cada linha se torna um nó","Edge ID, Classes, Attributes":"ID de Borda, Classes, Atributos","Edge Label":"Rótulo de Borda","Edge Label Column":"Coluna de Rótulo de Borda","Edge Style":"Estilo de Borda","Edge Text Size":"Tamanho do Texto da Borda","Edge missing indentation":"Recuo em falta na borda","Edges":"Bordas","Edges are declared in the same row as their source node":"As bordas são declaradas na mesma linha que seu nó de origem","Edges are declared in the same row as their target node":"As bordas são declaradas na mesma linha que seu nó de destino","Edges are declared in their own row":"As bordas são declaradas em sua própria linha","Edges can also have ID\'s, classes, and attributes before the label":"As bordas também podem ter ID\'s, classes e atributos antes da etiqueta","Edges can be styled with dashed, dotted, or solid lines":"As bordas podem ser estilizadas com linhas tracejadas, pontilhadas ou sólidas","Edges in Separate Rows":"Bordas em Linhas Separadas","Edges in Source Node Row":"Bordas na Linha do Nó de Origem","Edges in Target Node Row":"Bordas na Linha do Nó de Destino","Edit":"Editar","Edit with AI":"Edição com IA","Editable":"Editável","Editor":"Editor","Email":"E-mail","Empty":"Vazio","Enable to set a consistent height for all nodes":"Ativar para definir uma altura consistente para todos os nós","Enter a name for the cloned flowchart.":"Insira um nome para o fluxograma clonado.","Enter a name for the new folder.":"Insira um nome para a nova pasta.","Enter a new name for the {0}.":["Insira um novo nome para o ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Digite seu endereço de e-mail e enviaremos um link mágico para fazer login.","Enter your email address below and we\'ll send you a link to reset your password.":"Digite seu endereço de e-mail abaixo e enviaremos um link para redefinir sua senha.","Equal To":"Igual a","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Cada diagrama é exportado em PNG, SVG ou link compartilhável - pronto para a reunião, o documento ou a apresentação.","Everything you need to know about Flowchart Fun Pro":"Tudo o que você precisa saber sobre o Flowchart Fun Pro","Examples":"Exemplos","Excalidraw":"Excalidraw","Exclusive Office Hours":"Horário de atendimento exclusivo","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Experimente a eficiência e segurança de carregar arquivos locais diretamente em seu fluxograma, perfeito para gerenciar documentos relacionados ao trabalho offline. Desbloqueie esse recurso exclusivo do Pro e muito mais com o Flowchart Fun Pro, disponível por apenas $6/mês.","Explore Pro":"Explore Pro","Explore more":"Explore mais","Export":"Exportar","Export clean diagrams without branding":"Exporte diagramas limpos sem marcação","Export to PNG & JPG":"Exportar para PNG e JPG","Export to PNG, JPG, and SVG":"Exportar para PNG, JPG e SVG","Feature Breakdown":"Descrição das funcionalidades","Feedback":"Feedback","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Sinta-se à vontade para explorar e entrar em contato conosco através da página <0>Feedback0> se tiver alguma preocupação.","Fine-tune layouts and visual styles":"Ajuste layouts e estilos visuais","Fixed Height":"Altura fixa","Fixed Node Height":"Altura do Nó Fixa","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"O Flowchart Fun Pro oferece fluxogramas ilimitados, colaboradores ilimitados e armazenamento ilimitado por apenas $6/mês.","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun é construído e mantido por um único desenvolvedor. Seu apoio mantém ele funcionando.","Follow Us on Twitter":"Siga-nos no Twitter","Font Family":"Família de Fontes","Forgot your password?":"Esqueceu sua senha?","Free":"Grátis ","Free users: charts in the sandbox expire after 7 days.":"Usuários gratuitos: os gráficos no sandbox expiram após 7 dias.","Frequently Asked Questions":"Perguntas frequentes","Full-screen, read-only, and template sharing":"Compartilhamento em tela cheia, somente leitura e modelos","Fullscreen":"Tela cheia","General":"Geral","Generate flowcharts from text automatically":"Gere fluxogramas automaticamente a partir de texto","Get Pro Access Now":"Obtenha acesso Pro agora","Get Unlimited AI Requests":"Obtenha solicitações ilimitadas de IA","Get rapid responses to your questions":"Obtenha respostas rápidas para suas perguntas","Get unlimited flowcharts and premium features":"Obtenha fluxogramas ilimitados e recursos premium","Go back home":"Volte para casa","Go to the Editor":"Vá para o Editor","Go to your Sandbox":"Vá para sua caixa de areia","Graph":"Diagrama","Green?":"Verde?","Grid":"Grade","Have complex questions or issues? We\'re here to help.":"Tem questões ou problemas complexos? Estamos aqui para ajudar.","Here are some Pro features you can now enjoy.":"Aqui estão algumas funcionalidades Pro que você pode desfrutar agora.","High-quality exports with embedded fonts":"Exportações de alta qualidade com fontes incorporadas","History":"Histórico","Home":"Página inicial","How are edges declared in this data?":"Como as arestas são declaradas nestes dados?","How fast can I actually make something?":"Quão rápido posso realmente criar algo?","How would you like to save your chart?":"Como você gostaria de salvar seu gráfico?","I would like to request a new template:":"Eu gostaria de solicitar um novo modelo:","ID\'s":"IDs","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Se uma conta com esse e-mail existir, enviamos um e-mail com instruções sobre como redefinir sua senha.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Se você quiser criar uma borda, indente esta linha. Se não, escape o dois-pontos com uma barra invertida <0>\\\\:0>","Images":"Imagens","Import Data":"Importar dados","Import data from a CSV file.":"Importar dados de um arquivo CSV.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Importar dados de qualquer arquivo CSV e mapeá-los para um novo fluxograma. Esta é uma ótima maneira de importar dados de outras fontes, como Lucidchart, Google Sheets e Visio.","Import from CSV":"Importar do CSV","Import from Visio, Lucidchart, CSV":"Importar do Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Importar de Visio, Lucidchart e CSV","Import from anywhere":"Importar de qualquer lugar","Import from popular diagram tools":"Importe de ferramentas populares de diagramas","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importe seu diagrama para o Microsoft Visio usando um desses arquivos CSV.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Importar dados é um recurso profissional. Você pode atualizar para o Flowchart Fun Pro por apenas $6/mês.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Inclua um título usando um atributo <0>title0>. Para usar a coloração do Visio, adicione um atributo <1>roleType1> igual a uma das seguintes opções:","Indent to connect nodes":"Identar para conectar os nós","Info":"Informações","Is":"É","Is my data private?":"Meus dados são privados?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"O JSON Canvas é uma representação JSON do seu diagrama usado pelo <0>Obsidian0> Canvas e outras aplicações.","Join 2000+ professionals who\'ve upgraded their workflow":"Junte-se a mais de 2000 profissionais que aprimoraram seu fluxo de trabalho","Join thousands of happy users who love Flowchart Fun":"Junte-se a milhares de usuários felizes que amam o Flowchart Fun","Keep Things Private":"Mantenha as coisas privadas","Keep changes?":"Manter alterações?","Keep practicing":"Continue praticando","Keep your data private on your computer":"Mantenha seus dados privados em seu computador","Language":"Idioma","Layout":"Layout","Layout Algorithm":"Algoritmo de layout","Layout Frozen":"Layout Congelado","Leading References":"Principais Referências","Learn More":"Saber mais","Learn Syntax":"Aprender Sintaxe","Learn about Flowchart Fun Pro":"Saiba mais sobre o Flowchart Fun Pro","Left to Right":"Da esquerda para direita","Let us know why you\'re canceling. We\'re always looking to improve.":"Deixe-nos saber por que você está cancelando. Estamos sempre procurando melhorar.","Light":"Claro","Light Mode":"Modo claro","Link":"Link","Link back":"Voltar ao link","Load":"Carregar","Load Chart":"Carregar Gráfico","Load File":"Carregar Arquivo","Load Files":"Carregar Arquivos","Load default content":"Carregar conteúdo padrão","Load from link?":"Carregar a partir do link?","Load layout and styles":"Carregar layout e estilos","Loading...":"Carregando...","Local File Support":"Suporte de Arquivo Local","Local saving for offline access":"Salvamento local para acesso offline","Lock Zoom to Graph":"Bloquear Zoom para o Gráfico","Log In":"Acessar","Log Out":"Deslogar","Log in to Save":"Faça login para salvar","Log in to upgrade your account":"Faça login para atualizar sua conta","Make a One-Time Donation":"Faça uma Doação Única","Make it yours":"Faça-o seu","Make publicly accessible":"Tornar publicamente acessível","Manage Billing":"Gerenciar Faturamento","Map Data":"Mapear Dados","Maximum width of text inside nodes":"Largura máxima do texto dentro dos nós","Monthly":"Mensal","Move":"Mover","Move {0}":["Mover ",["0"]],"Multiple pointers on same line":"Múltiplos ponteiros na mesma linha","My dog ate my credit card!":"Meu cachorro comeu meu cartão de crédito!","Name":"Nome","Name Chart":"Nome do Gráfico","Name your chart":"Dê um nome ao seu gráfico","New":"Novo","New Email":"Novo Email","New Flowchart":"Novo Fluxograma","New Folder":"Nova Pasta","Next charge":"Próxima cobrança","No Edges":"Sem Bordas","No Folder (Root)":"Sem Pasta (Raiz)","No Watermarks!":"Sem Marca d\'Água!","No charts yet":"Nenhum gráfico ainda","No items in this folder":"Nenhum item nesta pasta","No matching charts found":"Nenhum gráfico correspondente encontrado","Node Border Style":"Estilo de Borda do Nó","Node Colors":"Cores do Nó","Node ID":"ID do Nó","Node ID, Classes, Attributes":"ID do Nó, Classes, Atributos","Node Label":"Rótulo do Nó","Node Shape":"Forma do Nó","Node Shapes":"Formas do Nó","Nodes":"Nós","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Nós podem ser estilizados com traços, pontos ou duplos. Bordas também podem ser removidas com border_none.","Not Empty":"Não Vazio","Now you\'re thinking with flowcharts!":"Agora você está pensando com fluxogramas!","Office Hours":"Horário de trabalho","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":" vez em quando, o link mágico acabará em sua pasta de spam. Se você não o vir após alguns minutos, verifique lá ou solicite um novo link.","One on One Support":"Suporte Um a Um","One-on-One Support":"Suporte Individual","Open Customer Portal":"Abra o portal do cliente","Operation canceled":"Operação cancelada","Or maybe blue!":"Ou talvez azul!","Organization Chart":"Gráfico de Organização","PNG & JPG export":"Exportar PNG e JPG","Padding":"Espaçamento","Page not found":"Página não encontrada","Password":"Senha","Past Due":"Atrasado","Paste a document to convert it":"Cole um documento para convertê-lo","Paste your document or outline here to convert it into an organized flowchart.":"Cole seu documento ou esboço aqui para convertê-lo em um fluxograma organizado.","Pasted content detected. Convert to Flowchart Fun syntax?":"Conteúdo colado detectado. Converter para a sintaxe do Flowchart Fun?","Perfect for docs and quick sharing":"Perfeito para documentos e compartilhamento rápido","Permanent Charts are a Pro Feature":"Gráficos permanentes são um recurso Pro","Playbook":"Cartilha","Pointer and container on same line":"Ponteiro e contêiner na mesma linha","Priority One-on-One Support":"Suporte prioritário um a um","Priority support":"Suporte prioritário","Privacy Policy":"Política de Privacidade","Pro starts at $4/mo billed yearly. Cancel anytime.":"O Pro começa em R$4/mês cobrado anualmente. Cancelar a qualquer momento.","Pro tip: Right-click any node to customize its shape and color":"Dica profissional: Clique com o botão direito em qualquer nó para personalizar sua forma e cor.","Processing Data":"Processando Dados","Processing...":"Processando...","Prompt":"Sugestão","Public":"Público","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Importe dados do Visio, Lucidchart, CSV ou comece a partir de um modelo. Não é necessário recriar o que já existe.","Quick experimentation space that resets daily":"Espaço de experimentação rápida que é reiniciado diariamente","Random":"Aleatório","Rapid Deployment Templates":"Modelos de implantação rápida","Rapid Templates":"Modelos Rápidos","Raster Export (PNG, JPG)":"Exportação de Raster (PNG, JPG)","Rate limit exceeded. Please try again later.":"Limite de taxa excedido. Por favor, tente novamente mais tarde.","Read-only":"Somente leitura","Reference by Class":"Referência por Classe","Reference by ID":"Referência por ID","Reference by Label":"Referência por Rótulo","References":"Referências","References are used to create edges between nodes that are created elsewhere in the document":"Referências são usadas para criar arestas entre nós que são criados em outro lugar no documento","Referencing a node by its exact label":"Referenciando um nó pelo seu rótulo exato","Referencing a node by its unique ID":"Referenciando um nó pelo seu ID único","Referencing multiple nodes with the same assigned class":"Referenciando vários nós com a mesma classe atribuída","Refresh Page":"Atualizar Página","Reload to Update":"Recarregar para Atualizar","Rename":"Renomear","Rename {0}":["Renomear ",["0"]],"Request Magic Link":"Solicitar Link Mágico","Request Password Reset":"Solicitar Redefinição de Senha","Reset":"Resetar","Reset Password":"Redefinir Senha","Resume Subscription":"Resumir inscrição","Return":"Retornar","Right to Left":"Da direita para esquerda","Right-click nodes for options":"Clique com o botão direito nos nós para ver as opções","Roadmap":"Roteiro","Rotate Label":"Rotular Rotação","SVG Export is a Pro Feature":"A exportação de SVG é uma funcionalidade Pro","SVG, PDF & all export formats":"SVG, PDF e todos os formatos de exportação","Satisfaction guaranteed or first payment refunded":"Satisfação garantida ou primeiro pagamento reembolsado","Save":"Salvar","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Salve localmente, trabalhe offline e controle exatamente quem vê o quê. Nenhum dado sai da sua máquina a menos que você permita.","Save time with AI and dictation, making it easy to create diagrams.":"Economize tempo com IA e ditado, facilitando a criação de diagramas.","Save to Cloud":"Salvar para Nuvem","Save to File":"Salvar para Arquivo","Save your Work":"Salve seu trabalho","Schedule personal consultation sessions":"Agende sessões de consulta pessoal","Secure payment":"Pagamento seguro","See more reviews on Product Hunt":"Veja mais avaliações no Product Hunt","See what\'s possible":"Veja o que é possível","Select a destination folder for \\"{0}\\".":"Selecione uma pasta de destino para \\\\","Send us a message":"Envie-nos uma mensagem","Set a consistent height for all nodes":"Definir uma altura consistente para todos os nós","Settings":"Configurações","Share":"Compartilhar","Sign In":"Entrar","Sign in with <0>GitHub0>":"Entrar com <0>GitHub0>","Sign in with <0>Google0>":"Entrar com <0>Google0>","Sorry! This page is only available in English.":"Sinto muito! Esta página só está disponível em inglês.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Desculpe, houve um erro ao converter o texto em um fluxograma. Tente novamente mais tarde.","Sort Ascending":"Ordenar em ordem crescente","Sort Descending":"Classificação Descrescente","Sort by {0}":["Classificar por ",["0"]],"Source Arrow Shape":"Forma da Seta de Origem","Source Column":"Coluna de Origem","Source Delimiter":"Delimitador de Origem","Source Distance From Node":"Distância da Origem ao Nó","Source/Target Arrow Shape":"Forma da Seta de Origem/Destino","Spacing":"Espaçamento","Special Attributes":"Atributos Especiais","Start":"Início","Start Over":"Recomeçar","Start faster with use-case specific templates":"Comece mais rápido com modelos específicos de casos de uso","Start for free":"Comece de graça","Status":"Status","Step 1":"Passo 1","Step 2":"Passo 2","Step 3":"Passo 3","Store any data associated to a node":"Armazenar quaisquer dados associados a um nó","Style Classes":"Classes de Estilo","Style with classes":"Estilizar com classes","Submit":"Enviar","Subscription":"Inscrição","Subscription Successful!":"Assinatura bem-sucedida!","Subscription will end":"Inscrição acabará","Support":"Suporte","Target Arrow Shape":"Forma da Seta de Destino","Target Column":"Coluna Alvo","Target Delimiter":"Delimitador Alvo","Target Distance From Node":"Distância-alvo do Nó","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Diga ao AI o que você precisa em inglês simples. Seu diagrama é criado em segundos.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Nos diga o que está funcionando e o que não está. Cada mensagem é lida pelo desenvolvedor.","Text Color":"Cor do Texto","Text Horizontal Offset":"Deslocamento Horizontal do Texto","Text Leading":"Texto Principal","Text Max Width":"Largura Máxima do Texto","Text Vertical Offset":"Deslocamento Vertical do Texto","Text followed by colon+space creates an edge with the text as the label":"Texto seguido de dois-pontos+espaço cria uma aresta com o texto como rótulo","Text on a line creates a node with the text as the label":"Texto em uma linha cria um nó com o texto como rótulo","Thank you for your feedback!":"Agradecimentos pelo seu feedback!","The beauty and magic reside in the minimalism.":"A beleza e a magia residem no minimalismo.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"A melhor maneira de mudar os estilos é clicar com o botão direito do mouse em um nó ou borda e selecionar o estilo desejado.","The column that contains the edge label(s)":"A coluna que contém o(s) rótulo(s) da aresta","The column that contains the source node ID(s)":"A coluna que contém o(s) ID(s) do nó de origem","The column that contains the target node ID(s)":"A coluna que contém o(s) ID(s) do nó de destino","The delimiter used to separate multiple source nodes":"O delimitador usado para separar vários nós de origem","The delimiter used to separate multiple target nodes":"O delimitador usado para separar vários nós de destino","The fastest way to turn what\'s in your head into something everyone else can understand.":"A maneira mais rápida de transformar o que está em sua cabeça em algo que todos possam entender.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"O plano gratuito funciona muito bem para uso diário. Se você precisar de recursos Pro, é mensal por $6/mês - cancele a qualquer momento sem compromisso.","The possible shapes are:":"As formas possíveis são:","Theme":"Tema","Theme Customization Editor":"Editor de Personalização de Temas","Theme Editor":"Editor de Temas","Theme editor":"Editor de tema","There are no edges in this data":"Não há arestas nestes dados","This action cannot be undone.":"Esta ação não pode ser desfeita.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Esta funcionalidade está disponível apenas para usuários Pro. <0>Torne-se um usuário Pro0> para desbloqueá-la.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Isso pode levar entre 30 segundos e 2 minutos, dependendo do tamanho da sua entrada.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Esta caixa de areia é perfeita para experimentar, mas lembre-se - ela é resetada diariamente. Faça o upgrade agora e mantenha seu trabalho atual!","This will replace the current content.":"Isso substituirá o conteúdo atual.","This will replace your current chart content with the template content.":"Isso irá substituir o conteúdo atual do seu gráfico pelo conteúdo do modelo.","This will replace your current sandbox.":"Isso substituirá sua sandbox atual.","Time to decide":"Hora de decidir","Tip":"Dica","To fix this change one of the edge IDs":"Para corrigir isso, altere um dos IDs de borda","To fix this change one of the node IDs":"Para corrigir isso, altere um dos IDs de nó","To fix this move one pointer to the next line":"Para corrigir isso, mova um ponteiro para a próxima linha","To fix this start the container <0/> on a different line":"Para corrigir isso, inicie o container <0/> em uma linha diferente","To learn more about why we require you to log in, please read <0>this blog post0>.":"Para saber mais sobre por que precisamos que você faça login, leia <0>este post no blog0>.","Top to Bottom":"De cima para baixo","Transform Your Ideas into Professional Diagrams in Seconds":"Transforme Suas Ideias em Diagramas Profissionais em Segundos","Transform text into diagrams instantly":"Transforme texto em diagramas instantaneamente.","Try AI":"Experimente IA","Try adjusting your search or filters to find what you\'re looking for.":"Tente ajustar sua pesquisa ou filtros para encontrar o que procura.","Try again":"Tente novamente","Try it free":"Experimente grátis","Two edges have the same ID":"Dois bordos têm o mesmo ID","Two nodes have the same ID":"Dois nós têm o mesmo ID","Type it. See it.":"Digite. Veja.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Ops, você esgotou suas solicitações gratuitas! Atualize para o Flowchart Fun Pro e tenha conversões ilimitadas de diagramas, e continue transformando textos em fluxogramas claros e visuais com a mesma facilidade de copiar e colar.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Em menos de 60 segundos. Digite algumas linhas de texto ou descreva o que você precisa para o AI, e seu diagrama aparece instantaneamente. Exporte ou compartilhe com um clique.","Undo":"Desfazer","Unescaped special character":"Caractere especial não escapado","Unique text value to identify a node":"Valor de texto único para identificar um nó","Unknown":"Desconhecido","Unknown Parsing Error":"Erro de Análise Desconhecido","Unlimited Flowcharts":"Fluxogramas ilimitados.","Unlimited Permanent Flowcharts":"Fluxogramas Permanentes Ilimitados","Unlimited cloud-saved flowcharts":"Fluxogramas ilimitados salvos na nuvem","Unlimited saved diagrams":"Diagramas salvos ilimitados","Unlock AI Features and never lose your work with a Pro account.":"Desbloqueie recursos de IA e nunca perca seu trabalho com uma conta Pro.","Unlock Unlimited AI Flowcharts":"Desbloqueie Fluxogramas de IA ilimitados","Unpaid":"Não pago","Update Email":"Atualizar e-mail","Updated Date":"Data Atualizada","Upgrade Now - Save My Work":"Faça o upgrade agora - Salve Meu Trabalho","Upgrade to Flowchart Fun Pro and unlock:":"Faça o upgrade para o Flowchart Fun Pro e desbloqueie:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Atualize para o Flowchart Fun Pro para desbloquear a exportação de SVG e aproveitar recursos mais avançados para seus diagramas.","Upgrade to Pro":"Atualize para Pro","Upgrade to Pro for permanent charts.":"Atualize para o Pro para gráficos permanentes.","Upload your File":"Faça o upload do seu arquivo","Use Custom CSS Only":"Usar Somente CSS Personalizado","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Usa o Lucidchart ou o Visio? A importação de CSV torna fácil obter dados de qualquer fonte!","Use classes to group nodes":"Use classes para agrupar nós","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Use o atributo <0>href0> para definir um link em um nó que abra em uma nova guia.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Use o atributo <0>src0> para definir a imagem de um nó. A imagem será dimensionada para caber no nó, então você pode precisar ajustar a largura e altura do nó para obter o resultado desejado. Apenas imagens públicas (não bloqueadas por CORS) são suportadas.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Use os atributos <0>w0> e <1>h1> para definir explicitamente a largura e altura de um nó.","Use the customer portal to change your billing information.":"Use o portal do cliente para alterar suas informações de cobrança.","Use these settings to adapt the look and behavior of your flowcharts":"Use essas configurações para adaptar a aparência e o comportamento de seus fluxogramas","Use this file for org charts, hierarchies, and other organizational structures.":"Use este arquivo para organogramas, hierarquias e outras estruturas organizacionais.","Use this file for sequences, processes, and workflows.":"Use este arquivo para sequências, processos e fluxos de trabalho.","Use this mode to modify and enhance your current chart.":"Use este modo para modificar e aprimorar seu fluxograma atual.","Used at":"Utilizado em","User":"Usuário","Vector Export (SVG)":"Exportação de Vetor (SVG)","View on Github":"Visualizar no Github","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Quer criar um fluxograma a partir de um documento? Cole-o no editor e clique em \'Converter em Fluxograma\'.","Watermark-Free Diagrams":"Diagramas sem marca d\'água","Watermarks":"Marca d\'água","Welcome to Flowchart Fun":"Bem-vindo ao Flowchart Fun","What if I just need it for one project?":"E se eu só precisar para um projeto?","What our users are saying":"O que nossos usuários estão dizendo","What\'s next?":"E o próximo passo?","What\'s this?":"O que é isso?","Width":"Largura","Width and Height":"Largura e Altura","Will my diagrams actually look professional?":"Meus diagramas terão um aspecto profissional?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Com a versão Pro do Flowchart Fun, você pode usar comandos em linguagem natural para rapidamente detalhar seu fluxograma, ideal para criar diagramas em qualquer lugar. Por apenas $6 por mês, obtenha a facilidade de edição de IA acessível para aprimorar sua experiência de fluxograma.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Com a versão pro, você pode salvar e carregar arquivos locais. É perfeito para gerenciar documentos relacionados ao trabalho offline.","Would you like to continue?":"Você gostaria de continuar?","Would you like to suggest a new example?":"Gostaria de sugerir um novo exemplo?","Wrap text in parentheses to connect to any node":"Envolver o texto entre parênteses para se conectar a qualquer nó","Write like an outline":"Escreva como um esboço","Write your prompt here or click to enable the microphone, then press and hold to record.":"Escreva sua instrução aqui ou clique para ativar o microfone, depois pressione e segure para gravar.","Yearly":"Anualmente","Yes — send us a message and we\'ll set you up with a discounted rate.":"Sim - nos envie uma mensagem e nós lhe daremos uma taxa com desconto.","Yes, Replace Content":"Sim, Substituir Conteúdo","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Sim. Cada diagrama utiliza layouts equilibrados e automáticos com tipografia limpa. Você pode personalizar temas, cores e estilos - e exportar como SVG nítido ou PNG de alta resolução que fica ótimo em qualquer apresentação ou documento.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Sim. A versão Pro suporta importação de Visio, Lucidchart e CSV - assim você pode trazer o que já tem sem precisar recriá-lo do zero.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Sim. Você pode salvar e carregar arquivos localmente, trabalhar completamente offline e controlar exatamente quem vê seus diagramas. Nenhum dado sai da sua máquina a menos que você escolha compartilhar.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Você está prestes a adicionar ",["numNodes"]," nós e ",["numEdges"]," arestas ao seu gráfico."],"You need to log in to access this page.":"Você precisa fazer login para acessar esta página.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Você já é um usuário Pro. <0>Gerenciar Assinatura0><1/>Tem perguntas ou solicitações de recursos? <2>Deixe-nos saber2>","You\'re doing great!":"Você está indo muito bem!","You\'re on the free plan.":"Você está no plano gratuito.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Você usou todas as suas conversões de IA gratuitas. Faça upgrade para o Pro e tenha uso ilimitado de IA, temas personalizados, compartilhamento privado e muito mais. Continue criando incríveis fluxogramas sem esforço!","Your Charts":"Seus Gráficos","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Sua caixa de areia é um espaço para experimentar livremente com nossas ferramentas de fluxograma, resetando todos os dias para um começo fresco.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Seus gráficos são somente leitura porque sua conta não está mais ativa. Visite sua página de <0>conta0> para saber mais.","Your next diagram should be your best one.":"Seu próximo diagrama deve ser o melhor.","Your subscription is <0>{statusDisplay}0>.":["Sua assinatura está <0>",["statusDisplay"],"0>."],"Your work stays yours":"Seu trabalho permanece seu.","Zoom In":"Zoom In","Zoom Out":"Diminuir o zoom","month":"mês","or":"ou","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"R$48/ano (33% de desconto) · Cancelar a qualquer momento","$6/mo":"R$6/mês","1 Temporary Flowchart":"1 Fluxograma Temporário","1 diagram at a time":"1 diagrama por vez","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>Somente CSS Personalizado0> está habilitado. Somente as configurações de Layout e Avançadas serão aplicadas.","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0> é um projeto de código aberto feito por <1>Tone\xA0Row1>","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>Entrar0> / <1>Cadastrar1> com e-mail e senha","A new version of the app is available. Please reload to update.":"Uma nova versão do aplicativo está disponível. Por favor, recarregue para atualizar.","AI Creation & Editing":"Criação e Edição de IA","AI generation & editing":"Geração e edição de IA","AI-Powered Flowchart Creation":"Criação de fluxogramas com Inteligência Artificial","AI-generated from plain text in under 5 seconds.":"Gerado por IA a partir de texto simples em menos de 5 segundos.","AI-powered editing to supercharge your workflow":"Edição com inteligência artificial para turbinar seu fluxo de trabalho","About":"Sobre","Account":"Conta","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"Adicione uma barra invertida (<0>\\\\0>) antes de quaisquer caracteres especiais: <1>(1>, <2>:2>, <3>#3>, ou <4>.4>","Add some steps":"Adicione alguns passos","Advanced":"Avançado","Align Horizontally":"Alinhar Horizontalmente","Align Nodes":"Alinhar Nós","Align Vertically":"Alinhar Verticalmente","All this for just $6/month - less than your daily coffee ☕":"Tudo isso por apenas $6/mês - menos que o seu café diário ☕","Always presentation-ready":"Sempre pronto para apresentação","Amount":"Total","An error occurred. Try resubmitting or email {0} directly.":["Ocorreu um erro. Tente reenviar ou envie um e-mail direto para ",["0"],"."],"Appearance":"Aparência","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"Tem certeza de que deseja excluir o fluxograma? ","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"Tem certeza de que deseja excluir a pasta? ","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"Tem certeza de que deseja excluir a pasta? ","Are you sure?":"Tem certeza?","Arrow Size":"Tamanho da Seta","Attributes":"Atributos","August 2023":"Agosto de 2023","Back":"Voltar","Back To Editor":"Voltar ao editor","Background Color":"Cor de Fundo","Basic Flowchart":"Fluxograma Básico","Become a Github Sponsor":"Seja um patrocinador do Github","Become a Pro User":"Se torne um usuário Pro","Begin your journey":"Comece sua jornada","Billed annually at $48":"Cobrado anualmente a $48","Billed monthly at $6":"Cobrado mensalmente em $6","Blog":"Blog","Book a Meeting":"Reserve uma Reunião","Border Color":"Cor da Borda","Border Width":"Largura da Borda","Bottom to Top":"De baixo para cima","Breadthfirst":"Por extensão","Build your personal flowchart library":"Construa sua biblioteca pessoal de fluxogramas","Can I import my existing diagrams?":"Posso importar meus diagramas existentes?","Cancel":"Cancelar","Cancel anytime":"Cancelar a qualquer momento","Cancel your subscription. Your hosted charts will become read-only.":"Cancele sua inscrição. Seus diagramas hospedados não serão modificáveis.","Certain attributes can be used to customize the appearance or functionality of elements.":"Certos atributos podem ser usados para personalizar a aparência ou funcionalidade dos elementos.","Change Email Address":"Mude o endereço de email","Changelog":"Registro de alterações","Charts":"Diagramas","Check out the guide:":"Confira o guia:","Check your email for a link to log in.<0/>You can close this window.":"Verifique seu e-mail para um link para fazer login. Você pode fechar esta janela.","Choose":"Escolha","Choose Template":"Escolha o Modelo","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"Escolha entre uma variedade de formas de seta para a origem e o destino de uma aresta. As formas incluem triângulo, triângulo-tee, triângulo-círculo, triângulo-cruz, triângulo-curva-inversa, vee, tee, quadrado, círculo, diamante, chevron e nenhum.","Choose how edges connect between nodes":"Escolha como as arestas se conectam entre os nós","Choose how nodes are automatically arranged in your flowchart":"Escolha como os nós são automaticamente dispostos em seu fluxograma","Circle":"Círculo","Classes":"Classes","Clear":"Apagar","Clear text?":"Limpar o texto?","Clone":"Clonar","Clone Flowchart":"Clonar Fluxograma","Close":"Fechar","Color":"Cor","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"As cores incluem vermelho, laranja, amarelo, azul, roxo, preto, branco e cinza.","Column":"Coluna","Comment":"Comente","Community templates":"Modelos da comunidade","Compare our plans and find the perfect fit for your flowcharting needs":"Compare nossos planos e encontre o ajuste perfeito para suas necessidades de fluxograma","Concentric":"Concêntrico","Confirm New Email":"Confirme o novo email","Confirm your email address to sign in.":"Confirme seu endereço de e-mail para fazer login.","Connect your Data":"Conecte seus Dados","Containers":"Recipientes","Containers are nodes that contain other nodes. They are declared using curly braces.":"Os containers são nós que contêm outros nós. Eles são declarados usando chaves.","Continue":"Continuar","Continue in Sandbox (Resets daily, work not saved)":"Continuar no Sandbox (Redefine diariamente, trabalho não salvo)","Controls the flow direction of hierarchical layouts":"Controla a direção do fluxo dos layouts hierárquicos","Convert":"Converter","Convert to Flowchart":"Converter para Fluxograma","Convert to hosted chart?":"Converter em diagrama hospedado?","Cookie Policy":"Política de Cookies","Copied SVG code to clipboard":"Código SVG copiado para a área de transferência","Copied {format} to clipboard":[["format"]," copiado para a área de transferência"],"Copy":"Copiar","Copy PNG Image":"Copiar imagem PNG","Copy SVG Code":"Copiar código SVG","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"Copie o seu código Excalidraw e cole-o em <0>excalidraw.com0> para editar. Esta funcionalidade é experimental e pode não funcionar com todos os diagramas. Se você encontrar um bug, por favor <1>deixe-nos saber1>.","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"Copie seu código mermaid.js ou abra diretamente no editor ao vivo mermaid.js.","Create":"Criar","Create Flowcharts using AI":"Criar Fluxogramas usando IA","Create Unlimited Flowcharts":"Crie fluxogramas ilimitados","Create a New Chart":"Criar um Novo Gráfico","Create a flowchart showing the steps of planning and executing a school fundraising event":"Criar um fluxograma mostrando os passos de planejamento e execução de um evento de arrecadação de fundos escolar","Create a new flowchart to get started or organize your work with folders.":"Crie um novo fluxograma para começar ou organize seu trabalho com pastas.","Create flowcharts instantly: Type or paste text, see it visualized.":"Crie fluxogramas instantaneamente: Digite ou cole o texto, veja-o visualizado.","Create unlimited diagrams for just $6/month!":"Crie diagramas ilimitados por apenas $6/mês!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"Crie fluxogramas ilimitados armazenados na nuvem - acessíveis em qualquer lugar!","Create with AI":"Crie com IA","Created Date":"Data de Criação","Creating an edge between two nodes is done by indenting the second node below the first":"Criar uma aresta entre dois nós é feito indentando o segundo nó abaixo do primeiro","Curve Style":"Estilo de Curva","Custom CSS":"CSS Personalizado","Custom Sharing Options":"Opções de Compartilhamento Personalizadas","Custom sharing & public links":"Compartilhamento personalizado e links públicos","Customer Portal":"Portal do cliente","Daily Sandbox Editor":"Editor de Sandbox diário","Dark":"Escuro","Dark Mode":"Modo escuro","Data Import (Visio, Lucidchart, CSV)":"Importação de dados (Visio, Lucidchart, CSV)","Data import feature for complex diagrams":"Funcionalidade de importação de dados para diagramas complexos","Date":"Data","Delete":"Excluir","Delete {0}":["Excluir ",["0"]],"Describe it and it appears":"Descreva e ele aparecerá","Describe your idea. Get a diagram worth presenting.":"Descreva sua ideia. Obtenha um diagrama que vale a pena apresentar.","Design a software development lifecycle flowchart for an agile team":"Projetar um fluxograma do ciclo de vida de desenvolvimento de software para uma equipe ágil","Develop a decision tree for a CEO to evaluate potential new market opportunities":"Desenvolver uma árvore de decisão para um CEO avaliar novas oportunidades de mercado potenciais","Direction":"Direção","Dismiss":"Dispensar","Do you offer discounts for students or nonprofits?":"Vocês oferecem descontos para estudantes ou organizações sem fins lucrativos?","Do you want to delete this?":"Você deseja deletar isso?","Document":"Documento","Don\'t Lose Your Work":"Não Perca Seu Trabalho","Download":"Baixar","Download JPG":"Baixar JPG","Download PNG":"Baixar PNG","Download SVG":"Baixar SVG","Drag and drop a CSV file here, or click to select a file":"Arraste e solte um arquivo CSV aqui ou clique para selecionar um arquivo","Draw an edge from multiple nodes by beginning the line with a reference":"Desenhe uma aresta de vários nós começando a linha com uma referência","Drop the file here ...":"Solte o arquivo aqui ...","Each line becomes a node":"Cada linha se torna um nó","Edge ID, Classes, Attributes":"ID de Borda, Classes, Atributos","Edge Label":"Rótulo de Borda","Edge Label Column":"Coluna de Rótulo de Borda","Edge Style":"Estilo de Borda","Edge Text Size":"Tamanho do Texto da Borda","Edge missing indentation":"Recuo em falta na borda","Edges":"Bordas","Edges are declared in the same row as their source node":"As bordas são declaradas na mesma linha que seu nó de origem","Edges are declared in the same row as their target node":"As bordas são declaradas na mesma linha que seu nó de destino","Edges are declared in their own row":"As bordas são declaradas em sua própria linha","Edges can also have ID\'s, classes, and attributes before the label":"As bordas também podem ter ID\'s, classes e atributos antes da etiqueta","Edges can be styled with dashed, dotted, or solid lines":"As bordas podem ser estilizadas com linhas tracejadas, pontilhadas ou sólidas","Edges in Separate Rows":"Bordas em Linhas Separadas","Edges in Source Node Row":"Bordas na Linha do Nó de Origem","Edges in Target Node Row":"Bordas na Linha do Nó de Destino","Edit":"Editar","Edit with AI":"Edição com IA","Editable":"Editável","Editor":"Editor","Email":"E-mail","Empty":"Vazio","Enable to set a consistent height for all nodes":"Ativar para definir uma altura consistente para todos os nós","Enter a name for the cloned flowchart.":"Insira um nome para o fluxograma clonado.","Enter a name for the new folder.":"Insira um nome para a nova pasta.","Enter a new name for the {0}.":["Insira um novo nome para o ",["0"],"."],"Enter your email address and we\'ll send you a magic link to sign in.":"Digite seu endereço de e-mail e enviaremos um link mágico para fazer login.","Enter your email address below and we\'ll send you a link to reset your password.":"Digite seu endereço de e-mail abaixo e enviaremos um link para redefinir sua senha.","Equal To":"Igual a","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"Cada diagrama é exportado em PNG, SVG ou link compartilhável - pronto para a reunião, o documento ou a apresentação.","Everything you need to know about Flowchart Fun Pro":"Tudo o que você precisa saber sobre o Flowchart Fun Pro","Examples":"Exemplos","Excalidraw":"Excalidraw","Exclusive Office Hours":"Horário de atendimento exclusivo","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"Experimente a eficiência e segurança de carregar arquivos locais diretamente em seu fluxograma, perfeito para gerenciar documentos relacionados ao trabalho offline. Desbloqueie esse recurso exclusivo do Pro e muito mais com o Flowchart Fun Pro, disponível por apenas $6/mês.","Explore Pro":"Explore Pro","Explore more":"Explore mais","Export":"Exportar","Export clean diagrams without branding":"Exporte diagramas limpos sem marcação","Export to PNG & JPG":"Exportar para PNG e JPG","Export to PNG, JPG, and SVG":"Exportar para PNG, JPG e SVG","Feature Breakdown":"Descrição das funcionalidades","Feedback":"Feedback","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"Sinta-se à vontade para explorar e entrar em contato conosco através da página <0>Feedback0> se tiver alguma preocupação.","Fine-tune layouts and visual styles":"Ajuste layouts e estilos visuais","Fixed Height":"Altura fixa","Fixed Node Height":"Altura do Nó Fixa","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"O Flowchart Fun Pro oferece fluxogramas ilimitados, colaboradores ilimitados e armazenamento ilimitado por apenas $6/mês.","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"Flowchart Fun é um projeto de código aberto feito por <0>Tone\xA0Row0>","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun é construído e mantido por um único desenvolvedor. Seu apoio mantém ele funcionando.","Follow Us on Twitter":"Siga-nos no Twitter","Font Family":"Família de Fontes","Forgot your password?":"Esqueceu sua senha?","Free":"Grátis ","Free users: charts in the sandbox expire after 7 days.":"Usuários gratuitos: os gráficos no sandbox expiram após 7 dias.","Frequently Asked Questions":"Perguntas frequentes","Full-screen, read-only, and template sharing":"Compartilhamento em tela cheia, somente leitura e modelos","Fullscreen":"Tela cheia","General":"Geral","Generate flowcharts from text automatically":"Gere fluxogramas automaticamente a partir de texto","Get Pro Access Now":"Obtenha acesso Pro agora","Get Unlimited AI Requests":"Obtenha solicitações ilimitadas de IA","Get rapid responses to your questions":"Obtenha respostas rápidas para suas perguntas","Get unlimited flowcharts and premium features":"Obtenha fluxogramas ilimitados e recursos premium","Go back home":"Volte para casa","Go to the Editor":"Vá para o Editor","Go to your Sandbox":"Vá para sua caixa de areia","Graph":"Diagrama","Green?":"Verde?","Grid":"Grade","Group ranking and ranked-choice voting, free":"Classificação em grupo e votação de escolha classificada, grátis","Have complex questions or issues? We\'re here to help.":"Tem questões ou problemas complexos? Estamos aqui para ajudar.","Here are some Pro features you can now enjoy.":"Aqui estão algumas funcionalidades Pro que você pode desfrutar agora.","High-quality exports with embedded fonts":"Exportações de alta qualidade com fontes incorporadas","History":"Histórico","Home":"Página inicial","How are edges declared in this data?":"Como as arestas são declaradas nestes dados?","How fast can I actually make something?":"Quão rápido posso realmente criar algo?","How would you like to save your chart?":"Como você gostaria de salvar seu gráfico?","I would like to request a new template:":"Eu gostaria de solicitar um novo modelo:","ID\'s":"IDs","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"Se uma conta com esse e-mail existir, enviamos um e-mail com instruções sobre como redefinir sua senha.","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"Se você quiser criar uma borda, indente esta linha. Se não, escape o dois-pontos com uma barra invertida <0>\\\\:0>","Images":"Imagens","Import Data":"Importar dados","Import data from a CSV file.":"Importar dados de um arquivo CSV.","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"Importar dados de qualquer arquivo CSV e mapeá-los para um novo fluxograma. Esta é uma ótima maneira de importar dados de outras fontes, como Lucidchart, Google Sheets e Visio.","Import from CSV":"Importar do CSV","Import from Visio, Lucidchart, CSV":"Importar do Visio, Lucidchart, CSV","Import from Visio, Lucidchart, and CSV":"Importar de Visio, Lucidchart e CSV","Import from anywhere":"Importar de qualquer lugar","Import from popular diagram tools":"Importe de ferramentas populares de diagramas","Import your diagram it into Microsoft Visio using one of these CSV files.":"Importe seu diagrama para o Microsoft Visio usando um desses arquivos CSV.","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"Importar dados é um recurso profissional. Você pode atualizar para o Flowchart Fun Pro por apenas $6/mês.","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"Inclua um título usando um atributo <0>title0>. Para usar a coloração do Visio, adicione um atributo <1>roleType1> igual a uma das seguintes opções:","Indent to connect nodes":"Identar para conectar os nós","Info":"Informações","Is":"É","Is my data private?":"Meus dados são privados?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"O JSON Canvas é uma representação JSON do seu diagrama usado pelo <0>Obsidian0> Canvas e outras aplicações.","Join 2000+ professionals who\'ve upgraded their workflow":"Junte-se a mais de 2000 profissionais que aprimoraram seu fluxo de trabalho","Join thousands of happy users who love Flowchart Fun":"Junte-se a milhares de usuários felizes que amam o Flowchart Fun","Keep Things Private":"Mantenha as coisas privadas","Keep changes?":"Manter alterações?","Keep practicing":"Continue praticando","Keep your data private on your computer":"Mantenha seus dados privados em seu computador","Language":"Idioma","Layout":"Layout","Layout Algorithm":"Algoritmo de layout","Layout Frozen":"Layout Congelado","Leading References":"Principais Referências","Learn More":"Saber mais","Learn Syntax":"Aprender Sintaxe","Learn about Flowchart Fun Pro":"Saiba mais sobre o Flowchart Fun Pro","Left to Right":"Da esquerda para direita","Let us know why you\'re canceling. We\'re always looking to improve.":"Deixe-nos saber por que você está cancelando. Estamos sempre procurando melhorar.","Light":"Claro","Light Mode":"Modo claro","Link":"Link","Link back":"Voltar ao link","Load":"Carregar","Load Chart":"Carregar Gráfico","Load File":"Carregar Arquivo","Load Files":"Carregar Arquivos","Load default content":"Carregar conteúdo padrão","Load from link?":"Carregar a partir do link?","Load layout and styles":"Carregar layout e estilos","Loading...":"Carregando...","Local File Support":"Suporte de Arquivo Local","Local saving for offline access":"Salvamento local para acesso offline","Lock Zoom to Graph":"Bloquear Zoom para o Gráfico","Log In":"Acessar","Log Out":"Deslogar","Log in to Save":"Faça login para salvar","Log in to upgrade your account":"Faça login para atualizar sua conta","Made by <0>Tone\xA0Row0>":"Feito por <0>Tone\xA0Row0>","Make a One-Time Donation":"Faça uma Doação Única","Make it yours":"Faça-o seu","Make publicly accessible":"Tornar publicamente acessível","Manage Billing":"Gerenciar Faturamento","Map Data":"Mapear Dados","Maximum width of text inside nodes":"Largura máxima do texto dentro dos nós","Monthly":"Mensal","More from Tone Row":"Mais de Tone Row","More from Tone Row:":"Mais de Tone Row:","More tools:":"Mais ferramentas:","Move":"Mover","Move {0}":["Mover ",["0"]],"Multiple pointers on same line":"Múltiplos ponteiros na mesma linha","My dog ate my credit card!":"Meu cachorro comeu meu cartão de crédito!","Name":"Nome","Name Chart":"Nome do Gráfico","Name your chart":"Dê um nome ao seu gráfico","New":"Novo","New Email":"Novo Email","New Flowchart":"Novo Fluxograma","New Folder":"Nova Pasta","Next charge":"Próxima cobrança","No Edges":"Sem Bordas","No Folder (Root)":"Sem Pasta (Raiz)","No Watermarks!":"Sem Marca d\'Água!","No charts yet":"Nenhum gráfico ainda","No items in this folder":"Nenhum item nesta pasta","No matching charts found":"Nenhum gráfico correspondente encontrado","Node Border Style":"Estilo de Borda do Nó","Node Colors":"Cores do Nó","Node ID":"ID do Nó","Node ID, Classes, Attributes":"ID do Nó, Classes, Atributos","Node Label":"Rótulo do Nó","Node Shape":"Forma do Nó","Node Shapes":"Formas do Nó","Nodes":"Nós","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"Nós podem ser estilizados com traços, pontos ou duplos. Bordas também podem ser removidas com border_none.","Not Empty":"Não Vazio","Now you\'re thinking with flowcharts!":"Agora você está pensando com fluxogramas!","Office Hours":"Horário de trabalho","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":" vez em quando, o link mágico acabará em sua pasta de spam. Se você não o vir após alguns minutos, verifique lá ou solicite um novo link.","One on One Support":"Suporte Um a Um","One-on-One Support":"Suporte Individual","Open Customer Portal":"Abra o portal do cliente","Operation canceled":"Operação cancelada","Or maybe blue!":"Ou talvez azul!","Organization Chart":"Gráfico de Organização","PNG & JPG export":"Exportar PNG e JPG","Padding":"Espaçamento","Page not found":"Página não encontrada","Password":"Senha","Past Due":"Atrasado","Paste a document to convert it":"Cole um documento para convertê-lo","Paste your document or outline here to convert it into an organized flowchart.":"Cole seu documento ou esboço aqui para convertê-lo em um fluxograma organizado.","Pasted content detected. Convert to Flowchart Fun syntax?":"Conteúdo colado detectado. Converter para a sintaxe do Flowchart Fun?","Perfect for docs and quick sharing":"Perfeito para documentos e compartilhamento rápido","Permanent Charts are a Pro Feature":"Gráficos permanentes são um recurso Pro","Playbook":"Cartilha","Pointer and container on same line":"Ponteiro e contêiner na mesma linha","Pricing":"Preços","Priority One-on-One Support":"Suporte prioritário um a um","Priority support":"Suporte prioritário","Privacy Policy":"Política de Privacidade","Pro starts at $4/mo billed yearly. Cancel anytime.":"O Pro começa em R$4/mês cobrado anualmente. Cancelar a qualquer momento.","Pro tip: Right-click any node to customize its shape and color":"Dica profissional: Clique com o botão direito em qualquer nó para personalizar sua forma e cor.","Processing Data":"Processando Dados","Processing...":"Processando...","Prompt":"Sugestão","Public":"Público","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"Importe dados do Visio, Lucidchart, CSV ou comece a partir de um modelo. Não é necessário recriar o que já existe.","Quick experimentation space that resets daily":"Espaço de experimentação rápida que é reiniciado diariamente","Random":"Aleatório","Rapid Deployment Templates":"Modelos de implantação rápida","Rapid Templates":"Modelos Rápidos","Raster Export (PNG, JPG)":"Exportação de Raster (PNG, JPG)","Rate limit exceeded. Please try again later.":"Limite de taxa excedido. Por favor, tente novamente mais tarde.","Read-only":"Somente leitura","Reference by Class":"Referência por Classe","Reference by ID":"Referência por ID","Reference by Label":"Referência por Rótulo","References":"Referências","References are used to create edges between nodes that are created elsewhere in the document":"Referências são usadas para criar arestas entre nós que são criados em outro lugar no documento","Referencing a node by its exact label":"Referenciando um nó pelo seu rótulo exato","Referencing a node by its unique ID":"Referenciando um nó pelo seu ID único","Referencing multiple nodes with the same assigned class":"Referenciando vários nós com a mesma classe atribuída","Refresh Page":"Atualizar Página","Reload to Update":"Recarregar para Atualizar","Rename":"Renomear","Rename {0}":["Renomear ",["0"]],"Request Magic Link":"Solicitar Link Mágico","Request Password Reset":"Solicitar Redefinição de Senha","Reset":"Resetar","Reset Password":"Redefinir Senha","Resume Subscription":"Resumir inscrição","Return":"Retornar","Right to Left":"Da direita para esquerda","Right-click nodes for options":"Clique com o botão direito nos nós para ver as opções","Roadmap":"Roteiro","Rotate Label":"Rotular Rotação","SVG Export is a Pro Feature":"A exportação de SVG é uma funcionalidade Pro","SVG, PDF & all export formats":"SVG, PDF e todos os formatos de exportação","Satisfaction guaranteed or first payment refunded":"Satisfação garantida ou primeiro pagamento reembolsado","Save":"Salvar","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"Salve localmente, trabalhe offline e controle exatamente quem vê o quê. Nenhum dado sai da sua máquina a menos que você permita.","Save time with AI and dictation, making it easy to create diagrams.":"Economize tempo com IA e ditado, facilitando a criação de diagramas.","Save to Cloud":"Salvar para Nuvem","Save to File":"Salvar para Arquivo","Save your Work":"Salve seu trabalho","Schedule personal consultation sessions":"Agende sessões de consulta pessoal","Secure payment":"Pagamento seguro","See more reviews on Product Hunt":"Veja mais avaliações no Product Hunt","See what\'s possible":"Veja o que é possível","Select a destination folder for \\"{0}\\".":"Selecione uma pasta de destino para \\\\","Send us a message":"Envie-nos uma mensagem","Set a consistent height for all nodes":"Definir uma altura consistente para todos os nós","Settings":"Configurações","Share":"Compartilhar","Sign In":"Entrar","Sign in with <0>GitHub0>":"Entrar com <0>GitHub0>","Sign in with <0>Google0>":"Entrar com <0>Google0>","Sorry! This page is only available in English.":"Sinto muito! Esta página só está disponível em inglês.","Sorry, there was an error converting the text to a flowchart. Try again later.":"Desculpe, houve um erro ao converter o texto em um fluxograma. Tente novamente mais tarde.","Sort Ascending":"Ordenar em ordem crescente","Sort Descending":"Classificação Descrescente","Sort by {0}":["Classificar por ",["0"]],"Source Arrow Shape":"Forma da Seta de Origem","Source Column":"Coluna de Origem","Source Delimiter":"Delimitador de Origem","Source Distance From Node":"Distância da Origem ao Nó","Source/Target Arrow Shape":"Forma da Seta de Origem/Destino","Spacing":"Espaçamento","Special Attributes":"Atributos Especiais","Start":"Início","Start Over":"Recomeçar","Start faster with use-case specific templates":"Comece mais rápido com modelos específicos de casos de uso","Start for free":"Comece de graça","Status":"Status","Step 1":"Passo 1","Step 2":"Passo 2","Step 3":"Passo 3","Store any data associated to a node":"Armazenar quaisquer dados associados a um nó","Style Classes":"Classes de Estilo","Style with classes":"Estilizar com classes","Submit":"Enviar","Subscription":"Inscrição","Subscription Successful!":"Assinatura bem-sucedida!","Subscription will end":"Inscrição acabará","Support":"Suporte","Target Arrow Shape":"Forma da Seta de Destino","Target Column":"Coluna Alvo","Target Delimiter":"Delimitador Alvo","Target Distance From Node":"Distância-alvo do Nó","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"Diga ao AI o que você precisa em inglês simples. Seu diagrama é criado em segundos.","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"Nos diga o que está funcionando e o que não está. Cada mensagem é lida pelo desenvolvedor.","Text Color":"Cor do Texto","Text Horizontal Offset":"Deslocamento Horizontal do Texto","Text Leading":"Texto Principal","Text Max Width":"Largura Máxima do Texto","Text Vertical Offset":"Deslocamento Vertical do Texto","Text followed by colon+space creates an edge with the text as the label":"Texto seguido de dois-pontos+espaço cria uma aresta com o texto como rótulo","Text on a line creates a node with the text as the label":"Texto em uma linha cria um nó com o texto como rótulo","Thank you for your feedback!":"Agradecimentos pelo seu feedback!","The beauty and magic reside in the minimalism.":"A beleza e a magia residem no minimalismo.","The best way to change styles is to right-click on a node or an edge and select the style you want.":"A melhor maneira de mudar os estilos é clicar com o botão direito do mouse em um nó ou borda e selecionar o estilo desejado.","The column that contains the edge label(s)":"A coluna que contém o(s) rótulo(s) da aresta","The column that contains the source node ID(s)":"A coluna que contém o(s) ID(s) do nó de origem","The column that contains the target node ID(s)":"A coluna que contém o(s) ID(s) do nó de destino","The delimiter used to separate multiple source nodes":"O delimitador usado para separar vários nós de origem","The delimiter used to separate multiple target nodes":"O delimitador usado para separar vários nós de destino","The fastest way to turn what\'s in your head into something everyone else can understand.":"A maneira mais rápida de transformar o que está em sua cabeça em algo que todos possam entender.","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"O plano gratuito funciona muito bem para uso diário. Se você precisar de recursos Pro, é mensal por $6/mês - cancele a qualquer momento sem compromisso.","The possible shapes are:":"As formas possíveis são:","Theme":"Tema","Theme Customization Editor":"Editor de Personalização de Temas","Theme Editor":"Editor de Temas","Theme editor":"Editor de tema","There are no edges in this data":"Não há arestas nestes dados","This action cannot be undone.":"Esta ação não pode ser desfeita.","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"Esta funcionalidade está disponível apenas para usuários Pro. <0>Torne-se um usuário Pro0> para desbloqueá-la.","This may take between 30 seconds and 2 minutes depending on the length of your input.":"Isso pode levar entre 30 segundos e 2 minutos, dependendo do tamanho da sua entrada.","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"Esta caixa de areia é perfeita para experimentar, mas lembre-se - ela é resetada diariamente. Faça o upgrade agora e mantenha seu trabalho atual!","This will replace the current content.":"Isso substituirá o conteúdo atual.","This will replace your current chart content with the template content.":"Isso irá substituir o conteúdo atual do seu gráfico pelo conteúdo do modelo.","This will replace your current sandbox.":"Isso substituirá sua sandbox atual.","Time to decide":"Hora de decidir","Tip":"Dica","To fix this change one of the edge IDs":"Para corrigir isso, altere um dos IDs de borda","To fix this change one of the node IDs":"Para corrigir isso, altere um dos IDs de nó","To fix this move one pointer to the next line":"Para corrigir isso, mova um ponteiro para a próxima linha","To fix this start the container <0/> on a different line":"Para corrigir isso, inicie o container <0/> em uma linha diferente","To learn more about why we require you to log in, please read <0>this blog post0>.":"Para saber mais sobre por que precisamos que você faça login, leia <0>este post no blog0>.","Top to Bottom":"De cima para baixo","Transform Your Ideas into Professional Diagrams in Seconds":"Transforme Suas Ideias em Diagramas Profissionais em Segundos","Transform text into diagrams instantly":"Transforme texto em diagramas instantaneamente.","Try AI":"Experimente IA","Try adjusting your search or filters to find what you\'re looking for.":"Tente ajustar sua pesquisa ou filtros para encontrar o que procura.","Try again":"Tente novamente","Try it free":"Experimente grátis","Turn documents into diagrams with AI":"Transforme documentos em diagramas com IA","Two edges have the same ID":"Dois bordos têm o mesmo ID","Two nodes have the same ID":"Dois nós têm o mesmo ID","Type it. See it.":"Digite. Veja.","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"Ops, você esgotou suas solicitações gratuitas! Atualize para o Flowchart Fun Pro e tenha conversões ilimitadas de diagramas, e continue transformando textos em fluxogramas claros e visuais com a mesma facilidade de copiar e colar.","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"Em menos de 60 segundos. Digite algumas linhas de texto ou descreva o que você precisa para o AI, e seu diagrama aparece instantaneamente. Exporte ou compartilhe com um clique.","Undo":"Desfazer","Unescaped special character":"Caractere especial não escapado","Unique text value to identify a node":"Valor de texto único para identificar um nó","Unknown":"Desconhecido","Unknown Parsing Error":"Erro de Análise Desconhecido","Unlimited Flowcharts":"Fluxogramas ilimitados.","Unlimited Permanent Flowcharts":"Fluxogramas Permanentes Ilimitados","Unlimited cloud-saved flowcharts":"Fluxogramas ilimitados salvos na nuvem","Unlimited saved diagrams":"Diagramas salvos ilimitados","Unlock AI Features and never lose your work with a Pro account.":"Desbloqueie recursos de IA e nunca perca seu trabalho com uma conta Pro.","Unlock Unlimited AI Flowcharts":"Desbloqueie Fluxogramas de IA ilimitados","Unpaid":"Não pago","Update Email":"Atualizar e-mail","Updated Date":"Data Atualizada","Upgrade Now - Save My Work":"Faça o upgrade agora - Salve Meu Trabalho","Upgrade to Flowchart Fun Pro and unlock:":"Faça o upgrade para o Flowchart Fun Pro e desbloqueie:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"Atualize para o Flowchart Fun Pro para gráficos hospedados ilimitados, exportações de alta resolução sem marca d\'água, edição com IA e muito mais. R$4/mês cobrado anualmente.","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"Atualize para o Flowchart Fun Pro para desbloquear a exportação de SVG e aproveitar recursos mais avançados para seus diagramas.","Upgrade to Pro":"Atualize para Pro","Upgrade to Pro for permanent charts.":"Atualize para o Pro para gráficos permanentes.","Upload your File":"Faça o upload do seu arquivo","Use Custom CSS Only":"Usar Somente CSS Personalizado","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"Usa o Lucidchart ou o Visio? A importação de CSV torna fácil obter dados de qualquer fonte!","Use classes to group nodes":"Use classes para agrupar nós","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"Use o atributo <0>href0> para definir um link em um nó que abra em uma nova guia.","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"Use o atributo <0>src0> para definir a imagem de um nó. A imagem será dimensionada para caber no nó, então você pode precisar ajustar a largura e altura do nó para obter o resultado desejado. Apenas imagens públicas (não bloqueadas por CORS) são suportadas.","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"Use os atributos <0>w0> e <1>h1> para definir explicitamente a largura e altura de um nó.","Use the customer portal to change your billing information.":"Use o portal do cliente para alterar suas informações de cobrança.","Use these settings to adapt the look and behavior of your flowcharts":"Use essas configurações para adaptar a aparência e o comportamento de seus fluxogramas","Use this file for org charts, hierarchies, and other organizational structures.":"Use este arquivo para organogramas, hierarquias e outras estruturas organizacionais.","Use this file for sequences, processes, and workflows.":"Use este arquivo para sequências, processos e fluxos de trabalho.","Use this mode to modify and enhance your current chart.":"Use este modo para modificar e aprimorar seu fluxograma atual.","Used at":"Utilizado em","User":"Usuário","Vector Export (SVG)":"Exportação de Vetor (SVG)","View on Github":"Visualizar no Github","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"Quer criar um fluxograma a partir de um documento? Cole-o no editor e clique em \'Converter em Fluxograma\'.","Watermark-Free Diagrams":"Diagramas sem marca d\'água","Watermarks":"Marca d\'água","Welcome to Flowchart Fun":"Bem-vindo ao Flowchart Fun","What if I just need it for one project?":"E se eu só precisar para um projeto?","What our users are saying":"O que nossos usuários estão dizendo","What\'s next?":"E o próximo passo?","What\'s this?":"O que é isso?","Width":"Largura","Width and Height":"Largura e Altura","Will my diagrams actually look professional?":"Meus diagramas terão um aspecto profissional?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"Com a versão Pro do Flowchart Fun, você pode usar comandos em linguagem natural para rapidamente detalhar seu fluxograma, ideal para criar diagramas em qualquer lugar. Por apenas $6 por mês, obtenha a facilidade de edição de IA acessível para aprimorar sua experiência de fluxograma.","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"Com a versão pro, você pode salvar e carregar arquivos locais. É perfeito para gerenciar documentos relacionados ao trabalho offline.","Would you like to continue?":"Você gostaria de continuar?","Would you like to suggest a new example?":"Gostaria de sugerir um novo exemplo?","Wrap text in parentheses to connect to any node":"Envolver o texto entre parênteses para se conectar a qualquer nó","Write like an outline":"Escreva como um esboço","Write your prompt here or click to enable the microphone, then press and hold to record.":"Escreva sua instrução aqui ou clique para ativar o microfone, depois pressione e segure para gravar.","Yearly":"Anualmente","Yes — send us a message and we\'ll set you up with a discounted rate.":"Sim - nos envie uma mensagem e nós lhe daremos uma taxa com desconto.","Yes, Replace Content":"Sim, Substituir Conteúdo","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"Sim. Cada diagrama utiliza layouts equilibrados e automáticos com tipografia limpa. Você pode personalizar temas, cores e estilos - e exportar como SVG nítido ou PNG de alta resolução que fica ótimo em qualquer apresentação ou documento.","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"Sim. A versão Pro suporta importação de Visio, Lucidchart e CSV - assim você pode trazer o que já tem sem precisar recriá-lo do zero.","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"Sim. Você pode salvar e carregar arquivos localmente, trabalhar completamente offline e controlar exatamente quem vê seus diagramas. Nenhum dado sai da sua máquina a menos que você escolha compartilhar.","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["Você está prestes a adicionar ",["numNodes"]," nós e ",["numEdges"]," arestas ao seu gráfico."],"You need to log in to access this page.":"Você precisa fazer login para acessar esta página.","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"Você já é um usuário Pro. <0>Gerenciar Assinatura0><1/>Tem perguntas ou solicitações de recursos? <2>Deixe-nos saber2>","You\'re doing great!":"Você está indo muito bem!","You\'re on the free plan.":"Você está no plano gratuito.","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"Você usou todas as suas conversões de IA gratuitas. Faça upgrade para o Pro e tenha uso ilimitado de IA, temas personalizados, compartilhamento privado e muito mais. Continue criando incríveis fluxogramas sem esforço!","Your Charts":"Seus Gráficos","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"Sua caixa de areia é um espaço para experimentar livremente com nossas ferramentas de fluxograma, resetando todos os dias para um começo fresco.","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"Seus gráficos são somente leitura porque sua conta não está mais ativa. Visite sua página de <0>conta0> para saber mais.","Your next diagram should be your best one.":"Seu próximo diagrama deve ser o melhor.","Your subscription is <0>{statusDisplay}0>.":["Sua assinatura está <0>",["statusDisplay"],"0>."],"Your work stays yours":"Seu trabalho permanece seu.","Zoom In":"Zoom In","Zoom Out":"Diminuir o zoom","month":"mês","or":"ou","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/pt-br/messages.po b/app/src/locales/pt-br/messages.po
index d3747c901..752e70897 100644
--- a/app/src/locales/pt-br/messages.po
+++ b/app/src/locales/pt-br/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "R$48/ano (33% de desconto) · Cancelar a qualquer momento"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "R$6/mês"
@@ -25,7 +25,7 @@ msgstr "R$6/mês"
msgid "1 Temporary Flowchart"
msgstr "1 Fluxograma Temporário"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "1 diagrama por vez"
@@ -33,7 +33,7 @@ msgstr "1 diagrama por vez"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>Somente CSS Personalizado0> está habilitado. Somente as configurações de Layout e Avançadas serão aplicadas."
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0> é um projeto de código aberto feito por <1>Tone Row1>"
@@ -49,7 +49,7 @@ msgstr "Uma nova versão do aplicativo está disponível. Por favor, recarregue
msgid "AI Creation & Editing"
msgstr "Criação e Edição de IA"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "Geração e edição de IA"
@@ -57,7 +57,7 @@ msgstr "Geração e edição de IA"
msgid "AI-Powered Flowchart Creation"
msgstr "Criação de fluxogramas com Inteligência Artificial"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "Gerado por IA a partir de texto simples em menos de 5 segundos."
@@ -65,12 +65,12 @@ msgstr "Gerado por IA a partir de texto simples em menos de 5 segundos."
msgid "AI-powered editing to supercharge your workflow"
msgstr "Edição com inteligência artificial para turbinar seu fluxo de trabalho"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "Sobre"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "Conta"
@@ -106,7 +106,7 @@ msgstr "Alinhar Verticalmente"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "Tudo isso por apenas $6/mês - menos que o seu café diário ☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "Sempre pronto para apresentação"
@@ -118,7 +118,7 @@ msgstr "Total"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "Ocorreu um erro. Tente reenviar ou envie um e-mail direto para {0}."
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "Aparência"
@@ -170,11 +170,11 @@ msgstr "Cor de Fundo"
msgid "Basic Flowchart"
msgstr "Fluxograma Básico"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "Seja um patrocinador do Github"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "Se torne um usuário Pro"
@@ -191,8 +191,8 @@ msgstr "Cobrado anualmente a $48"
msgid "Billed monthly at $6"
msgstr "Cobrado mensalmente em $6"
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "Blog"
@@ -260,14 +260,14 @@ msgstr "Certos atributos podem ser usados para personalizar a aparência ou func
msgid "Change Email Address"
msgstr "Mude o endereço de email"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "Registro de alterações"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "Diagramas"
@@ -346,7 +346,7 @@ msgstr "Coluna"
msgid "Comment"
msgstr "Comente"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "Modelos da comunidade"
@@ -403,7 +403,7 @@ msgstr "Converter para Fluxograma"
msgid "Convert to hosted chart?"
msgstr "Converter em diagrama hospedado?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "Política de Cookies"
@@ -500,7 +500,7 @@ msgstr "CSS Personalizado"
msgid "Custom Sharing Options"
msgstr "Opções de Compartilhamento Personalizadas"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "Compartilhamento personalizado e links públicos"
@@ -516,8 +516,8 @@ msgstr "Editor de Sandbox diário"
msgid "Dark"
msgstr "Escuro"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "Modo escuro"
@@ -542,11 +542,11 @@ msgstr "Excluir"
msgid "Delete {0}"
msgstr "Excluir {0}"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "Descreva e ele aparecerá"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "Descreva sua ideia. Obtenha um diagrama que vale a pena apresentar."
@@ -696,8 +696,8 @@ msgstr "Edição com IA"
msgid "Editable"
msgstr "Editável"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "Editor"
@@ -742,7 +742,7 @@ msgstr "Digite seu endereço de e-mail abaixo e enviaremos um link para redefini
msgid "Equal To"
msgstr "Igual a"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "Cada diagrama é exportado em PNG, SVG ou link compartilhável - pronto para a reunião, o documento ou a apresentação."
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "Descrição das funcionalidades"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "Feedback"
@@ -823,11 +823,15 @@ msgstr "Altura do Nó Fixa"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "O Flowchart Fun Pro oferece fluxogramas ilimitados, colaboradores ilimitados e armazenamento ilimitado por apenas $6/mês."
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "Flowchart Fun é um projeto de código aberto feito por <0>Tone Row0>"
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "Flowchart Fun é construído e mantido por um único desenvolvedor. Seu apoio mantém ele funcionando."
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "Siga-nos no Twitter"
@@ -909,6 +913,10 @@ msgstr "Verde?"
msgid "Grid"
msgstr "Grade"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "Classificação em grupo e votação de escolha classificada, grátis"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "Tem questões ou problemas complexos? Estamos aqui para ajudar."
@@ -980,7 +988,7 @@ msgstr "Importar dados de qualquer arquivo CSV e mapeá-los para um novo fluxogr
msgid "Import from CSV"
msgstr "Importar do CSV"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "Importar do Visio, Lucidchart, CSV"
@@ -988,7 +996,7 @@ msgstr "Importar do Visio, Lucidchart, CSV"
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "Importar de Visio, Lucidchart e CSV"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "Importar de qualquer lugar"
@@ -1012,7 +1020,7 @@ msgstr "Inclua um título usando um atributo <0>title0>. Para usar a coloraç
msgid "Indent to connect nodes"
msgstr "Identar para conectar os nós"
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "Informações"
@@ -1052,7 +1060,7 @@ msgstr "Continue praticando"
msgid "Keep your data private on your computer"
msgstr "Mantenha seus dados privados em seu computador"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "Idioma"
@@ -1101,8 +1109,8 @@ msgstr "Deixe-nos saber por que você está cancelando. Estamos sempre procurand
msgid "Light"
msgstr "Claro"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "Modo claro"
@@ -1160,8 +1168,8 @@ msgstr "Salvamento local para acesso offline"
msgid "Lock Zoom to Graph"
msgstr "Bloquear Zoom para o Gráfico"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "Acessar"
@@ -1177,11 +1185,15 @@ msgstr "Faça login para salvar"
msgid "Log in to upgrade your account"
msgstr "Faça login para atualizar sua conta"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "Feito por <0>Tone Row0>"
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "Faça uma Doação Única"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "Faça-o seu"
@@ -1205,6 +1217,18 @@ msgstr "Largura máxima do texto dentro dos nós"
msgid "Monthly"
msgstr "Mensal"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "Mais de Tone Row"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "Mais de Tone Row:"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "Mais ferramentas:"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "Nome do Gráfico"
msgid "Name your chart"
msgstr "Dê um nome ao seu gráfico"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "Novo"
@@ -1363,7 +1387,7 @@ msgstr "Ou talvez azul!"
msgid "Organization Chart"
msgstr "Gráfico de Organização"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "Exportar PNG e JPG"
@@ -1412,21 +1436,25 @@ msgstr "Cartilha"
msgid "Pointer and container on same line"
msgstr "Ponteiro e contêiner na mesma linha"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "Preços"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "Suporte prioritário um a um"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "Suporte prioritário"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "Política de Privacidade"
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "O Pro começa em R$4/mês cobrado anualmente. Cancelar a qualquer momento."
@@ -1451,7 +1479,7 @@ msgstr "Sugestão"
msgid "Public"
msgstr "Público"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "Importe dados do Visio, Lucidchart, CSV ou comece a partir de um modelo. Não é necessário recriar o que já existe."
@@ -1575,8 +1603,8 @@ msgstr "Da direita para esquerda"
msgid "Right-click nodes for options"
msgstr "Clique com o botão direito nos nós para ver as opções"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "Roteiro"
@@ -1590,7 +1618,7 @@ msgstr "Rotular Rotação"
msgid "SVG Export is a Pro Feature"
msgstr "A exportação de SVG é uma funcionalidade Pro"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "SVG, PDF e todos os formatos de exportação"
@@ -1603,7 +1631,7 @@ msgstr "Satisfação garantida ou primeiro pagamento reembolsado"
msgid "Save"
msgstr "Salvar"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "Salve localmente, trabalhe offline e controle exatamente quem vê o quê. Nenhum dado sai da sua máquina a menos que você permita."
@@ -1635,7 +1663,7 @@ msgstr "Pagamento seguro"
msgid "See more reviews on Product Hunt"
msgstr "Veja mais avaliações no Product Hunt"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "Veja o que é possível"
@@ -1651,9 +1679,9 @@ msgstr "Envie-nos uma mensagem"
msgid "Set a consistent height for all nodes"
msgstr "Definir uma altura consistente para todos os nós"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "Configurações"
@@ -1738,7 +1766,7 @@ msgstr "Recomeçar"
msgid "Start faster with use-case specific templates"
msgstr "Comece mais rápido com modelos específicos de casos de uso"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "Comece de graça"
@@ -1789,7 +1817,7 @@ msgstr "Assinatura bem-sucedida!"
msgid "Subscription will end"
msgstr "Inscrição acabará"
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "Suporte"
@@ -1812,7 +1840,7 @@ msgstr "Delimitador Alvo"
msgid "Target Distance From Node"
msgstr "Distância-alvo do Nó"
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "Diga ao AI o que você precisa em inglês simples. Seu diagrama é criado em segundos."
@@ -1856,7 +1884,7 @@ msgstr "Texto em uma linha cria um nó com o texto como rótulo"
msgid "Thank you for your feedback!"
msgstr "Agradecimentos pelo seu feedback!"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "A beleza e a magia residem no minimalismo."
@@ -1884,7 +1912,7 @@ msgstr "O delimitador usado para separar vários nós de origem"
msgid "The delimiter used to separate multiple target nodes"
msgstr "O delimitador usado para separar vários nós de destino"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "A maneira mais rápida de transformar o que está em sua cabeça em algo que todos possam entender."
@@ -1911,7 +1939,7 @@ msgstr "Editor de Personalização de Temas"
msgid "Theme Editor"
msgstr "Editor de Temas"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "Editor de tema"
@@ -2000,10 +2028,14 @@ msgstr "Tente ajustar sua pesquisa ou filtros para encontrar o que procura."
msgid "Try again"
msgstr "Tente novamente"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "Experimente grátis"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "Transforme documentos em diagramas com IA"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "Dois bordos têm o mesmo ID"
@@ -2012,7 +2044,7 @@ msgstr "Dois bordos têm o mesmo ID"
msgid "Two nodes have the same ID"
msgstr "Dois nós têm o mesmo ID"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "Digite. Veja."
@@ -2057,7 +2089,7 @@ msgstr "Fluxogramas Permanentes Ilimitados"
msgid "Unlimited cloud-saved flowcharts"
msgstr "Fluxogramas ilimitados salvos na nuvem"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "Diagramas salvos ilimitados"
@@ -2089,13 +2121,17 @@ msgstr "Faça o upgrade agora - Salve Meu Trabalho"
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "Faça o upgrade para o Flowchart Fun Pro e desbloqueie:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "Atualize para o Flowchart Fun Pro para gráficos hospedados ilimitados, exportações de alta resolução sem marca d'água, edição com IA e muito mais. R$4/mês cobrado anualmente."
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "Atualize para o Flowchart Fun Pro para desbloquear a exportação de SVG e aproveitar recursos mais avançados para seus diagramas."
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "Atualize para Pro"
@@ -2152,7 +2188,7 @@ msgstr "Use este arquivo para sequências, processos e fluxos de trabalho."
msgid "Use this mode to modify and enhance your current chart."
msgstr "Use este modo para modificar e aprimorar seu fluxograma atual."
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "Utilizado em"
@@ -2164,7 +2200,7 @@ msgstr "Usuário"
msgid "Vector Export (SVG)"
msgstr "Exportação de Vetor (SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "Visualizar no Github"
@@ -2302,7 +2338,7 @@ msgstr "Sua caixa de areia é um espaço para experimentar livremente com nossas
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "Seus gráficos são somente leitura porque sua conta não está mais ativa. Visite sua página de <0>conta0> para saber mais."
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "Seu próximo diagrama deve ser o melhor."
@@ -2310,7 +2346,7 @@ msgstr "Seu próximo diagrama deve ser o melhor."
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "Sua assinatura está <0>{statusDisplay}0>."
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "Seu trabalho permanece seu."
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "ou"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/locales/zh/messages.js b/app/src/locales/zh/messages.js
index 592154967..18b199073 100644
--- a/app/src/locales/zh/messages.js
+++ b/app/src/locales/zh/messages.js
@@ -1,5 +1,5 @@
/*eslint-disable*/ module.exports = {
messages: JSON.parse(
- '{"$48/year (save 33%) · Cancel anytime":"每年$48(节省33%)· 随时取消","$6/mo":"每月$6","1 Temporary Flowchart":"1 临时流程图","1 diagram at a time":"同时只能有1个图表","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>仅启用自定义CSS0>。仅应用布局和高级设置。","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0>是由<1>Tone Row1>制作的开源项目","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>登录0> / <1>注册1> 使用电子邮件和密码","A new version of the app is available. Please reload to update.":"一个新版本的应用程序可用。请重新加载以更新。","AI Creation & Editing":"AI创建与编辑","AI generation & editing":"AI生成和编辑","AI-Powered Flowchart Creation":"AI驱动的流程图创建","AI-generated from plain text in under 5 seconds.":"从普通文本中在5秒内生成AI","AI-powered editing to supercharge your workflow":"AI动力编辑,让您的工作流程更加高效","About":"关于","Account":"帐户","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"在任何特殊字符之前添加反斜杠 (<0>\\\\0>): <1>(1>、<2>:2>、<3>#3>或<4>.4>","Add some steps":"添加一些步骤","Advanced":"高级","Align Horizontally":"水平对齐","Align Nodes":"对齐节点","Align Vertically":"垂直对齐","All this for just $6/month - less than your daily coffee ☕":"所有这些仅需每月6美元 - 不到您每天的咖啡☕","Always presentation-ready":"总是准备好展示","Amount":"数量","An error occurred. Try resubmitting or email {0} directly.":["发生了一个错误。请尝试重新提交或直接发送电子邮件至",["0"],"。"],"Appearance":"外观","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"您确定要删除流程图吗?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"您确定要删除文件夹吗?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"您确定要删除文件夹吗?","Are you sure?":"你确定吗?","Arrow Size":"箭头大小","Attributes":"属性","August 2023":"2023 年 8 月","Back":"返回","Back To Editor":"返回编辑器","Background Color":"背景颜色","Basic Flowchart":"基本流程图","Become a Github Sponsor":"成为Github赞助商","Become a Pro User":"成为专业用户","Begin your journey":"开始你的旅程","Billed annually at $48":"年度账单为$48","Billed monthly at $6":"每月收费$6","Blog":"博客","Book a Meeting":"预订会议","Border Color":"边框颜色","Border Width":"边框宽度","Bottom to Top":"从下到上","Breadthfirst":"宽度优先","Build your personal flowchart library":"建立您的个人流程图库","Can I import my existing diagrams?":"我能导入我的现有图表吗?","Cancel":"取消","Cancel anytime":"随时取消","Cancel your subscription. Your hosted charts will become read-only.":"取消订阅。您的托管图表将变为只读。","Certain attributes can be used to customize the appearance or functionality of elements.":"某些属性可用于自定义元素的外观或功能。","Change Email Address":"更改电子邮件地址","Changelog":"变更日志","Charts":"图表","Check out the guide:":"查看指南:","Check your email for a link to log in.<0/>You can close this window.":"检查您的电子邮件以获取登录链接。您可以关闭此窗口。","Choose":"選擇","Choose Template":"选择模板","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"为边缘的源和目标选择各种箭头形状。形状包括三角形,三角形-T,圆形-三角形,三角形-十字,三角形-后曲线,V形,T形,正方形,圆形,菱形,雪花形,无。","Choose how edges connect between nodes":"选择节点之间的边缘连接方式","Choose how nodes are automatically arranged in your flowchart":"选择如何自动排列您的流程图中的节点","Circle":"圆圈","Classes":"类","Clear":"清除","Clear text?":"清除文字?","Clone":"克隆","Clone Flowchart":"克隆流程图","Close":"关闭","Color":"颜色","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"颜色包括红色,橙色,黄色,蓝色,紫色,黑色,白色和灰色。","Column":"列","Comment":"评论","Community templates":"社区模板","Compare our plans and find the perfect fit for your flowcharting needs":"比较我们的计划,找到最适合您流程图需求的方案","Concentric":"同心","Confirm New Email":"确认新电子邮件","Confirm your email address to sign in.":"確認您的電子郵件地址以登入。","Connect your Data":"连接您的数据","Containers":"容器","Containers are nodes that contain other nodes. They are declared using curly braces.":"容器是包含其他节点的节点。它们使用大括号声明。","Continue":"继续","Continue in Sandbox (Resets daily, work not saved)":"继续使用沙盒(每天重置,工作不会被保存)","Controls the flow direction of hierarchical layouts":"控制层次布局的流向","Convert":"转换","Convert to Flowchart":"转换为流程图","Convert to hosted chart?":"是否转换为托管图表?","Cookie Policy":"Cookie政策","Copied SVG code to clipboard":"将SVG代码复制到剪贴板","Copied {format} to clipboard":["将",["format"],"复制到剪贴板"],"Copy":"复制","Copy PNG Image":"复制PNG图像","Copy SVG Code":"复制 SVG 代码","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"将你的 Excalidraw 代码复制并粘贴到<0>excalidraw.com0>以进行编辑。此功能为实验性质,可能无法与所有图表一起使用。如果您发现错误,请<1>告诉我们1>。","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"复制您的mermaid.js代码或直接在mermaid.js实时编辑器中打开它。","Create":"创建","Create Flowcharts using AI":"使用AI创建流程图","Create Unlimited Flowcharts":"创建无限流程图","Create a New Chart":"创建新图表","Create a flowchart showing the steps of planning and executing a school fundraising event":"创建一个流程图,展示规划和执行学校筹款活动的步骤","Create a new flowchart to get started or organize your work with folders.":"创建一个新的流程图开始或使用文件夹组织您的工作。","Create flowcharts instantly: Type or paste text, see it visualized.":"即时创建流程图:输入或粘贴文本,即可可视化。","Create unlimited diagrams for just $6/month!":"仅需每月$6,即可创建无限的图表!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"在云中存储无限流程图- 随时随地可访问!","Create with AI":"通過AI創建","Created Date":"创建日期","Creating an edge between two nodes is done by indenting the second node below the first":"在两个节点之间创建边缘是通过将第二个节点缩进第一个节点来完成的","Curve Style":"曲线样式","Custom CSS":"自定义CSS","Custom Sharing Options":"自定义分享选项","Custom sharing & public links":"自定义共享和公共链接","Customer Portal":"客户门户","Daily Sandbox Editor":"每日沙盒编辑器","Dark":"深色","Dark Mode":"深色模式","Data Import (Visio, Lucidchart, CSV)":"数据导入(Visio,Lucidchart,CSV)","Data import feature for complex diagrams":"数据导入功能,适用于复杂的图表","Date":"日期","Delete":"删除","Delete {0}":["删除 ",["0"]],"Describe it and it appears":"描述它,它就会出现","Describe your idea. Get a diagram worth presenting.":"描述您的想法。得到一个值得展示的图表。","Design a software development lifecycle flowchart for an agile team":"为敏捷团队设计一个软件开发生命周期流程图","Develop a decision tree for a CEO to evaluate potential new market opportunities":"为CEO设计一个决策树,评估潜在的新市场机会","Direction":"方向","Dismiss":"解散","Do you offer discounts for students or nonprofits?":"是否为学生或非营利组织提供折扣?","Do you want to delete this?":"您要将其删除吗?","Document":"文档","Don\'t Lose Your Work":"不要丢失你的工作","Download":"下载","Download JPG":"下载 JPG","Download PNG":"下载 PNG","Download SVG":"下载 SVG","Drag and drop a CSV file here, or click to select a file":"将CSV文件拖放到此处,或单击以选择文件","Draw an edge from multiple nodes by beginning the line with a reference":"通过引用开始行从多个节点绘制边缘","Drop the file here ...":"將檔案拖放到這裡...","Each line becomes a node":"每一行都变成一个节点","Edge ID, Classes, Attributes":"邊緣ID、類別和屬性","Edge Label":"邊緣標籤","Edge Label Column":"邊緣標籤欄","Edge Style":"邊緣樣式","Edge Text Size":"边缘文本大小","Edge missing indentation":"缺少缩进的边","Edges":"边","Edges are declared in the same row as their source node":"边声明在与源节点相同的行中","Edges are declared in the same row as their target node":"边声明在与目标节点相同的行中","Edges are declared in their own row":"边声明在自己的行中","Edges can also have ID\'s, classes, and attributes before the label":"边在标签之前可以有ID,类和属性","Edges can be styled with dashed, dotted, or solid lines":"边可以用虚线,点线或实线样式","Edges in Separate Rows":"边在单独的行","Edges in Source Node Row":"边在源节点行","Edges in Target Node Row":"边在目标节点行","Edit":"编辑","Edit with AI":"利用AI进行编辑","Editable":"可编辑","Editor":"编辑器","Email":"电子邮件","Empty":"空","Enable to set a consistent height for all nodes":"启用统一设置所有节点的高度","Enter a name for the cloned flowchart.":"为克隆的流程图输入名称。","Enter a name for the new folder.":"为新文件夹输入名称。","Enter a new name for the {0}.":["为 ",["0"]," 输入新名称。"],"Enter your email address and we\'ll send you a magic link to sign in.":"輸入您的電子郵件地址,我們將發送給您一個魔法鏈接以登入。","Enter your email address below and we\'ll send you a link to reset your password.":"在下面輸入您的電子郵件地址,我們將發送給您一個重置密碼的鏈接。","Equal To":"等于","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"每个图表都可以导出为清晰的PNG、SVG或可共享的链接 - 准备好参加会议、文档或演示文稿。","Everything you need to know about Flowchart Fun Pro":"有关流程图乐趣专业版的所有信息","Examples":"示例","Excalidraw":"Excalidraw","Exclusive Office Hours":"专属办公时间","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"体验将本地文件直接加载到流程图中的效率和安全性,非常适合离线管理工作相关文件。解锁这个独有的专业功能以及更多功能,Flowchart Fun Pro仅需每月$6即可使用。","Explore Pro":"探索专业版","Explore more":"探索更多","Export":"导出","Export clean diagrams without branding":"导出无品牌标识的清晰图表","Export to PNG & JPG":"导出为PNG和JPG","Export to PNG, JPG, and SVG":"导出为PNG,JPG和SVG","Feature Breakdown":"功能分解","Feedback":"反馈","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"如果您有任何問題,請隨意探索並通過<0>反饋0>頁面與我們聯繫。","Fine-tune layouts and visual styles":"调整布局和视觉风格","Fixed Height":"固定高度","Fixed Node Height":"固定节点高度","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro为您提供无限的流程图、无限的协作者和无限的存储空间,仅需每月$6即可享用。","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun由一位开发者构建和维护。您的支持使其持续运行。","Follow Us on Twitter":"在Twitter上关注我们","Font Family":"字体系列","Forgot your password?":"忘記密碼了?","Free":"免费","Free users: charts in the sandbox expire after 7 days.":"免费用户:沙盒中的图表在7天后将过期。","Frequently Asked Questions":"经常问的问题","Full-screen, read-only, and template sharing":"全屏、只读和模板共享","Fullscreen":"全屏","General":"一般","Generate flowcharts from text automatically":"自动从文本生成流程图","Get Pro Access Now":"立即获取专业访问权限","Get Unlimited AI Requests":"获得无限的AI请求","Get rapid responses to your questions":"快速获取您的问题的回答","Get unlimited flowcharts and premium features":"获取无限流程图和高级功能","Go back home":"回家","Go to the Editor":"前往編輯器","Go to your Sandbox":"去你的沙盒","Graph":"图表","Green?":"绿色的?","Grid":"网格","Have complex questions or issues? We\'re here to help.":"有复杂的问题或问题吗?我们在这里帮助你。","Here are some Pro features you can now enjoy.":"現在您可以享受以下專業功能。","High-quality exports with embedded fonts":"高质量的导出,内嵌字体","History":"历史","Home":"主页","How are edges declared in this data?":"在这个数据中如何声明边缘?","How fast can I actually make something?":"我到底能有多快地制作出东西?","How would you like to save your chart?":"您想如何保存您的流程图?","I would like to request a new template:":"我想请求一个新的模板:","ID\'s":"ID","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"如果該電子郵件存在該帳戶,我們已經發送給您一封電子郵件,其中包含如何重置您的密碼的說明。","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"如果你想创建一个边,缩进这一行。如果不,用反斜杠转义冒号<0>\\\\:0>","Images":"图像","Import Data":"导入数据","Import data from a CSV file.":"从CSV文件导入数据。","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"從任何CSV檔案匯入資料並將其映射到新的流程圖。這是從Lucidchart、Google Sheets和Visio等其他來源匯入資料的一個很棒的方法。","Import from CSV":"從CSV導入","Import from Visio, Lucidchart, CSV":"从Visio、Lucidchart、CSV导入","Import from Visio, Lucidchart, and CSV":"从Visio,Lucidchart和CSV导入","Import from anywhere":"从任何地方导入","Import from popular diagram tools":"从流行的图表工具导入","Import your diagram it into Microsoft Visio using one of these CSV files.":"使用其中一个CSV文件将您的图表导入到Microsoft Visio中。","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"导入数据是一项专业功能。您可以升级到Flowchart Fun Pro,仅需每月6美元。","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"使用<0>title0>属性添加标题。要使用 Visio 颜色,请添加一个等于以下内容之一的<1>roleType1>属性:","Indent to connect nodes":"缩进以连接节点","Info":"信息","Is":"是","Is my data private?":"我的数据是否私密?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON画布是您的图表的JSON表示,由<0>Obsidian0> Canvas和其他应用程序使用。","Join 2000+ professionals who\'ve upgraded their workflow":"加入2000多位专业人士,升级他们的工作流程","Join thousands of happy users who love Flowchart Fun":"加入成千上万的快乐用户,他们都爱流程图乐趣","Keep Things Private":"保持事物私密","Keep changes?":"保留更改吗?","Keep practicing":"继续练习","Keep your data private on your computer":"在您的电脑上保护您的数据隐私","Language":"语言","Layout":"布局","Layout Algorithm":"布局算法","Layout Frozen":"布局已冻结","Leading References":"主要參考","Learn More":"学到更多","Learn Syntax":"學習語法","Learn about Flowchart Fun Pro":"了解关于Flowchart Fun Pro","Left to Right":"从左到右","Let us know why you\'re canceling. We\'re always looking to improve.":"让我们知道您为什么要取消。我们一直在努力改进。","Light":"浅色","Light Mode":"浅色模式","Link":"链接","Link back":"链接回来","Load":"載入","Load Chart":"加载流程图","Load File":"加载文件","Load Files":"加载多个文件","Load default content":"載入預設內容","Load from link?":"从链接加载?","Load layout and styles":"載入版面和樣式","Loading...":"加载中...","Local File Support":"本地文件支持","Local saving for offline access":"本地保存,实现离线访问","Lock Zoom to Graph":"锁定缩放到图表","Log In":"登录","Log Out":"登出","Log in to Save":"登录以保存","Log in to upgrade your account":"登录升级您的账户","Make a One-Time Donation":"进行一次性捐赠","Make it yours":"让它成为你的","Make publicly accessible":"设为公开访问","Manage Billing":"付款管理","Map Data":"對應資料","Maximum width of text inside nodes":"节点内文本的最大宽度","Monthly":"每月","Move":"移动","Move {0}":["移动 ",["0"]],"Multiple pointers on same line":"同一行上的多个指针","My dog ate my credit card!":"我的狗吃了我的信用卡!","Name":"名称","Name Chart":"命名图表","Name your chart":"为您的流程图命名","New":"新","New Email":"新邮件","New Flowchart":"新流程图","New Folder":"新文件夹","Next charge":"下次扣费","No Edges":"沒有邊緣","No Folder (Root)":"无文件夹(根目录)","No Watermarks!":"无水印!","No charts yet":"还没有图表","No items in this folder":"此文件夹中没有项目","No matching charts found":"没有找到匹配的图表","Node Border Style":"节点边框样式","Node Colors":"节点颜色","Node ID":"节点ID","Node ID, Classes, Attributes":"节点ID、类、属性","Node Label":"节点标签","Node Shape":"节点形状","Node Shapes":"节点形状","Nodes":"节点","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"节点可以使用虚线、点线或双线样式。边框也可以使用 border_none 来移除。","Not Empty":"不为空","Now you\'re thinking with flowcharts!":"现在你在用流程图思考了!","Office Hours":"工作时间","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"偶尔,魔法链接会被放入您的垃圾邮件文件夹。如果几分钟后仍然没有收到,请检查垃圾邮件文件夹,或者重新请求新的链接。","One on One Support":"一对一支持","One-on-One Support":"一对一支持","Open Customer Portal":"打开客户门户","Operation canceled":"操作已取消","Or maybe blue!":"或者也许是蓝色!","Organization Chart":"组织结构图","PNG & JPG export":"PNG和JPG导出","Padding":"填充","Page not found":"找不到页面","Password":"密碼","Past Due":"过期","Paste a document to convert it":"粘贴一个文档来转换它","Paste your document or outline here to convert it into an organized flowchart.":"将您的文档或大纲粘贴到此处,将其转换为有组织的流程图。","Pasted content detected. Convert to Flowchart Fun syntax?":"检测到粘贴内容。转换为流程图乐趣语法?","Perfect for docs and quick sharing":"适用于文档和快速分享","Permanent Charts are a Pro Feature":"永久图表是专业功能","Playbook":"剧本","Pointer and container on same line":"同一行上的指针和容器","Priority One-on-One Support":"优先一对一支持","Priority support":"优先支持","Privacy Policy":"隱私政策","Pro starts at $4/mo billed yearly. Cancel anytime.":"专业版每月4美元,年付。随时取消。","Pro tip: Right-click any node to customize its shape and color":"专业提示:右键点击任何节点可自定义其形状和颜色","Processing Data":"处理数据","Processing...":"处理中...","Prompt":"提示","Public":"公开","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"从Visio,Lucidchart,CSV中导入数据,或从模板开始。无需重新创建已存在的内容。","Quick experimentation space that resets daily":"每日重置的快速实验空间","Random":"随机","Rapid Deployment Templates":"快速部署模板","Rapid Templates":"快速模板","Raster Export (PNG, JPG)":"光栅导出(PNG,JPG)","Rate limit exceeded. Please try again later.":"速率限制超出。 请稍后再试。","Read-only":"只读","Reference by Class":"按类引用","Reference by ID":"按 ID 参考","Reference by Label":"按标签参考","References":"参考","References are used to create edges between nodes that are created elsewhere in the document":"参考用于在文档中其他位置创建的节点之间创建边","Referencing a node by its exact label":"通过其确切标签引用节点","Referencing a node by its unique ID":"通过其唯一ID引用节点","Referencing multiple nodes with the same assigned class":"使用相同分配的类引用多个节点","Refresh Page":"刷新页面","Reload to Update":"重新加载以更新","Rename":"重命名","Rename {0}":["重命名",["0"]],"Request Magic Link":"請求魔法鏈接","Request Password Reset":"請求密碼重置","Reset":"重置","Reset Password":"重置密碼","Resume Subscription":"恢复订阅","Return":"返回","Right to Left":"从右到左","Right-click nodes for options":"右键点击节点以获得选项","Roadmap":"路线图","Rotate Label":"旋转标签","SVG Export is a Pro Feature":"SVG导出是专业功能","SVG, PDF & all export formats":"支持SVG,PDF和所有导出格式","Satisfaction guaranteed or first payment refunded":"满意保证或第一次付款退款","Save":"救球","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"本地保存,离线工作,并且可以精确控制谁可以看到什么。除非您允许,否则不会将数据传输到其他地方。","Save time with AI and dictation, making it easy to create diagrams.":"使用人工智能和口述功能,节省时间,轻松创建图表。","Save to Cloud":"保存到云","Save to File":"保存到文件","Save your Work":"保存您的工作","Schedule personal consultation sessions":"安排个人咨询会话","Secure payment":"安全付款","See more reviews on Product Hunt":"在Product Hunt上查看更多评论","See what\'s possible":"查看可行性","Select a destination folder for \\"{0}\\".":"选择一个目标文件夹 \\\\","Send us a message":"发送我们消息","Set a consistent height for all nodes":"设置所有节点的统一高度","Settings":"设置","Share":"分享","Sign In":"登錄","Sign in with <0>GitHub0>":"使用<0>GitHub0>登录","Sign in with <0>Google0>":"使用<0>Google0>登录","Sorry! This page is only available in English.":"抱歉!此页面只有英语版。","Sorry, there was an error converting the text to a flowchart. Try again later.":"抱歉,转换文本为流程图时出错。 请稍后再试。","Sort Ascending":"升序排序","Sort Descending":"倒序排列","Sort by {0}":["按",["0"],"排序"],"Source Arrow Shape":"源箭头形状","Source Column":"源列","Source Delimiter":"源分隔符","Source Distance From Node":"源节点距离","Source/Target Arrow Shape":"源/目标箭头形状","Spacing":"间距","Special Attributes":"特殊属性","Start":"开始","Start Over":"重新開始","Start faster with use-case specific templates":"使用特定用例模板加快启动","Start for free":"免费开始","Status":"状态","Step 1":"步骤1","Step 2":"步骤2","Step 3":"步骤3","Store any data associated to a node":"將任何與節點相關的資料儲存","Style Classes":"樣式類別","Style with classes":"用类别进行样式设置","Submit":"提交","Subscription":"订阅","Subscription Successful!":"訂閱成功!","Subscription will end":"订阅即将到期","Support":"支持","Target Arrow Shape":"目标箭头形状","Target Column":"目標欄","Target Delimiter":"目標分隔符","Target Distance From Node":"目標距離節點","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"用简单的英语告诉AI你需要什么。你的图表将在几秒钟内建立。","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"告诉我们什么是有效的,什么是无效的。每条消息都会被开发者阅读。","Text Color":"文字顏色","Text Horizontal Offset":"文本水平偏移","Text Leading":"文字行距","Text Max Width":"文本最大宽度","Text Vertical Offset":"文字垂直偏移","Text followed by colon+space creates an edge with the text as the label":"以冒号加空格结尾的文本将创建一个边,文本作为标签","Text on a line creates a node with the text as the label":"在一行中的文本将创建一个节点,文本作为标签","Thank you for your feedback!":"感谢您的反馈!","The beauty and magic reside in the minimalism.":"美和魔力都在于简约。","The best way to change styles is to right-click on a node or an edge and select the style you want.":"更改样式的最佳方式是右键单击节点或边缘,然后选择所需的样式。","The column that contains the edge label(s)":"包含边标签的列","The column that contains the source node ID(s)":"包含源节点ID的列","The column that contains the target node ID(s)":"包含目标节点ID的列","The delimiter used to separate multiple source nodes":"用于分隔多个源节点的分隔符","The delimiter used to separate multiple target nodes":"用于分隔多个目标节点的分隔符","The fastest way to turn what\'s in your head into something everyone else can understand.":"将你脑海中的想法快速转化成其他人都能理解的东西。","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"免费计划非常适合日常使用。如果你需要专业功能,每月只需支付6美元 - 随时取消,无需承诺。","The possible shapes are:":"可能的形状是:","Theme":"主題","Theme Customization Editor":"主题定制编辑器","Theme Editor":"主题编辑器","Theme editor":"主题编辑器","There are no edges in this data":"此数据中没有边","This action cannot be undone.":"此操作无法撤销。","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"只有专业用户才能使用此功能。 <0>成为专业用户0>解锁。","This may take between 30 seconds and 2 minutes depending on the length of your input.":"这可能需要30秒到2分钟的时间,取决于您输入的长度。","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"这个沙盒非常适合实验,但请记住 - 它每天都会重置。立即升级,保留您当前的工作!","This will replace the current content.":"這將取代目前的內容。","This will replace your current chart content with the template content.":"这将用模板内容替换您当前的图表内容。","This will replace your current sandbox.":"这将替换您当前的沙盒。","Time to decide":"决定的时间到了","Tip":"提示","To fix this change one of the edge IDs":"为了修复这个,改变其中一个边的ID","To fix this change one of the node IDs":"要修复这个,更改其中一个节点ID","To fix this move one pointer to the next line":"要修复这个,将指针移动到下一行","To fix this start the container <0/> on a different line":"要修复这个,将容器<0/>放在另一行","To learn more about why we require you to log in, please read <0>this blog post0>.":"要了解更多關於我們為什麼要求您登錄的原因,請閱讀<0>這篇博客文章0>。","Top to Bottom":"从上到下","Transform Your Ideas into Professional Diagrams in Seconds":"秒转换您的想法成专业图表","Transform text into diagrams instantly":"即时将文本转换为图表","Try AI":"尝试人工智能","Try adjusting your search or filters to find what you\'re looking for.":"尝试调整您的搜索或筛选条件以找到您想要的内容。","Try again":"重试","Try it free":"免费试用","Two edges have the same ID":"两个边有相同的ID","Two nodes have the same ID":"两个节点有相同的ID","Type it. See it.":"输入,即可查看","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"哎呀,你的免费请求用完了!升级到Flowchart Fun Pro,享受无限的图表转换功能,轻松将文本转换成清晰的可视化流程图,就像复制粘贴一样简单。","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"不到60秒。输入几行文字或向AI描述您需要的内容,即可立即显示您的图表。一键导出或分享。","Undo":"撤消","Unescaped special character":"未转义的特殊字符","Unique text value to identify a node":"用于标识节点的唯一文本值","Unknown":"未知","Unknown Parsing Error":"未知的解析错误","Unlimited Flowcharts":"无限制的流程图","Unlimited Permanent Flowcharts":"无限永久流程图","Unlimited cloud-saved flowcharts":"无限云端保存的流程图","Unlimited saved diagrams":"无限保存的图表","Unlock AI Features and never lose your work with a Pro account.":"解锁AI功能,通过专业账户永远不会丢失您的工作。","Unlock Unlimited AI Flowcharts":"解锁无限制使用AI流程图","Unpaid":"未付","Update Email":"更新电子邮件","Updated Date":"更新日期","Upgrade Now - Save My Work":"立即升级 - 保存我的工作","Upgrade to Flowchart Fun Pro and unlock:":"升级到Flowchart Fun Pro并解锁:","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"升级到Flowchart Fun Pro,解锁SVG导出功能,并享受更多高级功能来创建您的图表。","Upgrade to Pro":"升級到專業版","Upgrade to Pro for permanent charts.":"升级至专业版,拥有永久的图表。","Upload your File":"上传您的文件","Use Custom CSS Only":"僅使用自定義CSS","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"使用Lucidchart或Visio?CSV导入使从任何来源获取数据变得容易!","Use classes to group nodes":"使用类来分组节点","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"使用属性<0>href0>在节点上设置一个在新标签页中打开的链接。","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"使用属性<0>src0>来设置节点的图像,图像将被缩放以适应节点,因此您可能需要调整节点的宽度和高度以获得期望的结果。仅支持公共图像(不受CORS阻止)。","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"使用属性<0>w0>和<1>h1>显式设置节点的宽度和高度。","Use the customer portal to change your billing information.":"使用客户门户更改您的账单信息。","Use these settings to adapt the look and behavior of your flowcharts":"使用这些设置来调整流程图的外观和行为","Use this file for org charts, hierarchies, and other organizational structures.":"使用此文件制作组织图、层次结构和其他组织结构。","Use this file for sequences, processes, and workflows.":"使用此文件进行顺序、流程和工作流程。","Use this mode to modify and enhance your current chart.":"使用此模式来修改和增强您当前的图表。","Used at":"使用于","User":"用户","Vector Export (SVG)":"矢量导出(SVG)","View on Github":"在 Github 上查看","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"想要从文档创建流程图吗? 将其粘贴到编辑器中,然后单击“转换为流程图”","Watermark-Free Diagrams":"无水印图表","Watermarks":"水印","Welcome to Flowchart Fun":"欢迎来到流程图乐趣","What if I just need it for one project?":"如果我只需要它来做一个项目怎么办?","What our users are saying":"我们的用户都说什么了","What\'s next?":"接下来是什么?","What\'s this?":"这是什么?","Width":"宽度","Width and Height":"宽度和高度","Will my diagrams actually look professional?":"我的图表会看起来专业吗?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"通过Flowchart Fun的专业版,您可以使用自然语言命令快速完善您的流程图细节,非常适合在旅途中创建图表。每月6美元,享受易于访问的人工智能编辑,提升您的流程图体验。","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"使用专业版,您可以保存和加载本地文件。这对于离线管理工作相关文件非常方便。","Would you like to continue?":"您想继续吗?","Would you like to suggest a new example?":"您想提出一个新的示例吗?","Wrap text in parentheses to connect to any node":"用括号将文本连接到任何节点","Write like an outline":"像写大纲一样","Write your prompt here or click to enable the microphone, then press and hold to record.":"在此处输入您的提示,或点击启用麦克风,然后按住录制。","Yearly":"每年","Yes — send us a message and we\'ll set you up with a discounted rate.":"是的 - 给我们发消息,我们会为您设置折扣率。","Yes, Replace Content":"是的,替换内容。","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"是的。每个图表都使用平衡的、自动的布局和干净的排版。您可以自定义主题、颜色和样式,并导出为清晰的SVG或高分辨率的PNG,在任何演示文稿或文档中都会表现出色。","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"是的。专业版支持从Visio、Lucidchart和CSV导入 - 这样您就可以将现有的内容带入,而不必从头开始重建。","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"是的。您可以在本地保存和加载文件,完全离线工作,并且可以控制谁可以看到您的图表。除非您选择分享,否则不会有任何数据离开您的计算机。","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["您即将为您的图添加",["numNodes"],"个节点和",["numEdges"],"条边。"],"You need to log in to access this page.":"您需要登录才能访问此页面。","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"您已经是专业用户。 <0>管理订阅0><1/>有问题或功能请求? <2>告诉我们2>","You\'re doing great!":"你做得很棒!","You\'re on the free plan.":"您当前使用的是免费计划。","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"您已经使用完了所有的免费AI转换。升级到专业版,享受无限的AI使用、定制主题、私人共享等功能。轻松地创建出令人惊叹的流程图吧!","Your Charts":"您的图表","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"你的沙盒是一个可以自由尝试我们的流程图工具的空间,每天都会重置,以便于重新开始。","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"您的图表是只读的,因为您的帐户已不再活跃。请访问您的<0>帐户0>页面了解更多信息。","Your next diagram should be your best one.":"您的下一张图表应该是最好的一张。","Your subscription is <0>{statusDisplay}0>.":["您的訂閱狀態為<0>",["statusDisplay"],"0>。"],"Your work stays yours":"您的工作始终属于您。","Zoom In":"放大","Zoom Out":"縮小","month":"月份","or":"或","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
+ '{"$48/year (save 33%) · Cancel anytime":"每年$48(节省33%)· 随时取消","$6/mo":"每月$6","1 Temporary Flowchart":"1 临时流程图","1 diagram at a time":"同时只能有1个图表","<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied.":"<0>仅启用自定义CSS0>。仅应用布局和高级设置。","<0>Flowchart Fun0> is an open source project made by <1>Tone\xA0Row1>":"<0>Flowchart Fun0>是由<1>Tone Row1>制作的开源项目","<0>Sign In0> / <1>Sign Up1> with email and password":"<0>登录0> / <1>注册1> 使用电子邮件和密码","A new version of the app is available. Please reload to update.":"一个新版本的应用程序可用。请重新加载以更新。","AI Creation & Editing":"AI创建与编辑","AI generation & editing":"AI生成和编辑","AI-Powered Flowchart Creation":"AI驱动的流程图创建","AI-generated from plain text in under 5 seconds.":"从普通文本中在5秒内生成AI","AI-powered editing to supercharge your workflow":"AI动力编辑,让您的工作流程更加高效","About":"关于","Account":"帐户","Add a backslash (<0>\\\\0>) before any special characters: <1>(1>, <2>:2>, <3>#3>, or <4>.4>`":"在任何特殊字符之前添加反斜杠 (<0>\\\\0>): <1>(1>、<2>:2>、<3>#3>或<4>.4>","Add some steps":"添加一些步骤","Advanced":"高级","Align Horizontally":"水平对齐","Align Nodes":"对齐节点","Align Vertically":"垂直对齐","All this for just $6/month - less than your daily coffee ☕":"所有这些仅需每月6美元 - 不到您每天的咖啡☕","Always presentation-ready":"总是准备好展示","Amount":"数量","An error occurred. Try resubmitting or email {0} directly.":["发生了一个错误。请尝试重新提交或直接发送电子邮件至",["0"],"。"],"Appearance":"外观","Are you sure you want to delete the flowchart \\"{0}\\"? This action cannot be undone.":"您确定要删除流程图吗?","Are you sure you want to delete the folder \\"{0}\\" and all its contents? This action cannot be undone.":"您确定要删除文件夹吗?","Are you sure you want to delete the folder \\"{0}\\"? This action cannot be undone.":"您确定要删除文件夹吗?","Are you sure?":"你确定吗?","Arrow Size":"箭头大小","Attributes":"属性","August 2023":"2023 年 8 月","Back":"返回","Back To Editor":"返回编辑器","Background Color":"背景颜色","Basic Flowchart":"基本流程图","Become a Github Sponsor":"成为Github赞助商","Become a Pro User":"成为专业用户","Begin your journey":"开始你的旅程","Billed annually at $48":"年度账单为$48","Billed monthly at $6":"每月收费$6","Blog":"博客","Book a Meeting":"预订会议","Border Color":"边框颜色","Border Width":"边框宽度","Bottom to Top":"从下到上","Breadthfirst":"宽度优先","Build your personal flowchart library":"建立您的个人流程图库","Can I import my existing diagrams?":"我能导入我的现有图表吗?","Cancel":"取消","Cancel anytime":"随时取消","Cancel your subscription. Your hosted charts will become read-only.":"取消订阅。您的托管图表将变为只读。","Certain attributes can be used to customize the appearance or functionality of elements.":"某些属性可用于自定义元素的外观或功能。","Change Email Address":"更改电子邮件地址","Changelog":"变更日志","Charts":"图表","Check out the guide:":"查看指南:","Check your email for a link to log in.<0/>You can close this window.":"检查您的电子邮件以获取登录链接。您可以关闭此窗口。","Choose":"選擇","Choose Template":"选择模板","Choose from a variety of arrow shapes for the source and target of an edge. Shapes include triangle, triangle-tee, circle-triangle, triangle-cross, triangle-backcurve, vee, tee, square, circle, diamond, chevron, none. .":"为边缘的源和目标选择各种箭头形状。形状包括三角形,三角形-T,圆形-三角形,三角形-十字,三角形-后曲线,V形,T形,正方形,圆形,菱形,雪花形,无。","Choose how edges connect between nodes":"选择节点之间的边缘连接方式","Choose how nodes are automatically arranged in your flowchart":"选择如何自动排列您的流程图中的节点","Circle":"圆圈","Classes":"类","Clear":"清除","Clear text?":"清除文字?","Clone":"克隆","Clone Flowchart":"克隆流程图","Close":"关闭","Color":"颜色","Colors include red, orange, yellow, blue, purple, black, white, and gray.":"颜色包括红色,橙色,黄色,蓝色,紫色,黑色,白色和灰色。","Column":"列","Comment":"评论","Community templates":"社区模板","Compare our plans and find the perfect fit for your flowcharting needs":"比较我们的计划,找到最适合您流程图需求的方案","Concentric":"同心","Confirm New Email":"确认新电子邮件","Confirm your email address to sign in.":"確認您的電子郵件地址以登入。","Connect your Data":"连接您的数据","Containers":"容器","Containers are nodes that contain other nodes. They are declared using curly braces.":"容器是包含其他节点的节点。它们使用大括号声明。","Continue":"继续","Continue in Sandbox (Resets daily, work not saved)":"继续使用沙盒(每天重置,工作不会被保存)","Controls the flow direction of hierarchical layouts":"控制层次布局的流向","Convert":"转换","Convert to Flowchart":"转换为流程图","Convert to hosted chart?":"是否转换为托管图表?","Cookie Policy":"Cookie政策","Copied SVG code to clipboard":"将SVG代码复制到剪贴板","Copied {format} to clipboard":["将",["format"],"复制到剪贴板"],"Copy":"复制","Copy PNG Image":"复制PNG图像","Copy SVG Code":"复制 SVG 代码","Copy your Excalidraw code and paste it into <0>excalidraw.com0> to edit. This feature is experimental and may not work with all diagrams. If you find a bug, please <1>let us know1>.":"将你的 Excalidraw 代码复制并粘贴到<0>excalidraw.com0>以进行编辑。此功能为实验性质,可能无法与所有图表一起使用。如果您发现错误,请<1>告诉我们1>。","Copy your mermaid.js code or open it directly in the mermaid.js live editor.":"复制您的mermaid.js代码或直接在mermaid.js实时编辑器中打开它。","Create":"创建","Create Flowcharts using AI":"使用AI创建流程图","Create Unlimited Flowcharts":"创建无限流程图","Create a New Chart":"创建新图表","Create a flowchart showing the steps of planning and executing a school fundraising event":"创建一个流程图,展示规划和执行学校筹款活动的步骤","Create a new flowchart to get started or organize your work with folders.":"创建一个新的流程图开始或使用文件夹组织您的工作。","Create flowcharts instantly: Type or paste text, see it visualized.":"即时创建流程图:输入或粘贴文本,即可可视化。","Create unlimited diagrams for just $6/month!":"仅需每月$6,即可创建无限的图表!","Create unlimited flowcharts stored in the cloud– accessible anywhere!":"在云中存储无限流程图- 随时随地可访问!","Create with AI":"通過AI創建","Created Date":"创建日期","Creating an edge between two nodes is done by indenting the second node below the first":"在两个节点之间创建边缘是通过将第二个节点缩进第一个节点来完成的","Curve Style":"曲线样式","Custom CSS":"自定义CSS","Custom Sharing Options":"自定义分享选项","Custom sharing & public links":"自定义共享和公共链接","Customer Portal":"客户门户","Daily Sandbox Editor":"每日沙盒编辑器","Dark":"深色","Dark Mode":"深色模式","Data Import (Visio, Lucidchart, CSV)":"数据导入(Visio,Lucidchart,CSV)","Data import feature for complex diagrams":"数据导入功能,适用于复杂的图表","Date":"日期","Delete":"删除","Delete {0}":["删除 ",["0"]],"Describe it and it appears":"描述它,它就会出现","Describe your idea. Get a diagram worth presenting.":"描述您的想法。得到一个值得展示的图表。","Design a software development lifecycle flowchart for an agile team":"为敏捷团队设计一个软件开发生命周期流程图","Develop a decision tree for a CEO to evaluate potential new market opportunities":"为CEO设计一个决策树,评估潜在的新市场机会","Direction":"方向","Dismiss":"解散","Do you offer discounts for students or nonprofits?":"是否为学生或非营利组织提供折扣?","Do you want to delete this?":"您要将其删除吗?","Document":"文档","Don\'t Lose Your Work":"不要丢失你的工作","Download":"下载","Download JPG":"下载 JPG","Download PNG":"下载 PNG","Download SVG":"下载 SVG","Drag and drop a CSV file here, or click to select a file":"将CSV文件拖放到此处,或单击以选择文件","Draw an edge from multiple nodes by beginning the line with a reference":"通过引用开始行从多个节点绘制边缘","Drop the file here ...":"將檔案拖放到這裡...","Each line becomes a node":"每一行都变成一个节点","Edge ID, Classes, Attributes":"邊緣ID、類別和屬性","Edge Label":"邊緣標籤","Edge Label Column":"邊緣標籤欄","Edge Style":"邊緣樣式","Edge Text Size":"边缘文本大小","Edge missing indentation":"缺少缩进的边","Edges":"边","Edges are declared in the same row as their source node":"边声明在与源节点相同的行中","Edges are declared in the same row as their target node":"边声明在与目标节点相同的行中","Edges are declared in their own row":"边声明在自己的行中","Edges can also have ID\'s, classes, and attributes before the label":"边在标签之前可以有ID,类和属性","Edges can be styled with dashed, dotted, or solid lines":"边可以用虚线,点线或实线样式","Edges in Separate Rows":"边在单独的行","Edges in Source Node Row":"边在源节点行","Edges in Target Node Row":"边在目标节点行","Edit":"编辑","Edit with AI":"利用AI进行编辑","Editable":"可编辑","Editor":"编辑器","Email":"电子邮件","Empty":"空","Enable to set a consistent height for all nodes":"启用统一设置所有节点的高度","Enter a name for the cloned flowchart.":"为克隆的流程图输入名称。","Enter a name for the new folder.":"为新文件夹输入名称。","Enter a new name for the {0}.":["为 ",["0"]," 输入新名称。"],"Enter your email address and we\'ll send you a magic link to sign in.":"輸入您的電子郵件地址,我們將發送給您一個魔法鏈接以登入。","Enter your email address below and we\'ll send you a link to reset your password.":"在下面輸入您的電子郵件地址,我們將發送給您一個重置密碼的鏈接。","Equal To":"等于","Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck.":"每个图表都可以导出为清晰的PNG、SVG或可共享的链接 - 准备好参加会议、文档或演示文稿。","Everything you need to know about Flowchart Fun Pro":"有关流程图乐趣专业版的所有信息","Examples":"示例","Excalidraw":"Excalidraw","Exclusive Office Hours":"专属办公时间","Experience the efficiency and security of loading local files directly into your flowchart, perfect for managing work-related documents offline. Unlock this exclusive Pro feature and more with Flowchart Fun Pro, available for only $6/month":"体验将本地文件直接加载到流程图中的效率和安全性,非常适合离线管理工作相关文件。解锁这个独有的专业功能以及更多功能,Flowchart Fun Pro仅需每月$6即可使用。","Explore Pro":"探索专业版","Explore more":"探索更多","Export":"导出","Export clean diagrams without branding":"导出无品牌标识的清晰图表","Export to PNG & JPG":"导出为PNG和JPG","Export to PNG, JPG, and SVG":"导出为PNG,JPG和SVG","Feature Breakdown":"功能分解","Feedback":"反馈","Feel free to explore and reach out to us through the <0>Feedback0> page should you have any concerns.":"如果您有任何問題,請隨意探索並通過<0>反饋0>頁面與我們聯繫。","Fine-tune layouts and visual styles":"调整布局和视觉风格","Fixed Height":"固定高度","Fixed Node Height":"固定节点高度","Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month.":"Flowchart Fun Pro为您提供无限的流程图、无限的协作者和无限的存储空间,仅需每月$6即可享用。","Flowchart Fun is an open source project made by <0>Tone\xA0Row0>":"Flowchart Fun是由<0>Tone\xA0Row0>制作的开源项目","Flowchart Fun is built and maintained by one developer. Your support keeps it going.":"Flowchart Fun由一位开发者构建和维护。您的支持使其持续运行。","Follow Us on Twitter":"在Twitter上关注我们","Font Family":"字体系列","Forgot your password?":"忘記密碼了?","Free":"免费","Free users: charts in the sandbox expire after 7 days.":"免费用户:沙盒中的图表在7天后将过期。","Frequently Asked Questions":"经常问的问题","Full-screen, read-only, and template sharing":"全屏、只读和模板共享","Fullscreen":"全屏","General":"一般","Generate flowcharts from text automatically":"自动从文本生成流程图","Get Pro Access Now":"立即获取专业访问权限","Get Unlimited AI Requests":"获得无限的AI请求","Get rapid responses to your questions":"快速获取您的问题的回答","Get unlimited flowcharts and premium features":"获取无限流程图和高级功能","Go back home":"回家","Go to the Editor":"前往編輯器","Go to your Sandbox":"去你的沙盒","Graph":"图表","Green?":"绿色的?","Grid":"网格","Group ranking and ranked-choice voting, free":"群组排名和排名选择投票,免费","Have complex questions or issues? We\'re here to help.":"有复杂的问题或问题吗?我们在这里帮助你。","Here are some Pro features you can now enjoy.":"現在您可以享受以下專業功能。","High-quality exports with embedded fonts":"高质量的导出,内嵌字体","History":"历史","Home":"主页","How are edges declared in this data?":"在这个数据中如何声明边缘?","How fast can I actually make something?":"我到底能有多快地制作出东西?","How would you like to save your chart?":"您想如何保存您的流程图?","I would like to request a new template:":"我想请求一个新的模板:","ID\'s":"ID","If an account with that email exists, we\'ve sent you an email with instructions on how to reset your password.":"如果該電子郵件存在該帳戶,我們已經發送給您一封電子郵件,其中包含如何重置您的密碼的說明。","If you mean to create an edge, indent this line. If not, escape the colon with a backslash <0>\\\\:0>":"如果你想创建一个边,缩进这一行。如果不,用反斜杠转义冒号<0>\\\\:0>","Images":"图像","Import Data":"导入数据","Import data from a CSV file.":"从CSV文件导入数据。","Import data from any CSV file and map it to a new flowchart. This is a great way to import data from other sources like Lucidchart, Google Sheets, and Visio.":"從任何CSV檔案匯入資料並將其映射到新的流程圖。這是從Lucidchart、Google Sheets和Visio等其他來源匯入資料的一個很棒的方法。","Import from CSV":"從CSV導入","Import from Visio, Lucidchart, CSV":"从Visio、Lucidchart、CSV导入","Import from Visio, Lucidchart, and CSV":"从Visio,Lucidchart和CSV导入","Import from anywhere":"从任何地方导入","Import from popular diagram tools":"从流行的图表工具导入","Import your diagram it into Microsoft Visio using one of these CSV files.":"使用其中一个CSV文件将您的图表导入到Microsoft Visio中。","Importing data is a pro feature. You can upgrade to Flowchart Fun Pro for just $6/month.":"导入数据是一项专业功能。您可以升级到Flowchart Fun Pro,仅需每月6美元。","Include a title using a <0>title0> attribute. To use Visio coloring, add a <1>roleType1> attribute equal to one of the following:":"使用<0>title0>属性添加标题。要使用 Visio 颜色,请添加一个等于以下内容之一的<1>roleType1>属性:","Indent to connect nodes":"缩进以连接节点","Info":"信息","Is":"是","Is my data private?":"我的数据是否私密?","JSON Canvas is a JSON representation of your diagram used by <0>Obsidian0> Canvas and other applications.":"JSON画布是您的图表的JSON表示,由<0>Obsidian0> Canvas和其他应用程序使用。","Join 2000+ professionals who\'ve upgraded their workflow":"加入2000多位专业人士,升级他们的工作流程","Join thousands of happy users who love Flowchart Fun":"加入成千上万的快乐用户,他们都爱流程图乐趣","Keep Things Private":"保持事物私密","Keep changes?":"保留更改吗?","Keep practicing":"继续练习","Keep your data private on your computer":"在您的电脑上保护您的数据隐私","Language":"语言","Layout":"布局","Layout Algorithm":"布局算法","Layout Frozen":"布局已冻结","Leading References":"主要參考","Learn More":"学到更多","Learn Syntax":"學習語法","Learn about Flowchart Fun Pro":"了解关于Flowchart Fun Pro","Left to Right":"从左到右","Let us know why you\'re canceling. We\'re always looking to improve.":"让我们知道您为什么要取消。我们一直在努力改进。","Light":"浅色","Light Mode":"浅色模式","Link":"链接","Link back":"链接回来","Load":"載入","Load Chart":"加载流程图","Load File":"加载文件","Load Files":"加载多个文件","Load default content":"載入預設內容","Load from link?":"从链接加载?","Load layout and styles":"載入版面和樣式","Loading...":"加载中...","Local File Support":"本地文件支持","Local saving for offline access":"本地保存,实现离线访问","Lock Zoom to Graph":"锁定缩放到图表","Log In":"登录","Log Out":"登出","Log in to Save":"登录以保存","Log in to upgrade your account":"登录升级您的账户","Made by <0>Tone\xA0Row0>":"由<0>Tone\xA0Row0>制作","Make a One-Time Donation":"进行一次性捐赠","Make it yours":"让它成为你的","Make publicly accessible":"设为公开访问","Manage Billing":"付款管理","Map Data":"對應資料","Maximum width of text inside nodes":"节点内文本的最大宽度","Monthly":"每月","More from Tone Row":"来自Tone Row的更多内容","More from Tone Row:":"来自Tone Row的更多内容:","More tools:":"更多工具:","Move":"移动","Move {0}":["移动 ",["0"]],"Multiple pointers on same line":"同一行上的多个指针","My dog ate my credit card!":"我的狗吃了我的信用卡!","Name":"名称","Name Chart":"命名图表","Name your chart":"为您的流程图命名","New":"新","New Email":"新邮件","New Flowchart":"新流程图","New Folder":"新文件夹","Next charge":"下次扣费","No Edges":"沒有邊緣","No Folder (Root)":"无文件夹(根目录)","No Watermarks!":"无水印!","No charts yet":"还没有图表","No items in this folder":"此文件夹中没有项目","No matching charts found":"没有找到匹配的图表","Node Border Style":"节点边框样式","Node Colors":"节点颜色","Node ID":"节点ID","Node ID, Classes, Attributes":"节点ID、类、属性","Node Label":"节点标签","Node Shape":"节点形状","Node Shapes":"节点形状","Nodes":"节点","Nodes can be styled with dashed, dotted, or double. Borders can also be removed with border_none.":"节点可以使用虚线、点线或双线样式。边框也可以使用 border_none 来移除。","Not Empty":"不为空","Now you\'re thinking with flowcharts!":"现在你在用流程图思考了!","Office Hours":"工作时间","Once in a while the magic link will end up in your spam folder. If you don\'t see it after a few minutes, check there or request a new link.":"偶尔,魔法链接会被放入您的垃圾邮件文件夹。如果几分钟后仍然没有收到,请检查垃圾邮件文件夹,或者重新请求新的链接。","One on One Support":"一对一支持","One-on-One Support":"一对一支持","Open Customer Portal":"打开客户门户","Operation canceled":"操作已取消","Or maybe blue!":"或者也许是蓝色!","Organization Chart":"组织结构图","PNG & JPG export":"PNG和JPG导出","Padding":"填充","Page not found":"找不到页面","Password":"密碼","Past Due":"过期","Paste a document to convert it":"粘贴一个文档来转换它","Paste your document or outline here to convert it into an organized flowchart.":"将您的文档或大纲粘贴到此处,将其转换为有组织的流程图。","Pasted content detected. Convert to Flowchart Fun syntax?":"检测到粘贴内容。转换为流程图乐趣语法?","Perfect for docs and quick sharing":"适用于文档和快速分享","Permanent Charts are a Pro Feature":"永久图表是专业功能","Playbook":"剧本","Pointer and container on same line":"同一行上的指针和容器","Pricing":"价格","Priority One-on-One Support":"优先一对一支持","Priority support":"优先支持","Privacy Policy":"隱私政策","Pro starts at $4/mo billed yearly. Cancel anytime.":"专业版每月4美元,年付。随时取消。","Pro tip: Right-click any node to customize its shape and color":"专业提示:右键点击任何节点可自定义其形状和颜色","Processing Data":"处理数据","Processing...":"处理中...","Prompt":"提示","Public":"公开","Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists.":"从Visio,Lucidchart,CSV中导入数据,或从模板开始。无需重新创建已存在的内容。","Quick experimentation space that resets daily":"每日重置的快速实验空间","Random":"随机","Rapid Deployment Templates":"快速部署模板","Rapid Templates":"快速模板","Raster Export (PNG, JPG)":"光栅导出(PNG,JPG)","Rate limit exceeded. Please try again later.":"速率限制超出。 请稍后再试。","Read-only":"只读","Reference by Class":"按类引用","Reference by ID":"按 ID 参考","Reference by Label":"按标签参考","References":"参考","References are used to create edges between nodes that are created elsewhere in the document":"参考用于在文档中其他位置创建的节点之间创建边","Referencing a node by its exact label":"通过其确切标签引用节点","Referencing a node by its unique ID":"通过其唯一ID引用节点","Referencing multiple nodes with the same assigned class":"使用相同分配的类引用多个节点","Refresh Page":"刷新页面","Reload to Update":"重新加载以更新","Rename":"重命名","Rename {0}":["重命名",["0"]],"Request Magic Link":"請求魔法鏈接","Request Password Reset":"請求密碼重置","Reset":"重置","Reset Password":"重置密碼","Resume Subscription":"恢复订阅","Return":"返回","Right to Left":"从右到左","Right-click nodes for options":"右键点击节点以获得选项","Roadmap":"路线图","Rotate Label":"旋转标签","SVG Export is a Pro Feature":"SVG导出是专业功能","SVG, PDF & all export formats":"支持SVG,PDF和所有导出格式","Satisfaction guaranteed or first payment refunded":"满意保证或第一次付款退款","Save":"救球","Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so.":"本地保存,离线工作,并且可以精确控制谁可以看到什么。除非您允许,否则不会将数据传输到其他地方。","Save time with AI and dictation, making it easy to create diagrams.":"使用人工智能和口述功能,节省时间,轻松创建图表。","Save to Cloud":"保存到云","Save to File":"保存到文件","Save your Work":"保存您的工作","Schedule personal consultation sessions":"安排个人咨询会话","Secure payment":"安全付款","See more reviews on Product Hunt":"在Product Hunt上查看更多评论","See what\'s possible":"查看可行性","Select a destination folder for \\"{0}\\".":"选择一个目标文件夹 \\\\","Send us a message":"发送我们消息","Set a consistent height for all nodes":"设置所有节点的统一高度","Settings":"设置","Share":"分享","Sign In":"登錄","Sign in with <0>GitHub0>":"使用<0>GitHub0>登录","Sign in with <0>Google0>":"使用<0>Google0>登录","Sorry! This page is only available in English.":"抱歉!此页面只有英语版。","Sorry, there was an error converting the text to a flowchart. Try again later.":"抱歉,转换文本为流程图时出错。 请稍后再试。","Sort Ascending":"升序排序","Sort Descending":"倒序排列","Sort by {0}":["按",["0"],"排序"],"Source Arrow Shape":"源箭头形状","Source Column":"源列","Source Delimiter":"源分隔符","Source Distance From Node":"源节点距离","Source/Target Arrow Shape":"源/目标箭头形状","Spacing":"间距","Special Attributes":"特殊属性","Start":"开始","Start Over":"重新開始","Start faster with use-case specific templates":"使用特定用例模板加快启动","Start for free":"免费开始","Status":"状态","Step 1":"步骤1","Step 2":"步骤2","Step 3":"步骤3","Store any data associated to a node":"將任何與節點相關的資料儲存","Style Classes":"樣式類別","Style with classes":"用类别进行样式设置","Submit":"提交","Subscription":"订阅","Subscription Successful!":"訂閱成功!","Subscription will end":"订阅即将到期","Support":"支持","Target Arrow Shape":"目标箭头形状","Target Column":"目標欄","Target Delimiter":"目標分隔符","Target Distance From Node":"目標距離節點","Tell the AI what you need in plain English. Your diagram builds itself in seconds.":"用简单的英语告诉AI你需要什么。你的图表将在几秒钟内建立。","Tell us what\'s working and what isn\'t. Every message is read by the developer.":"告诉我们什么是有效的,什么是无效的。每条消息都会被开发者阅读。","Text Color":"文字顏色","Text Horizontal Offset":"文本水平偏移","Text Leading":"文字行距","Text Max Width":"文本最大宽度","Text Vertical Offset":"文字垂直偏移","Text followed by colon+space creates an edge with the text as the label":"以冒号加空格结尾的文本将创建一个边,文本作为标签","Text on a line creates a node with the text as the label":"在一行中的文本将创建一个节点,文本作为标签","Thank you for your feedback!":"感谢您的反馈!","The beauty and magic reside in the minimalism.":"美和魔力都在于简约。","The best way to change styles is to right-click on a node or an edge and select the style you want.":"更改样式的最佳方式是右键单击节点或边缘,然后选择所需的样式。","The column that contains the edge label(s)":"包含边标签的列","The column that contains the source node ID(s)":"包含源节点ID的列","The column that contains the target node ID(s)":"包含目标节点ID的列","The delimiter used to separate multiple source nodes":"用于分隔多个源节点的分隔符","The delimiter used to separate multiple target nodes":"用于分隔多个目标节点的分隔符","The fastest way to turn what\'s in your head into something everyone else can understand.":"将你脑海中的想法快速转化成其他人都能理解的东西。","The free plan works great for day-to-day use. If you need Pro features, it\'s month-to-month at $6/mo — cancel anytime with no commitment.":"免费计划非常适合日常使用。如果你需要专业功能,每月只需支付6美元 - 随时取消,无需承诺。","The possible shapes are:":"可能的形状是:","Theme":"主題","Theme Customization Editor":"主题定制编辑器","Theme Editor":"主题编辑器","Theme editor":"主题编辑器","There are no edges in this data":"此数据中没有边","This action cannot be undone.":"此操作无法撤销。","This feature is only available to pro users. <0>Become a pro user0> to unlock it.":"只有专业用户才能使用此功能。 <0>成为专业用户0>解锁。","This may take between 30 seconds and 2 minutes depending on the length of your input.":"这可能需要30秒到2分钟的时间,取决于您输入的长度。","This sandbox is perfect for experimenting, but remember - it resets daily. Upgrade now and keep your current work!":"这个沙盒非常适合实验,但请记住 - 它每天都会重置。立即升级,保留您当前的工作!","This will replace the current content.":"這將取代目前的內容。","This will replace your current chart content with the template content.":"这将用模板内容替换您当前的图表内容。","This will replace your current sandbox.":"这将替换您当前的沙盒。","Time to decide":"决定的时间到了","Tip":"提示","To fix this change one of the edge IDs":"为了修复这个,改变其中一个边的ID","To fix this change one of the node IDs":"要修复这个,更改其中一个节点ID","To fix this move one pointer to the next line":"要修复这个,将指针移动到下一行","To fix this start the container <0/> on a different line":"要修复这个,将容器<0/>放在另一行","To learn more about why we require you to log in, please read <0>this blog post0>.":"要了解更多關於我們為什麼要求您登錄的原因,請閱讀<0>這篇博客文章0>。","Top to Bottom":"从上到下","Transform Your Ideas into Professional Diagrams in Seconds":"秒转换您的想法成专业图表","Transform text into diagrams instantly":"即时将文本转换为图表","Try AI":"尝试人工智能","Try adjusting your search or filters to find what you\'re looking for.":"尝试调整您的搜索或筛选条件以找到您想要的内容。","Try again":"重试","Try it free":"免费试用","Turn documents into diagrams with AI":"使用人工智能将文档转换为图表","Two edges have the same ID":"两个边有相同的ID","Two nodes have the same ID":"两个节点有相同的ID","Type it. See it.":"输入,即可查看","Uh oh, you\'re out of free requests! Upgrade to Flowchart Fun Pro for unlimited diagram conversions, and keep transforming text into clear, visual flowcharts as easily as copy and paste.":"哎呀,你的免费请求用完了!升级到Flowchart Fun Pro,享受无限的图表转换功能,轻松将文本转换成清晰的可视化流程图,就像复制粘贴一样简单。","Under 60 seconds. Type a few lines of text or describe what you need to the AI, and your diagram appears instantly. Export or share it with one click.":"不到60秒。输入几行文字或向AI描述您需要的内容,即可立即显示您的图表。一键导出或分享。","Undo":"撤消","Unescaped special character":"未转义的特殊字符","Unique text value to identify a node":"用于标识节点的唯一文本值","Unknown":"未知","Unknown Parsing Error":"未知的解析错误","Unlimited Flowcharts":"无限制的流程图","Unlimited Permanent Flowcharts":"无限永久流程图","Unlimited cloud-saved flowcharts":"无限云端保存的流程图","Unlimited saved diagrams":"无限保存的图表","Unlock AI Features and never lose your work with a Pro account.":"解锁AI功能,通过专业账户永远不会丢失您的工作。","Unlock Unlimited AI Flowcharts":"解锁无限制使用AI流程图","Unpaid":"未付","Update Email":"更新电子邮件","Updated Date":"更新日期","Upgrade Now - Save My Work":"立即升级 - 保存我的工作","Upgrade to Flowchart Fun Pro and unlock:":"升级到Flowchart Fun Pro并解锁:","Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly.":"升级至Flowchart Fun Pro,享受无限托管图表、无水印高清导出、人工智能编辑等功能。每月$4,年付。","Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.":"升级到Flowchart Fun Pro,解锁SVG导出功能,并享受更多高级功能来创建您的图表。","Upgrade to Pro":"升級到專業版","Upgrade to Pro for permanent charts.":"升级至专业版,拥有永久的图表。","Upload your File":"上传您的文件","Use Custom CSS Only":"僅使用自定義CSS","Use Lucidchart or Visio? CSV Import makes it easy to get data from any source!":"使用Lucidchart或Visio?CSV导入使从任何来源获取数据变得容易!","Use classes to group nodes":"使用类来分组节点","Use the attribute <0>href0> to set a link on a node that opens in a new tab.":"使用属性<0>href0>在节点上设置一个在新标签页中打开的链接。","Use the attribute <0>src0> to set the image of a node. The image will be scaled to fit the node, so you may need to adjust the width and height of the node to get the desired result. Only public images (not blocked by CORS) are supported.":"使用属性<0>src0>来设置节点的图像,图像将被缩放以适应节点,因此您可能需要调整节点的宽度和高度以获得期望的结果。仅支持公共图像(不受CORS阻止)。","Use the attributes <0>w0> and <1>h1> to explicitly set the width and height of a node.":"使用属性<0>w0>和<1>h1>显式设置节点的宽度和高度。","Use the customer portal to change your billing information.":"使用客户门户更改您的账单信息。","Use these settings to adapt the look and behavior of your flowcharts":"使用这些设置来调整流程图的外观和行为","Use this file for org charts, hierarchies, and other organizational structures.":"使用此文件制作组织图、层次结构和其他组织结构。","Use this file for sequences, processes, and workflows.":"使用此文件进行顺序、流程和工作流程。","Use this mode to modify and enhance your current chart.":"使用此模式来修改和增强您当前的图表。","Used at":"使用于","User":"用户","Vector Export (SVG)":"矢量导出(SVG)","View on Github":"在 Github 上查看","Want to create a flowchart from a document? Paste it in the editor and click \'Convert to Flowchart\'":"想要从文档创建流程图吗? 将其粘贴到编辑器中,然后单击“转换为流程图”","Watermark-Free Diagrams":"无水印图表","Watermarks":"水印","Welcome to Flowchart Fun":"欢迎来到流程图乐趣","What if I just need it for one project?":"如果我只需要它来做一个项目怎么办?","What our users are saying":"我们的用户都说什么了","What\'s next?":"接下来是什么?","What\'s this?":"这是什么?","Width":"宽度","Width and Height":"宽度和高度","Will my diagrams actually look professional?":"我的图表会看起来专业吗?","With Flowchart Fun\'s Pro version, you can use natural language comamnds to quickly flesh out your flowchart details, ideal for creating diagrams on the go. For $6/month, get the ease of accessible AI editing to enhance your flowcharting experience.":"通过Flowchart Fun的专业版,您可以使用自然语言命令快速完善您的流程图细节,非常适合在旅途中创建图表。每月6美元,享受易于访问的人工智能编辑,提升您的流程图体验。","With the pro version you can save and load local files. It\'s perfect for managing work-related documents offline.":"使用专业版,您可以保存和加载本地文件。这对于离线管理工作相关文件非常方便。","Would you like to continue?":"您想继续吗?","Would you like to suggest a new example?":"您想提出一个新的示例吗?","Wrap text in parentheses to connect to any node":"用括号将文本连接到任何节点","Write like an outline":"像写大纲一样","Write your prompt here or click to enable the microphone, then press and hold to record.":"在此处输入您的提示,或点击启用麦克风,然后按住录制。","Yearly":"每年","Yes — send us a message and we\'ll set you up with a discounted rate.":"是的 - 给我们发消息,我们会为您设置折扣率。","Yes, Replace Content":"是的,替换内容。","Yes. Every diagram uses balanced, automatic layouts with clean typography. You can customize themes, colors, and styles — and export as crisp SVG or high-resolution PNG that looks great in any presentation or document.":"是的。每个图表都使用平衡的、自动的布局和干净的排版。您可以自定义主题、颜色和样式,并导出为清晰的SVG或高分辨率的PNG,在任何演示文稿或文档中都会表现出色。","Yes. Pro supports importing from Visio, Lucidchart, and CSV — so you can bring in what you already have without recreating it from scratch.":"是的。专业版支持从Visio、Lucidchart和CSV导入 - 这样您就可以将现有的内容带入,而不必从头开始重建。","Yes. You can save and load files locally, work entirely offline, and control exactly who sees your diagrams. No data leaves your machine unless you choose to share.":"是的。您可以在本地保存和加载文件,完全离线工作,并且可以控制谁可以看到您的图表。除非您选择分享,否则不会有任何数据离开您的计算机。","You are about to add {numNodes} nodes and {numEdges} edges to your graph.":["您即将为您的图添加",["numNodes"],"个节点和",["numEdges"],"条边。"],"You need to log in to access this page.":"您需要登录才能访问此页面。","You\'re already a Pro User. <0>Manage Subscription0><1/>Have questions or feature requests? <2>Let Us Know2>":"您已经是专业用户。 <0>管理订阅0><1/>有问题或功能请求? <2>告诉我们2>","You\'re doing great!":"你做得很棒!","You\'re on the free plan.":"您当前使用的是免费计划。","You\'ve used all your free AI conversions. Upgrade to Pro for unlimited AI use, custom themes, private sharing, and more. Keep creating amazing flowcharts effortlessly!":"您已经使用完了所有的免费AI转换。升级到专业版,享受无限的AI使用、定制主题、私人共享等功能。轻松地创建出令人惊叹的流程图吧!","Your Charts":"您的图表","Your Sandbox is a space to freely experiment with our flowchart tools, resetting every day for a fresh start.":"你的沙盒是一个可以自由尝试我们的流程图工具的空间,每天都会重置,以便于重新开始。","Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more.":"您的图表是只读的,因为您的帐户已不再活跃。请访问您的<0>帐户0>页面了解更多信息。","Your next diagram should be your best one.":"您的下一张图表应该是最好的一张。","Your subscription is <0>{statusDisplay}0>.":["您的訂閱狀態為<0>",["statusDisplay"],"0>。"],"Your work stays yours":"您的工作始终属于您。","Zoom In":"放大","Zoom Out":"縮小","month":"月份","or":"或","{0}":[["0"]],"{buttonText}":[["buttonText"]]}'
),
};
diff --git a/app/src/locales/zh/messages.po b/app/src/locales/zh/messages.po
index 61551fe87..f2e99ae71 100644
--- a/app/src/locales/zh/messages.po
+++ b/app/src/locales/zh/messages.po
@@ -13,11 +13,11 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/pages/Pricing2.tsx:378
+#: src/pages/Pricing2.tsx:387
msgid "$48/year (save 33%) · Cancel anytime"
msgstr "每年$48(节省33%)· 随时取消"
-#: src/pages/Pricing2.tsx:345
+#: src/pages/Pricing2.tsx:354
msgid "$6/mo"
msgstr "每月$6"
@@ -25,7 +25,7 @@ msgstr "每月$6"
msgid "1 Temporary Flowchart"
msgstr "1 临时流程图"
-#: src/pages/Pricing2.tsx:102
+#: src/pages/Pricing2.tsx:104
msgid "1 diagram at a time"
msgstr "同时只能有1个图表"
@@ -33,7 +33,7 @@ msgstr "同时只能有1个图表"
msgid "<0>Custom CSS Only0> is enabled. Only the Layout and Advanced settings will be applied."
msgstr "<0>仅启用自定义CSS0>。仅应用布局和高级设置。"
-#: src/components/Settings.tsx:88
+#: src/components/Settings.tsx:89
msgid "<0>Flowchart Fun0> is an open source project made by <1>Tone Row1>"
msgstr "<0>Flowchart Fun0>是由<1>Tone Row1>制作的开源项目"
@@ -49,7 +49,7 @@ msgstr "一个新版本的应用程序可用。请重新加载以更新。"
msgid "AI Creation & Editing"
msgstr "AI创建与编辑"
-#: src/pages/Pricing2.tsx:111
+#: src/pages/Pricing2.tsx:113
msgid "AI generation & editing"
msgstr "AI生成和编辑"
@@ -57,7 +57,7 @@ msgstr "AI生成和编辑"
msgid "AI-Powered Flowchart Creation"
msgstr "AI驱动的流程图创建"
-#: src/pages/Pricing2.tsx:303
+#: src/pages/Pricing2.tsx:312
msgid "AI-generated from plain text in under 5 seconds."
msgstr "从普通文本中在5秒内生成AI"
@@ -65,12 +65,12 @@ msgstr "从普通文本中在5秒内生成AI"
msgid "AI-powered editing to supercharge your workflow"
msgstr "AI动力编辑,让您的工作流程更加高效"
-#: src/components/Settings.tsx:85
+#: src/components/Settings.tsx:86
msgid "About"
msgstr "关于"
-#: src/components/Header.tsx:190
-#: src/components/Header.tsx:439
+#: src/components/Header.tsx:192
+#: src/components/Header.tsx:441
#: src/pages/Account.tsx:120
msgid "Account"
msgstr "帐户"
@@ -106,7 +106,7 @@ msgstr "垂直对齐"
msgid "All this for just $6/month - less than your daily coffee ☕"
msgstr "所有这些仅需每月6美元 - 不到您每天的咖啡☕"
-#: src/pages/Pricing2.tsx:83
+#: src/pages/Pricing2.tsx:85
msgid "Always presentation-ready"
msgstr "总是准备好展示"
@@ -118,7 +118,7 @@ msgstr "数量"
msgid "An error occurred. Try resubmitting or email {0} directly."
msgstr "发生了一个错误。请尝试重新提交或直接发送电子邮件至{0}。"
-#: src/components/Settings.tsx:60
+#: src/components/Settings.tsx:61
msgid "Appearance"
msgstr "外观"
@@ -170,11 +170,11 @@ msgstr "背景颜色"
msgid "Basic Flowchart"
msgstr "基本流程图"
-#: src/components/Settings.tsx:158
+#: src/components/Settings.tsx:175
msgid "Become a Github Sponsor"
msgstr "成为Github赞助商"
-#: src/components/Settings.tsx:146
+#: src/components/Settings.tsx:163
msgid "Become a Pro User"
msgstr "成为专业用户"
@@ -191,8 +191,8 @@ msgstr "年度账单为$48"
msgid "Billed monthly at $6"
msgstr "每月收费$6"
-#: src/components/Header.tsx:144
-#: src/components/Header.tsx:397
+#: src/components/Header.tsx:146
+#: src/components/Header.tsx:399
#: src/pages/Blog.tsx:30
msgid "Blog"
msgstr "博客"
@@ -260,14 +260,14 @@ msgstr "某些属性可用于自定义元素的外观或功能。"
msgid "Change Email Address"
msgstr "更改电子邮件地址"
-#: src/components/Header.tsx:155
-#: src/components/Header.tsx:403
+#: src/components/Header.tsx:157
+#: src/components/Header.tsx:405
#: src/pages/Changelog.tsx:26
msgid "Changelog"
msgstr "变更日志"
-#: src/components/Header.tsx:112
-#: src/components/Header.tsx:375
+#: src/components/Header.tsx:114
+#: src/components/Header.tsx:377
msgid "Charts"
msgstr "图表"
@@ -346,7 +346,7 @@ msgstr "列"
msgid "Comment"
msgstr "评论"
-#: src/pages/Pricing2.tsx:105
+#: src/pages/Pricing2.tsx:107
msgid "Community templates"
msgstr "社区模板"
@@ -403,7 +403,7 @@ msgstr "转换为流程图"
msgid "Convert to hosted chart?"
msgstr "是否转换为托管图表?"
-#: src/components/Settings.tsx:127
+#: src/components/Settings.tsx:128
msgid "Cookie Policy"
msgstr "Cookie政策"
@@ -500,7 +500,7 @@ msgstr "自定义CSS"
msgid "Custom Sharing Options"
msgstr "自定义分享选项"
-#: src/pages/Pricing2.tsx:113
+#: src/pages/Pricing2.tsx:115
msgid "Custom sharing & public links"
msgstr "自定义共享和公共链接"
@@ -516,8 +516,8 @@ msgstr "每日沙盒编辑器"
msgid "Dark"
msgstr "深色"
-#: src/components/Settings.tsx:76
-#: src/components/Settings.tsx:79
+#: src/components/Settings.tsx:77
+#: src/components/Settings.tsx:80
msgid "Dark Mode"
msgstr "深色模式"
@@ -542,11 +542,11 @@ msgstr "删除"
msgid "Delete {0}"
msgstr "删除 {0}"
-#: src/pages/Pricing2.tsx:77
+#: src/pages/Pricing2.tsx:79
msgid "Describe it and it appears"
msgstr "描述它,它就会出现"
-#: src/pages/Pricing2.tsx:169
+#: src/pages/Pricing2.tsx:178
msgid "Describe your idea. Get a diagram worth presenting."
msgstr "描述您的想法。得到一个值得展示的图表。"
@@ -696,8 +696,8 @@ msgstr "利用AI进行编辑"
msgid "Editable"
msgstr "可编辑"
-#: src/components/Header.tsx:92
-#: src/components/Header.tsx:363
+#: src/components/Header.tsx:94
+#: src/components/Header.tsx:365
#: src/components/MobileTabToggle.tsx:12
msgid "Editor"
msgstr "编辑器"
@@ -742,7 +742,7 @@ msgstr "在下面輸入您的電子郵件地址,我們將發送給您一個重
msgid "Equal To"
msgstr "等于"
-#: src/pages/Pricing2.tsx:85
+#: src/pages/Pricing2.tsx:87
msgid "Every diagram exports as crisp PNG, SVG, or shareable link — ready for the meeting, the doc, or the deck."
msgstr "每个图表都可以导出为清晰的PNG、SVG或可共享的链接 - 准备好参加会议、文档或演示文稿。"
@@ -797,8 +797,8 @@ msgid "Feature Breakdown"
msgstr "功能分解"
#: src/components/Feedback.tsx:53
-#: src/components/Header.tsx:120
-#: src/components/Header.tsx:389
+#: src/components/Header.tsx:122
+#: src/components/Header.tsx:391
msgid "Feedback"
msgstr "反馈"
@@ -823,11 +823,15 @@ msgstr "固定节点高度"
msgid "Flowchart Fun Pro gives you unlimited flowcharts, unlimited collaborators, and unlimited storage for just $6/month."
msgstr "Flowchart Fun Pro为您提供无限的流程图、无限的协作者和无限的存储空间,仅需每月$6即可享用。"
-#: src/components/Settings.tsx:136
+#: src/pages/Pricing2.tsx:418
+msgid "Flowchart Fun is an open source project made by <0>Tone Row0>"
+msgstr "Flowchart Fun是由<0>Tone Row0>制作的开源项目"
+
+#: src/components/Settings.tsx:153
msgid "Flowchart Fun is built and maintained by one developer. Your support keeps it going."
msgstr "Flowchart Fun由一位开发者构建和维护。您的支持使其持续运行。"
-#: src/components/Settings.tsx:115
+#: src/components/Settings.tsx:116
msgid "Follow Us on Twitter"
msgstr "在Twitter上关注我们"
@@ -909,6 +913,10 @@ msgstr "绿色的?"
msgid "Grid"
msgstr "网格"
+#: src/lib/toneRowProjects.ts:14
+msgid "Group ranking and ranked-choice voting, free"
+msgstr "群组排名和排名选择投票,免费"
+
#: src/pages/Account.tsx:142
msgid "Have complex questions or issues? We're here to help."
msgstr "有复杂的问题或问题吗?我们在这里帮助你。"
@@ -980,7 +988,7 @@ msgstr "從任何CSV檔案匯入資料並將其映射到新的流程圖。這是
msgid "Import from CSV"
msgstr "從CSV導入"
-#: src/pages/Pricing2.tsx:112
+#: src/pages/Pricing2.tsx:114
msgid "Import from Visio, Lucidchart, CSV"
msgstr "从Visio、Lucidchart、CSV导入"
@@ -988,7 +996,7 @@ msgstr "从Visio、Lucidchart、CSV导入"
msgid "Import from Visio, Lucidchart, and CSV"
msgstr "从Visio,Lucidchart和CSV导入"
-#: src/pages/Pricing2.tsx:89
+#: src/pages/Pricing2.tsx:91
msgid "Import from anywhere"
msgstr "从任何地方导入"
@@ -1012,7 +1020,7 @@ msgstr "使用<0>title0>属性添加标题。要使用 Visio 颜色,请添
msgid "Indent to connect nodes"
msgstr "缩进以连接节点"
-#: src/components/Header.tsx:133
+#: src/components/Header.tsx:135
msgid "Info"
msgstr "信息"
@@ -1052,7 +1060,7 @@ msgstr "继续练习"
msgid "Keep your data private on your computer"
msgstr "在您的电脑上保护您的数据隐私"
-#: src/components/Settings.tsx:40
+#: src/components/Settings.tsx:41
msgid "Language"
msgstr "语言"
@@ -1101,8 +1109,8 @@ msgstr "让我们知道您为什么要取消。我们一直在努力改进。"
msgid "Light"
msgstr "浅色"
-#: src/components/Settings.tsx:67
-#: src/components/Settings.tsx:70
+#: src/components/Settings.tsx:68
+#: src/components/Settings.tsx:71
msgid "Light Mode"
msgstr "浅色模式"
@@ -1160,8 +1168,8 @@ msgstr "本地保存,实现离线访问"
msgid "Lock Zoom to Graph"
msgstr "锁定缩放到图表"
-#: src/components/Header.tsx:206
-#: src/components/Header.tsx:447
+#: src/components/Header.tsx:208
+#: src/components/Header.tsx:449
msgid "Log In"
msgstr "登录"
@@ -1177,11 +1185,15 @@ msgstr "登录以保存"
msgid "Log in to upgrade your account"
msgstr "登录升级您的账户"
-#: src/components/Settings.tsx:152
+#: src/components/MoreFromToneRow.tsx:28
+msgid "Made by <0>Tone Row0>"
+msgstr "由<0>Tone Row0>制作"
+
+#: src/components/Settings.tsx:169
msgid "Make a One-Time Donation"
msgstr "进行一次性捐赠"
-#: src/pages/Pricing2.tsx:348
+#: src/pages/Pricing2.tsx:357
msgid "Make it yours"
msgstr "让它成为你的"
@@ -1205,6 +1217,18 @@ msgstr "节点内文本的最大宽度"
msgid "Monthly"
msgstr "每月"
+#: src/components/Settings.tsx:134
+msgid "More from Tone Row"
+msgstr "来自Tone Row的更多内容"
+
+#: src/pages/Pricing2.tsx:430
+msgid "More from Tone Row:"
+msgstr "来自Tone Row的更多内容:"
+
+#: src/components/MoreFromToneRow.tsx:35
+msgid "More tools:"
+msgstr "更多工具:"
+
#: src/components/charts/ChartListItem.tsx:202
#: src/components/charts/ChartModals.tsx:443
msgid "Move"
@@ -1235,8 +1259,8 @@ msgstr "命名图表"
msgid "Name your chart"
msgstr "为您的流程图命名"
-#: src/components/Header.tsx:102
-#: src/components/Header.tsx:369
+#: src/components/Header.tsx:104
+#: src/components/Header.tsx:371
#: src/pages/Charts.tsx:100
msgid "New"
msgstr "新"
@@ -1363,7 +1387,7 @@ msgstr "或者也许是蓝色!"
msgid "Organization Chart"
msgstr "组织结构图"
-#: src/pages/Pricing2.tsx:103
+#: src/pages/Pricing2.tsx:105
msgid "PNG & JPG export"
msgstr "PNG和JPG导出"
@@ -1412,21 +1436,25 @@ msgstr "剧本"
msgid "Pointer and container on same line"
msgstr "同一行上的指针和容器"
+#: src/pages/Pricing2.tsx:154
+msgid "Pricing"
+msgstr "价格"
+
#: src/components/FeatureBreakdown.tsx:103
msgid "Priority One-on-One Support"
msgstr "优先一对一支持"
-#: src/pages/Pricing2.tsx:114
+#: src/pages/Pricing2.tsx:116
msgid "Priority support"
msgstr "优先支持"
-#: src/components/Header.tsx:175
-#: src/components/Header.tsx:453
-#: src/components/Settings.tsx:121
+#: src/components/Header.tsx:177
+#: src/components/Header.tsx:455
+#: src/components/Settings.tsx:122
msgid "Privacy Policy"
msgstr "隱私政策"
-#: src/pages/Pricing2.tsx:395
+#: src/pages/Pricing2.tsx:404
msgid "Pro starts at $4/mo billed yearly. Cancel anytime."
msgstr "专业版每月4美元,年付。随时取消。"
@@ -1451,7 +1479,7 @@ msgstr "提示"
msgid "Public"
msgstr "公开"
-#: src/pages/Pricing2.tsx:91
+#: src/pages/Pricing2.tsx:93
msgid "Pull in data from Visio, Lucidchart, CSV, or start from a template. No recreating what already exists."
msgstr "从Visio,Lucidchart,CSV中导入数据,或从模板开始。无需重新创建已存在的内容。"
@@ -1575,8 +1603,8 @@ msgstr "从右到左"
msgid "Right-click nodes for options"
msgstr "右键点击节点以获得选项"
-#: src/components/Header.tsx:165
-#: src/components/Header.tsx:409
+#: src/components/Header.tsx:167
+#: src/components/Header.tsx:411
#: src/pages/Roadmap.tsx:31
msgid "Roadmap"
msgstr "路线图"
@@ -1590,7 +1618,7 @@ msgstr "旋转标签"
msgid "SVG Export is a Pro Feature"
msgstr "SVG导出是专业功能"
-#: src/pages/Pricing2.tsx:110
+#: src/pages/Pricing2.tsx:112
msgid "SVG, PDF & all export formats"
msgstr "支持SVG,PDF和所有导出格式"
@@ -1603,7 +1631,7 @@ msgstr "满意保证或第一次付款退款"
msgid "Save"
msgstr "救球"
-#: src/pages/Pricing2.tsx:97
+#: src/pages/Pricing2.tsx:99
msgid "Save locally, work offline, and control exactly who sees what. No data leaves your machine unless you say so."
msgstr "本地保存,离线工作,并且可以精确控制谁可以看到什么。除非您允许,否则不会将数据传输到其他地方。"
@@ -1635,7 +1663,7 @@ msgstr "安全付款"
msgid "See more reviews on Product Hunt"
msgstr "在Product Hunt上查看更多评论"
-#: src/pages/Pricing2.tsx:318
+#: src/pages/Pricing2.tsx:327
msgid "See what's possible"
msgstr "查看可行性"
@@ -1651,9 +1679,9 @@ msgstr "发送我们消息"
msgid "Set a consistent height for all nodes"
msgstr "设置所有节点的统一高度"
-#: src/components/Header.tsx:183
-#: src/components/Header.tsx:414
-#: src/components/Settings.tsx:34
+#: src/components/Header.tsx:185
+#: src/components/Header.tsx:416
+#: src/components/Settings.tsx:35
msgid "Settings"
msgstr "设置"
@@ -1738,7 +1766,7 @@ msgstr "重新開始"
msgid "Start faster with use-case specific templates"
msgstr "使用特定用例模板加快启动"
-#: src/pages/Pricing2.tsx:339
+#: src/pages/Pricing2.tsx:348
msgid "Start for free"
msgstr "免费开始"
@@ -1789,7 +1817,7 @@ msgstr "訂閱成功!"
msgid "Subscription will end"
msgstr "订阅即将到期"
-#: src/components/Settings.tsx:133
+#: src/components/Settings.tsx:150
msgid "Support"
msgstr "支持"
@@ -1812,7 +1840,7 @@ msgstr "目標分隔符"
msgid "Target Distance From Node"
msgstr "目標距離節點"
-#: src/pages/Pricing2.tsx:79
+#: src/pages/Pricing2.tsx:81
msgid "Tell the AI what you need in plain English. Your diagram builds itself in seconds."
msgstr "用简单的英语告诉AI你需要什么。你的图表将在几秒钟内建立。"
@@ -1856,7 +1884,7 @@ msgstr "在一行中的文本将创建一个节点,文本作为标签"
msgid "Thank you for your feedback!"
msgstr "感谢您的反馈!"
-#: src/pages/Pricing2.tsx:245
+#: src/pages/Pricing2.tsx:254
msgid "The beauty and magic reside in the minimalism."
msgstr "美和魔力都在于简约。"
@@ -1884,7 +1912,7 @@ msgstr "用于分隔多个源节点的分隔符"
msgid "The delimiter used to separate multiple target nodes"
msgstr "用于分隔多个目标节点的分隔符"
-#: src/pages/Pricing2.tsx:172
+#: src/pages/Pricing2.tsx:181
msgid "The fastest way to turn what's in your head into something everyone else can understand."
msgstr "将你脑海中的想法快速转化成其他人都能理解的东西。"
@@ -1911,7 +1939,7 @@ msgstr "主题定制编辑器"
msgid "Theme Editor"
msgstr "主题编辑器"
-#: src/pages/Pricing2.tsx:104
+#: src/pages/Pricing2.tsx:106
msgid "Theme editor"
msgstr "主题编辑器"
@@ -2000,10 +2028,14 @@ msgstr "尝试调整您的搜索或筛选条件以找到您想要的内容。"
msgid "Try again"
msgstr "重试"
-#: src/pages/Pricing2.tsx:199
+#: src/pages/Pricing2.tsx:208
msgid "Try it free"
msgstr "免费试用"
+#: src/lib/toneRowProjects.ts:20
+msgid "Turn documents into diagrams with AI"
+msgstr "使用人工智能将文档转换为图表"
+
#: src/lib/parserErrors.tsx:60
msgid "Two edges have the same ID"
msgstr "两个边有相同的ID"
@@ -2012,7 +2044,7 @@ msgstr "两个边有相同的ID"
msgid "Two nodes have the same ID"
msgstr "两个节点有相同的ID"
-#: src/pages/Pricing2.tsx:286
+#: src/pages/Pricing2.tsx:295
msgid "Type it. See it."
msgstr "输入,即可查看"
@@ -2057,7 +2089,7 @@ msgstr "无限永久流程图"
msgid "Unlimited cloud-saved flowcharts"
msgstr "无限云端保存的流程图"
-#: src/pages/Pricing2.tsx:109
+#: src/pages/Pricing2.tsx:111
msgid "Unlimited saved diagrams"
msgstr "无限保存的图表"
@@ -2089,13 +2121,17 @@ msgstr "立即升级 - 保存我的工作"
msgid "Upgrade to Flowchart Fun Pro and unlock:"
msgstr "升级到Flowchart Fun Pro并解锁:"
+#: src/pages/Pricing2.tsx:157
+msgid "Upgrade to Flowchart Fun Pro for unlimited hosted charts, watermark-free high-resolution exports, AI editing, and more. $4/month billed yearly."
+msgstr "升级至Flowchart Fun Pro,享受无限托管图表、无水印高清导出、人工智能编辑等功能。每月$4,年付。"
+
#: src/components/DownloadDropdown.tsx:85
msgid "Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams."
msgstr "升级到Flowchart Fun Pro,解锁SVG导出功能,并享受更多高级功能来创建您的图表。"
#: src/components/FeatureBreakdown.tsx:305
-#: src/components/Header.tsx:422
-#: src/pages/Pricing2.tsx:373
+#: src/components/Header.tsx:424
+#: src/pages/Pricing2.tsx:382
msgid "Upgrade to Pro"
msgstr "升級到專業版"
@@ -2152,7 +2188,7 @@ msgstr "使用此文件进行顺序、流程和工作流程。"
msgid "Use this mode to modify and enhance your current chart."
msgstr "使用此模式来修改和增强您当前的图表。"
-#: src/pages/Pricing2.tsx:209
+#: src/pages/Pricing2.tsx:218
msgid "Used at"
msgstr "使用于"
@@ -2164,7 +2200,7 @@ msgstr "用户"
msgid "Vector Export (SVG)"
msgstr "矢量导出(SVG)"
-#: src/components/Settings.tsx:109
+#: src/components/Settings.tsx:110
msgid "View on Github"
msgstr "在 Github 上查看"
@@ -2302,7 +2338,7 @@ msgstr "你的沙盒是一个可以自由尝试我们的流程图工具的空间
msgid "Your charts are read-only because your account is no longer active. Visit your <0>account0> page to learn more."
msgstr "您的图表是只读的,因为您的帐户已不再活跃。请访问您的<0>帐户0>页面了解更多信息。"
-#: src/pages/Pricing2.tsx:392
+#: src/pages/Pricing2.tsx:401
msgid "Your next diagram should be your best one."
msgstr "您的下一张图表应该是最好的一张。"
@@ -2310,7 +2346,7 @@ msgstr "您的下一张图表应该是最好的一张。"
msgid "Your subscription is <0>{statusDisplay}0>."
msgstr "您的訂閱狀態為<0>{statusDisplay}0>。"
-#: src/pages/Pricing2.tsx:95
+#: src/pages/Pricing2.tsx:97
msgid "Your work stays yours"
msgstr "您的工作始终属于您。"
@@ -2333,10 +2369,10 @@ msgid "or"
msgstr "或"
#: src/components/Checkout.tsx:171
-#: src/pages/Pricing2.tsx:271
-#: src/pages/Pricing2.tsx:274
-#: src/pages/Pricing2.tsx:331
-#: src/pages/Pricing2.tsx:361
+#: src/pages/Pricing2.tsx:280
+#: src/pages/Pricing2.tsx:283
+#: src/pages/Pricing2.tsx:340
+#: src/pages/Pricing2.tsx:370
msgid "{0}"
msgstr "{0}"
diff --git a/app/src/pages/Pricing2.tsx b/app/src/pages/Pricing2.tsx
index 791b93608..39b7af8a6 100644
--- a/app/src/pages/Pricing2.tsx
+++ b/app/src/pages/Pricing2.tsx
@@ -1,10 +1,12 @@
import classNames from "classnames";
import { Trans, t } from "@lingui/macro";
import { ReactNode } from "react";
+import { Helmet } from "react-helmet";
import { Link } from "react-router-dom";
import { Checkout } from "../components/Checkout";
import FAQ from "../components/FAQ";
import { useFadeIn } from "../lib/useFadeIn";
+import { TONE_ROW_URL, toneRowProjects } from "../lib/toneRowProjects";
import {
Sparkle,
Export,
@@ -148,6 +150,13 @@ function CodeExample() {
export default function Pricing2() {
return (
+
+ {t`Pricing`} - Flowchart Fun
+
+
{/* Hero */}
+
+ {/* Footer */}
+
);
}
diff --git a/app/src/pages/Sandbox.tsx b/app/src/pages/Sandbox.tsx
index e42068905..1bde10a97 100644
--- a/app/src/pages/Sandbox.tsx
+++ b/app/src/pages/Sandbox.tsx
@@ -28,6 +28,7 @@ import { FlowchartLayout } from "../components/FlowchartLayout";
import { useEditorStore, isInternalWrite } from "../lib/useEditorStore";
import { getDefaultText } from "../lib/getDefaultText";
import { AiToolbar } from "../components/AiToolbar";
+import { MoreFromToneRow } from "../components/MoreFromToneRow";
import { markUserEditedSinceAi, usePromptStore } from "../lib/usePromptStore";
const isE2E =
@@ -144,6 +145,7 @@ const Sandbox = memo(function Edit() {