diff --git a/.mise.toml b/.mise.toml new file mode 100644 index 0000000000..716b1b5b10 --- /dev/null +++ b/.mise.toml @@ -0,0 +1,2 @@ +[tools] +node = "22.18.0" diff --git a/apps/admin/package.json b/apps/admin/package.json index 8249dfef95..892bdf437c 100644 --- a/apps/admin/package.json +++ b/apps/admin/package.json @@ -49,7 +49,6 @@ "@types/node": "18.16.1", "@types/react": "catalog:", "@types/react-dom": "catalog:", - "@types/uuid": "^9.0.8", "typescript": "catalog:" } } diff --git a/apps/live/package.json b/apps/live/package.json index 38be35e49c..028ca523db 100644 --- a/apps/live/package.json +++ b/apps/live/package.json @@ -17,8 +17,7 @@ "fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"", "clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist" }, - "keywords": [], - "author": "", + "author": "Plane Software Inc.", "dependencies": { "@dotenvx/dotenvx": "^1.49.0", "@hocuspocus/extension-database": "^3.0.0", diff --git a/apps/live/tsdown.config.ts b/apps/live/tsdown.config.ts index 4c957bc495..d8c7882635 100644 --- a/apps/live/tsdown.config.ts +++ b/apps/live/tsdown.config.ts @@ -3,5 +3,8 @@ import { defineConfig } from "tsdown"; export default defineConfig({ entry: ["src/start.ts"], outDir: "dist", - format: ["esm", "cjs"], + format: ["esm"], + dts: false, + clean: true, + sourcemap: false, }); diff --git a/apps/space/package.json b/apps/space/package.json index 9f98c05f49..0329090f63 100644 --- a/apps/space/package.json +++ b/apps/space/package.json @@ -61,7 +61,6 @@ "@types/nprogress": "^0.2.0", "@types/react": "catalog:", "@types/react-dom": "catalog:", - "@types/uuid": "^9.0.1", "typescript": "catalog:" } } diff --git a/apps/web/package.json b/apps/web/package.json index a88e47bbd7..7b72661cef 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -15,9 +15,9 @@ "fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"" }, "dependencies": { - "@atlaskit/pragmatic-drag-and-drop": "^1.1.3", - "@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^1.3.0", - "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3", + "@atlaskit/pragmatic-drag-and-drop": "catalog:", + "@atlaskit/pragmatic-drag-and-drop-auto-scroll": "catalog:", + "@atlaskit/pragmatic-drag-and-drop-hitbox": "catalog:", "@bprogress/next": "^3.2.12", "@headlessui/react": "^1.7.3", "@intercom/messenger-js-sdk": "^0.0.12", @@ -77,7 +77,6 @@ "@types/react": "catalog:", "@types/react-color": "^3.0.6", "@types/react-dom": "catalog:", - "@types/uuid": "^8.3.4", "prettier": "^3.2.5", "typescript": "catalog:" } diff --git a/package.json b/package.json index a531a90494..602130390d 100644 --- a/package.json +++ b/package.json @@ -34,8 +34,16 @@ "@types/express": "4.17.23", "typescript": "catalog:", "sharp": "catalog:", - "vite": "catalog:" - } + "vite": "7.0.7" + }, + "onlyBuiltDependencies": [ + "@swc/core", + "core-js", + "esbuild", + "sharp", + "turbo", + "unrs-resolver" + ] }, "packageManager": "pnpm@10.12.1", "engines": { diff --git a/packages/constants/package.json b/packages/constants/package.json index eaf50475ee..e675d194a6 100644 --- a/packages/constants/package.json +++ b/packages/constants/package.json @@ -3,19 +3,6 @@ "version": "1.0.0", "private": true, "license": "AGPL-3.0", - "files": [ - "dist/**/*" - ], - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", - "exports": { - ".": { - "types": "./dist/index.d.ts", - "require": "./dist/index.js", - "import": "./dist/index.js" - } - }, "scripts": { "dev": "tsdown --watch", "build": "tsdown", @@ -36,5 +23,15 @@ "@types/react": "catalog:", "tsdown": "catalog:", "typescript": "catalog:" + }, + "main": "./dist/index.js", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./package.json": "./package.json" } } diff --git a/packages/constants/tsdown.config.ts b/packages/constants/tsdown.config.ts index 2d3ec61b6d..9ca1c1af8e 100644 --- a/packages/constants/tsdown.config.ts +++ b/packages/constants/tsdown.config.ts @@ -4,4 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, + dts: true, + clean: true, + sourcemap: false, }); diff --git a/packages/decorators/package.json b/packages/decorators/package.json index 04fe34fc75..65559f9d3b 100644 --- a/packages/decorators/package.json +++ b/packages/decorators/package.json @@ -4,12 +4,13 @@ "description": "Controller and route decorators for Express.js applications", "license": "AGPL-3.0", "private": true, - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", - "files": [ - "dist/**" - ], + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./package.json": "./package.json" + }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", @@ -29,5 +30,8 @@ "reflect-metadata": "^0.2.2", "tsdown": "catalog:", "typescript": "catalog:" - } + }, + "main": "./dist/index.js", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts" } diff --git a/packages/decorators/tsdown.config.ts b/packages/decorators/tsdown.config.ts index 2d3ec61b6d..9ca1c1af8e 100644 --- a/packages/decorators/tsdown.config.ts +++ b/packages/decorators/tsdown.config.ts @@ -4,4 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, + dts: true, + clean: true, + sourcemap: false, }); diff --git a/packages/editor/.eslintrc.js b/packages/editor/.eslintrc.cjs similarity index 100% rename from packages/editor/.eslintrc.js rename to packages/editor/.eslintrc.cjs diff --git a/packages/editor/package.json b/packages/editor/package.json index e7567711d1..2973596a46 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -4,22 +4,20 @@ "description": "Core Editor that powers Plane", "license": "AGPL-3.0", "private": true, - "files": [ - "dist" - ], - "main": "./dist/index.mjs", - "module": "./dist/index.mjs", - "types": "./dist/index.d.mts", + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.cts", "exports": { ".": { - "types": "./dist/index.d.mts", - "import": "./dist/index.mjs" + "import": "./dist/index.js", + "require": "./dist/index.cjs" }, "./lib": { - "require": "./dist/lib.js", - "types": "./dist/lib.d.mts", - "import": "./dist/lib.mjs" + "import": "./dist/lib.js", + "require": "./dist/lib.cjs" }, + "./package.json": "./package.json", "./styles": "./dist/styles/index.css" }, "scripts": { @@ -86,7 +84,6 @@ "@types/node": "18.15.3", "@types/react": "catalog:", "@types/react-dom": "catalog:", - "@types/uuid": "^8.3.4", "postcss": "^8.4.38", "tsdown": "catalog:", "typescript": "catalog:" diff --git a/packages/editor/src/core/components/menus/floating-menu/use-floating-menu.ts b/packages/editor/src/core/components/menus/floating-menu/use-floating-menu.ts index 6c49f3b8c7..dbcf3dfe16 100644 --- a/packages/editor/src/core/components/menus/floating-menu/use-floating-menu.ts +++ b/packages/editor/src/core/components/menus/floating-menu/use-floating-menu.ts @@ -7,6 +7,8 @@ import { autoUpdate, useClick, useRole, + type UseInteractionsReturn, + type UseFloatingReturn, } from "@floating-ui/react"; import { useState } from "react"; @@ -14,7 +16,13 @@ type TArgs = { handleOpenChange?: (open: boolean) => void; }; -export const useFloatingMenu = (args: TArgs) => { +type TReturn = { + options: UseFloatingReturn; + getReferenceProps: UseInteractionsReturn["getReferenceProps"]; + getFloatingProps: UseInteractionsReturn["getFloatingProps"]; +}; + +export const useFloatingMenu = (args: TArgs): TReturn => { const { handleOpenChange } = args; // states const [isDropdownOpen, setIsDropdownOpen] = useState(false); diff --git a/packages/editor/tsconfig.json b/packages/editor/tsconfig.json index 3c0bf07ffa..b5634236f9 100644 --- a/packages/editor/tsconfig.json +++ b/packages/editor/tsconfig.json @@ -1,14 +1,14 @@ { + "extends": "@plane/typescript-config/react-library.json", "compilerOptions": { "jsx": "react-jsx", "lib": ["ES2022", "DOM"], - "module": "ESNext", - "moduleResolution": "bundler", + "module": "ES2022", + "moduleResolution": "Bundler", "noEmit": true, "strict": true, "skipLibCheck": true, "sourceMap": true, - "target": "ESNext", "baseUrl": ".", "paths": { "@/*": ["./src/core/*"], diff --git a/packages/editor/tsdown.config.ts b/packages/editor/tsdown.config.ts index 90b213cd21..153eb4fa42 100644 --- a/packages/editor/tsdown.config.ts +++ b/packages/editor/tsdown.config.ts @@ -4,9 +4,13 @@ export default defineConfig({ entry: ["src/index.ts", "src/lib.ts"], outDir: "dist", format: ["esm", "cjs"], - dts: true, - clean: false, - sourcemap: true, - minify: true, copy: ["src/styles"], + exports: { + customExports: (out) => ({ + ...out, + "./styles": "./dist/styles/index.css", + }), + }, + dts: true, + clean: true, }); diff --git a/packages/hooks/.eslintrc.js b/packages/hooks/.eslintrc.cjs similarity index 100% rename from packages/hooks/.eslintrc.js rename to packages/hooks/.eslintrc.cjs diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 0c3bb7b8f6..f0958b12fc 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -4,12 +4,14 @@ "license": "AGPL-3.0", "description": "React hooks that are shared across multiple apps internally", "private": true, - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", - "files": [ - "dist/**" - ], + "type": "module", + "exports": { + ".": { + "import": "./dist/index.js", + "require": "./dist/index.cjs" + }, + "./package.json": "./package.json" + }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", @@ -30,5 +32,8 @@ "@types/react": "catalog:", "tsdown": "catalog:", "typescript": "catalog:" - } + }, + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.cts" } diff --git a/packages/hooks/tsdown.config.ts b/packages/hooks/tsdown.config.ts index 1a894869b4..7b2ea6fe2f 100644 --- a/packages/hooks/tsdown.config.ts +++ b/packages/hooks/tsdown.config.ts @@ -4,8 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], - external: ["react", "react-dom"], + exports: true, dts: true, - sourcemap: true, clean: true, + sourcemap: true, }); diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 1016765637..33d548b4d9 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -4,9 +4,13 @@ "license": "AGPL-3.0", "description": "I18n shared across multiple apps internally", "private": true, - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./package.json": "./package.json" + }, "scripts": { "dev": "tsdown --watch", "build": "tsdown", @@ -33,5 +37,8 @@ "@types/react": "catalog:", "tsdown": "catalog:", "typescript": "catalog:" - } + }, + "main": "./dist/index.js", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts" } diff --git a/packages/i18n/src/locales/cs/accessibility.json b/packages/i18n/src/locales/cs/accessibility.json deleted file mode 100644 index 676c2d4423..0000000000 --- a/packages/i18n/src/locales/cs/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo pracovního prostoru", - "open_workspace_switcher": "Otevřít přepínač pracovního prostoru", - "open_user_menu": "Otevřít uživatelské menu", - "open_command_palette": "Otevřít paletu příkazů", - "open_extended_sidebar": "Otevřít rozšířený postranní panel", - "close_extended_sidebar": "Zavřít rozšířený postranní panel", - "create_favorites_folder": "Vytvořit složku oblíbených", - "open_folder": "Otevřít složku", - "close_folder": "Zavřít složku", - "open_favorites_menu": "Otevřít menu oblíbených", - "close_favorites_menu": "Zavřít menu oblíbených", - "enter_folder_name": "Zadejte název složky", - "create_new_project": "Vytvořit nový projekt", - "open_projects_menu": "Otevřít menu projektů", - "close_projects_menu": "Zavřít menu projektů", - "toggle_quick_actions_menu": "Přepnout menu rychlých akcí", - "open_project_menu": "Otevřít menu projektu", - "close_project_menu": "Zavřít menu projektu", - "collapse_sidebar": "Sbalit postranní panel", - "expand_sidebar": "Rozbalit postranní panel", - "edition_badge": "Otevřít modal placených plánů" - }, - "auth_forms": { - "clear_email": "Vymazat e-mail", - "show_password": "Zobrazit heslo", - "hide_password": "Skrýt heslo", - "close_alert": "Zavřít upozornění", - "close_popover": "Zavřít vyskakovací okno" - } - } -} diff --git a/packages/i18n/src/locales/cs/accessibility.ts b/packages/i18n/src/locales/cs/accessibility.ts new file mode 100644 index 0000000000..abc14f201c --- /dev/null +++ b/packages/i18n/src/locales/cs/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo pracovního prostoru", + open_workspace_switcher: "Otevřít přepínač pracovního prostoru", + open_user_menu: "Otevřít uživatelské menu", + open_command_palette: "Otevřít paletu příkazů", + open_extended_sidebar: "Otevřít rozšířený postranní panel", + close_extended_sidebar: "Zavřít rozšířený postranní panel", + create_favorites_folder: "Vytvořit složku oblíbených", + open_folder: "Otevřít složku", + close_folder: "Zavřít složku", + open_favorites_menu: "Otevřít menu oblíbených", + close_favorites_menu: "Zavřít menu oblíbených", + enter_folder_name: "Zadejte název složky", + create_new_project: "Vytvořit nový projekt", + open_projects_menu: "Otevřít menu projektů", + close_projects_menu: "Zavřít menu projektů", + toggle_quick_actions_menu: "Přepnout menu rychlých akcí", + open_project_menu: "Otevřít menu projektu", + close_project_menu: "Zavřít menu projektu", + collapse_sidebar: "Sbalit postranní panel", + expand_sidebar: "Rozbalit postranní panel", + edition_badge: "Otevřít modal placených plánů", + }, + auth_forms: { + clear_email: "Vymazat e-mail", + show_password: "Zobrazit heslo", + hide_password: "Skrýt heslo", + close_alert: "Zavřít upozornění", + close_popover: "Zavřít vyskakovací okno", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/cs/editor.json b/packages/i18n/src/locales/cs/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/cs/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/cs/editor.ts b/packages/i18n/src/locales/cs/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/cs/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/cs/translations.json b/packages/i18n/src/locales/cs/translations.json deleted file mode 100644 index aa25abc5df..0000000000 --- a/packages/i18n/src/locales/cs/translations.json +++ /dev/null @@ -1,2533 +0,0 @@ -{ - "sidebar": { - "projects": "Projekty", - "pages": "Stránky", - "new_work_item": "Nová pracovní položka", - "home": "Domov", - "your_work": "Vaše práce", - "inbox": "Doručená pošta", - "workspace": "Pracovní prostor", - "views": "Pohledy", - "analytics": "Analytika", - "work_items": "Pracovní položky", - "cycles": "Cykly", - "modules": "Moduly", - "intake": "Příjem", - "drafts": "Koncepty", - "favorites": "Oblíbené", - "pro": "Pro", - "upgrade": "Upgrade" - }, - "auth": { - "common": { - "email": { - "label": "E-mail", - "placeholder": "jmeno@spolecnost.cz", - "errors": { - "required": "E-mail je povinný", - "invalid": "E-mail je neplatný" - } - }, - "password": { - "label": "Heslo", - "set_password": "Nastavit heslo", - "placeholder": "Zadejte heslo", - "confirm_password": { - "label": "Potvrďte heslo", - "placeholder": "Potvrďte heslo" - }, - "current_password": { - "label": "Aktuální heslo" - }, - "new_password": { - "label": "Nové heslo", - "placeholder": "Zadejte nové heslo" - }, - "change_password": { - "label": { - "default": "Změnit heslo", - "submitting": "Mění se heslo" - } - }, - "errors": { - "match": "Hesla se neshodují", - "empty": "Zadejte prosím své heslo", - "length": "Délka hesla by měla být více než 8 znaků", - "strength": { - "weak": "Heslo je slabé", - "strong": "Heslo je silné" - } - }, - "submit": "Nastavit heslo", - "toast": { - "change_password": { - "success": { - "title": "Úspěch!", - "message": "Heslo bylo úspěšně změněno." - }, - "error": { - "title": "Chyba!", - "message": "Něco se pokazilo. Zkuste to prosím znovu." - } - } - } - }, - "unique_code": { - "label": "Jedinečný kód", - "placeholder": "gets-sets-flys", - "paste_code": "Vložte kód zaslaný na váš e-mail", - "requesting_new_code": "Žádám o nový kód", - "sending_code": "Odesílám kód" - }, - "already_have_an_account": "Už máte účet?", - "login": "Přihlásit se", - "create_account": "Vytvořit účet", - "new_to_plane": "Nový v Plane?", - "back_to_sign_in": "Zpět k přihlášení", - "resend_in": "Znovu odeslat za {seconds} sekund", - "sign_in_with_unique_code": "Přihlásit se pomocí jedinečného kódu", - "forgot_password": "Zapomněli jste heslo?" - }, - "sign_up": { - "header": { - "label": "Vytvořte účet a začněte spravovat práci se svým týmem.", - "step": { - "email": { - "header": "Registrace", - "sub_header": "" - }, - "password": { - "header": "Registrace", - "sub_header": "Zaregistrujte se pomocí kombinace e-mailu a hesla." - }, - "unique_code": { - "header": "Registrace", - "sub_header": "Zaregistrujte se pomocí jedinečného kódu zaslaného na výše uvedenou e-mailovou adresu." - } - } - }, - "errors": { - "password": { - "strength": "Zkuste nastavit silné heslo, abyste mohli pokračovat" - } - } - }, - "sign_in": { - "header": { - "label": "Přihlaste se a začněte spravovat práci se svým týmem.", - "step": { - "email": { - "header": "Přihlásit se nebo zaregistrovat", - "sub_header": "" - }, - "password": { - "header": "Přihlásit se nebo zaregistrovat", - "sub_header": "Použijte svou kombinaci e-mailu a hesla pro přihlášení." - }, - "unique_code": { - "header": "Přihlásit se nebo zaregistrovat", - "sub_header": "Přihlaste se pomocí jedinečného kódu zaslaného na výše uvedenou e-mailovou adresu." - } - } - } - }, - "forgot_password": { - "title": "Obnovte své heslo", - "description": "Zadejte ověřenou e-mailovou adresu vašeho uživatelského účtu a my vám zašleme odkaz na obnovení hesla.", - "email_sent": "Odeslali jsme odkaz na obnovení na vaši e-mailovou adresu", - "send_reset_link": "Odeslat odkaz na obnovení", - "errors": { - "smtp_not_enabled": "Vidíme, že váš správce neaktivoval SMTP, nebudeme schopni odeslat odkaz na obnovení hesla" - }, - "toast": { - "success": { - "title": "E-mail odeslán", - "message": "Zkontrolujte svou doručenou poštu pro odkaz na obnovení hesla. Pokud se neobjeví během několika minut, zkontrolujte svou složku se spamem." - }, - "error": { - "title": "Chyba!", - "message": "Něco se pokazilo. Zkuste to prosím znovu." - } - } - }, - "reset_password": { - "title": "Nastavit nové heslo", - "description": "Zabezpečte svůj účet silným heslem" - }, - "set_password": { - "title": "Zabezpečte svůj účet", - "description": "Nastavení hesla vám pomůže bezpečně se přihlásit" - }, - "sign_out": { - "toast": { - "error": { - "title": "Chyba!", - "message": "Nepodařilo se odhlásit. Zkuste to prosím znovu." - } - } - } - }, - "submit": "Odeslat", - "cancel": "Zrušit", - "loading": "Načítání", - "error": "Chyba", - "success": "Úspěch", - "warning": "Varování", - "info": "Informace", - "close": "Zavřít", - "yes": "Ano", - "no": "Ne", - "ok": "OK", - "name": "Název", - "description": "Popis", - "search": "Hledat", - "add_member": "Přidat člena", - "adding_members": "Přidávání členů", - "remove_member": "Odebrat člena", - "add_members": "Přidat členy", - "adding_member": "Přidávání členů", - "remove_members": "Odebrat členy", - "add": "Přidat", - "adding": "Přidávání", - "remove": "Odebrat", - "add_new": "Přidat nový", - "remove_selected": "Odebrat vybrané", - "first_name": "Křestní jméno", - "last_name": "Příjmení", - "email": "E-mail", - "display_name": "Zobrazované jméno", - "role": "Role", - "timezone": "Časové pásmo", - "avatar": "Profilový obrázek", - "cover_image": "Úvodní obrázek", - "password": "Heslo", - "change_cover": "Změnit úvodní obrázek", - "language": "Jazyk", - "saving": "Ukládání", - "save_changes": "Uložit změny", - "deactivate_account": "Deaktivovat účet", - "deactivate_account_description": "Při deaktivaci účtu budou všechna data a prostředky v rámci tohoto účtu trvale odstraněny a nelze je obnovit.", - "profile_settings": "Nastavení profilu", - "your_account": "Váš účet", - "security": "Zabezpečení", - "activity": "Aktivita", - "appearance": "Vzhled", - "notifications": "Oznámení", - "workspaces": "Pracovní prostory", - "create_workspace": "Vytvořit pracovní prostor", - "invitations": "Pozvánky", - "summary": "Shrnutí", - "assigned": "Přiřazeno", - "created": "Vytvořeno", - "subscribed": "Odebíráno", - "you_do_not_have_the_permission_to_access_this_page": "Nemáte oprávnění pro přístup k této stránce.", - "something_went_wrong_please_try_again": "Něco se pokazilo. Zkuste to prosím znovu.", - "load_more": "Načíst více", - "select_or_customize_your_interface_color_scheme": "Vyberte nebo přizpůsobte barevné schéma rozhraní.", - "theme": "Téma", - "system_preference": "Systémové předvolby", - "light": "Světlé", - "dark": "Tmavé", - "light_contrast": "Světlý vysoký kontrast", - "dark_contrast": "Tmavý vysoký kontrast", - "custom": "Vlastní téma", - "select_your_theme": "Vyberte téma", - "customize_your_theme": "Přizpůsobte si téma", - "background_color": "Barva pozadí", - "text_color": "Barva textu", - "primary_color": "Hlavní barva (téma)", - "sidebar_background_color": "Barva pozadí postranního panelu", - "sidebar_text_color": "Barva textu postranního panelu", - "set_theme": "Nastavit téma", - "enter_a_valid_hex_code_of_6_characters": "Zadejte platný hexadecimální kód o 6 znacích", - "background_color_is_required": "Barva pozadí je povinná", - "text_color_is_required": "Barva textu je povinná", - "primary_color_is_required": "Hlavní barva je povinná", - "sidebar_background_color_is_required": "Barva pozadí postranního panelu je povinná", - "sidebar_text_color_is_required": "Barva textu postranního panelu je povinná", - "updating_theme": "Aktualizace tématu", - "theme_updated_successfully": "Téma úspěšně aktualizováno", - "failed_to_update_the_theme": "Aktualizace tématu se nezdařila", - "email_notifications": "E-mailová oznámení", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Zůstaňte v obraze u pracovních položek, které odebíráte. Aktivujte toto pro zasílání oznámení.", - "email_notification_setting_updated_successfully": "Nastavení e-mailových oznámení úspěšně aktualizováno", - "failed_to_update_email_notification_setting": "Aktualizace nastavení e-mailových oznámení se nezdařila", - "notify_me_when": "Upozornit mě, když", - "property_changes": "Změny vlastností", - "property_changes_description": "Upozornit mě, když se změní vlastnosti pracovních položek jako přiřazení, priorita, odhady nebo cokoli jiného.", - "state_change": "Změna stavu", - "state_change_description": "Upozornit mě, když se pracovní položka přesune do jiného stavu", - "issue_completed": "Pracovní položka dokončena", - "issue_completed_description": "Upozornit mě pouze při dokončení pracovní položky", - "comments": "Komentáře", - "comments_description": "Upozornit mě, když někdo přidá komentář k pracovní položce", - "mentions": "Zmínky", - "mentions_description": "Upozornit mě pouze, když mě někdo zmíní v komentářích nebo popisu", - "old_password": "Staré heslo", - "general_settings": "Obecná nastavení", - "sign_out": "Odhlásit se", - "signing_out": "Odhlašování", - "active_cycles": "Aktivní cykly", - "active_cycles_description": "Sledujte cykly napříč projekty, monitorujte vysoce prioritní pracovní položky a zaměřte se na cykly vyžadující pozornost.", - "on_demand_snapshots_of_all_your_cycles": "Snapshots všech vašich cyklů na vyžádání", - "upgrade": "Upgradovat", - "10000_feet_view": "Pohled z 10 000 stop na všechny aktivní cykly.", - "10000_feet_view_description": "Přibližte si všechny běžící cykly napříč všemi projekty najednou, místo přepínání mezi cykly v každém projektu.", - "get_snapshot_of_each_active_cycle": "Získejte snapshot každého aktivního cyklu.", - "get_snapshot_of_each_active_cycle_description": "Sledujte klíčové metriky pro všechny aktivní cykly, zjistěte jejich průběh a porovnejte rozsah s termíny.", - "compare_burndowns": "Porovnejte burndowny.", - "compare_burndowns_description": "Sledujte výkonnost týmů prostřednictvím přehledu burndown reportů každého cyklu.", - "quickly_see_make_or_break_issues": "Rychle zjistěte kritické pracovní položky.", - "quickly_see_make_or_break_issues_description": "Prohlédněte si vysoce prioritní pracovní položky pro každý cyklus vzhledem k termínům. Zobrazte všechny na jedno kliknutí.", - "zoom_into_cycles_that_need_attention": "Zaměřte se na cykly vyžadující pozornost.", - "zoom_into_cycles_that_need_attention_description": "Prozkoumejte stav jakéhokoli cyklu, který nesplňuje očekávání, na jedno kliknutí.", - "stay_ahead_of_blockers": "Předvídejte překážky.", - "stay_ahead_of_blockers_description": "Identifikujte problémy mezi projekty a zjistěte závislosti mezi cykly, které nejsou z jiných pohledů zřejmé.", - "analytics": "Analytika", - "workspace_invites": "Pozvánky do pracovního prostoru", - "enter_god_mode": "Vstoupit do režimu boha", - "workspace_logo": "Logo pracovního prostoru", - "new_issue": "Nová pracovní položka", - "your_work": "Vaše práce", - "drafts": "Koncepty", - "projects": "Projekty", - "views": "Pohledy", - "workspace": "Pracovní prostor", - "archives": "Archivy", - "settings": "Nastavení", - "failed_to_move_favorite": "Přesunutí oblíbeného se nezdařilo", - "favorites": "Oblíbené", - "no_favorites_yet": "Zatím žádné oblíbené", - "create_folder": "Vytvořit složku", - "new_folder": "Nová složka", - "favorite_updated_successfully": "Oblíbené úspěšně aktualizováno", - "favorite_created_successfully": "Oblíbené úspěšně vytvořeno", - "folder_already_exists": "Složka již existuje", - "folder_name_cannot_be_empty": "Název složky nemůže být prázdný", - "something_went_wrong": "Něco se pokazilo", - "failed_to_reorder_favorite": "Změna pořadí oblíbeného se nezdařila", - "favorite_removed_successfully": "Oblíbené úspěšně odstraněno", - "failed_to_create_favorite": "Vytvoření oblíbeného se nezdařilo", - "failed_to_rename_favorite": "Přejmenování oblíbeného se nezdařilo", - "project_link_copied_to_clipboard": "Odkaz na projekt zkopírován do schránky", - "link_copied": "Odkaz zkopírován", - "add_project": "Přidat projekt", - "create_project": "Vytvořit projekt", - "failed_to_remove_project_from_favorites": "Nepodařilo se odstranit projekt z oblíbených. Zkuste to prosím znovu.", - "project_created_successfully": "Projekt úspěšně vytvořen", - "project_created_successfully_description": "Projekt byl úspěšně vytvořen. Nyní můžete začít přidávat pracovní položky.", - "project_name_already_taken": "Název projektu už je zabraný.", - "project_identifier_already_taken": "Identifikátor projektu už je zabraný.", - "project_cover_image_alt": "Úvodní obrázek projektu", - "name_is_required": "Název je povinný", - "title_should_be_less_than_255_characters": "Název by měl být kratší než 255 znaků", - "project_name": "Název projektu", - "project_id_must_be_at_least_1_character": "ID projektu musí mít alespoň 1 znak", - "project_id_must_be_at_most_5_characters": "ID projektu může mít maximálně 5 znaků", - "project_id": "ID projektu", - "project_id_tooltip_content": "Pomáhá jednoznačně identifikovat pracovní položky v projektu. Max. 5 znaků.", - "description_placeholder": "Popis", - "only_alphanumeric_non_latin_characters_allowed": "Jsou povoleny pouze alfanumerické a nelatinské znaky.", - "project_id_is_required": "ID projektu je povinné", - "project_id_allowed_char": "Jsou povoleny pouze alfanumerické a nelatinské znaky.", - "project_id_min_char": "ID projektu musí mít alespoň 1 znak", - "project_id_max_char": "ID projektu může mít maximálně 5 znaků", - "project_description_placeholder": "Zadejte popis projektu", - "select_network": "Vybrat síť", - "lead": "Vedoucí", - "date_range": "Rozsah dat", - "private": "Soukromý", - "public": "Veřejný", - "accessible_only_by_invite": "Přístupné pouze na pozvání", - "anyone_in_the_workspace_except_guests_can_join": "Kdokoli v pracovním prostoru kromě hostů se může připojit", - "creating": "Vytváření", - "creating_project": "Vytváření projektu", - "adding_project_to_favorites": "Přidávání projektu do oblíbených", - "project_added_to_favorites": "Projekt přidán do oblíbených", - "couldnt_add_the_project_to_favorites": "Nepodařilo se přidat projekt do oblíbených. Zkuste to prosím znovu.", - "removing_project_from_favorites": "Odebírání projektu z oblíbených", - "project_removed_from_favorites": "Projekt odstraněn z oblíbených", - "couldnt_remove_the_project_from_favorites": "Nepodařilo se odstranit projekt z oblíbených. Zkuste to prosím znovu.", - "add_to_favorites": "Přidat do oblíbených", - "remove_from_favorites": "Odebrat z oblíbených", - "publish_project": "Publikovat projekt", - "publish": "Publikovat", - "copy_link": "Kopírovat odkaz", - "leave_project": "Opustit projekt", - "join_the_project_to_rearrange": "Připojte se k projektu pro změnu uspořádání", - "drag_to_rearrange": "Přetáhněte pro uspořádání", - "congrats": "Gratulujeme!", - "open_project": "Otevřít projekt", - "issues": "Pracovní položky", - "cycles": "Cykly", - "modules": "Moduly", - "pages": "Stránky", - "intake": "Příjem", - "time_tracking": "Sledování času", - "work_management": "Správa práce", - "projects_and_issues": "Projekty a pracovní položky", - "projects_and_issues_description": "Aktivujte nebo deaktivujte tyto funkce v projektu.", - "cycles_description": "Časově vymezte práci podle projektu a podle potřeby upravte období. Jeden cyklus může trvat 2 týdny, další jen 1 týden.", - "modules_description": "Organizujte práci do podprojektů s vyhrazenými vedoucími a přiřazenými osobami.", - "views_description": "Uložte vlastní řazení, filtry a možnosti zobrazení nebo je sdílejte se svým týmem.", - "pages_description": "Vytvářejte a upravujte volně strukturovaný obsah – poznámky, dokumenty, cokoli.", - "intake_description": "Umožněte nečlenům sdílet chyby, zpětnou vazbu a návrhy, aniž by narušili váš pracovní postup.", - "time_tracking_description": "Zaznamenávejte čas strávený na pracovních položkách a projektech.", - "work_management_description": "Spravujte svou práci a projekty snadno.", - "documentation": "Dokumentace", - "message_support": "Kontaktovat podporu", - "contact_sales": "Kontaktovat prodej", - "hyper_mode": "Hyper režim", - "keyboard_shortcuts": "Klávesové zkratky", - "whats_new": "Co je nového?", - "version": "Verze", - "we_are_having_trouble_fetching_the_updates": "Máme potíže s načítáním aktualizací.", - "our_changelogs": "naše změnové protokoly", - "for_the_latest_updates": "pro nejnovější aktualizace.", - "please_visit": "Navštivte", - "docs": "Dokumentace", - "full_changelog": "Úplný změnový protokol", - "support": "Podpora", - "discord": "Discord", - "powered_by_plane_pages": "Poháněno Plane Pages", - "please_select_at_least_one_invitation": "Vyberte alespoň jednu pozvánku.", - "please_select_at_least_one_invitation_description": "Vyberte alespoň jednu pozvánku pro připojení k pracovnímu prostoru.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Vidíme, že vás někdo pozval do pracovního prostoru", - "join_a_workspace": "Připojit se k pracovnímu prostoru", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Vidíme, že vás někdo pozval do pracovního prostoru", - "join_a_workspace_description": "Připojit se k pracovnímu prostoru", - "accept_and_join": "Přijmout a připojit se", - "go_home": "Domů", - "no_pending_invites": "Žádné čekající pozvánky", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Zde uvidíte, pokud vás někdo pozve do pracovního prostoru", - "back_to_home": "Zpět na domovskou stránku", - "workspace_name": "název-pracovního-prostoru", - "deactivate_your_account": "Deaktivovat váš účet", - "deactivate_your_account_description": "Po deaktivaci nebudete moci být přiřazeni k pracovním položkám a nebude vám účtován poplatek za pracovní prostor. Pro opětovnou aktivaci účtu budete potřebovat pozvánku do pracovního prostoru na tento e-mail.", - "deactivating": "Deaktivace", - "confirm": "Potvrdit", - "confirming": "Potvrzování", - "draft_created": "Koncept vytvořen", - "issue_created_successfully": "Pracovní položka úspěšně vytvořena", - "draft_creation_failed": "Vytvoření konceptu se nezdařilo", - "issue_creation_failed": "Vytvoření pracovní položky se nezdařilo", - "draft_issue": "Koncept pracovní položky", - "issue_updated_successfully": "Pracovní položka úspěšně aktualizována", - "issue_could_not_be_updated": "Aktualizace pracovní položky se nezdařila", - "create_a_draft": "Vytvořit koncept", - "save_to_drafts": "Uložit do konceptů", - "save": "Uložit", - "update": "Aktualizovat", - "updating": "Aktualizace", - "create_new_issue": "Vytvořit novou pracovní položku", - "editor_is_not_ready_to_discard_changes": "Editor není připraven zahodit změny", - "failed_to_move_issue_to_project": "Přesunutí pracovní položky do projektu se nezdařilo", - "create_more": "Vytvořit více", - "add_to_project": "Přidat do projektu", - "discard": "Zahodit", - "duplicate_issue_found": "Nalezena duplicitní pracovní položka", - "duplicate_issues_found": "Nalezeny duplicitní pracovní položky", - "no_matching_results": "Žádné odpovídající výsledky", - "title_is_required": "Název je povinný", - "title": "Název", - "state": "Stav", - "priority": "Priorita", - "none": "Žádná", - "urgent": "Naléhavá", - "high": "Vysoká", - "medium": "Střední", - "low": "Nízká", - "members": "Členové", - "assignee": "Přiřazeno", - "assignees": "Přiřazení", - "you": "Vy", - "labels": "Štítky", - "create_new_label": "Vytvořit nový štítek", - "start_date": "Datum začátku", - "end_date": "Datum ukončení", - "due_date": "Termín", - "estimate": "Odhad", - "change_parent_issue": "Změnit nadřazenou pracovní položku", - "remove_parent_issue": "Odebrat nadřazenou pracovní položku", - "add_parent": "Přidat nadřazenou", - "loading_members": "Načítání členů", - "view_link_copied_to_clipboard": "Odkaz na pohled zkopírován do schránky.", - "required": "Povinné", - "optional": "Volitelné", - "Cancel": "Zrušit", - "edit": "Upravit", - "archive": "Archivovat", - "restore": "Obnovit", - "open_in_new_tab": "Otevřít v nové záložce", - "delete": "Smazat", - "deleting": "Mazání", - "make_a_copy": "Vytvořit kopii", - "move_to_project": "Přesunout do projektu", - "good": "Dobrý", - "morning": "ráno", - "afternoon": "odpoledne", - "evening": "večer", - "show_all": "Zobrazit vše", - "show_less": "Zobrazit méně", - "no_data_yet": "Zatím žádná data", - "syncing": "Synchronizace", - "add_work_item": "Přidat pracovní položku", - "advanced_description_placeholder": "Stiskněte '/' pro příkazy", - "create_work_item": "Vytvořit pracovní položku", - "attachments": "Přílohy", - "declining": "Odmítání", - "declined": "Odmítnuto", - "decline": "Odmítnout", - "unassigned": "Nepřiřazeno", - "work_items": "Pracovní položky", - "add_link": "Přidat odkaz", - "points": "Body", - "no_assignee": "Žádné přiřazení", - "no_assignees_yet": "Zatím žádní přiřazení", - "no_labels_yet": "Zatím žádné štítky", - "ideal": "Ideální", - "current": "Aktuální", - "no_matching_members": "Žádní odpovídající členové", - "leaving": "Opouštění", - "removing": "Odebírání", - "leave": "Opustit", - "refresh": "Obnovit", - "refreshing": "Obnovování", - "refresh_status": "Obnovit stav", - "prev": "Předchozí", - "next": "Další", - "re_generating": "Znovu generování", - "re_generate": "Znovu generovat", - "re_generate_key": "Znovu generovat klíč", - "export": "Exportovat", - "member": "{count, plural, one{# člen} few{# členové} other{# členů}}", - "new_password_must_be_different_from_old_password": "Nové heslo musí být odlišné od starého hesla", - "project_view": { - "sort_by": { - "created_at": "Vytvořeno dne", - "updated_at": "Aktualizováno dne", - "name": "Název" - } - }, - "toast": { - "success": "Úspěch!", - "error": "Chyba!" - }, - "links": { - "toasts": { - "created": { - "title": "Odkaz vytvořen", - "message": "Odkaz byl úspěšně vytvořen" - }, - "not_created": { - "title": "Odkaz nebyl vytvořen", - "message": "Odkaz se nepodařilo vytvořit" - }, - "updated": { - "title": "Odkaz aktualizován", - "message": "Odkaz byl úspěšně aktualizován" - }, - "not_updated": { - "title": "Odkaz nebyl aktualizován", - "message": "Odkaz se nepodařilo aktualizovat" - }, - "removed": { - "title": "Odkaz odstraněn", - "message": "Odkaz byl úspěšně odstraněn" - }, - "not_removed": { - "title": "Odkaz nebyl odstraněn", - "message": "Odkaz se nepodařilo odstranit" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Váš průvodce rychlým startem", - "not_right_now": "Teď ne", - "create_project": { - "title": "Vytvořit projekt", - "description": "Většina věcí začíná projektem v Plane.", - "cta": "Začít" - }, - "invite_team": { - "title": "Pozvat tým", - "description": "Spolupracujte s kolegy na tvorbě, dodávkách a správě.", - "cta": "Pozvat je" - }, - "configure_workspace": { - "title": "Nastavte svůj pracovní prostor.", - "description": "Aktivujte nebo deaktivujte funkce nebo jděte dále.", - "cta": "Konfigurovat tento prostor" - }, - "personalize_account": { - "title": "Přizpůsobte si Plane.", - "description": "Vyberte si obrázek, barvy a další.", - "cta": "Personalizovat nyní" - }, - "widgets": { - "title": "Je ticho bez widgetů, zapněte je", - "description": "Vypadá to, že všechny vaše widgety jsou vypnuté. Zapněte je\npro lepší zážitek!", - "primary_button": { - "text": "Spravovat widgety" - } - } - }, - "quick_links": { - "empty": "Uložte si odkazy na důležité věci, které chcete mít po ruce.", - "add": "Přidat rychlý odkaz", - "title": "Rychlý odkaz", - "title_plural": "Rychlé odkazy" - }, - "recents": { - "title": "Nedávné", - "empty": { - "project": "Vaše nedávné projekty se zde zobrazí po návštěvě.", - "page": "Vaše nedávné stránky se zde zobrazí po návštěvě.", - "issue": "Vaše nedávné pracovní položky se zde zobrazí po návštěvě.", - "default": "Zatím nemáte žádné nedávné položky." - }, - "filters": { - "all": "Vše", - "projects": "Projekty", - "pages": "Stránky", - "issues": "Úkoly" - } - }, - "new_at_plane": { - "title": "Novinky v Plane" - }, - "quick_tutorial": { - "title": "Rychlý tutoriál" - }, - "widget": { - "reordered_successfully": "Widget úspěšně přesunut.", - "reordering_failed": "Při přesouvání widgetu došlo k chybě." - }, - "manage_widgets": "Spravovat widgety", - "title": "Domů", - "star_us_on_github": "Ohodnoťte nás na GitHubu" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL je neplatná", - "placeholder": "Zadejte nebo vložte URL" - }, - "title": { - "text": "Zobrazovaný název", - "placeholder": "Jak chcete tento odkaz vidět" - } - } - }, - "common": { - "all": "Vše", - "states": "Stavy", - "state": "Stav", - "state_groups": "Skupiny stavů", - "state_group": "Skupina stavů", - "priorities": "Priority", - "priority": "Priorita", - "team_project": "Týmový projekt", - "project": "Projekt", - "cycle": "Cyklus", - "cycles": "Cykly", - "module": "Modul", - "modules": "Moduly", - "labels": "Štítky", - "label": "Štítek", - "assignees": "Přiřazení", - "assignee": "Přiřazeno", - "created_by": "Vytvořil", - "none": "Žádné", - "link": "Odkaz", - "estimates": "Odhady", - "estimate": "Odhad", - "created_at": "Vytvořeno dne", - "completed_at": "Dokončeno dne", - "layout": "Rozložení", - "filters": "Filtry", - "display": "Zobrazení", - "load_more": "Načíst více", - "activity": "Aktivita", - "analytics": "Analytika", - "dates": "Data", - "success": "Úspěch!", - "something_went_wrong": "Něco se pokazilo", - "error": { - "label": "Chyba!", - "message": "Došlo k chybě. Zkuste to prosím znovu." - }, - "group_by": "Seskupit podle", - "epic": "Epika", - "epics": "Epiky", - "work_item": "Pracovní položka", - "work_items": "Pracovní položky", - "sub_work_item": "Podřízená pracovní položka", - "add": "Přidat", - "warning": "Varování", - "updating": "Aktualizace", - "adding": "Přidávání", - "update": "Aktualizovat", - "creating": "Vytváření", - "create": "Vytvořit", - "cancel": "Zrušit", - "description": "Popis", - "title": "Název", - "attachment": "Příloha", - "general": "Obecné", - "features": "Funkce", - "automation": "Automatizace", - "project_name": "Název projektu", - "project_id": "ID projektu", - "project_timezone": "Časové pásmo projektu", - "created_on": "Vytvořeno dne", - "update_project": "Aktualizovat projekt", - "identifier_already_exists": "Identifikátor již existuje", - "add_more": "Přidat více", - "defaults": "Výchozí", - "add_label": "Přidat štítek", - "customize_time_range": "Přizpůsobit časový rozsah", - "loading": "Načítání", - "attachments": "Přílohy", - "property": "Vlastnost", - "properties": "Vlastnosti", - "parent": "Nadřazený", - "page": "Stránka", - "remove": "Odebrat", - "archiving": "Archivace", - "archive": "Archivovat", - "access": { - "public": "Veřejný", - "private": "Soukromý" - }, - "done": "Hotovo", - "sub_work_items": "Podřízené pracovní položky", - "comment": "Komentář", - "workspace_level": "Úroveň pracovního prostoru", - "order_by": { - "label": "Řadit podle", - "manual": "Ručně", - "last_created": "Naposledy vytvořené", - "last_updated": "Naposledy aktualizované", - "start_date": "Datum začátku", - "due_date": "Termín", - "asc": "Vzestupně", - "desc": "Sestupně", - "updated_on": "Aktualizováno dne" - }, - "sort": { - "asc": "Vzestupně", - "desc": "Sestupně", - "created_on": "Vytvořeno dne", - "updated_on": "Aktualizováno dne" - }, - "comments": "Komentáře", - "updates": "Aktualizace", - "clear_all": "Vymazat vše", - "copied": "Zkopírováno!", - "link_copied": "Odkaz zkopírován!", - "link_copied_to_clipboard": "Odkaz zkopírován do schránky", - "copied_to_clipboard": "Odkaz na pracovní položku zkopírován do schránky", - "is_copied_to_clipboard": "Pracovní položka zkopírována do schránky", - "no_links_added_yet": "Zatím nejsou přidány žádné odkazy", - "add_link": "Přidat odkaz", - "links": "Odkazy", - "go_to_workspace": "Přejít do pracovního prostoru", - "progress": "Pokrok", - "optional": "Volitelné", - "join": "Připojit se", - "go_back": "Zpět", - "continue": "Pokračovat", - "resend": "Znovu odeslat", - "relations": "Vztahy", - "errors": { - "default": { - "title": "Chyba!", - "message": "Něco se pokazilo. Zkuste to prosím znovu." - }, - "required": "Toto pole je povinné", - "entity_required": "{entity} je povinná", - "restricted_entity": "{entity} je omezen" - }, - "update_link": "Aktualizovat odkaz", - "attach": "Připojit", - "create_new": "Vytvořit nový", - "add_existing": "Přidat existující", - "type_or_paste_a_url": "Zadejte nebo vložte URL", - "url_is_invalid": "URL je neplatná", - "display_title": "Zobrazovaný název", - "link_title_placeholder": "Jak chcete tento odkaz vidět", - "url": "URL", - "side_peek": "Postranní náhled", - "modal": "Modální okno", - "full_screen": "Celá obrazovka", - "close_peek_view": "Zavřít náhled", - "toggle_peek_view_layout": "Přepnout rozložení náhledu", - "options": "Možnosti", - "duration": "Trvání", - "today": "Dnes", - "week": "Týden", - "month": "Měsíc", - "quarter": "Čtvrtletí", - "press_for_commands": "Stiskněte '/' pro příkazy", - "click_to_add_description": "Klikněte pro přidání popisu", - "search": { - "label": "Hledat", - "placeholder": "Zadejte hledaný výraz", - "no_matches_found": "Nenalezeny žádné shody", - "no_matching_results": "Žádné odpovídající výsledky" - }, - "actions": { - "edit": "Upravit", - "make_a_copy": "Vytvořit kopii", - "open_in_new_tab": "Otevřít v nové záložce", - "copy_link": "Kopírovat odkaz", - "archive": "Archivovat", - "restore": "Obnovit", - "delete": "Smazat", - "remove_relation": "Odebrat vztah", - "subscribe": "Odebírat", - "unsubscribe": "Zrušit odběr", - "clear_sorting": "Vymazat řazení", - "show_weekends": "Zobrazit víkendy", - "enable": "Povolit", - "disable": "Zakázat" - }, - "name": "Název", - "discard": "Zahodit", - "confirm": "Potvrdit", - "confirming": "Potvrzování", - "read_the_docs": "Přečtěte si dokumentaci", - "default": "Výchozí", - "active": "Aktivní", - "enabled": "Povoleno", - "disabled": "Zakázáno", - "mandate": "Mandát", - "mandatory": "Povinné", - "yes": "Ano", - "no": "Ne", - "please_wait": "Prosím čekejte", - "enabling": "Povolování", - "disabling": "Zakazování", - "beta": "Beta", - "or": "nebo", - "next": "Další", - "back": "Zpět", - "cancelling": "Rušení", - "configuring": "Konfigurace", - "clear": "Vymazat", - "import": "Importovat", - "connect": "Připojit", - "authorizing": "Autorizace", - "processing": "Zpracování", - "no_data_available": "Nejsou k dispozici žádná data", - "from": "od {name}", - "authenticated": "Ověřeno", - "select": "Vybrat", - "upgrade": "Upgradovat", - "add_seats": "Přidat místa", - "projects": "Projekty", - "workspace": "Pracovní prostor", - "workspaces": "Pracovní prostory", - "team": "Tým", - "teams": "Týmy", - "entity": "Entita", - "entities": "Entity", - "task": "Úkol", - "tasks": "Úkoly", - "section": "Sekce", - "sections": "Sekce", - "edit": "Upravit", - "connecting": "Připojování", - "connected": "Připojeno", - "disconnect": "Odpojit", - "disconnecting": "Odpojování", - "installing": "Instalace", - "install": "Nainstalovat", - "reset": "Resetovat", - "live": "Živě", - "change_history": "Historie změn", - "coming_soon": "Již brzy", - "member": "Člen", - "members": "Členové", - "you": "Vy", - "upgrade_cta": { - "higher_subscription": "Upgradovat na vyšší předplatné", - "talk_to_sales": "Promluvte si s prodejem" - }, - "category": "Kategorie", - "categories": "Kategorie", - "saving": "Ukládání", - "save_changes": "Uložit změny", - "delete": "Smazat", - "deleting": "Mazání", - "pending": "Čekající", - "invite": "Pozvat", - "view": "Pohled", - "deactivated_user": "Deaktivovaný uživatel", - "apply": "Použít", - "applying": "Používání", - "users": "Uživatelé", - "admins": "Administrátoři", - "guests": "Hosté", - "on_track": "Na správné cestě", - "off_track": "Mimo plán", - "at_risk": "V ohrožení", - "timeline": "Časová osa", - "completion": "Dokončení", - "upcoming": "Nadcházející", - "completed": "Dokončeno", - "in_progress": "Probíhá", - "planned": "Plánováno", - "paused": "Pozastaveno", - "no_of": "Počet {entity}", - "resolved": "Vyřešeno" - }, - "chart": { - "x_axis": "Osa X", - "y_axis": "Osa Y", - "metric": "Metrika" - }, - "form": { - "title": { - "required": "Název je povinný", - "max_length": "Název by měl být kratší než {length} znaků" - } - }, - "entity": { - "grouping_title": "Seskupení {entity}", - "priority": "Priorita {entity}", - "all": "Všechny {entity}", - "drop_here_to_move": "Přetáhněte sem pro přesunutí {entity}", - "delete": { - "label": "Smazat {entity}", - "success": "{entity} úspěšně smazána", - "failed": "Mazání {entity} se nezdařilo" - }, - "update": { - "failed": "Aktualizace {entity} se nezdařila", - "success": "{entity} úspěšně aktualizována" - }, - "link_copied_to_clipboard": "Odkaz na {entity} zkopírován do schránky", - "fetch": { - "failed": "Chyba při načítání {entity}" - }, - "add": { - "success": "{entity} úspěšně přidána", - "failed": "Chyba při přidávání {entity}" - }, - "remove": { - "success": "{entity} úspěšně odebrána", - "failed": "Chyba při odebírání {entity}" - } - }, - "epic": { - "all": "Všechny epiky", - "label": "{count, plural, one {Epik} other {Epiky}}", - "new": "Nový epik", - "adding": "Přidávám epik", - "create": { - "success": "Epik úspěšně vytvořen" - }, - "add": { - "press_enter": "Pro přidání dalšího epiku stiskněte 'Enter'", - "label": "Přidat epik" - }, - "title": { - "label": "Název epiku", - "required": "Název epiku je povinný." - } - }, - "issue": { - "label": "{count, plural, one {Pracovní položka} few {Pracovní položky} other {Pracovních položek}}", - "all": "Všechny pracovní položky", - "edit": "Upravit pracovní položku", - "title": { - "label": "Název pracovní položky", - "required": "Název pracovní položky je povinný." - }, - "add": { - "press_enter": "Stiskněte 'Enter' pro přidání další pracovní položky", - "label": "Přidat pracovní položku", - "cycle": { - "failed": "Přidání pracovní položky do cyklu se nezdařilo. Zkuste to prosím znovu.", - "success": "{count, plural, one {Pracovní položka} few {Pracovní položky} other {Pracovních položek}} přidána do cyklu.", - "loading": "Přidávání {count, plural, one {pracovní položky} few {pracovních položek} other {pracovních položek}} do cyklu" - }, - "assignee": "Přidat přiřazené", - "start_date": "Přidat datum začátku", - "due_date": "Přidat termín", - "parent": "Přidat nadřazenou pracovní položku", - "sub_issue": "Přidat podřízenou pracovní položku", - "relation": "Přidat vztah", - "link": "Přidat odkaz", - "existing": "Přidat existující pracovní položku" - }, - "remove": { - "label": "Odebrat pracovní položku", - "cycle": { - "loading": "Odebírání pracovní položky z cyklu", - "success": "Pracovní položka odebrána z cyklu.", - "failed": "Odebrání pracovní položky z cyklu se nezdařilo. Zkuste to prosím znovu." - }, - "module": { - "loading": "Odebírání pracovní položky z modulu", - "success": "Pracovní položka odebrána z modulu.", - "failed": "Odebrání pracovní položky z modulu se nezdařilo. Zkuste to prosím znovu." - }, - "parent": { - "label": "Odebrat nadřazenou pracovní položku" - } - }, - "new": "Nová pracovní položka", - "adding": "Přidávání pracovní položky", - "create": { - "success": "Pracovní položka úspěšně vytvořena" - }, - "priority": { - "urgent": "Naléhavá", - "high": "Vysoká", - "medium": "Střední", - "low": "Nízká" - }, - "display": { - "properties": { - "label": "Zobrazované vlastnosti", - "id": "ID", - "issue_type": "Typ pracovní položky", - "sub_issue_count": "Počet podřízených položek", - "attachment_count": "Počet příloh", - "created_on": "Vytvořeno dne", - "sub_issue": "Podřízená položka", - "work_item_count": "Počet pracovních položek" - }, - "extra": { - "show_sub_issues": "Zobrazit podřízené položky", - "show_empty_groups": "Zobrazit prázdné skupiny" - } - }, - "layouts": { - "ordered_by_label": "Toto rozložení je řazeno podle", - "list": "Seznam", - "kanban": "Nástěnka", - "calendar": "Kalendář", - "spreadsheet": "Tabulka", - "gantt": "Časová osa", - "title": { - "list": "Seznamové rozložení", - "kanban": "Nástěnkové rozložení", - "calendar": "Kalendářové rozložení", - "spreadsheet": "Tabulkové rozložení", - "gantt": "Rozložení časové osy" - } - }, - "states": { - "active": "Aktivní", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Přidat komentář", - "switch": { - "private": "Přepnout na soukromý komentář", - "public": "Přepnout na veřejný komentář" - }, - "create": { - "success": "Komentář úspěšně vytvořen", - "error": "Vytvoření komentáře se nezdařilo. Zkuste to prosím později." - }, - "update": { - "success": "Komentář úspěšně aktualizován", - "error": "Aktualizace komentáře se nezdařila. Zkuste to prosím později." - }, - "remove": { - "success": "Komentář úspěšně odstraněn", - "error": "Odstranění komentáře se nezdařilo. Zkuste to prosím později." - }, - "upload": { - "error": "Nahrání přílohy se nezdařilo. Zkuste to prosím později." - }, - "copy_link": { - "success": "Odkaz na komentář byl zkopírován do schránky", - "error": "Chyba při kopírování odkazu na komentář. Zkuste to prosím později." - } - }, - "empty_state": { - "issue_detail": { - "title": "Pracovní položka neexistuje", - "description": "Pracovní položka, kterou hledáte, neexistuje, byla archivována nebo smazána.", - "primary_button": { - "text": "Zobrazit další pracovní položky" - } - } - }, - "sibling": { - "label": "Související pracovní položky" - }, - "archive": { - "description": "Lze archivovat pouze dokončené nebo zrušené\npracovní položky", - "label": "Archivovat pracovní položku", - "confirm_message": "Opravdu chcete archivovat tuto pracovní položku? Všechny archivované položky lze později obnovit.", - "success": { - "label": "Archivace úspěšná", - "message": "Vaše archivy najdete v archivech projektu." - }, - "failed": { - "message": "Archivace pracovní položky se nezdařila. Zkuste to prosím znovu." - } - }, - "restore": { - "success": { - "title": "Obnovení úspěšné", - "message": "Vaše pracovní položka je k nalezení v pracovních položkách projektu." - }, - "failed": { - "message": "Obnovení pracovní položky se nezdařilo. Zkuste to prosím znovu." - } - }, - "relation": { - "relates_to": "Související s", - "duplicate": "Duplikát", - "blocked_by": "Blokováno", - "blocking": "Blokující" - }, - "copy_link": "Kopírovat odkaz na pracovní položku", - "delete": { - "label": "Smazat pracovní položku", - "error": "Chyba při mazání pracovní položky" - }, - "subscription": { - "actions": { - "subscribed": "Pracovní položka úspěšně přihlášena k odběru", - "unsubscribed": "Odběr pracovní položky zrušen" - } - }, - "select": { - "error": "Vyberte alespoň jednu pracovní položku", - "empty": "Nevybrány žádné pracovní položky", - "add_selected": "Přidat vybrané pracovní položky", - "select_all": "Vybrat vše", - "deselect_all": "Zrušit výběr všeho" - }, - "open_in_full_screen": "Otevřít pracovní položku na celou obrazovku" - }, - "attachment": { - "error": "Soubor nelze připojit. Zkuste to prosím znovu.", - "only_one_file_allowed": "Je možné nahrát pouze jeden soubor najednou.", - "file_size_limit": "Soubor musí být menší než {size}MB.", - "drag_and_drop": "Přetáhněte soubor kamkoli pro nahrání", - "delete": "Smazat přílohu" - }, - "label": { - "select": "Vybrat štítek", - "create": { - "success": "Štítek úspěšně vytvořen", - "failed": "Vytvoření štítku se nezdařilo", - "already_exists": "Štítek již existuje", - "type": "Zadejte pro vytvoření nového štítku" - } - }, - "sub_work_item": { - "update": { - "success": "Podřízená pracovní položka úspěšně aktualizována", - "error": "Chyba při aktualizaci podřízené položky" - }, - "remove": { - "success": "Podřízená pracovní položka úspěšně odebrána", - "error": "Chyba při odebírání podřízené položky" - }, - "empty_state": { - "sub_list_filters": { - "title": "Nemáte podřízené pracovní položky, které odpovídají použitým filtrům.", - "description": "Chcete-li zobrazit všechny podřízené pracovní položky, odstraňte všechny použité filtry.", - "action": "Odstranit filtry" - }, - "list_filters": { - "title": "Nemáte pracovní položky, které odpovídají použitým filtrům.", - "description": "Chcete-li zobrazit všechny pracovní položky, odstraňte všechny použité filtry.", - "action": "Odstranit filtry" - } - } - }, - "view": { - "label": "{count, plural, one {Pohled} few {Pohledy} other {Pohledů}}", - "create": { - "label": "Vytvořit pohled" - }, - "update": { - "label": "Aktualizovat pohled" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Čekající", - "description": "Čekající" - }, - "declined": { - "title": "Odmítnuto", - "description": "Odmítnuto" - }, - "snoozed": { - "title": "Odloženo", - "description": "Zbývá {days, plural, one{# den} few{# dny} other{# dnů}}" - }, - "accepted": { - "title": "Přijato", - "description": "Přijato" - }, - "duplicate": { - "title": "Duplikát", - "description": "Duplikát" - } - }, - "modals": { - "decline": { - "title": "Odmítnout pracovní položku", - "content": "Opravdu chcete odmítnout pracovní položku {value}?" - }, - "delete": { - "title": "Smazat pracovní položku", - "content": "Opravdu chcete smazat pracovní položku {value}?", - "success": "Pracovní položka úspěšně smazána" - } - }, - "errors": { - "snooze_permission": "Pouze správci projektu mohou odkládat/zrušit odložení pracovních položek", - "accept_permission": "Pouze správci projektu mohou přijímat pracovní položky", - "decline_permission": "Pouze správci projektu mohou odmítnout pracovní položky" - }, - "actions": { - "accept": "Přijmout", - "decline": "Odmítnout", - "snooze": "Odložit", - "unsnooze": "Zrušit odložení", - "copy": "Kopírovat odkaz na pracovní položku", - "delete": "Smazat", - "open": "Otevřít pracovní položku", - "mark_as_duplicate": "Označit jako duplikát", - "move": "Přesunout {value} do pracovních položek projektu" - }, - "source": { - "in-app": "v aplikaci" - }, - "order_by": { - "created_at": "Vytvořeno dne", - "updated_at": "Aktualizováno dne", - "id": "ID" - }, - "label": "Příjem", - "page_label": "{workspace} - Příjem", - "modal": { - "title": "Vytvořit přijatou pracovní položku" - }, - "tabs": { - "open": "Otevřené", - "closed": "Uzavřené" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Žádné otevřené pracovní položky", - "description": "Zde najdete otevřené pracovní položky. Vytvořte novou." - }, - "sidebar_closed_tab": { - "title": "Žádné uzavřené pracovní položky", - "description": "Všechny přijaté nebo odmítnuté pracovní položky najdete zde." - }, - "sidebar_filter": { - "title": "Žádné odpovídající pracovní položky", - "description": "Žádná položka neodpovídá filtru v příjmu. Vytvořte novou." - }, - "detail": { - "title": "Vyberte pracovní položku pro zobrazení podrobností." - } - } - }, - "workspace_creation": { - "heading": "Vytvořte si pracovní prostor", - "subheading": "Pro používání Plane musíte vytvořit nebo se připojit k pracovnímu prostoru.", - "form": { - "name": { - "label": "Pojmenujte svůj pracovní prostor", - "placeholder": "Vhodné je použít něco známého a rozpoznatelného." - }, - "url": { - "label": "Nastavte URL vašeho prostoru", - "placeholder": "Zadejte nebo vložte URL", - "edit_slug": "Můžete upravit pouze část URL (slug)" - }, - "organization_size": { - "label": "Kolik lidí bude tento prostor používat?", - "placeholder": "Vyberte rozsah" - } - }, - "errors": { - "creation_disabled": { - "title": "Pouze správce instance může vytvářet pracovní prostory", - "description": "Pokud znáte e-mail správce instance, klikněte na tlačítko níže pro kontakt.", - "request_button": "Požádat správce instance" - }, - "validation": { - "name_alphanumeric": "Názvy pracovních prostorů mohou obsahovat pouze (' '), ('-'), ('_') a alfanumerické znaky.", - "name_length": "Název omezen na 80 znaků.", - "url_alphanumeric": "URL mohou obsahovat pouze ('-') a alfanumerické znaky.", - "url_length": "URL omezena na 48 znaků.", - "url_already_taken": "URL pracovního prostoru je již obsazena!" - } - }, - "request_email": { - "subject": "Žádost o nový pracovní prostor", - "body": "Ahoj správci,\n\nProsím vytvořte nový pracovní prostor s URL [/workspace-name] pro [účel vytvoření].\n\nDíky,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Vytvořit pracovní prostor", - "loading": "Vytváření pracovního prostoru" - }, - "toast": { - "success": { - "title": "Úspěch", - "message": "Pracovní prostor úspěšně vytvořen" - }, - "error": { - "title": "Chyba", - "message": "Vytvoření pracovního prostoru se nezdařilo. Zkuste to prosím znovu." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Přehled projektů, aktivit a metrik", - "description": "Vítejte v Plane, jsme rádi, že jste zde. Vytvořte první projekt, sledujte pracovní položky a tato stránka se promění v prostor pro váš pokrok. Správci zde uvidí i položky pomáhající týmu.", - "primary_button": { - "text": "Vytvořte první projekt", - "comic": { - "title": "Vše začíná projektem v Plane", - "description": "Projektem může být roadmapa produktu, marketingová kampaň nebo uvedení nového auta." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analytika", - "page_label": "{workspace} - Analytika", - "open_tasks": "Celkem otevřených úkolů", - "error": "Při načítání dat došlo k chybě.", - "work_items_closed_in": "Pracovní položky uzavřené v", - "selected_projects": "Vybrané projekty", - "total_members": "Celkem členů", - "total_cycles": "Celkem cyklů", - "total_modules": "Celkem modulů", - "pending_work_items": { - "title": "Čekající pracovní položky", - "empty_state": "Zde se zobrazí analýza čekajících položek podle spolupracovníků." - }, - "work_items_closed_in_a_year": { - "title": "Pracovní položky uzavřené v roce", - "empty_state": "Uzavírejte položky pro zobrazení analýzy v grafu." - }, - "most_work_items_created": { - "title": "Nejvíce vytvořených položek", - "empty_state": "Zobrazí se spolupracovníci a počet jimi vytvořených položek." - }, - "most_work_items_closed": { - "title": "Nejvíce uzavřených položek", - "empty_state": "Zobrazí se spolupracovníci a počet jimi uzavřených položek." - }, - "tabs": { - "scope_and_demand": "Rozsah a poptávka", - "custom": "Vlastní analytika" - }, - "empty_state": { - "customized_insights": { - "description": "Pracovní položky přiřazené vám, rozdělené podle stavu, se zde zobrazí.", - "title": "Zatím žádná data" - }, - "created_vs_resolved": { - "description": "Pracovní položky vytvořené a vyřešené v průběhu času se zde zobrazí.", - "title": "Zatím žádná data" - }, - "project_insights": { - "title": "Zatím žádná data", - "description": "Pracovní položky přiřazené vám, rozdělené podle stavu, se zde zobrazí." - }, - "general": { - "title": "Sledujte pokrok, pracovní zátěž a alokace. Odhalte trendy, odstraňte překážky a zrychlete práci", - "description": "Porovnávejte rozsah s poptávkou, odhady a rozšiřování rozsahu. Získejte výkonnost podle členů týmu a týmů a zajistěte, aby váš projekt běžel včas.", - "primary_button": { - "text": "Začněte svůj první projekt", - "comic": { - "title": "Analytika funguje nejlépe s Cykly + Moduly", - "description": "Nejprve časově ohraničte své problémy do Cyklů a pokud můžete, seskupte problémy, které trvají déle než jeden cyklus, do Modulů. Podívejte se na obojí v levé navigaci." - } - } - } - }, - "created_vs_resolved": "Vytvořeno vs Vyřešeno", - "customized_insights": "Přizpůsobené přehledy", - "backlog_work_items": "Backlog {entity}", - "active_projects": "Aktivní projekty", - "trend_on_charts": "Trend na grafech", - "all_projects": "Všechny projekty", - "summary_of_projects": "Souhrn projektů", - "project_insights": "Přehled projektu", - "started_work_items": "Zahájené {entity}", - "total_work_items": "Celkový počet {entity}", - "total_projects": "Celkový počet projektů", - "total_admins": "Celkový počet administrátorů", - "total_users": "Celkový počet uživatelů", - "total_intake": "Celkový příjem", - "un_started_work_items": "Nezahájené {entity}", - "total_guests": "Celkový počet hostů", - "completed_work_items": "Dokončené {entity}", - "total": "Celkový počet {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Projekt} few {Projekty} other {Projektů}}", - "create": { - "label": "Přidat projekt" - }, - "network": { - "label": "Síť", - "private": { - "title": "Soukromý", - "description": "Přístupné pouze na pozvání" - }, - "public": { - "title": "Veřejný", - "description": "Kdokoli v prostoru kromě hostů se může připojit" - } - }, - "error": { - "permission": "Nemáte oprávnění k této akci.", - "cycle_delete": "Odstranění cyklu se nezdařilo", - "module_delete": "Odstranění modulu se nezdařilo", - "issue_delete": "Odstranění pracovní položky se nezdařilo" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Nezačato", - "started": "Zahájeno", - "completed": "Dokončeno", - "cancelled": "Zrušeno" - }, - "sort": { - "manual": "Ručně", - "name": "Název", - "created_at": "Datum vytvoření", - "members_length": "Počet členů" - }, - "scope": { - "my_projects": "Moje projekty", - "archived_projects": "Archivované" - }, - "common": { - "months_count": "{months, plural, one{# měsíc} few{# měsíce} other{# měsíců}}" - }, - "empty_state": { - "general": { - "title": "Žádné aktivní projekty", - "description": "Projekt je nadřazený cílům. Projekty obsahují Úkoly, Cykly a Moduly. Vytvořte nový nebo filtrujte archivované.", - "primary_button": { - "text": "Začněte první projekt", - "comic": { - "title": "Vše začíná projektem v Plane", - "description": "Projektem může být roadmapa produktu, marketingová kampaň nebo uvedení nového auta." - } - } - }, - "no_projects": { - "title": "Žádné projekty", - "description": "Pro vytváření pracovních položek potřebujete vytvořit nebo být součástí projektu.", - "primary_button": { - "text": "Začněte první projekt", - "comic": { - "title": "Vše začíná projektem v Plane", - "description": "Projektem může být roadmapa produktu, marketingová kampaň nebo uvedení nového auta." - } - } - }, - "filter": { - "title": "Žádné odpovídající projekty", - "description": "Nenalezeny projekty odpovídající kritériím. \n Vytvořte nový." - }, - "search": { - "description": "Nenalezeny projekty odpovídající kritériím.\nVytvořte nový." - } - } - }, - "workspace_views": { - "add_view": "Přidat pohled", - "empty_state": { - "all-issues": { - "title": "Žádné pracovní položky v projektu", - "description": "Vytvořte první položku a sledujte svůj pokrok!", - "primary_button": { - "text": "Vytvořit pracovní položku" - } - }, - "assigned": { - "title": "Žádné přiřazené položky", - "description": "Zde uvidíte položky přiřazené vám.", - "primary_button": { - "text": "Vytvořit pracovní položku" - } - }, - "created": { - "title": "Žádné vytvořené položky", - "description": "Zde jsou položky, které jste vytvořili.", - "primary_button": { - "text": "Vytvořit pracovní položku" - } - }, - "subscribed": { - "title": "Žádné odebírané položky", - "description": "Přihlaste se k odběru položek, které vás zajímají." - }, - "custom-view": { - "title": "Žádné odpovídající položky", - "description": "Zobrazí se položky odpovídající filtru." - } - } - }, - "workspace_settings": { - "label": "Nastavení pracovního prostoru", - "page_label": "{workspace} - Obecná nastavení", - "key_created": "Klíč vytvořen", - "copy_key": "Zkopírujte a uložte tento klíč do Plane Pages. Po zavření jej neuvidíte. CSV soubor s klíčem byl stažen.", - "token_copied": "Token zkopírován do schránky.", - "settings": { - "general": { - "title": "Obecné", - "upload_logo": "Nahrát logo", - "edit_logo": "Upravit logo", - "name": "Název pracovního prostoru", - "company_size": "Velikost společnosti", - "url": "URL pracovního prostoru", - "update_workspace": "Aktualizovat prostor", - "delete_workspace": "Smazat tento prostor", - "delete_workspace_description": "Smazáním prostoru odstraníte všechna data a zdroje. Akce je nevratná.", - "delete_btn": "Smazat prostor", - "delete_modal": { - "title": "Opravdu chcete smazat tento prostor?", - "description": "Máte aktivní zkušební verzi. Nejprve ji zrušte.", - "dismiss": "Zavřít", - "cancel": "Zrušit zkušební verzi", - "success_title": "Prostor smazán.", - "success_message": "Budete přesměrováni na profil.", - "error_title": "Nepodařilo se.", - "error_message": "Zkuste to prosím znovu." - }, - "errors": { - "name": { - "required": "Název je povinný", - "max_length": "Název prostoru nesmí přesáhnout 80 znaků" - }, - "company_size": { - "required": "Velikost společnosti je povinná", - "select_a_range": "Vyberte velikost organizace" - } - } - }, - "members": { - "title": "Členové", - "add_member": "Přidat člena", - "pending_invites": "Čekající pozvánky", - "invitations_sent_successfully": "Pozvánky úspěšně odeslány", - "leave_confirmation": "Opravdu chcete opustit prostor? Ztratíte přístup. Akce je nevratná.", - "details": { - "full_name": "Celé jméno", - "display_name": "Zobrazované jméno", - "email_address": "E-mailová adresa", - "account_type": "Typ účtu", - "authentication": "Ověřování", - "joining_date": "Datum připojení" - }, - "modal": { - "title": "Pozvat spolupracovníky", - "description": "Pozvěte lidi ke spolupráci.", - "button": "Odeslat pozvánky", - "button_loading": "Odesílání pozvánek", - "placeholder": "jmeno@spolecnost.cz", - "errors": { - "required": "Vyžaduje se e-mailová adresa.", - "invalid": "E-mail je neplatný" - } - } - }, - "billing_and_plans": { - "title": "Fakturace a plány", - "current_plan": "Aktuální plán", - "free_plan": "Používáte bezplatný plán", - "view_plans": "Zobrazit plány" - }, - "exports": { - "title": "Exporty", - "exporting": "Exportování", - "previous_exports": "Předchozí exporty", - "export_separate_files": "Exportovat data do samostatných souborů", - "modal": { - "title": "Exportovat do", - "toasts": { - "success": { - "title": "Export úspěšný", - "message": "Exportované {entity} si můžete stáhnout z předchozího exportu." - }, - "error": { - "title": "Export selhal", - "message": "Zkuste to prosím znovu." - } - } - } - }, - "webhooks": { - "title": "Webhooky", - "add_webhook": "Přidat webhook", - "modal": { - "title": "Vytvořit webhook", - "details": "Podrobnosti webhooku", - "payload": "URL pro payload", - "question": "Které události mají spustit tento webhook?", - "error": "URL je povinná" - }, - "secret_key": { - "title": "Tajný klíč", - "message": "Vygenerujte token pro přihlášení k webhooku" - }, - "options": { - "all": "Posílat vše", - "individual": "Vybrat jednotlivé události" - }, - "toasts": { - "created": { - "title": "Webhook vytvořen", - "message": "Webhook úspěšně vytvořen" - }, - "not_created": { - "title": "Webhook nebyl vytvořen", - "message": "Vytvoření webhooku se nezdařilo" - }, - "updated": { - "title": "Webhook aktualizován", - "message": "Webhook úspěšně aktualizován" - }, - "not_updated": { - "title": "Aktualizace webhooku selhala", - "message": "Webhook se nepodařilo aktualizovat" - }, - "removed": { - "title": "Webhook odstraněn", - "message": "Webhook úspěšně odstraněn" - }, - "not_removed": { - "title": "Odstranění webhooku selhalo", - "message": "Webhook se nepodařilo odstranit" - }, - "secret_key_copied": { - "message": "Tajný klíč zkopírován do schránky." - }, - "secret_key_not_copied": { - "message": "Chyba při kopírování klíče." - } - } - }, - "api_tokens": { - "title": "API Tokeny", - "add_token": "Přidat API token", - "create_token": "Vytvořit token", - "never_expires": "Nikdy neexpiruje", - "generate_token": "Generovat token", - "generating": "Generování", - "delete": { - "title": "Smazat API token", - "description": "Aplikace používající tento token ztratí přístup. Akce je nevratná.", - "success": { - "title": "Úspěch!", - "message": "Token úspěšně smazán" - }, - "error": { - "title": "Chyba!", - "message": "Mazání tokenu selhalo" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Žádné API tokeny", - "description": "Používejte API pro integraci Plane s externími systémy." - }, - "webhooks": { - "title": "Žádné webhooky", - "description": "Vytvořte webhooky pro automatizaci akcí." - }, - "exports": { - "title": "Žádné exporty", - "description": "Zde najdete historii exportů." - }, - "imports": { - "title": "Žádné importy", - "description": "Zde najdete historii importů." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Vaše práce", - "work": "Práce", - "details": { - "joined_on": "Připojeno dne", - "time_zone": "Časové pásmo" - }, - "stats": { - "workload": "Vytížení", - "overview": "Přehled", - "created": "Vytvořené položky", - "assigned": "Přiřazené položky", - "subscribed": "Odebírané položky", - "state_distribution": { - "title": "Položky podle stavu", - "empty": "Vytvářejte položky pro analýzu stavů." - }, - "priority_distribution": { - "title": "Položky podle priority", - "empty": "Vytvářejte položky pro analýzu priorit." - }, - "recent_activity": { - "title": "Nedávná aktivita", - "empty": "Nenalezena žádná aktivita.", - "button": "Stáhnout dnešní aktivitu", - "button_loading": "Stahování" - } - }, - "actions": { - "profile": "Profil", - "security": "Zabezpečení", - "activity": "Aktivita", - "appearance": "Vzhled", - "notifications": "Oznámení" - }, - "tabs": { - "summary": "Shrnutí", - "assigned": "Přiřazeno", - "created": "Vytvořeno", - "subscribed": "Odebíráno", - "activity": "Aktivita" - }, - "empty_state": { - "activity": { - "title": "Žádná aktivita", - "description": "Vytvořte pracovní položku pro začátek." - }, - "assigned": { - "title": "Žádné přiřazené pracovní položky", - "description": "Zde uvidíte přiřazené pracovní položky." - }, - "created": { - "title": "Žádné vytvořené pracovní položky", - "description": "Zde jsou pracovní položky, které jste vytvořili." - }, - "subscribed": { - "title": "Žádné odebírané pracovní položky", - "description": "Odebírejte pracovní položky, které vás zajímají, a sledujte je zde." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Zadejte ID projektu", - "please_select_a_timezone": "Vyberte časové pásmo", - "archive_project": { - "title": "Archivovat projekt", - "description": "Archivace skryje projekt z menu. Přístup zůstane přes stránku projektů.", - "button": "Archivovat projekt" - }, - "delete_project": { - "title": "Smazat projekt", - "description": "Smazáním projektu odstraníte všechna data. Akce je nevratná.", - "button": "Smazat projekt" - }, - "toast": { - "success": "Projekt aktualizován", - "error": "Aktualizace se nezdařila. Zkuste to znovu." - } - }, - "members": { - "label": "Členové", - "project_lead": "Vedoucí projektu", - "default_assignee": "Výchozí přiřazení", - "guest_super_permissions": { - "title": "Udělit hostům přístup ke všem položkám:", - "sub_heading": "Hosté uvidí všechny položky v projektu." - }, - "invite_members": { - "title": "Pozvat členy", - "sub_heading": "Pozvěte členy do projektu.", - "select_co_worker": "Vybrat spolupracovníka" - } - }, - "states": { - "describe_this_state_for_your_members": "Popište tento stav členům.", - "empty_state": { - "title": "Žádné stavy pro skupinu {groupKey}", - "description": "Vytvořte nový stav" - } - }, - "labels": { - "label_title": "Název štítku", - "label_title_is_required": "Název štítku je povinný", - "label_max_char": "Název štítku nesmí přesáhnout 255 znaků", - "toast": { - "error": "Chyba při aktualizaci štítku" - } - }, - "estimates": { - "label": "Odhady", - "title": "Povolit odhady pro můj projekt", - "description": "Pomáhají vám komunikovat složitost a pracovní zátěž týmu.", - "no_estimate": "Bez odhadu", - "new": "Nový systém odhadů", - "create": { - "custom": "Vlastní", - "start_from_scratch": "Začít od nuly", - "choose_template": "Vybrat šablonu", - "choose_estimate_system": "Vybrat systém odhadů", - "enter_estimate_point": "Zadat odhad", - "step": "Krok {step} z {total}", - "label": "Vytvořit odhad" - }, - "toasts": { - "created": { - "success": { - "title": "Odhad vytvořen", - "message": "Odhad byl úspěšně vytvořen" - }, - "error": { - "title": "Vytvoření odhadu selhalo", - "message": "Nepodařilo se vytvořit nový odhad, zkuste to prosím znovu." - } - }, - "updated": { - "success": { - "title": "Odhad upraven", - "message": "Odhad byl aktualizován ve vašem projektu." - }, - "error": { - "title": "Úprava odhadu selhala", - "message": "Nepodařilo se upravit odhad, zkuste to prosím znovu" - } - }, - "enabled": { - "success": { - "title": "Úspěch!", - "message": "Odhady byly povoleny." - } - }, - "disabled": { - "success": { - "title": "Úspěch!", - "message": "Odhady byly zakázány." - }, - "error": { - "title": "Chyba!", - "message": "Odhad nemohl být zakázán. Zkuste to prosím znovu" - } - } - }, - "validation": { - "min_length": "Odhad musí být větší než 0.", - "unable_to_process": "Nemůžeme zpracovat váš požadavek, zkuste to prosím znovu.", - "numeric": "Odhad musí být číselná hodnota.", - "character": "Odhad musí být znakový.", - "empty": "Hodnota odhadu nemůže být prázdná.", - "already_exists": "Hodnota odhadu již existuje.", - "unsaved_changes": "Máte neuložené změny. Před kliknutím na hotovo je prosím uložte", - "remove_empty": "Odhad nemůže být prázdný. Zadejte hodnotu do každého pole nebo odstraňte ta, pro která nemáte hodnoty." - }, - "systems": { - "points": { - "label": "Body", - "fibonacci": "Fibonacci", - "linear": "Lineární", - "squares": "Čtverce", - "custom": "Vlastní" - }, - "categories": { - "label": "Kategorie", - "t_shirt_sizes": "Velikosti triček", - "easy_to_hard": "Od snadného po těžké", - "custom": "Vlastní" - }, - "time": { - "label": "Čas", - "hours": "Hodiny" - } - } - }, - "automations": { - "label": "Automatizace", - "auto-archive": { - "title": "Automaticky archivovat uzavřené pracovní položky", - "description": "Plane bude automaticky archivovat pracovní položky, které byly dokončeny nebo zrušeny.", - "duration": "Automaticky archivovat pracovní položky, které jsou uzavřené po dobu" - }, - "auto-close": { - "title": "Automaticky uzavírat pracovní položky", - "description": "Plane automaticky uzavře pracovní položky, které nebyly dokončeny nebo zrušeny.", - "duration": "Automaticky uzavřít pracovní položky, které jsou neaktivní po dobu", - "auto_close_status": "Stav automatického uzavření" - } - }, - "empty_state": { - "labels": { - "title": "Zatím žádné štítky", - "description": "Vytvořte štítky pro organizaci a filtrování pracovních položek ve vašem projektu." - }, - "estimates": { - "title": "Zatím žádné systémy odhadů", - "description": "Vytvořte sadu odhadů pro komunikaci množství práce na pracovní položku.", - "primary_button": "Přidat systém odhadů" - } - } - }, - "project_cycles": { - "add_cycle": "Přidat cyklus", - "more_details": "Více detailů", - "cycle": "Cyklus", - "update_cycle": "Aktualizovat cyklus", - "create_cycle": "Vytvořit cyklus", - "no_matching_cycles": "Žádné odpovídající cykly", - "remove_filters_to_see_all_cycles": "Odeberte filtry pro zobrazení všech cyklů", - "remove_search_criteria_to_see_all_cycles": "Odeberte kritéria pro zobrazení všech cyklů", - "only_completed_cycles_can_be_archived": "Lze archivovat pouze dokončené cykly", - "start_date": "Začátek data", - "end_date": "Konec data", - "in_your_timezone": "V časovém pásmu", - "transfer_work_items": "Převést {count} pracovních položek", - "date_range": "Období data", - "add_date": "Přidat datum", - "active_cycle": { - "label": "Aktivní cyklus", - "progress": "Pokrok", - "chart": "Burndown graf", - "priority_issue": "Vysoce prioritní položky", - "assignees": "Přiřazení", - "issue_burndown": "Burndown pracovních položek", - "ideal": "Ideální", - "current": "Aktuální", - "labels": "Štítky" - }, - "upcoming_cycle": { - "label": "Nadcházející cyklus" - }, - "completed_cycle": { - "label": "Dokončený cyklus" - }, - "status": { - "days_left": "Zbývá dnů", - "completed": "Dokončeno", - "yet_to_start": "Ještě nezačato", - "in_progress": "V průběhu", - "draft": "Koncept" - }, - "action": { - "restore": { - "title": "Obnovit cyklus", - "success": { - "title": "Cyklus obnoven", - "description": "Cyklus byl obnoven." - }, - "failed": { - "title": "Obnovení selhalo", - "description": "Obnovení cyklu se nezdařilo." - } - }, - "favorite": { - "loading": "Přidávání do oblíbených", - "success": { - "description": "Cyklus přidán do oblíbených.", - "title": "Úspěch!" - }, - "failed": { - "description": "Přidání do oblíbených selhalo.", - "title": "Chyba!" - } - }, - "unfavorite": { - "loading": "Odebírání z oblíbených", - "success": { - "description": "Cyklus odebrán z oblíbených.", - "title": "Úspěch!" - }, - "failed": { - "description": "Odebrání selhalo.", - "title": "Chyba!" - } - }, - "update": { - "loading": "Aktualizace cyklu", - "success": { - "description": "Cyklus aktualizován.", - "title": "Úspěch!" - }, - "failed": { - "description": "Aktualizace selhala.", - "title": "Chyba!" - }, - "error": { - "already_exists": "Cyklus s těmito daty již existuje. Pro koncept odstraňte data." - } - } - }, - "empty_state": { - "general": { - "title": "Seskupujte práci do cyklů.", - "description": "Časově ohraničte práci, sledujte termíny a dělejte pokroky.", - "primary_button": { - "text": "Vytvořte první cyklus", - "comic": { - "title": "Cykly jsou opakovaná časová období.", - "description": "Sprint, iterace nebo jakékoli jiné časové období pro sledování práce." - } - } - }, - "no_issues": { - "title": "Žádné položky v cyklu", - "description": "Přidejte položky, které chcete sledovat.", - "primary_button": { - "text": "Vytvořit položku" - }, - "secondary_button": { - "text": "Přidat existující položku" - } - }, - "completed_no_issues": { - "title": "Žádné položky v cyklu", - "description": "Položky byly přesunuty nebo skryty. Pro zobrazení upravte vlastnosti." - }, - "active": { - "title": "Žádný aktivní cyklus", - "description": "Aktivní cyklus zahrnuje dnešní datum. Sledujte jeho průběh zde." - }, - "archived": { - "title": "Žádné archivované cykly", - "description": "Archivujte dokončené cykly pro úklid." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Vytvořte a přiřaďte pracovní položku", - "description": "Položky jsou úkoly, které přiřazujete sobě nebo týmu. Sledujte jejich postup.", - "primary_button": { - "text": "Vytvořit první položku", - "comic": { - "title": "Položky jsou stavebními kameny", - "description": "Příklady: Redesign UI, Rebranding, Nový systém." - } - } - }, - "no_archived_issues": { - "title": "Žádné archivované položky", - "description": "Archivujte dokončené nebo zrušené položky. Nastavte automatizaci.", - "primary_button": { - "text": "Nastavit automatizaci" - } - }, - "issues_empty_filter": { - "title": "Žádné odpovídající položky", - "secondary_button": { - "text": "Vymazat filtry" - } - } - } - }, - "project_module": { - "add_module": "Přidat modul", - "update_module": "Aktualizovat modul", - "create_module": "Vytvořit modul", - "archive_module": "Archivovat modul", - "restore_module": "Obnovit modul", - "delete_module": "Smazat modul", - "empty_state": { - "general": { - "title": "Seskupujte milníky do modulů.", - "description": "Moduly seskupují položky pod logického nadřazeného. Sledujte termíny a pokrok.", - "primary_button": { - "text": "Vytvořte první modul", - "comic": { - "title": "Moduly skupinují hierarchicky.", - "description": "Příklady: Modul košíku, podvozku, skladu." - } - } - }, - "no_issues": { - "title": "Žádné položky v modulu", - "description": "Přidejte položky do modulu.", - "primary_button": { - "text": "Vytvořit položky" - }, - "secondary_button": { - "text": "Přidat existující položku" - } - }, - "archived": { - "title": "Žádné archivované moduly", - "description": "Archivujte dokončené nebo zrušené moduly." - }, - "sidebar": { - "in_active": "Modul není aktivní.", - "invalid_date": "Neplatné datum. Zadejte platné." - } - }, - "quick_actions": { - "archive_module": "Archivovat modul", - "archive_module_description": "Lze archivovat pouze dokončené/zrušené moduly.", - "delete_module": "Smazat modul" - }, - "toast": { - "copy": { - "success": "Odkaz na modul zkopírován" - }, - "delete": { - "success": "Modul smazán", - "error": "Mazání selhalo" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Ukládejte filtry jako pohledy.", - "description": "Pohledy jsou uložené filtry pro snadný přístup. Sdílejte je v týmu.", - "primary_button": { - "text": "Vytvořit první pohled", - "comic": { - "title": "Pohledy pracují s vlastnostmi položek.", - "description": "Vytvořte pohled s požadovanými filtry." - } - } - }, - "filter": { - "title": "Žádné odpovídající pohledy", - "description": "Vytvořte nový pohled." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Pište poznámky, dokumenty nebo znalostní báze. Využijte AI Galileo.", - "description": "Stránky jsou prostorem pro myšlenky. Pište, formátujte, vkládejte položky a využívejte komponenty.", - "primary_button": { - "text": "Vytvořit první stránku" - } - }, - "private": { - "title": "Žádné soukromé stránky", - "description": "Uchovávejte soukromé myšlenky. Sdílejte, až budete připraveni.", - "primary_button": { - "text": "Vytvořit stránku" - } - }, - "public": { - "title": "Žádné veřejné stránky", - "description": "Zde uvidíte stránky sdílené v projektu.", - "primary_button": { - "text": "Vytvořit stránku" - } - }, - "archived": { - "title": "Žádné archivované stránky", - "description": "Archivujte stránky pro pozdější přístup." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Nenalezeny výsledky" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Žádné odpovídající položky" - }, - "no_issues": { - "title": "Žádné položky" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Žádné komentáře", - "description": "Komentáře slouží k diskusi a sledování položek." - } - } - }, - "notification": { - "label": "Schránka", - "page_label": "{workspace} - Schránka", - "options": { - "mark_all_as_read": "Označit vše jako přečtené", - "mark_read": "Označit jako přečtené", - "mark_unread": "Označit jako nepřečtené", - "refresh": "Obnovit", - "filters": "Filtry schránky", - "show_unread": "Zobrazit nepřečtené", - "show_snoozed": "Zobrazit odložené", - "show_archived": "Zobrazit archivované", - "mark_archive": "Archivovat", - "mark_unarchive": "Zrušit archivaci", - "mark_snooze": "Odložit", - "mark_unsnooze": "Zrušit odložení" - }, - "toasts": { - "read": "Oznámení přečteno", - "unread": "Označeno jako nepřečtené", - "archived": "Archivováno", - "unarchived": "Zrušena archivace", - "snoozed": "Odloženo", - "unsnoozed": "Zrušeno odložení" - }, - "empty_state": { - "detail": { - "title": "Vyberte pro podrobnosti." - }, - "all": { - "title": "Žádné přiřazené položky", - "description": "Zobrazí se zde aktualizace přiřazených položek." - }, - "mentions": { - "title": "Žádné zmínky", - "description": "Zobrazí se zde zmínky o vás." - } - }, - "tabs": { - "all": "Vše", - "mentions": "Zmínky" - }, - "filter": { - "assigned": "Přiřazeno mě", - "created": "Vytvořil jsem", - "subscribed": "Odebírám" - }, - "snooze": { - "1_day": "1 den", - "3_days": "3 dny", - "5_days": "5 dní", - "1_week": "1 týden", - "2_weeks": "2 týdny", - "custom": "Vlastní" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Přidejte položky pro sledování pokroku" - }, - "chart": { - "title": "Přidejte položky pro zobrazení burndown grafu." - }, - "priority_issue": { - "title": "Zobrazí se vysoce prioritní položky." - }, - "assignee": { - "title": "Přiřaďte položky pro přehled přiřazení." - }, - "label": { - "title": "Přidejte štítky pro analýzu podle štítků." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Příjem není povolen", - "description": "Aktivujte příjem v nastavení projektu pro správu požadavků.", - "primary_button": { - "text": "Spravovat funkce" - } - }, - "cycle": { - "title": "Cykly nejsou povoleny", - "description": "Aktivujte cykly pro časové ohraničení práce.", - "primary_button": { - "text": "Spravovat funkce" - } - }, - "module": { - "title": "Moduly nejsou povoleny", - "description": "Aktivujte moduly v nastavení projektu.", - "primary_button": { - "text": "Spravovat funkce" - } - }, - "page": { - "title": "Stránky nejsou povoleny", - "description": "Aktivujte stránky v nastavení projektu.", - "primary_button": { - "text": "Spravovat funkce" - } - }, - "view": { - "title": "Pohledy nejsou povoleny", - "description": "Aktivujte pohledy v nastavení projektu.", - "primary_button": { - "text": "Spravovat funkce" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Vytvořit koncept položky", - "empty_state": { - "title": "Rozpracované položky a komentáře se zde zobrazí.", - "description": "Začněte vytvářet položku a nechte ji rozpracovanou.", - "primary_button": { - "text": "Vytvořit první koncept" - } - }, - "delete_modal": { - "title": "Smazat koncept", - "description": "Opravdu chcete smazat tento koncept? Akce je nevratná." - }, - "toasts": { - "created": { - "success": "Koncept vytvořen", - "error": "Vytvoření se nezdařilo" - }, - "deleted": { - "success": "Koncept smazán" - } - } - }, - "stickies": { - "title": "Vaše poznámky", - "placeholder": "kliknutím začněte psát", - "all": "Všechny poznámky", - "no-data": "Zapisujte nápady a myšlenky. Přidejte první poznámku.", - "add": "Přidat poznámku", - "search_placeholder": "Hledat podle názvu", - "delete": "Smazat poznámku", - "delete_confirmation": "Opravdu chcete smazat tuto poznámku?", - "empty_state": { - "simple": "Zapisujte nápady a myšlenky. Přidejte první poznámku.", - "general": { - "title": "Poznámky jsou rychlé záznamy.", - "description": "Zapisujte myšlenky a přistupujte k nim odkudkoli.", - "primary_button": { - "text": "Přidat poznámku" - } - }, - "search": { - "title": "Nenalezeny žádné poznámky.", - "description": "Zkuste jiný termín nebo vytvořte novou.", - "primary_button": { - "text": "Přidat poznámku" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Název poznámky může mít max. 100 znaků.", - "already_exists": "Poznámka bez popisu již existuje" - }, - "created": { - "title": "Poznámka vytvořena", - "message": "Poznámka úspěšně vytvořena" - }, - "not_created": { - "title": "Vytvoření selhalo", - "message": "Poznámku nelze vytvořit" - }, - "updated": { - "title": "Poznámka aktualizována", - "message": "Poznámka úspěšně aktualizována" - }, - "not_updated": { - "title": "Aktualizace selhala", - "message": "Poznámku nelze aktualizovat" - }, - "removed": { - "title": "Poznámka smazána", - "message": "Poznámka úspěšně smazána" - }, - "not_removed": { - "title": "Mazání selhalo", - "message": "Poznámku nelze smazat" - } - } - }, - "role_details": { - "guest": { - "title": "Host", - "description": "Externí členové mohou být pozváni jako hosté." - }, - "member": { - "title": "Člen", - "description": "Může číst, psát, upravovat a mazat entity." - }, - "admin": { - "title": "Správce", - "description": "Má všechna oprávnění v prostoru." - } - }, - "user_roles": { - "product_or_project_manager": "Produktový/Projektový manažer", - "development_or_engineering": "Vývoj/Inženýrství", - "founder_or_executive": "Zakladatel/Vedoucí pracovník", - "freelancer_or_consultant": "Freelancer/Konzultant", - "marketing_or_growth": "Marketing/Růst", - "sales_or_business_development": "Prodej/Business Development", - "support_or_operations": "Podpora/Operace", - "student_or_professor": "Student/Profesor", - "human_resources": "Lidské zdroje", - "other": "Jiné" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Importujte položky z repozitářů GitHub." - }, - "jira": { - "title": "Jira", - "description": "Importujte položky a epiky z Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Exportujte položky do CSV.", - "short_description": "Exportovat jako CSV" - }, - "excel": { - "title": "Excel", - "description": "Exportujte položky do Excelu.", - "short_description": "Exportovat jako Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Exportujte položky do Excelu.", - "short_description": "Exportovat jako Excel" - }, - "json": { - "title": "JSON", - "description": "Exportujte položky do JSON.", - "short_description": "Exportovat jako JSON" - } - }, - "default_global_view": { - "all_issues": "Všechny položky", - "assigned": "Přiřazeno", - "created": "Vytvořeno", - "subscribed": "Odebíráno" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Systémové předvolby" - }, - "light": { - "label": "Světlé" - }, - "dark": { - "label": "Tmavé" - }, - "light_contrast": { - "label": "Světlý vysoký kontrast" - }, - "dark_contrast": { - "label": "Tmavý vysoký kontrast" - }, - "custom": { - "label": "Vlastní téma" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Plánováno", - "in_progress": "V průběhu", - "paused": "Pozastaveno", - "completed": "Dokončeno", - "cancelled": "Zrušeno" - }, - "layout": { - "list": "Seznam", - "board": "Nástěnka", - "timeline": "Časová osa" - }, - "order_by": { - "name": "Název", - "progress": "Pokrok", - "issues": "Počet položek", - "due_date": "Termín", - "created_at": "Datum vytvoření", - "manual": "Ručně" - } - }, - "cycle": { - "label": "{count, plural, one {Cyklus} few {Cykly} other {Cyklů}}", - "no_cycle": "Žádný cyklus" - }, - "module": { - "label": "{count, plural, one {Modul} few {Moduly} other {Modulů}}", - "no_module": "Žádný modul" - }, - "description_versions": { - "last_edited_by": "Naposledy upraveno uživatelem", - "previously_edited_by": "Dříve upraveno uživatelem", - "edited_by": "Upraveno uživatelem" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane se nespustil. To může být způsobeno tím, že se jeden nebo více služeb Plane nepodařilo spustit.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Vyberte View Logs z setup.sh a Docker logů, abyste si byli jisti." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Osnova", - "empty_state": { - "title": "Chybí nadpisy", - "description": "Přidejte na tuto stránku nějaké nadpisy, aby se zde zobrazily." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Slova", - "characters": "Znaky", - "paragraphs": "Odstavce", - "read_time": "Doba čtení" - }, - "actors_info": { - "edited_by": "Upravil", - "created_by": "Vytvořil" - }, - "version_history": { - "label": "Historie verzí", - "current_version": "Aktuální verze" - } - }, - "assets": { - "label": "Přílohy", - "download_button": "Stáhnout", - "empty_state": { - "title": "Chybí obrázky", - "description": "Přidejte obrázky, aby se zde zobrazily." - } - } - }, - "open_button": "Otevřít navigační panel", - "close_button": "Zavřít navigační panel", - "outline_floating_button": "Otevřít osnovu" - } -} diff --git a/packages/i18n/src/locales/cs/translations.ts b/packages/i18n/src/locales/cs/translations.ts new file mode 100644 index 0000000000..79aba7f1e9 --- /dev/null +++ b/packages/i18n/src/locales/cs/translations.ts @@ -0,0 +1,2561 @@ +export default { + sidebar: { + projects: "Projekty", + pages: "Stránky", + new_work_item: "Nová pracovní položka", + home: "Domov", + your_work: "Vaše práce", + inbox: "Doručená pošta", + workspace: "Pracovní prostor", + views: "Pohledy", + analytics: "Analytika", + work_items: "Pracovní položky", + cycles: "Cykly", + modules: "Moduly", + intake: "Příjem", + drafts: "Koncepty", + favorites: "Oblíbené", + pro: "Pro", + upgrade: "Upgrade", + }, + auth: { + common: { + email: { + label: "E-mail", + placeholder: "jmeno@spolecnost.cz", + errors: { + required: "E-mail je povinný", + invalid: "E-mail je neplatný", + }, + }, + password: { + label: "Heslo", + set_password: "Nastavit heslo", + placeholder: "Zadejte heslo", + confirm_password: { + label: "Potvrďte heslo", + placeholder: "Potvrďte heslo", + }, + current_password: { + label: "Aktuální heslo", + }, + new_password: { + label: "Nové heslo", + placeholder: "Zadejte nové heslo", + }, + change_password: { + label: { + default: "Změnit heslo", + submitting: "Mění se heslo", + }, + }, + errors: { + match: "Hesla se neshodují", + empty: "Zadejte prosím své heslo", + length: "Délka hesla by měla být více než 8 znaků", + strength: { + weak: "Heslo je slabé", + strong: "Heslo je silné", + }, + }, + submit: "Nastavit heslo", + toast: { + change_password: { + success: { + title: "Úspěch!", + message: "Heslo bylo úspěšně změněno.", + }, + error: { + title: "Chyba!", + message: "Něco se pokazilo. Zkuste to prosím znovu.", + }, + }, + }, + }, + unique_code: { + label: "Jedinečný kód", + placeholder: "gets-sets-flys", + paste_code: "Vložte kód zaslaný na váš e-mail", + requesting_new_code: "Žádám o nový kód", + sending_code: "Odesílám kód", + }, + already_have_an_account: "Už máte účet?", + login: "Přihlásit se", + create_account: "Vytvořit účet", + new_to_plane: "Nový v Plane?", + back_to_sign_in: "Zpět k přihlášení", + resend_in: "Znovu odeslat za {seconds} sekund", + sign_in_with_unique_code: "Přihlásit se pomocí jedinečného kódu", + forgot_password: "Zapomněli jste heslo?", + }, + sign_up: { + header: { + label: "Vytvořte účet a začněte spravovat práci se svým týmem.", + step: { + email: { + header: "Registrace", + sub_header: "", + }, + password: { + header: "Registrace", + sub_header: "Zaregistrujte se pomocí kombinace e-mailu a hesla.", + }, + unique_code: { + header: "Registrace", + sub_header: "Zaregistrujte se pomocí jedinečného kódu zaslaného na výše uvedenou e-mailovou adresu.", + }, + }, + }, + errors: { + password: { + strength: "Zkuste nastavit silné heslo, abyste mohli pokračovat", + }, + }, + }, + sign_in: { + header: { + label: "Přihlaste se a začněte spravovat práci se svým týmem.", + step: { + email: { + header: "Přihlásit se nebo zaregistrovat", + sub_header: "", + }, + password: { + header: "Přihlásit se nebo zaregistrovat", + sub_header: "Použijte svou kombinaci e-mailu a hesla pro přihlášení.", + }, + unique_code: { + header: "Přihlásit se nebo zaregistrovat", + sub_header: "Přihlaste se pomocí jedinečného kódu zaslaného na výše uvedenou e-mailovou adresu.", + }, + }, + }, + }, + forgot_password: { + title: "Obnovte své heslo", + description: + "Zadejte ověřenou e-mailovou adresu vašeho uživatelského účtu a my vám zašleme odkaz na obnovení hesla.", + email_sent: "Odeslali jsme odkaz na obnovení na vaši e-mailovou adresu", + send_reset_link: "Odeslat odkaz na obnovení", + errors: { + smtp_not_enabled: "Vidíme, že váš správce neaktivoval SMTP, nebudeme schopni odeslat odkaz na obnovení hesla", + }, + toast: { + success: { + title: "E-mail odeslán", + message: + "Zkontrolujte svou doručenou poštu pro odkaz na obnovení hesla. Pokud se neobjeví během několika minut, zkontrolujte svou složku se spamem.", + }, + error: { + title: "Chyba!", + message: "Něco se pokazilo. Zkuste to prosím znovu.", + }, + }, + }, + reset_password: { + title: "Nastavit nové heslo", + description: "Zabezpečte svůj účet silným heslem", + }, + set_password: { + title: "Zabezpečte svůj účet", + description: "Nastavení hesla vám pomůže bezpečně se přihlásit", + }, + sign_out: { + toast: { + error: { + title: "Chyba!", + message: "Nepodařilo se odhlásit. Zkuste to prosím znovu.", + }, + }, + }, + }, + submit: "Odeslat", + cancel: "Zrušit", + loading: "Načítání", + error: "Chyba", + success: "Úspěch", + warning: "Varování", + info: "Informace", + close: "Zavřít", + yes: "Ano", + no: "Ne", + ok: "OK", + name: "Název", + description: "Popis", + search: "Hledat", + add_member: "Přidat člena", + adding_members: "Přidávání členů", + remove_member: "Odebrat člena", + add_members: "Přidat členy", + adding_member: "Přidávání členů", + remove_members: "Odebrat členy", + add: "Přidat", + adding: "Přidávání", + remove: "Odebrat", + add_new: "Přidat nový", + remove_selected: "Odebrat vybrané", + first_name: "Křestní jméno", + last_name: "Příjmení", + email: "E-mail", + display_name: "Zobrazované jméno", + role: "Role", + timezone: "Časové pásmo", + avatar: "Profilový obrázek", + cover_image: "Úvodní obrázek", + password: "Heslo", + change_cover: "Změnit úvodní obrázek", + language: "Jazyk", + saving: "Ukládání", + save_changes: "Uložit změny", + deactivate_account: "Deaktivovat účet", + deactivate_account_description: + "Při deaktivaci účtu budou všechna data a prostředky v rámci tohoto účtu trvale odstraněny a nelze je obnovit.", + profile_settings: "Nastavení profilu", + your_account: "Váš účet", + security: "Zabezpečení", + activity: "Aktivita", + appearance: "Vzhled", + notifications: "Oznámení", + workspaces: "Pracovní prostory", + create_workspace: "Vytvořit pracovní prostor", + invitations: "Pozvánky", + summary: "Shrnutí", + assigned: "Přiřazeno", + created: "Vytvořeno", + subscribed: "Odebíráno", + you_do_not_have_the_permission_to_access_this_page: "Nemáte oprávnění pro přístup k této stránce.", + something_went_wrong_please_try_again: "Něco se pokazilo. Zkuste to prosím znovu.", + load_more: "Načíst více", + select_or_customize_your_interface_color_scheme: "Vyberte nebo přizpůsobte barevné schéma rozhraní.", + theme: "Téma", + system_preference: "Systémové předvolby", + light: "Světlé", + dark: "Tmavé", + light_contrast: "Světlý vysoký kontrast", + dark_contrast: "Tmavý vysoký kontrast", + custom: "Vlastní téma", + select_your_theme: "Vyberte téma", + customize_your_theme: "Přizpůsobte si téma", + background_color: "Barva pozadí", + text_color: "Barva textu", + primary_color: "Hlavní barva (téma)", + sidebar_background_color: "Barva pozadí postranního panelu", + sidebar_text_color: "Barva textu postranního panelu", + set_theme: "Nastavit téma", + enter_a_valid_hex_code_of_6_characters: "Zadejte platný hexadecimální kód o 6 znacích", + background_color_is_required: "Barva pozadí je povinná", + text_color_is_required: "Barva textu je povinná", + primary_color_is_required: "Hlavní barva je povinná", + sidebar_background_color_is_required: "Barva pozadí postranního panelu je povinná", + sidebar_text_color_is_required: "Barva textu postranního panelu je povinná", + updating_theme: "Aktualizace tématu", + theme_updated_successfully: "Téma úspěšně aktualizováno", + failed_to_update_the_theme: "Aktualizace tématu se nezdařila", + email_notifications: "E-mailová oznámení", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Zůstaňte v obraze u pracovních položek, které odebíráte. Aktivujte toto pro zasílání oznámení.", + email_notification_setting_updated_successfully: "Nastavení e-mailových oznámení úspěšně aktualizováno", + failed_to_update_email_notification_setting: "Aktualizace nastavení e-mailových oznámení se nezdařila", + notify_me_when: "Upozornit mě, když", + property_changes: "Změny vlastností", + property_changes_description: + "Upozornit mě, když se změní vlastnosti pracovních položek jako přiřazení, priorita, odhady nebo cokoli jiného.", + state_change: "Změna stavu", + state_change_description: "Upozornit mě, když se pracovní položka přesune do jiného stavu", + issue_completed: "Pracovní položka dokončena", + issue_completed_description: "Upozornit mě pouze při dokončení pracovní položky", + comments: "Komentáře", + comments_description: "Upozornit mě, když někdo přidá komentář k pracovní položce", + mentions: "Zmínky", + mentions_description: "Upozornit mě pouze, když mě někdo zmíní v komentářích nebo popisu", + old_password: "Staré heslo", + general_settings: "Obecná nastavení", + sign_out: "Odhlásit se", + signing_out: "Odhlašování", + active_cycles: "Aktivní cykly", + active_cycles_description: + "Sledujte cykly napříč projekty, monitorujte vysoce prioritní pracovní položky a zaměřte se na cykly vyžadující pozornost.", + on_demand_snapshots_of_all_your_cycles: "Snapshots všech vašich cyklů na vyžádání", + upgrade: "Upgradovat", + "10000_feet_view": "Pohled z 10 000 stop na všechny aktivní cykly.", + "10000_feet_view_description": + "Přibližte si všechny běžící cykly napříč všemi projekty najednou, místo přepínání mezi cykly v každém projektu.", + get_snapshot_of_each_active_cycle: "Získejte snapshot každého aktivního cyklu.", + get_snapshot_of_each_active_cycle_description: + "Sledujte klíčové metriky pro všechny aktivní cykly, zjistěte jejich průběh a porovnejte rozsah s termíny.", + compare_burndowns: "Porovnejte burndowny.", + compare_burndowns_description: "Sledujte výkonnost týmů prostřednictvím přehledu burndown reportů každého cyklu.", + quickly_see_make_or_break_issues: "Rychle zjistěte kritické pracovní položky.", + quickly_see_make_or_break_issues_description: + "Prohlédněte si vysoce prioritní pracovní položky pro každý cyklus vzhledem k termínům. Zobrazte všechny na jedno kliknutí.", + zoom_into_cycles_that_need_attention: "Zaměřte se na cykly vyžadující pozornost.", + zoom_into_cycles_that_need_attention_description: + "Prozkoumejte stav jakéhokoli cyklu, který nesplňuje očekávání, na jedno kliknutí.", + stay_ahead_of_blockers: "Předvídejte překážky.", + stay_ahead_of_blockers_description: + "Identifikujte problémy mezi projekty a zjistěte závislosti mezi cykly, které nejsou z jiných pohledů zřejmé.", + analytics: "Analytika", + workspace_invites: "Pozvánky do pracovního prostoru", + enter_god_mode: "Vstoupit do režimu boha", + workspace_logo: "Logo pracovního prostoru", + new_issue: "Nová pracovní položka", + your_work: "Vaše práce", + drafts: "Koncepty", + projects: "Projekty", + views: "Pohledy", + workspace: "Pracovní prostor", + archives: "Archivy", + settings: "Nastavení", + failed_to_move_favorite: "Přesunutí oblíbeného se nezdařilo", + favorites: "Oblíbené", + no_favorites_yet: "Zatím žádné oblíbené", + create_folder: "Vytvořit složku", + new_folder: "Nová složka", + favorite_updated_successfully: "Oblíbené úspěšně aktualizováno", + favorite_created_successfully: "Oblíbené úspěšně vytvořeno", + folder_already_exists: "Složka již existuje", + folder_name_cannot_be_empty: "Název složky nemůže být prázdný", + something_went_wrong: "Něco se pokazilo", + failed_to_reorder_favorite: "Změna pořadí oblíbeného se nezdařila", + favorite_removed_successfully: "Oblíbené úspěšně odstraněno", + failed_to_create_favorite: "Vytvoření oblíbeného se nezdařilo", + failed_to_rename_favorite: "Přejmenování oblíbeného se nezdařilo", + project_link_copied_to_clipboard: "Odkaz na projekt zkopírován do schránky", + link_copied: "Odkaz zkopírován", + add_project: "Přidat projekt", + create_project: "Vytvořit projekt", + failed_to_remove_project_from_favorites: "Nepodařilo se odstranit projekt z oblíbených. Zkuste to prosím znovu.", + project_created_successfully: "Projekt úspěšně vytvořen", + project_created_successfully_description: + "Projekt byl úspěšně vytvořen. Nyní můžete začít přidávat pracovní položky.", + project_name_already_taken: "Název projektu už je zabraný.", + project_identifier_already_taken: "Identifikátor projektu už je zabraný.", + project_cover_image_alt: "Úvodní obrázek projektu", + name_is_required: "Název je povinný", + title_should_be_less_than_255_characters: "Název by měl být kratší než 255 znaků", + project_name: "Název projektu", + project_id_must_be_at_least_1_character: "ID projektu musí mít alespoň 1 znak", + project_id_must_be_at_most_5_characters: "ID projektu může mít maximálně 5 znaků", + project_id: "ID projektu", + project_id_tooltip_content: "Pomáhá jednoznačně identifikovat pracovní položky v projektu. Max. 5 znaků.", + description_placeholder: "Popis", + only_alphanumeric_non_latin_characters_allowed: "Jsou povoleny pouze alfanumerické a nelatinské znaky.", + project_id_is_required: "ID projektu je povinné", + project_id_allowed_char: "Jsou povoleny pouze alfanumerické a nelatinské znaky.", + project_id_min_char: "ID projektu musí mít alespoň 1 znak", + project_id_max_char: "ID projektu může mít maximálně 5 znaků", + project_description_placeholder: "Zadejte popis projektu", + select_network: "Vybrat síť", + lead: "Vedoucí", + date_range: "Rozsah dat", + private: "Soukromý", + public: "Veřejný", + accessible_only_by_invite: "Přístupné pouze na pozvání", + anyone_in_the_workspace_except_guests_can_join: "Kdokoli v pracovním prostoru kromě hostů se může připojit", + creating: "Vytváření", + creating_project: "Vytváření projektu", + adding_project_to_favorites: "Přidávání projektu do oblíbených", + project_added_to_favorites: "Projekt přidán do oblíbených", + couldnt_add_the_project_to_favorites: "Nepodařilo se přidat projekt do oblíbených. Zkuste to prosím znovu.", + removing_project_from_favorites: "Odebírání projektu z oblíbených", + project_removed_from_favorites: "Projekt odstraněn z oblíbených", + couldnt_remove_the_project_from_favorites: "Nepodařilo se odstranit projekt z oblíbených. Zkuste to prosím znovu.", + add_to_favorites: "Přidat do oblíbených", + remove_from_favorites: "Odebrat z oblíbených", + publish_project: "Publikovat projekt", + publish: "Publikovat", + copy_link: "Kopírovat odkaz", + leave_project: "Opustit projekt", + join_the_project_to_rearrange: "Připojte se k projektu pro změnu uspořádání", + drag_to_rearrange: "Přetáhněte pro uspořádání", + congrats: "Gratulujeme!", + open_project: "Otevřít projekt", + issues: "Pracovní položky", + cycles: "Cykly", + modules: "Moduly", + pages: "Stránky", + intake: "Příjem", + time_tracking: "Sledování času", + work_management: "Správa práce", + projects_and_issues: "Projekty a pracovní položky", + projects_and_issues_description: "Aktivujte nebo deaktivujte tyto funkce v projektu.", + cycles_description: + "Časově vymezte práci podle projektu a podle potřeby upravte období. Jeden cyklus může trvat 2 týdny, další jen 1 týden.", + modules_description: "Organizujte práci do podprojektů s vyhrazenými vedoucími a přiřazenými osobami.", + views_description: "Uložte vlastní řazení, filtry a možnosti zobrazení nebo je sdílejte se svým týmem.", + pages_description: "Vytvářejte a upravujte volně strukturovaný obsah – poznámky, dokumenty, cokoli.", + intake_description: "Umožněte nečlenům sdílet chyby, zpětnou vazbu a návrhy, aniž by narušili váš pracovní postup.", + time_tracking_description: "Zaznamenávejte čas strávený na pracovních položkách a projektech.", + work_management_description: "Spravujte svou práci a projekty snadno.", + documentation: "Dokumentace", + message_support: "Kontaktovat podporu", + contact_sales: "Kontaktovat prodej", + hyper_mode: "Hyper režim", + keyboard_shortcuts: "Klávesové zkratky", + whats_new: "Co je nového?", + version: "Verze", + we_are_having_trouble_fetching_the_updates: "Máme potíže s načítáním aktualizací.", + our_changelogs: "naše změnové protokoly", + for_the_latest_updates: "pro nejnovější aktualizace.", + please_visit: "Navštivte", + docs: "Dokumentace", + full_changelog: "Úplný změnový protokol", + support: "Podpora", + discord: "Discord", + powered_by_plane_pages: "Poháněno Plane Pages", + please_select_at_least_one_invitation: "Vyberte alespoň jednu pozvánku.", + please_select_at_least_one_invitation_description: + "Vyberte alespoň jednu pozvánku pro připojení k pracovnímu prostoru.", + we_see_that_someone_has_invited_you_to_join_a_workspace: "Vidíme, že vás někdo pozval do pracovního prostoru", + join_a_workspace: "Připojit se k pracovnímu prostoru", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Vidíme, že vás někdo pozval do pracovního prostoru", + join_a_workspace_description: "Připojit se k pracovnímu prostoru", + accept_and_join: "Přijmout a připojit se", + go_home: "Domů", + no_pending_invites: "Žádné čekající pozvánky", + you_can_see_here_if_someone_invites_you_to_a_workspace: "Zde uvidíte, pokud vás někdo pozve do pracovního prostoru", + back_to_home: "Zpět na domovskou stránku", + workspace_name: "název-pracovního-prostoru", + deactivate_your_account: "Deaktivovat váš účet", + deactivate_your_account_description: + "Po deaktivaci nebudete moci být přiřazeni k pracovním položkám a nebude vám účtován poplatek za pracovní prostor. Pro opětovnou aktivaci účtu budete potřebovat pozvánku do pracovního prostoru na tento e-mail.", + deactivating: "Deaktivace", + confirm: "Potvrdit", + confirming: "Potvrzování", + draft_created: "Koncept vytvořen", + issue_created_successfully: "Pracovní položka úspěšně vytvořena", + draft_creation_failed: "Vytvoření konceptu se nezdařilo", + issue_creation_failed: "Vytvoření pracovní položky se nezdařilo", + draft_issue: "Koncept pracovní položky", + issue_updated_successfully: "Pracovní položka úspěšně aktualizována", + issue_could_not_be_updated: "Aktualizace pracovní položky se nezdařila", + create_a_draft: "Vytvořit koncept", + save_to_drafts: "Uložit do konceptů", + save: "Uložit", + update: "Aktualizovat", + updating: "Aktualizace", + create_new_issue: "Vytvořit novou pracovní položku", + editor_is_not_ready_to_discard_changes: "Editor není připraven zahodit změny", + failed_to_move_issue_to_project: "Přesunutí pracovní položky do projektu se nezdařilo", + create_more: "Vytvořit více", + add_to_project: "Přidat do projektu", + discard: "Zahodit", + duplicate_issue_found: "Nalezena duplicitní pracovní položka", + duplicate_issues_found: "Nalezeny duplicitní pracovní položky", + no_matching_results: "Žádné odpovídající výsledky", + title_is_required: "Název je povinný", + title: "Název", + state: "Stav", + priority: "Priorita", + none: "Žádná", + urgent: "Naléhavá", + high: "Vysoká", + medium: "Střední", + low: "Nízká", + members: "Členové", + assignee: "Přiřazeno", + assignees: "Přiřazení", + you: "Vy", + labels: "Štítky", + create_new_label: "Vytvořit nový štítek", + start_date: "Datum začátku", + end_date: "Datum ukončení", + due_date: "Termín", + estimate: "Odhad", + change_parent_issue: "Změnit nadřazenou pracovní položku", + remove_parent_issue: "Odebrat nadřazenou pracovní položku", + add_parent: "Přidat nadřazenou", + loading_members: "Načítání členů", + view_link_copied_to_clipboard: "Odkaz na pohled zkopírován do schránky.", + required: "Povinné", + optional: "Volitelné", + Cancel: "Zrušit", + edit: "Upravit", + archive: "Archivovat", + restore: "Obnovit", + open_in_new_tab: "Otevřít v nové záložce", + delete: "Smazat", + deleting: "Mazání", + make_a_copy: "Vytvořit kopii", + move_to_project: "Přesunout do projektu", + good: "Dobrý", + morning: "ráno", + afternoon: "odpoledne", + evening: "večer", + show_all: "Zobrazit vše", + show_less: "Zobrazit méně", + no_data_yet: "Zatím žádná data", + syncing: "Synchronizace", + add_work_item: "Přidat pracovní položku", + advanced_description_placeholder: "Stiskněte '/' pro příkazy", + create_work_item: "Vytvořit pracovní položku", + attachments: "Přílohy", + declining: "Odmítání", + declined: "Odmítnuto", + decline: "Odmítnout", + unassigned: "Nepřiřazeno", + work_items: "Pracovní položky", + add_link: "Přidat odkaz", + points: "Body", + no_assignee: "Žádné přiřazení", + no_assignees_yet: "Zatím žádní přiřazení", + no_labels_yet: "Zatím žádné štítky", + ideal: "Ideální", + current: "Aktuální", + no_matching_members: "Žádní odpovídající členové", + leaving: "Opouštění", + removing: "Odebírání", + leave: "Opustit", + refresh: "Obnovit", + refreshing: "Obnovování", + refresh_status: "Obnovit stav", + prev: "Předchozí", + next: "Další", + re_generating: "Znovu generování", + re_generate: "Znovu generovat", + re_generate_key: "Znovu generovat klíč", + export: "Exportovat", + member: "{count, plural, one{# člen} few{# členové} other{# členů}}", + new_password_must_be_different_from_old_password: "Nové heslo musí být odlišné od starého hesla", + project_view: { + sort_by: { + created_at: "Vytvořeno dne", + updated_at: "Aktualizováno dne", + name: "Název", + }, + }, + toast: { + success: "Úspěch!", + error: "Chyba!", + }, + links: { + toasts: { + created: { + title: "Odkaz vytvořen", + message: "Odkaz byl úspěšně vytvořen", + }, + not_created: { + title: "Odkaz nebyl vytvořen", + message: "Odkaz se nepodařilo vytvořit", + }, + updated: { + title: "Odkaz aktualizován", + message: "Odkaz byl úspěšně aktualizován", + }, + not_updated: { + title: "Odkaz nebyl aktualizován", + message: "Odkaz se nepodařilo aktualizovat", + }, + removed: { + title: "Odkaz odstraněn", + message: "Odkaz byl úspěšně odstraněn", + }, + not_removed: { + title: "Odkaz nebyl odstraněn", + message: "Odkaz se nepodařilo odstranit", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Váš průvodce rychlým startem", + not_right_now: "Teď ne", + create_project: { + title: "Vytvořit projekt", + description: "Většina věcí začíná projektem v Plane.", + cta: "Začít", + }, + invite_team: { + title: "Pozvat tým", + description: "Spolupracujte s kolegy na tvorbě, dodávkách a správě.", + cta: "Pozvat je", + }, + configure_workspace: { + title: "Nastavte svůj pracovní prostor.", + description: "Aktivujte nebo deaktivujte funkce nebo jděte dále.", + cta: "Konfigurovat tento prostor", + }, + personalize_account: { + title: "Přizpůsobte si Plane.", + description: "Vyberte si obrázek, barvy a další.", + cta: "Personalizovat nyní", + }, + widgets: { + title: "Je ticho bez widgetů, zapněte je", + description: "Vypadá to, že všechny vaše widgety jsou vypnuté. Zapněte je\npro lepší zážitek!", + primary_button: { + text: "Spravovat widgety", + }, + }, + }, + quick_links: { + empty: "Uložte si odkazy na důležité věci, které chcete mít po ruce.", + add: "Přidat rychlý odkaz", + title: "Rychlý odkaz", + title_plural: "Rychlé odkazy", + }, + recents: { + title: "Nedávné", + empty: { + project: "Vaše nedávné projekty se zde zobrazí po návštěvě.", + page: "Vaše nedávné stránky se zde zobrazí po návštěvě.", + issue: "Vaše nedávné pracovní položky se zde zobrazí po návštěvě.", + default: "Zatím nemáte žádné nedávné položky.", + }, + filters: { + all: "Vše", + projects: "Projekty", + pages: "Stránky", + issues: "Úkoly", + }, + }, + new_at_plane: { + title: "Novinky v Plane", + }, + quick_tutorial: { + title: "Rychlý tutoriál", + }, + widget: { + reordered_successfully: "Widget úspěšně přesunut.", + reordering_failed: "Při přesouvání widgetu došlo k chybě.", + }, + manage_widgets: "Spravovat widgety", + title: "Domů", + star_us_on_github: "Ohodnoťte nás na GitHubu", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL je neplatná", + placeholder: "Zadejte nebo vložte URL", + }, + title: { + text: "Zobrazovaný název", + placeholder: "Jak chcete tento odkaz vidět", + }, + }, + }, + common: { + all: "Vše", + states: "Stavy", + state: "Stav", + state_groups: "Skupiny stavů", + state_group: "Skupina stavů", + priorities: "Priority", + priority: "Priorita", + team_project: "Týmový projekt", + project: "Projekt", + cycle: "Cyklus", + cycles: "Cykly", + module: "Modul", + modules: "Moduly", + labels: "Štítky", + label: "Štítek", + assignees: "Přiřazení", + assignee: "Přiřazeno", + created_by: "Vytvořil", + none: "Žádné", + link: "Odkaz", + estimates: "Odhady", + estimate: "Odhad", + created_at: "Vytvořeno dne", + completed_at: "Dokončeno dne", + layout: "Rozložení", + filters: "Filtry", + display: "Zobrazení", + load_more: "Načíst více", + activity: "Aktivita", + analytics: "Analytika", + dates: "Data", + success: "Úspěch!", + something_went_wrong: "Něco se pokazilo", + error: { + label: "Chyba!", + message: "Došlo k chybě. Zkuste to prosím znovu.", + }, + group_by: "Seskupit podle", + epic: "Epika", + epics: "Epiky", + work_item: "Pracovní položka", + work_items: "Pracovní položky", + sub_work_item: "Podřízená pracovní položka", + add: "Přidat", + warning: "Varování", + updating: "Aktualizace", + adding: "Přidávání", + update: "Aktualizovat", + creating: "Vytváření", + create: "Vytvořit", + cancel: "Zrušit", + description: "Popis", + title: "Název", + attachment: "Příloha", + general: "Obecné", + features: "Funkce", + automation: "Automatizace", + project_name: "Název projektu", + project_id: "ID projektu", + project_timezone: "Časové pásmo projektu", + created_on: "Vytvořeno dne", + update_project: "Aktualizovat projekt", + identifier_already_exists: "Identifikátor již existuje", + add_more: "Přidat více", + defaults: "Výchozí", + add_label: "Přidat štítek", + customize_time_range: "Přizpůsobit časový rozsah", + loading: "Načítání", + attachments: "Přílohy", + property: "Vlastnost", + properties: "Vlastnosti", + parent: "Nadřazený", + page: "Stránka", + remove: "Odebrat", + archiving: "Archivace", + archive: "Archivovat", + access: { + public: "Veřejný", + private: "Soukromý", + }, + done: "Hotovo", + sub_work_items: "Podřízené pracovní položky", + comment: "Komentář", + workspace_level: "Úroveň pracovního prostoru", + order_by: { + label: "Řadit podle", + manual: "Ručně", + last_created: "Naposledy vytvořené", + last_updated: "Naposledy aktualizované", + start_date: "Datum začátku", + due_date: "Termín", + asc: "Vzestupně", + desc: "Sestupně", + updated_on: "Aktualizováno dne", + }, + sort: { + asc: "Vzestupně", + desc: "Sestupně", + created_on: "Vytvořeno dne", + updated_on: "Aktualizováno dne", + }, + comments: "Komentáře", + updates: "Aktualizace", + clear_all: "Vymazat vše", + copied: "Zkopírováno!", + link_copied: "Odkaz zkopírován!", + link_copied_to_clipboard: "Odkaz zkopírován do schránky", + copied_to_clipboard: "Odkaz na pracovní položku zkopírován do schránky", + is_copied_to_clipboard: "Pracovní položka zkopírována do schránky", + no_links_added_yet: "Zatím nejsou přidány žádné odkazy", + add_link: "Přidat odkaz", + links: "Odkazy", + go_to_workspace: "Přejít do pracovního prostoru", + progress: "Pokrok", + optional: "Volitelné", + join: "Připojit se", + go_back: "Zpět", + continue: "Pokračovat", + resend: "Znovu odeslat", + relations: "Vztahy", + errors: { + default: { + title: "Chyba!", + message: "Něco se pokazilo. Zkuste to prosím znovu.", + }, + required: "Toto pole je povinné", + entity_required: "{entity} je povinná", + restricted_entity: "{entity} je omezen", + }, + update_link: "Aktualizovat odkaz", + attach: "Připojit", + create_new: "Vytvořit nový", + add_existing: "Přidat existující", + type_or_paste_a_url: "Zadejte nebo vložte URL", + url_is_invalid: "URL je neplatná", + display_title: "Zobrazovaný název", + link_title_placeholder: "Jak chcete tento odkaz vidět", + url: "URL", + side_peek: "Postranní náhled", + modal: "Modální okno", + full_screen: "Celá obrazovka", + close_peek_view: "Zavřít náhled", + toggle_peek_view_layout: "Přepnout rozložení náhledu", + options: "Možnosti", + duration: "Trvání", + today: "Dnes", + week: "Týden", + month: "Měsíc", + quarter: "Čtvrtletí", + press_for_commands: "Stiskněte '/' pro příkazy", + click_to_add_description: "Klikněte pro přidání popisu", + search: { + label: "Hledat", + placeholder: "Zadejte hledaný výraz", + no_matches_found: "Nenalezeny žádné shody", + no_matching_results: "Žádné odpovídající výsledky", + }, + actions: { + edit: "Upravit", + make_a_copy: "Vytvořit kopii", + open_in_new_tab: "Otevřít v nové záložce", + copy_link: "Kopírovat odkaz", + archive: "Archivovat", + restore: "Obnovit", + delete: "Smazat", + remove_relation: "Odebrat vztah", + subscribe: "Odebírat", + unsubscribe: "Zrušit odběr", + clear_sorting: "Vymazat řazení", + show_weekends: "Zobrazit víkendy", + enable: "Povolit", + disable: "Zakázat", + }, + name: "Název", + discard: "Zahodit", + confirm: "Potvrdit", + confirming: "Potvrzování", + read_the_docs: "Přečtěte si dokumentaci", + default: "Výchozí", + active: "Aktivní", + enabled: "Povoleno", + disabled: "Zakázáno", + mandate: "Mandát", + mandatory: "Povinné", + yes: "Ano", + no: "Ne", + please_wait: "Prosím čekejte", + enabling: "Povolování", + disabling: "Zakazování", + beta: "Beta", + or: "nebo", + next: "Další", + back: "Zpět", + cancelling: "Rušení", + configuring: "Konfigurace", + clear: "Vymazat", + import: "Importovat", + connect: "Připojit", + authorizing: "Autorizace", + processing: "Zpracování", + no_data_available: "Nejsou k dispozici žádná data", + from: "od {name}", + authenticated: "Ověřeno", + select: "Vybrat", + upgrade: "Upgradovat", + add_seats: "Přidat místa", + projects: "Projekty", + workspace: "Pracovní prostor", + workspaces: "Pracovní prostory", + team: "Tým", + teams: "Týmy", + entity: "Entita", + entities: "Entity", + task: "Úkol", + tasks: "Úkoly", + section: "Sekce", + sections: "Sekce", + edit: "Upravit", + connecting: "Připojování", + connected: "Připojeno", + disconnect: "Odpojit", + disconnecting: "Odpojování", + installing: "Instalace", + install: "Nainstalovat", + reset: "Resetovat", + live: "Živě", + change_history: "Historie změn", + coming_soon: "Již brzy", + member: "Člen", + members: "Členové", + you: "Vy", + upgrade_cta: { + higher_subscription: "Upgradovat na vyšší předplatné", + talk_to_sales: "Promluvte si s prodejem", + }, + category: "Kategorie", + categories: "Kategorie", + saving: "Ukládání", + save_changes: "Uložit změny", + delete: "Smazat", + deleting: "Mazání", + pending: "Čekající", + invite: "Pozvat", + view: "Pohled", + deactivated_user: "Deaktivovaný uživatel", + apply: "Použít", + applying: "Používání", + users: "Uživatelé", + admins: "Administrátoři", + guests: "Hosté", + on_track: "Na správné cestě", + off_track: "Mimo plán", + at_risk: "V ohrožení", + timeline: "Časová osa", + completion: "Dokončení", + upcoming: "Nadcházející", + completed: "Dokončeno", + in_progress: "Probíhá", + planned: "Plánováno", + paused: "Pozastaveno", + no_of: "Počet {entity}", + resolved: "Vyřešeno", + }, + chart: { + x_axis: "Osa X", + y_axis: "Osa Y", + metric: "Metrika", + }, + form: { + title: { + required: "Název je povinný", + max_length: "Název by měl být kratší než {length} znaků", + }, + }, + entity: { + grouping_title: "Seskupení {entity}", + priority: "Priorita {entity}", + all: "Všechny {entity}", + drop_here_to_move: "Přetáhněte sem pro přesunutí {entity}", + delete: { + label: "Smazat {entity}", + success: "{entity} úspěšně smazána", + failed: "Mazání {entity} se nezdařilo", + }, + update: { + failed: "Aktualizace {entity} se nezdařila", + success: "{entity} úspěšně aktualizována", + }, + link_copied_to_clipboard: "Odkaz na {entity} zkopírován do schránky", + fetch: { + failed: "Chyba při načítání {entity}", + }, + add: { + success: "{entity} úspěšně přidána", + failed: "Chyba při přidávání {entity}", + }, + remove: { + success: "{entity} úspěšně odebrána", + failed: "Chyba při odebírání {entity}", + }, + }, + epic: { + all: "Všechny epiky", + label: "{count, plural, one {Epik} other {Epiky}}", + new: "Nový epik", + adding: "Přidávám epik", + create: { + success: "Epik úspěšně vytvořen", + }, + add: { + press_enter: "Pro přidání dalšího epiku stiskněte 'Enter'", + label: "Přidat epik", + }, + title: { + label: "Název epiku", + required: "Název epiku je povinný.", + }, + }, + issue: { + label: "{count, plural, one {Pracovní položka} few {Pracovní položky} other {Pracovních položek}}", + all: "Všechny pracovní položky", + edit: "Upravit pracovní položku", + title: { + label: "Název pracovní položky", + required: "Název pracovní položky je povinný.", + }, + add: { + press_enter: "Stiskněte 'Enter' pro přidání další pracovní položky", + label: "Přidat pracovní položku", + cycle: { + failed: "Přidání pracovní položky do cyklu se nezdařilo. Zkuste to prosím znovu.", + success: + "{count, plural, one {Pracovní položka} few {Pracovní položky} other {Pracovních položek}} přidána do cyklu.", + loading: + "Přidávání {count, plural, one {pracovní položky} few {pracovních položek} other {pracovních položek}} do cyklu", + }, + assignee: "Přidat přiřazené", + start_date: "Přidat datum začátku", + due_date: "Přidat termín", + parent: "Přidat nadřazenou pracovní položku", + sub_issue: "Přidat podřízenou pracovní položku", + relation: "Přidat vztah", + link: "Přidat odkaz", + existing: "Přidat existující pracovní položku", + }, + remove: { + label: "Odebrat pracovní položku", + cycle: { + loading: "Odebírání pracovní položky z cyklu", + success: "Pracovní položka odebrána z cyklu.", + failed: "Odebrání pracovní položky z cyklu se nezdařilo. Zkuste to prosím znovu.", + }, + module: { + loading: "Odebírání pracovní položky z modulu", + success: "Pracovní položka odebrána z modulu.", + failed: "Odebrání pracovní položky z modulu se nezdařilo. Zkuste to prosím znovu.", + }, + parent: { + label: "Odebrat nadřazenou pracovní položku", + }, + }, + new: "Nová pracovní položka", + adding: "Přidávání pracovní položky", + create: { + success: "Pracovní položka úspěšně vytvořena", + }, + priority: { + urgent: "Naléhavá", + high: "Vysoká", + medium: "Střední", + low: "Nízká", + }, + display: { + properties: { + label: "Zobrazované vlastnosti", + id: "ID", + issue_type: "Typ pracovní položky", + sub_issue_count: "Počet podřízených položek", + attachment_count: "Počet příloh", + created_on: "Vytvořeno dne", + sub_issue: "Podřízená položka", + work_item_count: "Počet pracovních položek", + }, + extra: { + show_sub_issues: "Zobrazit podřízené položky", + show_empty_groups: "Zobrazit prázdné skupiny", + }, + }, + layouts: { + ordered_by_label: "Toto rozložení je řazeno podle", + list: "Seznam", + kanban: "Nástěnka", + calendar: "Kalendář", + spreadsheet: "Tabulka", + gantt: "Časová osa", + title: { + list: "Seznamové rozložení", + kanban: "Nástěnkové rozložení", + calendar: "Kalendářové rozložení", + spreadsheet: "Tabulkové rozložení", + gantt: "Rozložení časové osy", + }, + }, + states: { + active: "Aktivní", + backlog: "Backlog", + }, + comments: { + placeholder: "Přidat komentář", + switch: { + private: "Přepnout na soukromý komentář", + public: "Přepnout na veřejný komentář", + }, + create: { + success: "Komentář úspěšně vytvořen", + error: "Vytvoření komentáře se nezdařilo. Zkuste to prosím později.", + }, + update: { + success: "Komentář úspěšně aktualizován", + error: "Aktualizace komentáře se nezdařila. Zkuste to prosím později.", + }, + remove: { + success: "Komentář úspěšně odstraněn", + error: "Odstranění komentáře se nezdařilo. Zkuste to prosím později.", + }, + upload: { + error: "Nahrání přílohy se nezdařilo. Zkuste to prosím později.", + }, + copy_link: { + success: "Odkaz na komentář byl zkopírován do schránky", + error: "Chyba při kopírování odkazu na komentář. Zkuste to prosím později.", + }, + }, + empty_state: { + issue_detail: { + title: "Pracovní položka neexistuje", + description: "Pracovní položka, kterou hledáte, neexistuje, byla archivována nebo smazána.", + primary_button: { + text: "Zobrazit další pracovní položky", + }, + }, + }, + sibling: { + label: "Související pracovní položky", + }, + archive: { + description: "Lze archivovat pouze dokončené nebo zrušené\npracovní položky", + label: "Archivovat pracovní položku", + confirm_message: + "Opravdu chcete archivovat tuto pracovní položku? Všechny archivované položky lze později obnovit.", + success: { + label: "Archivace úspěšná", + message: "Vaše archivy najdete v archivech projektu.", + }, + failed: { + message: "Archivace pracovní položky se nezdařila. Zkuste to prosím znovu.", + }, + }, + restore: { + success: { + title: "Obnovení úspěšné", + message: "Vaše pracovní položka je k nalezení v pracovních položkách projektu.", + }, + failed: { + message: "Obnovení pracovní položky se nezdařilo. Zkuste to prosím znovu.", + }, + }, + relation: { + relates_to: "Související s", + duplicate: "Duplikát", + blocked_by: "Blokováno", + blocking: "Blokující", + }, + copy_link: "Kopírovat odkaz na pracovní položku", + delete: { + label: "Smazat pracovní položku", + error: "Chyba při mazání pracovní položky", + }, + subscription: { + actions: { + subscribed: "Pracovní položka úspěšně přihlášena k odběru", + unsubscribed: "Odběr pracovní položky zrušen", + }, + }, + select: { + error: "Vyberte alespoň jednu pracovní položku", + empty: "Nevybrány žádné pracovní položky", + add_selected: "Přidat vybrané pracovní položky", + select_all: "Vybrat vše", + deselect_all: "Zrušit výběr všeho", + }, + open_in_full_screen: "Otevřít pracovní položku na celou obrazovku", + }, + attachment: { + error: "Soubor nelze připojit. Zkuste to prosím znovu.", + only_one_file_allowed: "Je možné nahrát pouze jeden soubor najednou.", + file_size_limit: "Soubor musí být menší než {size}MB.", + drag_and_drop: "Přetáhněte soubor kamkoli pro nahrání", + delete: "Smazat přílohu", + }, + label: { + select: "Vybrat štítek", + create: { + success: "Štítek úspěšně vytvořen", + failed: "Vytvoření štítku se nezdařilo", + already_exists: "Štítek již existuje", + type: "Zadejte pro vytvoření nového štítku", + }, + }, + sub_work_item: { + update: { + success: "Podřízená pracovní položka úspěšně aktualizována", + error: "Chyba při aktualizaci podřízené položky", + }, + remove: { + success: "Podřízená pracovní položka úspěšně odebrána", + error: "Chyba při odebírání podřízené položky", + }, + empty_state: { + sub_list_filters: { + title: "Nemáte podřízené pracovní položky, které odpovídají použitým filtrům.", + description: "Chcete-li zobrazit všechny podřízené pracovní položky, odstraňte všechny použité filtry.", + action: "Odstranit filtry", + }, + list_filters: { + title: "Nemáte pracovní položky, které odpovídají použitým filtrům.", + description: "Chcete-li zobrazit všechny pracovní položky, odstraňte všechny použité filtry.", + action: "Odstranit filtry", + }, + }, + }, + view: { + label: "{count, plural, one {Pohled} few {Pohledy} other {Pohledů}}", + create: { + label: "Vytvořit pohled", + }, + update: { + label: "Aktualizovat pohled", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Čekající", + description: "Čekající", + }, + declined: { + title: "Odmítnuto", + description: "Odmítnuto", + }, + snoozed: { + title: "Odloženo", + description: "Zbývá {days, plural, one{# den} few{# dny} other{# dnů}}", + }, + accepted: { + title: "Přijato", + description: "Přijato", + }, + duplicate: { + title: "Duplikát", + description: "Duplikát", + }, + }, + modals: { + decline: { + title: "Odmítnout pracovní položku", + content: "Opravdu chcete odmítnout pracovní položku {value}?", + }, + delete: { + title: "Smazat pracovní položku", + content: "Opravdu chcete smazat pracovní položku {value}?", + success: "Pracovní položka úspěšně smazána", + }, + }, + errors: { + snooze_permission: "Pouze správci projektu mohou odkládat/zrušit odložení pracovních položek", + accept_permission: "Pouze správci projektu mohou přijímat pracovní položky", + decline_permission: "Pouze správci projektu mohou odmítnout pracovní položky", + }, + actions: { + accept: "Přijmout", + decline: "Odmítnout", + snooze: "Odložit", + unsnooze: "Zrušit odložení", + copy: "Kopírovat odkaz na pracovní položku", + delete: "Smazat", + open: "Otevřít pracovní položku", + mark_as_duplicate: "Označit jako duplikát", + move: "Přesunout {value} do pracovních položek projektu", + }, + source: { + "in-app": "v aplikaci", + }, + order_by: { + created_at: "Vytvořeno dne", + updated_at: "Aktualizováno dne", + id: "ID", + }, + label: "Příjem", + page_label: "{workspace} - Příjem", + modal: { + title: "Vytvořit přijatou pracovní položku", + }, + tabs: { + open: "Otevřené", + closed: "Uzavřené", + }, + empty_state: { + sidebar_open_tab: { + title: "Žádné otevřené pracovní položky", + description: "Zde najdete otevřené pracovní položky. Vytvořte novou.", + }, + sidebar_closed_tab: { + title: "Žádné uzavřené pracovní položky", + description: "Všechny přijaté nebo odmítnuté pracovní položky najdete zde.", + }, + sidebar_filter: { + title: "Žádné odpovídající pracovní položky", + description: "Žádná položka neodpovídá filtru v příjmu. Vytvořte novou.", + }, + detail: { + title: "Vyberte pracovní položku pro zobrazení podrobností.", + }, + }, + }, + workspace_creation: { + heading: "Vytvořte si pracovní prostor", + subheading: "Pro používání Plane musíte vytvořit nebo se připojit k pracovnímu prostoru.", + form: { + name: { + label: "Pojmenujte svůj pracovní prostor", + placeholder: "Vhodné je použít něco známého a rozpoznatelného.", + }, + url: { + label: "Nastavte URL vašeho prostoru", + placeholder: "Zadejte nebo vložte URL", + edit_slug: "Můžete upravit pouze část URL (slug)", + }, + organization_size: { + label: "Kolik lidí bude tento prostor používat?", + placeholder: "Vyberte rozsah", + }, + }, + errors: { + creation_disabled: { + title: "Pouze správce instance může vytvářet pracovní prostory", + description: "Pokud znáte e-mail správce instance, klikněte na tlačítko níže pro kontakt.", + request_button: "Požádat správce instance", + }, + validation: { + name_alphanumeric: "Názvy pracovních prostorů mohou obsahovat pouze (' '), ('-'), ('_') a alfanumerické znaky.", + name_length: "Název omezen na 80 znaků.", + url_alphanumeric: "URL mohou obsahovat pouze ('-') a alfanumerické znaky.", + url_length: "URL omezena na 48 znaků.", + url_already_taken: "URL pracovního prostoru je již obsazena!", + }, + }, + request_email: { + subject: "Žádost o nový pracovní prostor", + body: "Ahoj správci,\n\nProsím vytvořte nový pracovní prostor s URL [/workspace-name] pro [účel vytvoření].\n\nDíky,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Vytvořit pracovní prostor", + loading: "Vytváření pracovního prostoru", + }, + toast: { + success: { + title: "Úspěch", + message: "Pracovní prostor úspěšně vytvořen", + }, + error: { + title: "Chyba", + message: "Vytvoření pracovního prostoru se nezdařilo. Zkuste to prosím znovu.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Přehled projektů, aktivit a metrik", + description: + "Vítejte v Plane, jsme rádi, že jste zde. Vytvořte první projekt, sledujte pracovní položky a tato stránka se promění v prostor pro váš pokrok. Správci zde uvidí i položky pomáhající týmu.", + primary_button: { + text: "Vytvořte první projekt", + comic: { + title: "Vše začíná projektem v Plane", + description: "Projektem může být roadmapa produktu, marketingová kampaň nebo uvedení nového auta.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analytika", + page_label: "{workspace} - Analytika", + open_tasks: "Celkem otevřených úkolů", + error: "Při načítání dat došlo k chybě.", + work_items_closed_in: "Pracovní položky uzavřené v", + selected_projects: "Vybrané projekty", + total_members: "Celkem členů", + total_cycles: "Celkem cyklů", + total_modules: "Celkem modulů", + pending_work_items: { + title: "Čekající pracovní položky", + empty_state: "Zde se zobrazí analýza čekajících položek podle spolupracovníků.", + }, + work_items_closed_in_a_year: { + title: "Pracovní položky uzavřené v roce", + empty_state: "Uzavírejte položky pro zobrazení analýzy v grafu.", + }, + most_work_items_created: { + title: "Nejvíce vytvořených položek", + empty_state: "Zobrazí se spolupracovníci a počet jimi vytvořených položek.", + }, + most_work_items_closed: { + title: "Nejvíce uzavřených položek", + empty_state: "Zobrazí se spolupracovníci a počet jimi uzavřených položek.", + }, + tabs: { + scope_and_demand: "Rozsah a poptávka", + custom: "Vlastní analytika", + }, + empty_state: { + customized_insights: { + description: "Pracovní položky přiřazené vám, rozdělené podle stavu, se zde zobrazí.", + title: "Zatím žádná data", + }, + created_vs_resolved: { + description: "Pracovní položky vytvořené a vyřešené v průběhu času se zde zobrazí.", + title: "Zatím žádná data", + }, + project_insights: { + title: "Zatím žádná data", + description: "Pracovní položky přiřazené vám, rozdělené podle stavu, se zde zobrazí.", + }, + general: { + title: "Sledujte pokrok, pracovní zátěž a alokace. Odhalte trendy, odstraňte překážky a zrychlete práci", + description: + "Porovnávejte rozsah s poptávkou, odhady a rozšiřování rozsahu. Získejte výkonnost podle členů týmu a týmů a zajistěte, aby váš projekt běžel včas.", + primary_button: { + text: "Začněte svůj první projekt", + comic: { + title: "Analytika funguje nejlépe s Cykly + Moduly", + description: + "Nejprve časově ohraničte své problémy do Cyklů a pokud můžete, seskupte problémy, které trvají déle než jeden cyklus, do Modulů. Podívejte se na obojí v levé navigaci.", + }, + }, + }, + }, + created_vs_resolved: "Vytvořeno vs Vyřešeno", + customized_insights: "Přizpůsobené přehledy", + backlog_work_items: "Backlog {entity}", + active_projects: "Aktivní projekty", + trend_on_charts: "Trend na grafech", + all_projects: "Všechny projekty", + summary_of_projects: "Souhrn projektů", + project_insights: "Přehled projektu", + started_work_items: "Zahájené {entity}", + total_work_items: "Celkový počet {entity}", + total_projects: "Celkový počet projektů", + total_admins: "Celkový počet administrátorů", + total_users: "Celkový počet uživatelů", + total_intake: "Celkový příjem", + un_started_work_items: "Nezahájené {entity}", + total_guests: "Celkový počet hostů", + completed_work_items: "Dokončené {entity}", + total: "Celkový počet {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Projekt} few {Projekty} other {Projektů}}", + create: { + label: "Přidat projekt", + }, + network: { + label: "Síť", + private: { + title: "Soukromý", + description: "Přístupné pouze na pozvání", + }, + public: { + title: "Veřejný", + description: "Kdokoli v prostoru kromě hostů se může připojit", + }, + }, + error: { + permission: "Nemáte oprávnění k této akci.", + cycle_delete: "Odstranění cyklu se nezdařilo", + module_delete: "Odstranění modulu se nezdařilo", + issue_delete: "Odstranění pracovní položky se nezdařilo", + }, + state: { + backlog: "Backlog", + unstarted: "Nezačato", + started: "Zahájeno", + completed: "Dokončeno", + cancelled: "Zrušeno", + }, + sort: { + manual: "Ručně", + name: "Název", + created_at: "Datum vytvoření", + members_length: "Počet členů", + }, + scope: { + my_projects: "Moje projekty", + archived_projects: "Archivované", + }, + common: { + months_count: "{months, plural, one{# měsíc} few{# měsíce} other{# měsíců}}", + }, + empty_state: { + general: { + title: "Žádné aktivní projekty", + description: + "Projekt je nadřazený cílům. Projekty obsahují Úkoly, Cykly a Moduly. Vytvořte nový nebo filtrujte archivované.", + primary_button: { + text: "Začněte první projekt", + comic: { + title: "Vše začíná projektem v Plane", + description: "Projektem může být roadmapa produktu, marketingová kampaň nebo uvedení nového auta.", + }, + }, + }, + no_projects: { + title: "Žádné projekty", + description: "Pro vytváření pracovních položek potřebujete vytvořit nebo být součástí projektu.", + primary_button: { + text: "Začněte první projekt", + comic: { + title: "Vše začíná projektem v Plane", + description: "Projektem může být roadmapa produktu, marketingová kampaň nebo uvedení nového auta.", + }, + }, + }, + filter: { + title: "Žádné odpovídající projekty", + description: "Nenalezeny projekty odpovídající kritériím. \n Vytvořte nový.", + }, + search: { + description: "Nenalezeny projekty odpovídající kritériím.\nVytvořte nový.", + }, + }, + }, + workspace_views: { + add_view: "Přidat pohled", + empty_state: { + "all-issues": { + title: "Žádné pracovní položky v projektu", + description: "Vytvořte první položku a sledujte svůj pokrok!", + primary_button: { + text: "Vytvořit pracovní položku", + }, + }, + assigned: { + title: "Žádné přiřazené položky", + description: "Zde uvidíte položky přiřazené vám.", + primary_button: { + text: "Vytvořit pracovní položku", + }, + }, + created: { + title: "Žádné vytvořené položky", + description: "Zde jsou položky, které jste vytvořili.", + primary_button: { + text: "Vytvořit pracovní položku", + }, + }, + subscribed: { + title: "Žádné odebírané položky", + description: "Přihlaste se k odběru položek, které vás zajímají.", + }, + "custom-view": { + title: "Žádné odpovídající položky", + description: "Zobrazí se položky odpovídající filtru.", + }, + }, + }, + workspace_settings: { + label: "Nastavení pracovního prostoru", + page_label: "{workspace} - Obecná nastavení", + key_created: "Klíč vytvořen", + copy_key: + "Zkopírujte a uložte tento klíč do Plane Pages. Po zavření jej neuvidíte. CSV soubor s klíčem byl stažen.", + token_copied: "Token zkopírován do schránky.", + settings: { + general: { + title: "Obecné", + upload_logo: "Nahrát logo", + edit_logo: "Upravit logo", + name: "Název pracovního prostoru", + company_size: "Velikost společnosti", + url: "URL pracovního prostoru", + update_workspace: "Aktualizovat prostor", + delete_workspace: "Smazat tento prostor", + delete_workspace_description: "Smazáním prostoru odstraníte všechna data a zdroje. Akce je nevratná.", + delete_btn: "Smazat prostor", + delete_modal: { + title: "Opravdu chcete smazat tento prostor?", + description: "Máte aktivní zkušební verzi. Nejprve ji zrušte.", + dismiss: "Zavřít", + cancel: "Zrušit zkušební verzi", + success_title: "Prostor smazán.", + success_message: "Budete přesměrováni na profil.", + error_title: "Nepodařilo se.", + error_message: "Zkuste to prosím znovu.", + }, + errors: { + name: { + required: "Název je povinný", + max_length: "Název prostoru nesmí přesáhnout 80 znaků", + }, + company_size: { + required: "Velikost společnosti je povinná", + select_a_range: "Vyberte velikost organizace", + }, + }, + }, + members: { + title: "Členové", + add_member: "Přidat člena", + pending_invites: "Čekající pozvánky", + invitations_sent_successfully: "Pozvánky úspěšně odeslány", + leave_confirmation: "Opravdu chcete opustit prostor? Ztratíte přístup. Akce je nevratná.", + details: { + full_name: "Celé jméno", + display_name: "Zobrazované jméno", + email_address: "E-mailová adresa", + account_type: "Typ účtu", + authentication: "Ověřování", + joining_date: "Datum připojení", + }, + modal: { + title: "Pozvat spolupracovníky", + description: "Pozvěte lidi ke spolupráci.", + button: "Odeslat pozvánky", + button_loading: "Odesílání pozvánek", + placeholder: "jmeno@spolecnost.cz", + errors: { + required: "Vyžaduje se e-mailová adresa.", + invalid: "E-mail je neplatný", + }, + }, + }, + billing_and_plans: { + title: "Fakturace a plány", + current_plan: "Aktuální plán", + free_plan: "Používáte bezplatný plán", + view_plans: "Zobrazit plány", + }, + exports: { + title: "Exporty", + exporting: "Exportování", + previous_exports: "Předchozí exporty", + export_separate_files: "Exportovat data do samostatných souborů", + modal: { + title: "Exportovat do", + toasts: { + success: { + title: "Export úspěšný", + message: "Exportované {entity} si můžete stáhnout z předchozího exportu.", + }, + error: { + title: "Export selhal", + message: "Zkuste to prosím znovu.", + }, + }, + }, + }, + webhooks: { + title: "Webhooky", + add_webhook: "Přidat webhook", + modal: { + title: "Vytvořit webhook", + details: "Podrobnosti webhooku", + payload: "URL pro payload", + question: "Které události mají spustit tento webhook?", + error: "URL je povinná", + }, + secret_key: { + title: "Tajný klíč", + message: "Vygenerujte token pro přihlášení k webhooku", + }, + options: { + all: "Posílat vše", + individual: "Vybrat jednotlivé události", + }, + toasts: { + created: { + title: "Webhook vytvořen", + message: "Webhook úspěšně vytvořen", + }, + not_created: { + title: "Webhook nebyl vytvořen", + message: "Vytvoření webhooku se nezdařilo", + }, + updated: { + title: "Webhook aktualizován", + message: "Webhook úspěšně aktualizován", + }, + not_updated: { + title: "Aktualizace webhooku selhala", + message: "Webhook se nepodařilo aktualizovat", + }, + removed: { + title: "Webhook odstraněn", + message: "Webhook úspěšně odstraněn", + }, + not_removed: { + title: "Odstranění webhooku selhalo", + message: "Webhook se nepodařilo odstranit", + }, + secret_key_copied: { + message: "Tajný klíč zkopírován do schránky.", + }, + secret_key_not_copied: { + message: "Chyba při kopírování klíče.", + }, + }, + }, + api_tokens: { + title: "API Tokeny", + add_token: "Přidat API token", + create_token: "Vytvořit token", + never_expires: "Nikdy neexpiruje", + generate_token: "Generovat token", + generating: "Generování", + delete: { + title: "Smazat API token", + description: "Aplikace používající tento token ztratí přístup. Akce je nevratná.", + success: { + title: "Úspěch!", + message: "Token úspěšně smazán", + }, + error: { + title: "Chyba!", + message: "Mazání tokenu selhalo", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Žádné API tokeny", + description: "Používejte API pro integraci Plane s externími systémy.", + }, + webhooks: { + title: "Žádné webhooky", + description: "Vytvořte webhooky pro automatizaci akcí.", + }, + exports: { + title: "Žádné exporty", + description: "Zde najdete historii exportů.", + }, + imports: { + title: "Žádné importy", + description: "Zde najdete historii importů.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Vaše práce", + work: "Práce", + details: { + joined_on: "Připojeno dne", + time_zone: "Časové pásmo", + }, + stats: { + workload: "Vytížení", + overview: "Přehled", + created: "Vytvořené položky", + assigned: "Přiřazené položky", + subscribed: "Odebírané položky", + state_distribution: { + title: "Položky podle stavu", + empty: "Vytvářejte položky pro analýzu stavů.", + }, + priority_distribution: { + title: "Položky podle priority", + empty: "Vytvářejte položky pro analýzu priorit.", + }, + recent_activity: { + title: "Nedávná aktivita", + empty: "Nenalezena žádná aktivita.", + button: "Stáhnout dnešní aktivitu", + button_loading: "Stahování", + }, + }, + actions: { + profile: "Profil", + security: "Zabezpečení", + activity: "Aktivita", + appearance: "Vzhled", + notifications: "Oznámení", + }, + tabs: { + summary: "Shrnutí", + assigned: "Přiřazeno", + created: "Vytvořeno", + subscribed: "Odebíráno", + activity: "Aktivita", + }, + empty_state: { + activity: { + title: "Žádná aktivita", + description: "Vytvořte pracovní položku pro začátek.", + }, + assigned: { + title: "Žádné přiřazené pracovní položky", + description: "Zde uvidíte přiřazené pracovní položky.", + }, + created: { + title: "Žádné vytvořené pracovní položky", + description: "Zde jsou pracovní položky, které jste vytvořili.", + }, + subscribed: { + title: "Žádné odebírané pracovní položky", + description: "Odebírejte pracovní položky, které vás zajímají, a sledujte je zde.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Zadejte ID projektu", + please_select_a_timezone: "Vyberte časové pásmo", + archive_project: { + title: "Archivovat projekt", + description: "Archivace skryje projekt z menu. Přístup zůstane přes stránku projektů.", + button: "Archivovat projekt", + }, + delete_project: { + title: "Smazat projekt", + description: "Smazáním projektu odstraníte všechna data. Akce je nevratná.", + button: "Smazat projekt", + }, + toast: { + success: "Projekt aktualizován", + error: "Aktualizace se nezdařila. Zkuste to znovu.", + }, + }, + members: { + label: "Členové", + project_lead: "Vedoucí projektu", + default_assignee: "Výchozí přiřazení", + guest_super_permissions: { + title: "Udělit hostům přístup ke všem položkám:", + sub_heading: "Hosté uvidí všechny položky v projektu.", + }, + invite_members: { + title: "Pozvat členy", + sub_heading: "Pozvěte členy do projektu.", + select_co_worker: "Vybrat spolupracovníka", + }, + }, + states: { + describe_this_state_for_your_members: "Popište tento stav členům.", + empty_state: { + title: "Žádné stavy pro skupinu {groupKey}", + description: "Vytvořte nový stav", + }, + }, + labels: { + label_title: "Název štítku", + label_title_is_required: "Název štítku je povinný", + label_max_char: "Název štítku nesmí přesáhnout 255 znaků", + toast: { + error: "Chyba při aktualizaci štítku", + }, + }, + estimates: { + label: "Odhady", + title: "Povolit odhady pro můj projekt", + description: "Pomáhají vám komunikovat složitost a pracovní zátěž týmu.", + no_estimate: "Bez odhadu", + new: "Nový systém odhadů", + create: { + custom: "Vlastní", + start_from_scratch: "Začít od nuly", + choose_template: "Vybrat šablonu", + choose_estimate_system: "Vybrat systém odhadů", + enter_estimate_point: "Zadat odhad", + step: "Krok {step} z {total}", + label: "Vytvořit odhad", + }, + toasts: { + created: { + success: { + title: "Odhad vytvořen", + message: "Odhad byl úspěšně vytvořen", + }, + error: { + title: "Vytvoření odhadu selhalo", + message: "Nepodařilo se vytvořit nový odhad, zkuste to prosím znovu.", + }, + }, + updated: { + success: { + title: "Odhad upraven", + message: "Odhad byl aktualizován ve vašem projektu.", + }, + error: { + title: "Úprava odhadu selhala", + message: "Nepodařilo se upravit odhad, zkuste to prosím znovu", + }, + }, + enabled: { + success: { + title: "Úspěch!", + message: "Odhady byly povoleny.", + }, + }, + disabled: { + success: { + title: "Úspěch!", + message: "Odhady byly zakázány.", + }, + error: { + title: "Chyba!", + message: "Odhad nemohl být zakázán. Zkuste to prosím znovu", + }, + }, + }, + validation: { + min_length: "Odhad musí být větší než 0.", + unable_to_process: "Nemůžeme zpracovat váš požadavek, zkuste to prosím znovu.", + numeric: "Odhad musí být číselná hodnota.", + character: "Odhad musí být znakový.", + empty: "Hodnota odhadu nemůže být prázdná.", + already_exists: "Hodnota odhadu již existuje.", + unsaved_changes: "Máte neuložené změny. Před kliknutím na hotovo je prosím uložte", + remove_empty: + "Odhad nemůže být prázdný. Zadejte hodnotu do každého pole nebo odstraňte ta, pro která nemáte hodnoty.", + }, + systems: { + points: { + label: "Body", + fibonacci: "Fibonacci", + linear: "Lineární", + squares: "Čtverce", + custom: "Vlastní", + }, + categories: { + label: "Kategorie", + t_shirt_sizes: "Velikosti triček", + easy_to_hard: "Od snadného po těžké", + custom: "Vlastní", + }, + time: { + label: "Čas", + hours: "Hodiny", + }, + }, + }, + automations: { + label: "Automatizace", + "auto-archive": { + title: "Automaticky archivovat uzavřené pracovní položky", + description: "Plane bude automaticky archivovat pracovní položky, které byly dokončeny nebo zrušeny.", + duration: "Automaticky archivovat pracovní položky, které jsou uzavřené po dobu", + }, + "auto-close": { + title: "Automaticky uzavírat pracovní položky", + description: "Plane automaticky uzavře pracovní položky, které nebyly dokončeny nebo zrušeny.", + duration: "Automaticky uzavřít pracovní položky, které jsou neaktivní po dobu", + auto_close_status: "Stav automatického uzavření", + }, + }, + empty_state: { + labels: { + title: "Zatím žádné štítky", + description: "Vytvořte štítky pro organizaci a filtrování pracovních položek ve vašem projektu.", + }, + estimates: { + title: "Zatím žádné systémy odhadů", + description: "Vytvořte sadu odhadů pro komunikaci množství práce na pracovní položku.", + primary_button: "Přidat systém odhadů", + }, + }, + }, + project_cycles: { + add_cycle: "Přidat cyklus", + more_details: "Více detailů", + cycle: "Cyklus", + update_cycle: "Aktualizovat cyklus", + create_cycle: "Vytvořit cyklus", + no_matching_cycles: "Žádné odpovídající cykly", + remove_filters_to_see_all_cycles: "Odeberte filtry pro zobrazení všech cyklů", + remove_search_criteria_to_see_all_cycles: "Odeberte kritéria pro zobrazení všech cyklů", + only_completed_cycles_can_be_archived: "Lze archivovat pouze dokončené cykly", + start_date: "Začátek data", + end_date: "Konec data", + in_your_timezone: "V časovém pásmu", + transfer_work_items: "Převést {count} pracovních položek", + date_range: "Období data", + add_date: "Přidat datum", + active_cycle: { + label: "Aktivní cyklus", + progress: "Pokrok", + chart: "Burndown graf", + priority_issue: "Vysoce prioritní položky", + assignees: "Přiřazení", + issue_burndown: "Burndown pracovních položek", + ideal: "Ideální", + current: "Aktuální", + labels: "Štítky", + }, + upcoming_cycle: { + label: "Nadcházející cyklus", + }, + completed_cycle: { + label: "Dokončený cyklus", + }, + status: { + days_left: "Zbývá dnů", + completed: "Dokončeno", + yet_to_start: "Ještě nezačato", + in_progress: "V průběhu", + draft: "Koncept", + }, + action: { + restore: { + title: "Obnovit cyklus", + success: { + title: "Cyklus obnoven", + description: "Cyklus byl obnoven.", + }, + failed: { + title: "Obnovení selhalo", + description: "Obnovení cyklu se nezdařilo.", + }, + }, + favorite: { + loading: "Přidávání do oblíbených", + success: { + description: "Cyklus přidán do oblíbených.", + title: "Úspěch!", + }, + failed: { + description: "Přidání do oblíbených selhalo.", + title: "Chyba!", + }, + }, + unfavorite: { + loading: "Odebírání z oblíbených", + success: { + description: "Cyklus odebrán z oblíbených.", + title: "Úspěch!", + }, + failed: { + description: "Odebrání selhalo.", + title: "Chyba!", + }, + }, + update: { + loading: "Aktualizace cyklu", + success: { + description: "Cyklus aktualizován.", + title: "Úspěch!", + }, + failed: { + description: "Aktualizace selhala.", + title: "Chyba!", + }, + error: { + already_exists: "Cyklus s těmito daty již existuje. Pro koncept odstraňte data.", + }, + }, + }, + empty_state: { + general: { + title: "Seskupujte práci do cyklů.", + description: "Časově ohraničte práci, sledujte termíny a dělejte pokroky.", + primary_button: { + text: "Vytvořte první cyklus", + comic: { + title: "Cykly jsou opakovaná časová období.", + description: "Sprint, iterace nebo jakékoli jiné časové období pro sledování práce.", + }, + }, + }, + no_issues: { + title: "Žádné položky v cyklu", + description: "Přidejte položky, které chcete sledovat.", + primary_button: { + text: "Vytvořit položku", + }, + secondary_button: { + text: "Přidat existující položku", + }, + }, + completed_no_issues: { + title: "Žádné položky v cyklu", + description: "Položky byly přesunuty nebo skryty. Pro zobrazení upravte vlastnosti.", + }, + active: { + title: "Žádný aktivní cyklus", + description: "Aktivní cyklus zahrnuje dnešní datum. Sledujte jeho průběh zde.", + }, + archived: { + title: "Žádné archivované cykly", + description: "Archivujte dokončené cykly pro úklid.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Vytvořte a přiřaďte pracovní položku", + description: "Položky jsou úkoly, které přiřazujete sobě nebo týmu. Sledujte jejich postup.", + primary_button: { + text: "Vytvořit první položku", + comic: { + title: "Položky jsou stavebními kameny", + description: "Příklady: Redesign UI, Rebranding, Nový systém.", + }, + }, + }, + no_archived_issues: { + title: "Žádné archivované položky", + description: "Archivujte dokončené nebo zrušené položky. Nastavte automatizaci.", + primary_button: { + text: "Nastavit automatizaci", + }, + }, + issues_empty_filter: { + title: "Žádné odpovídající položky", + secondary_button: { + text: "Vymazat filtry", + }, + }, + }, + }, + project_module: { + add_module: "Přidat modul", + update_module: "Aktualizovat modul", + create_module: "Vytvořit modul", + archive_module: "Archivovat modul", + restore_module: "Obnovit modul", + delete_module: "Smazat modul", + empty_state: { + general: { + title: "Seskupujte milníky do modulů.", + description: "Moduly seskupují položky pod logického nadřazeného. Sledujte termíny a pokrok.", + primary_button: { + text: "Vytvořte první modul", + comic: { + title: "Moduly skupinují hierarchicky.", + description: "Příklady: Modul košíku, podvozku, skladu.", + }, + }, + }, + no_issues: { + title: "Žádné položky v modulu", + description: "Přidejte položky do modulu.", + primary_button: { + text: "Vytvořit položky", + }, + secondary_button: { + text: "Přidat existující položku", + }, + }, + archived: { + title: "Žádné archivované moduly", + description: "Archivujte dokončené nebo zrušené moduly.", + }, + sidebar: { + in_active: "Modul není aktivní.", + invalid_date: "Neplatné datum. Zadejte platné.", + }, + }, + quick_actions: { + archive_module: "Archivovat modul", + archive_module_description: "Lze archivovat pouze dokončené/zrušené moduly.", + delete_module: "Smazat modul", + }, + toast: { + copy: { + success: "Odkaz na modul zkopírován", + }, + delete: { + success: "Modul smazán", + error: "Mazání selhalo", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Ukládejte filtry jako pohledy.", + description: "Pohledy jsou uložené filtry pro snadný přístup. Sdílejte je v týmu.", + primary_button: { + text: "Vytvořit první pohled", + comic: { + title: "Pohledy pracují s vlastnostmi položek.", + description: "Vytvořte pohled s požadovanými filtry.", + }, + }, + }, + filter: { + title: "Žádné odpovídající pohledy", + description: "Vytvořte nový pohled.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "Pište poznámky, dokumenty nebo znalostní báze. Využijte AI Galileo.", + description: + "Stránky jsou prostorem pro myšlenky. Pište, formátujte, vkládejte položky a využívejte komponenty.", + primary_button: { + text: "Vytvořit první stránku", + }, + }, + private: { + title: "Žádné soukromé stránky", + description: "Uchovávejte soukromé myšlenky. Sdílejte, až budete připraveni.", + primary_button: { + text: "Vytvořit stránku", + }, + }, + public: { + title: "Žádné veřejné stránky", + description: "Zde uvidíte stránky sdílené v projektu.", + primary_button: { + text: "Vytvořit stránku", + }, + }, + archived: { + title: "Žádné archivované stránky", + description: "Archivujte stránky pro pozdější přístup.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Nenalezeny výsledky", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Žádné odpovídající položky", + }, + no_issues: { + title: "Žádné položky", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Žádné komentáře", + description: "Komentáře slouží k diskusi a sledování položek.", + }, + }, + }, + notification: { + label: "Schránka", + page_label: "{workspace} - Schránka", + options: { + mark_all_as_read: "Označit vše jako přečtené", + mark_read: "Označit jako přečtené", + mark_unread: "Označit jako nepřečtené", + refresh: "Obnovit", + filters: "Filtry schránky", + show_unread: "Zobrazit nepřečtené", + show_snoozed: "Zobrazit odložené", + show_archived: "Zobrazit archivované", + mark_archive: "Archivovat", + mark_unarchive: "Zrušit archivaci", + mark_snooze: "Odložit", + mark_unsnooze: "Zrušit odložení", + }, + toasts: { + read: "Oznámení přečteno", + unread: "Označeno jako nepřečtené", + archived: "Archivováno", + unarchived: "Zrušena archivace", + snoozed: "Odloženo", + unsnoozed: "Zrušeno odložení", + }, + empty_state: { + detail: { + title: "Vyberte pro podrobnosti.", + }, + all: { + title: "Žádné přiřazené položky", + description: "Zobrazí se zde aktualizace přiřazených položek.", + }, + mentions: { + title: "Žádné zmínky", + description: "Zobrazí se zde zmínky o vás.", + }, + }, + tabs: { + all: "Vše", + mentions: "Zmínky", + }, + filter: { + assigned: "Přiřazeno mě", + created: "Vytvořil jsem", + subscribed: "Odebírám", + }, + snooze: { + "1_day": "1 den", + "3_days": "3 dny", + "5_days": "5 dní", + "1_week": "1 týden", + "2_weeks": "2 týdny", + custom: "Vlastní", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Přidejte položky pro sledování pokroku", + }, + chart: { + title: "Přidejte položky pro zobrazení burndown grafu.", + }, + priority_issue: { + title: "Zobrazí se vysoce prioritní položky.", + }, + assignee: { + title: "Přiřaďte položky pro přehled přiřazení.", + }, + label: { + title: "Přidejte štítky pro analýzu podle štítků.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Příjem není povolen", + description: "Aktivujte příjem v nastavení projektu pro správu požadavků.", + primary_button: { + text: "Spravovat funkce", + }, + }, + cycle: { + title: "Cykly nejsou povoleny", + description: "Aktivujte cykly pro časové ohraničení práce.", + primary_button: { + text: "Spravovat funkce", + }, + }, + module: { + title: "Moduly nejsou povoleny", + description: "Aktivujte moduly v nastavení projektu.", + primary_button: { + text: "Spravovat funkce", + }, + }, + page: { + title: "Stránky nejsou povoleny", + description: "Aktivujte stránky v nastavení projektu.", + primary_button: { + text: "Spravovat funkce", + }, + }, + view: { + title: "Pohledy nejsou povoleny", + description: "Aktivujte pohledy v nastavení projektu.", + primary_button: { + text: "Spravovat funkce", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Vytvořit koncept položky", + empty_state: { + title: "Rozpracované položky a komentáře se zde zobrazí.", + description: "Začněte vytvářet položku a nechte ji rozpracovanou.", + primary_button: { + text: "Vytvořit první koncept", + }, + }, + delete_modal: { + title: "Smazat koncept", + description: "Opravdu chcete smazat tento koncept? Akce je nevratná.", + }, + toasts: { + created: { + success: "Koncept vytvořen", + error: "Vytvoření se nezdařilo", + }, + deleted: { + success: "Koncept smazán", + }, + }, + }, + stickies: { + title: "Vaše poznámky", + placeholder: "kliknutím začněte psát", + all: "Všechny poznámky", + "no-data": "Zapisujte nápady a myšlenky. Přidejte první poznámku.", + add: "Přidat poznámku", + search_placeholder: "Hledat podle názvu", + delete: "Smazat poznámku", + delete_confirmation: "Opravdu chcete smazat tuto poznámku?", + empty_state: { + simple: "Zapisujte nápady a myšlenky. Přidejte první poznámku.", + general: { + title: "Poznámky jsou rychlé záznamy.", + description: "Zapisujte myšlenky a přistupujte k nim odkudkoli.", + primary_button: { + text: "Přidat poznámku", + }, + }, + search: { + title: "Nenalezeny žádné poznámky.", + description: "Zkuste jiný termín nebo vytvořte novou.", + primary_button: { + text: "Přidat poznámku", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Název poznámky může mít max. 100 znaků.", + already_exists: "Poznámka bez popisu již existuje", + }, + created: { + title: "Poznámka vytvořena", + message: "Poznámka úspěšně vytvořena", + }, + not_created: { + title: "Vytvoření selhalo", + message: "Poznámku nelze vytvořit", + }, + updated: { + title: "Poznámka aktualizována", + message: "Poznámka úspěšně aktualizována", + }, + not_updated: { + title: "Aktualizace selhala", + message: "Poznámku nelze aktualizovat", + }, + removed: { + title: "Poznámka smazána", + message: "Poznámka úspěšně smazána", + }, + not_removed: { + title: "Mazání selhalo", + message: "Poznámku nelze smazat", + }, + }, + }, + role_details: { + guest: { + title: "Host", + description: "Externí členové mohou být pozváni jako hosté.", + }, + member: { + title: "Člen", + description: "Může číst, psát, upravovat a mazat entity.", + }, + admin: { + title: "Správce", + description: "Má všechna oprávnění v prostoru.", + }, + }, + user_roles: { + product_or_project_manager: "Produktový/Projektový manažer", + development_or_engineering: "Vývoj/Inženýrství", + founder_or_executive: "Zakladatel/Vedoucí pracovník", + freelancer_or_consultant: "Freelancer/Konzultant", + marketing_or_growth: "Marketing/Růst", + sales_or_business_development: "Prodej/Business Development", + support_or_operations: "Podpora/Operace", + student_or_professor: "Student/Profesor", + human_resources: "Lidské zdroje", + other: "Jiné", + }, + importer: { + github: { + title: "GitHub", + description: "Importujte položky z repozitářů GitHub.", + }, + jira: { + title: "Jira", + description: "Importujte položky a epiky z Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Exportujte položky do CSV.", + short_description: "Exportovat jako CSV", + }, + excel: { + title: "Excel", + description: "Exportujte položky do Excelu.", + short_description: "Exportovat jako Excel", + }, + xlsx: { + title: "Excel", + description: "Exportujte položky do Excelu.", + short_description: "Exportovat jako Excel", + }, + json: { + title: "JSON", + description: "Exportujte položky do JSON.", + short_description: "Exportovat jako JSON", + }, + }, + default_global_view: { + all_issues: "Všechny položky", + assigned: "Přiřazeno", + created: "Vytvořeno", + subscribed: "Odebíráno", + }, + themes: { + theme_options: { + system_preference: { + label: "Systémové předvolby", + }, + light: { + label: "Světlé", + }, + dark: { + label: "Tmavé", + }, + light_contrast: { + label: "Světlý vysoký kontrast", + }, + dark_contrast: { + label: "Tmavý vysoký kontrast", + }, + custom: { + label: "Vlastní téma", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Plánováno", + in_progress: "V průběhu", + paused: "Pozastaveno", + completed: "Dokončeno", + cancelled: "Zrušeno", + }, + layout: { + list: "Seznam", + board: "Nástěnka", + timeline: "Časová osa", + }, + order_by: { + name: "Název", + progress: "Pokrok", + issues: "Počet položek", + due_date: "Termín", + created_at: "Datum vytvoření", + manual: "Ručně", + }, + }, + cycle: { + label: "{count, plural, one {Cyklus} few {Cykly} other {Cyklů}}", + no_cycle: "Žádný cyklus", + }, + module: { + label: "{count, plural, one {Modul} few {Moduly} other {Modulů}}", + no_module: "Žádný modul", + }, + description_versions: { + last_edited_by: "Naposledy upraveno uživatelem", + previously_edited_by: "Dříve upraveno uživatelem", + edited_by: "Upraveno uživatelem", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane se nespustil. To může být způsobeno tím, že se jeden nebo více služeb Plane nepodařilo spustit.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Vyberte View Logs z setup.sh a Docker logů, abyste si byli jisti.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Osnova", + empty_state: { + title: "Chybí nadpisy", + description: "Přidejte na tuto stránku nějaké nadpisy, aby se zde zobrazily.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Slova", + characters: "Znaky", + paragraphs: "Odstavce", + read_time: "Doba čtení", + }, + actors_info: { + edited_by: "Upravil", + created_by: "Vytvořil", + }, + version_history: { + label: "Historie verzí", + current_version: "Aktuální verze", + }, + }, + assets: { + label: "Přílohy", + download_button: "Stáhnout", + empty_state: { + title: "Chybí obrázky", + description: "Přidejte obrázky, aby se zde zobrazily.", + }, + }, + }, + open_button: "Otevřít navigační panel", + close_button: "Zavřít navigační panel", + outline_floating_button: "Otevřít osnovu", + }, +} as const; diff --git a/packages/i18n/src/locales/de/accessibility.json b/packages/i18n/src/locales/de/accessibility.json deleted file mode 100644 index edf90970f2..0000000000 --- a/packages/i18n/src/locales/de/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Arbeitsbereich-Logo", - "open_workspace_switcher": "Arbeitsbereich-Umschalter öffnen", - "open_user_menu": "Benutzermenü öffnen", - "open_command_palette": "Befehlspalette öffnen", - "open_extended_sidebar": "Erweiterte Seitenleiste öffnen", - "close_extended_sidebar": "Erweiterte Seitenleiste schließen", - "create_favorites_folder": "Favoriten-Ordner erstellen", - "open_folder": "Ordner öffnen", - "close_folder": "Ordner schließen", - "open_favorites_menu": "Favoriten-Menü öffnen", - "close_favorites_menu": "Favoriten-Menü schließen", - "enter_folder_name": "Ordnername eingeben", - "create_new_project": "Neues Projekt erstellen", - "open_projects_menu": "Projekt-Menü öffnen", - "close_projects_menu": "Projekt-Menü schließen", - "toggle_quick_actions_menu": "Schnellaktionen-Menü umschalten", - "open_project_menu": "Projekt-Menü öffnen", - "close_project_menu": "Projekt-Menü schließen", - "collapse_sidebar": "Seitenleiste einklappen", - "expand_sidebar": "Seitenleiste ausklappen", - "edition_badge": "Modal für kostenpflichtige Pläne öffnen" - }, - "auth_forms": { - "clear_email": "E-Mail löschen", - "show_password": "Passwort anzeigen", - "hide_password": "Passwort verbergen", - "close_alert": "Warnung schließen", - "close_popover": "Popover schließen" - } - } -} diff --git a/packages/i18n/src/locales/de/accessibility.ts b/packages/i18n/src/locales/de/accessibility.ts new file mode 100644 index 0000000000..3c596734bf --- /dev/null +++ b/packages/i18n/src/locales/de/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Arbeitsbereich-Logo", + open_workspace_switcher: "Arbeitsbereich-Umschalter öffnen", + open_user_menu: "Benutzermenü öffnen", + open_command_palette: "Befehlspalette öffnen", + open_extended_sidebar: "Erweiterte Seitenleiste öffnen", + close_extended_sidebar: "Erweiterte Seitenleiste schließen", + create_favorites_folder: "Favoriten-Ordner erstellen", + open_folder: "Ordner öffnen", + close_folder: "Ordner schließen", + open_favorites_menu: "Favoriten-Menü öffnen", + close_favorites_menu: "Favoriten-Menü schließen", + enter_folder_name: "Ordnername eingeben", + create_new_project: "Neues Projekt erstellen", + open_projects_menu: "Projekt-Menü öffnen", + close_projects_menu: "Projekt-Menü schließen", + toggle_quick_actions_menu: "Schnellaktionen-Menü umschalten", + open_project_menu: "Projekt-Menü öffnen", + close_project_menu: "Projekt-Menü schließen", + collapse_sidebar: "Seitenleiste einklappen", + expand_sidebar: "Seitenleiste ausklappen", + edition_badge: "Modal für kostenpflichtige Pläne öffnen", + }, + auth_forms: { + clear_email: "E-Mail löschen", + show_password: "Passwort anzeigen", + hide_password: "Passwort verbergen", + close_alert: "Warnung schließen", + close_popover: "Popover schließen", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/de/editor.json b/packages/i18n/src/locales/de/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/de/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/de/editor.ts b/packages/i18n/src/locales/de/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/de/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/de/translations.json b/packages/i18n/src/locales/de/translations.json deleted file mode 100644 index fc404e6369..0000000000 --- a/packages/i18n/src/locales/de/translations.json +++ /dev/null @@ -1,2532 +0,0 @@ -{ - "sidebar": { - "projects": "Projekte", - "pages": "Seiten", - "new_work_item": "Neues Arbeitselement", - "home": "Startseite", - "your_work": "Ihre Arbeit", - "inbox": "Posteingang", - "workspace": "Arbeitsbereich", - "views": "Ansichten", - "analytics": "Analysen", - "work_items": "Arbeitselemente", - "cycles": "Zyklen", - "modules": "Module", - "intake": "Eingang", - "drafts": "Entwürfe", - "favorites": "Favoriten", - "pro": "Pro", - "upgrade": "Upgrade" - }, - "auth": { - "common": { - "email": { - "label": "E-Mail", - "placeholder": "name@unternehmen.de", - "errors": { - "required": "E-Mail ist erforderlich", - "invalid": "E-Mail ist ungültig" - } - }, - "password": { - "label": "Passwort", - "set_password": "Passwort festlegen", - "placeholder": "Passwort eingeben", - "confirm_password": { - "label": "Passwort bestätigen", - "placeholder": "Passwort bestätigen" - }, - "current_password": { - "label": "Aktuelles Passwort" - }, - "new_password": { - "label": "Neues Passwort", - "placeholder": "Neues Passwort eingeben" - }, - "change_password": { - "label": { - "default": "Passwort ändern", - "submitting": "Passwort wird geändert" - } - }, - "errors": { - "match": "Passwörter stimmen nicht überein", - "empty": "Bitte geben Sie Ihr Passwort ein", - "length": "Das Passwort sollte länger als 8 Zeichen sein", - "strength": { - "weak": "Das Passwort ist schwach", - "strong": "Das Passwort ist stark" - } - }, - "submit": "Passwort festlegen", - "toast": { - "change_password": { - "success": { - "title": "Erfolg!", - "message": "Das Passwort wurde erfolgreich geändert." - }, - "error": { - "title": "Fehler!", - "message": "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut." - } - } - } - }, - "unique_code": { - "label": "Einmaliger Code", - "placeholder": "gets-sets-flys", - "paste_code": "Fügen Sie den an Ihre E-Mail gesendeten Code ein", - "requesting_new_code": "Neuen Code anfordern", - "sending_code": "Code wird gesendet" - }, - "already_have_an_account": "Haben Sie bereits ein Konto?", - "login": "Anmelden", - "create_account": "Konto erstellen", - "new_to_plane": "Neu bei Plane?", - "back_to_sign_in": "Zurück zur Anmeldung", - "resend_in": "Erneut senden in {seconds} Sekunden", - "sign_in_with_unique_code": "Mit einmaligem Code anmelden", - "forgot_password": "Passwort vergessen?" - }, - "sign_up": { - "header": { - "label": "Erstellen Sie ein Konto und beginnen Sie, Ihre Arbeit mit Ihrem Team zu verwalten.", - "step": { - "email": { - "header": "Registrierung", - "sub_header": "" - }, - "password": { - "header": "Registrierung", - "sub_header": "Registrieren Sie sich mit einer Kombination aus E-Mail und Passwort." - }, - "unique_code": { - "header": "Registrierung", - "sub_header": "Registrieren Sie sich mit einem einmaligen Code, der an die oben angegebene E-Mail-Adresse gesendet wurde." - } - } - }, - "errors": { - "password": { - "strength": "Versuchen Sie, ein starkes Passwort zu wählen, um fortzufahren" - } - } - }, - "sign_in": { - "header": { - "label": "Melden Sie sich an und beginnen Sie, Ihre Arbeit mit Ihrem Team zu verwalten.", - "step": { - "email": { - "header": "Anmelden oder registrieren", - "sub_header": "" - }, - "password": { - "header": "Anmelden oder registrieren", - "sub_header": "Verwenden Sie Ihre E-Mail-Passwort-Kombination, um sich anzumelden." - }, - "unique_code": { - "header": "Anmelden oder registrieren", - "sub_header": "Melden Sie sich mit einem einmaligen Code an, der an die oben angegebene E-Mail-Adresse gesendet wurde." - } - } - } - }, - "forgot_password": { - "title": "Passwort zurücksetzen", - "description": "Geben Sie die verifizierte E-Mail-Adresse Ihres Benutzerkontos ein, und wir senden Ihnen einen Link zum Zurücksetzen des Passworts.", - "email_sent": "Wir haben Ihnen einen Link zum Zurücksetzen an Ihre E-Mail-Adresse gesendet.", - "send_reset_link": "Link zum Zurücksetzen senden", - "errors": { - "smtp_not_enabled": "Wir sehen, dass Ihr Administrator SMTP nicht aktiviert hat; wir können keinen Link zum Zurücksetzen des Passworts senden." - }, - "toast": { - "success": { - "title": "E-Mail gesendet", - "message": "Überprüfen Sie Ihren Posteingang auf den Link zum Zurücksetzen des Passworts. Sollte er innerhalb einiger Minuten nicht ankommen, sehen Sie bitte in Ihrem Spam-Ordner nach." - }, - "error": { - "title": "Fehler!", - "message": "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut." - } - } - }, - "reset_password": { - "title": "Neues Passwort festlegen", - "description": "Sichern Sie Ihr Konto mit einem starken Passwort" - }, - "set_password": { - "title": "Sichern Sie Ihr Konto", - "description": "Das Festlegen eines Passworts hilft Ihnen, sich sicher anzumelden" - }, - "sign_out": { - "toast": { - "error": { - "title": "Fehler!", - "message": "Abmelden fehlgeschlagen. Bitte versuchen Sie es erneut." - } - } - } - }, - "submit": "Senden", - "cancel": "Abbrechen", - "loading": "Wird geladen", - "error": "Fehler", - "success": "Erfolg", - "warning": "Warnung", - "info": "Information", - "close": "Schließen", - "yes": "Ja", - "no": "Nein", - "ok": "OK", - "name": "Name", - "description": "Beschreibung", - "search": "Suchen", - "add_member": "Mitglied hinzufügen", - "adding_members": "Mitglieder werden hinzugefügt", - "remove_member": "Mitglied entfernen", - "add_members": "Mitglieder hinzufügen", - "adding_member": "Mitglieder werden hinzugefügt", - "remove_members": "Mitglieder entfernen", - "add": "Hinzufügen", - "adding": "Wird hinzugefügt", - "remove": "Entfernen", - "add_new": "Neu hinzufügen", - "remove_selected": "Ausgewählte entfernen", - "first_name": "Vorname", - "last_name": "Nachname", - "email": "E-Mail", - "display_name": "Anzeigename", - "role": "Rolle", - "timezone": "Zeitzone", - "avatar": "Profilbild", - "cover_image": "Titelbild", - "password": "Passwort", - "change_cover": "Titelbild ändern", - "language": "Sprache", - "saving": "Wird gespeichert", - "save_changes": "Änderungen speichern", - "deactivate_account": "Konto deaktivieren", - "deactivate_account_description": "Wenn Sie Ihr Konto deaktivieren, werden alle damit verbundenen Daten und Ressourcen dauerhaft gelöscht und können nicht wiederhergestellt werden.", - "profile_settings": "Profileinstellungen", - "your_account": "Ihr Konto", - "security": "Sicherheit", - "activity": "Aktivität", - "appearance": "Aussehen", - "notifications": "Benachrichtigungen", - "workspaces": "Arbeitsbereiche", - "create_workspace": "Arbeitsbereich erstellen", - "invitations": "Einladungen", - "summary": "Zusammenfassung", - "assigned": "Zugewiesen", - "created": "Erstellt", - "subscribed": "Abonniert", - "you_do_not_have_the_permission_to_access_this_page": "Sie haben keine Berechtigung zum Zugriff auf diese Seite.", - "something_went_wrong_please_try_again": "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut.", - "load_more": "Mehr laden", - "select_or_customize_your_interface_color_scheme": "Wählen oder gestalten Sie Ihr Farbdesign für die Benutzeroberfläche.", - "theme": "Theme", - "system_preference": "Systemeinstellungen", - "light": "Hell", - "dark": "Dunkel", - "light_contrast": "Heller hoher Kontrast", - "dark_contrast": "Dunkler hoher Kontrast", - "custom": "Benutzerdefiniertes Theme", - "select_your_theme": "Wählen Sie ein Theme", - "customize_your_theme": "Passen Sie Ihr Theme an", - "background_color": "Hintergrundfarbe", - "text_color": "Textfarbe", - "primary_color": "Primärfarbe (Theme)", - "sidebar_background_color": "Seitenleisten-Hintergrundfarbe", - "sidebar_text_color": "Seitenleisten-Textfarbe", - "set_theme": "Theme festlegen", - "enter_a_valid_hex_code_of_6_characters": "Geben Sie einen gültigen 6-stelligen Hex-Code ein", - "background_color_is_required": "Die Hintergrundfarbe ist erforderlich", - "text_color_is_required": "Die Textfarbe ist erforderlich", - "primary_color_is_required": "Die Primärfarbe ist erforderlich", - "sidebar_background_color_is_required": "Die Hintergrundfarbe der Seitenleiste ist erforderlich", - "sidebar_text_color_is_required": "Die Textfarbe der Seitenleiste ist erforderlich", - "updating_theme": "Theme wird aktualisiert", - "theme_updated_successfully": "Theme erfolgreich aktualisiert", - "failed_to_update_the_theme": "Aktualisierung des Themes fehlgeschlagen", - "email_notifications": "E-Mail-Benachrichtigungen", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Bleiben Sie informiert über Arbeitselemente, die Sie abonniert haben. Aktivieren Sie diese Option, um Benachrichtigungen zu erhalten.", - "email_notification_setting_updated_successfully": "E-Mail-Benachrichtigungseinstellung erfolgreich aktualisiert", - "failed_to_update_email_notification_setting": "Aktualisierung der E-Mail-Benachrichtigungseinstellung fehlgeschlagen", - "notify_me_when": "Benachrichtige mich, wenn", - "property_changes": "Eigenschaften ändern", - "property_changes_description": "Benachrichtigen Sie mich, wenn sich Eigenschaften von Arbeitselementen wie Zuweisung, Priorität, Schätzungen oder Ähnliches ändern.", - "state_change": "Statusänderung", - "state_change_description": "Benachrichtigen Sie mich, wenn ein Arbeitselement in einen anderen Status wechselt.", - "issue_completed": "Arbeitselement abgeschlossen", - "issue_completed_description": "Benachrichtigen Sie mich nur, wenn ein Arbeitselement abgeschlossen ist.", - "comments": "Kommentare", - "comments_description": "Benachrichtigen Sie mich, wenn jemand einen Kommentar zu einem Arbeitselement hinzufügt.", - "mentions": "Erwähnungen", - "mentions_description": "Benachrichtigen Sie mich nur, wenn mich jemand in einem Kommentar oder in einer Beschreibung erwähnt.", - "old_password": "Altes Passwort", - "general_settings": "Allgemeine Einstellungen", - "sign_out": "Abmelden", - "signing_out": "Wird abgemeldet", - "active_cycles": "Aktive Zyklen", - "active_cycles_description": "Verfolgen Sie Zyklen in allen Projekten, überwachen Sie hochpriorisierte Arbeitselemente und konzentrieren Sie sich auf Zyklen, die Aufmerksamkeit erfordern.", - "on_demand_snapshots_of_all_your_cycles": "Snapshots aller Ihrer Zyklen auf Abruf", - "upgrade": "Upgrade", - "10000_feet_view": "Überblick aus 10.000 Fuß über alle aktiven Zyklen.", - "10000_feet_view_description": "Verschaffen Sie sich einen Überblick über alle laufenden Zyklen in allen Projekten auf einmal, anstatt zwischen den Zyklen in jedem Projekt zu wechseln.", - "get_snapshot_of_each_active_cycle": "Erhalten Sie einen Snapshot jedes aktiven Zyklus.", - "get_snapshot_of_each_active_cycle_description": "Behalten Sie wichtige Kennzahlen für alle aktiven Zyklen im Blick, verfolgen Sie deren Fortschritt und vergleichen Sie den Umfang mit den Fristen.", - "compare_burndowns": "Vergleichen Sie Burndown-Charts.", - "compare_burndowns_description": "Überwachen Sie die Teamleistung, indem Sie sich die Burndown-Berichte jedes Zyklus ansehen.", - "quickly_see_make_or_break_issues": "Erkennen Sie schnell kritische Arbeitselemente.", - "quickly_see_make_or_break_issues_description": "Sehen Sie sich hochpriorisierte Arbeitselemente für jeden Zyklus in Bezug auf Fristen an. Alle auf einen Klick anzeigen.", - "zoom_into_cycles_that_need_attention": "Fokussieren Sie sich auf Zyklen, die besondere Aufmerksamkeit erfordern.", - "zoom_into_cycles_that_need_attention_description": "Untersuchen Sie den Status jedes Zyklus, der nicht den Erwartungen entspricht, mit nur einem Klick.", - "stay_ahead_of_blockers": "Erkennen Sie frühzeitig Blocker.", - "stay_ahead_of_blockers_description": "Identifizieren Sie projektübergreifende Probleme und erkennen Sie Abhängigkeiten zwischen Zyklen, die sonst nicht offensichtlich wären.", - "analytics": "Analysen", - "workspace_invites": "Einladungen zum Arbeitsbereich", - "enter_god_mode": "God-Mode betreten", - "workspace_logo": "Arbeitsbereichslogo", - "new_issue": "Neues Arbeitselement", - "your_work": "Ihre Arbeit", - "drafts": "Entwürfe", - "projects": "Projekte", - "views": "Ansichten", - "workspace": "Arbeitsbereich", - "archives": "Archive", - "settings": "Einstellungen", - "failed_to_move_favorite": "Verschieben des Favoriten fehlgeschlagen", - "favorites": "Favoriten", - "no_favorites_yet": "Noch keine Favoriten", - "create_folder": "Ordner erstellen", - "new_folder": "Neuer Ordner", - "favorite_updated_successfully": "Favorit erfolgreich aktualisiert", - "favorite_created_successfully": "Favorit erfolgreich erstellt", - "folder_already_exists": "Ordner existiert bereits", - "folder_name_cannot_be_empty": "Der Ordnername darf nicht leer sein", - "something_went_wrong": "Etwas ist schiefgelaufen", - "failed_to_reorder_favorite": "Umsortieren des Favoriten fehlgeschlagen", - "favorite_removed_successfully": "Favorit erfolgreich entfernt", - "failed_to_create_favorite": "Erstellen des Favoriten fehlgeschlagen", - "failed_to_rename_favorite": "Umbenennen des Favoriten fehlgeschlagen", - "project_link_copied_to_clipboard": "Projektlink in die Zwischenablage kopiert", - "link_copied": "Link kopiert", - "add_project": "Projekt hinzufügen", - "create_project": "Projekt erstellen", - "failed_to_remove_project_from_favorites": "Projekt konnte nicht aus den Favoriten entfernt werden. Bitte versuchen Sie es erneut.", - "project_created_successfully": "Projekt erfolgreich erstellt", - "project_created_successfully_description": "Das Projekt wurde erfolgreich erstellt. Sie können nun Arbeitselemente hinzufügen.", - "project_name_already_taken": "Der Projektname ist bereits vergeben.", - "project_identifier_already_taken": "Der Projekt-Identifier ist bereits vergeben.", - "project_cover_image_alt": "Titelbild des Projekts", - "name_is_required": "Name ist erforderlich", - "title_should_be_less_than_255_characters": "Der Titel sollte weniger als 255 Zeichen enthalten", - "project_name": "Projektname", - "project_id_must_be_at_least_1_character": "Projekt-ID muss mindestens 1 Zeichen lang sein", - "project_id_must_be_at_most_5_characters": "Projekt-ID darf maximal 5 Zeichen lang sein", - "project_id": "Projekt-ID", - "project_id_tooltip_content": "Hilft, Arbeitselemente im Projekt eindeutig zu identifizieren. Max. 5 Zeichen.", - "description_placeholder": "Beschreibung", - "only_alphanumeric_non_latin_characters_allowed": "Es sind nur alphanumerische und nicht-lateinische Zeichen erlaubt.", - "project_id_is_required": "Projekt-ID ist erforderlich", - "project_id_allowed_char": "Es sind nur alphanumerische und nicht-lateinische Zeichen erlaubt.", - "project_id_min_char": "Projekt-ID muss mindestens 1 Zeichen lang sein", - "project_id_max_char": "Projekt-ID darf maximal 5 Zeichen lang sein", - "project_description_placeholder": "Geben Sie eine Projektbeschreibung ein", - "select_network": "Netzwerk auswählen", - "lead": "Leitung", - "date_range": "Datumsbereich", - "private": "Privat", - "public": "Öffentlich", - "accessible_only_by_invite": "Nur auf Einladung zugänglich", - "anyone_in_the_workspace_except_guests_can_join": "Jeder im Arbeitsbereich außer Gästen kann beitreten", - "creating": "Wird erstellt", - "creating_project": "Projekt wird erstellt", - "adding_project_to_favorites": "Projekt wird zu Favoriten hinzugefügt", - "project_added_to_favorites": "Projekt zu Favoriten hinzugefügt", - "couldnt_add_the_project_to_favorites": "Projekt konnte nicht zu den Favoriten hinzugefügt werden. Bitte versuchen Sie es erneut.", - "removing_project_from_favorites": "Projekt wird aus Favoriten entfernt", - "project_removed_from_favorites": "Projekt aus Favoriten entfernt", - "couldnt_remove_the_project_from_favorites": "Projekt konnte nicht aus den Favoriten entfernt werden. Bitte versuchen Sie es erneut.", - "add_to_favorites": "Zu Favoriten hinzufügen", - "remove_from_favorites": "Aus Favoriten entfernen", - "publish_project": "Projekt veröffentlichen", - "publish": "Veröffentlichen", - "copy_link": "Link kopieren", - "leave_project": "Projekt verlassen", - "join_the_project_to_rearrange": "Treten Sie dem Projekt bei, um die Anordnung zu ändern", - "drag_to_rearrange": "Ziehen, um neu anzuordnen", - "congrats": "Herzlichen Glückwunsch!", - "open_project": "Projekt öffnen", - "issues": "Arbeitselemente", - "cycles": "Zyklen", - "modules": "Module", - "pages": "Seiten", - "intake": "Eingang", - "time_tracking": "Zeiterfassung", - "work_management": "Arbeitsverwaltung", - "projects_and_issues": "Projekte und Arbeitselemente", - "projects_and_issues_description": "Aktivieren oder deaktivieren Sie diese Funktionen im Projekt.", - "cycles_description": "Zeitlich begrenzen Sie die Arbeit pro Projekt und passen Sie den Zeitraum bei Bedarf an. Ein Zyklus kann 2 Wochen dauern, der nächste nur 1 Woche.", - "modules_description": "Organisieren Sie die Arbeit in Unterprojekte mit eigenen Leitern und Zuständigen.", - "views_description": "Speichern Sie benutzerdefinierte Sortierungen, Filter und Anzeigeoptionen oder teilen Sie sie mit Ihrem Team.", - "pages_description": "Erstellen und bearbeiten Sie frei formulierte Inhalte – Notizen, Dokumente, alles Mögliche.", - "intake_description": "Erlauben Sie Nicht-Mitgliedern, Bugs, Feedback und Vorschläge zu teilen – ohne Ihren Arbeitsablauf zu stören.", - "time_tracking_description": "Erfassen Sie die auf Arbeitselemente und Projekte verwendete Zeit.", - "work_management_description": "Verwalten Sie Ihre Arbeit und Projekte mühelos.", - "documentation": "Dokumentation", - "message_support": "Support kontaktieren", - "contact_sales": "Vertrieb kontaktieren", - "hyper_mode": "Hyper-Modus", - "keyboard_shortcuts": "Tastaturkürzel", - "whats_new": "Was ist neu?", - "version": "Version", - "we_are_having_trouble_fetching_the_updates": "Wir haben Probleme beim Abrufen der Updates.", - "our_changelogs": "unsere Changelogs", - "for_the_latest_updates": "für die neuesten Updates.", - "please_visit": "Bitte besuchen Sie", - "docs": "Dokumentation", - "full_changelog": "Vollständiges Änderungsprotokoll", - "support": "Support", - "discord": "Discord", - "powered_by_plane_pages": "Bereitgestellt von Plane Pages", - "please_select_at_least_one_invitation": "Bitte wählen Sie mindestens eine Einladung aus.", - "please_select_at_least_one_invitation_description": "Wählen Sie mindestens eine Einladung aus, um dem Arbeitsbereich beizutreten.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Wir sehen, dass Sie jemand in einen Arbeitsbereich eingeladen hat", - "join_a_workspace": "Einem Arbeitsbereich beitreten", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Wir sehen, dass Sie jemand in einen Arbeitsbereich eingeladen hat", - "join_a_workspace_description": "Einem Arbeitsbereich beitreten", - "accept_and_join": "Akzeptieren und beitreten", - "go_home": "Zur Startseite", - "no_pending_invites": "Keine ausstehenden Einladungen", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Hier sehen Sie, falls Sie jemand in einen Arbeitsbereich einlädt", - "back_to_home": "Zurück zur Startseite", - "workspace_name": "arbeitsbereich-name", - "deactivate_your_account": "Ihr Konto deaktivieren", - "deactivate_your_account_description": "Nach der Deaktivierung können Ihnen keine Arbeitselemente mehr zugewiesen werden, und es fallen keine Gebühren für den Arbeitsbereich an. Um Ihr Konto wieder zu aktivieren, benötigen Sie eine Einladung zu einem Arbeitsbereich an diese E-Mail-Adresse.", - "deactivating": "Wird deaktiviert", - "confirm": "Bestätigen", - "confirming": "Wird bestätigt", - "draft_created": "Entwurf erstellt", - "issue_created_successfully": "Arbeitselement erfolgreich erstellt", - "draft_creation_failed": "Erstellung des Entwurfs fehlgeschlagen", - "issue_creation_failed": "Erstellung des Arbeitselements fehlgeschlagen", - "draft_issue": "Entwurf eines Arbeitselements", - "issue_updated_successfully": "Arbeitselement erfolgreich aktualisiert", - "issue_could_not_be_updated": "Arbeitselement konnte nicht aktualisiert werden", - "create_a_draft": "Einen Entwurf erstellen", - "save_to_drafts": "Als Entwurf speichern", - "save": "Speichern", - "update": "Aktualisieren", - "updating": "Wird aktualisiert", - "create_new_issue": "Neues Arbeitselement erstellen", - "editor_is_not_ready_to_discard_changes": "Der Editor ist nicht bereit, Änderungen zu verwerfen", - "failed_to_move_issue_to_project": "Verschieben des Arbeitselements in das Projekt fehlgeschlagen", - "create_more": "Mehr erstellen", - "add_to_project": "Zum Projekt hinzufügen", - "discard": "Verwerfen", - "duplicate_issue_found": "Doppeltes Arbeitselement gefunden", - "duplicate_issues_found": "Doppelte Arbeitselemente gefunden", - "no_matching_results": "Keine übereinstimmenden Ergebnisse", - "title_is_required": "Ein Titel ist erforderlich", - "title": "Titel", - "state": "Status", - "priority": "Priorität", - "none": "Keine", - "urgent": "Dringend", - "high": "Hoch", - "medium": "Mittel", - "low": "Niedrig", - "members": "Mitglieder", - "assignee": "Zugewiesen", - "assignees": "Zugewiesene", - "you": "Sie", - "labels": "Labels", - "create_new_label": "Neues Label erstellen", - "start_date": "Startdatum", - "end_date": "Enddatum", - "due_date": "Fälligkeitsdatum", - "estimate": "Schätzung", - "change_parent_issue": "Übergeordnetes Arbeitselement ändern", - "remove_parent_issue": "Übergeordnetes Arbeitselement entfernen", - "add_parent": "Übergeordnetes Element hinzufügen", - "loading_members": "Mitglieder werden geladen", - "view_link_copied_to_clipboard": "Ansichtslink in die Zwischenablage kopiert.", - "required": "Erforderlich", - "optional": "Optional", - "Cancel": "Abbrechen", - "edit": "Bearbeiten", - "archive": "Archivieren", - "restore": "Wiederherstellen", - "open_in_new_tab": "In neuem Tab öffnen", - "delete": "Löschen", - "deleting": "Wird gelöscht", - "make_a_copy": "Kopie erstellen", - "move_to_project": "In Projekt verschieben", - "good": "Guten", - "morning": "Morgen", - "afternoon": "Nachmittag", - "evening": "Abend", - "show_all": "Alle anzeigen", - "show_less": "Weniger anzeigen", - "no_data_yet": "Noch keine Daten", - "syncing": "Wird synchronisiert", - "add_work_item": "Arbeitselement hinzufügen", - "advanced_description_placeholder": "Drücken Sie '/' für Befehle", - "create_work_item": "Arbeitselement erstellen", - "attachments": "Anhänge", - "declining": "Wird abgelehnt", - "declined": "Abgelehnt", - "decline": "Ablehnen", - "unassigned": "Nicht zugewiesen", - "work_items": "Arbeitselemente", - "add_link": "Link hinzufügen", - "points": "Punkte", - "no_assignee": "Keine Zuweisung", - "no_assignees_yet": "Noch keine Zuweisungen", - "no_labels_yet": "Noch keine Labels", - "ideal": "Ideal", - "current": "Aktuell", - "no_matching_members": "Keine passenden Mitglieder", - "leaving": "Wird verlassen", - "removing": "Wird entfernt", - "leave": "Verlassen", - "refresh": "Aktualisieren", - "refreshing": "Wird aktualisiert", - "refresh_status": "Status aktualisieren", - "prev": "Zurück", - "next": "Weiter", - "re_generating": "Wird neu generiert", - "re_generate": "Neu generieren", - "re_generate_key": "Schlüssel neu generieren", - "export": "Exportieren", - "member": "{count, plural, one{# Mitglied} few{# Mitglieder} other{# Mitglieder}}", - "new_password_must_be_different_from_old_password": "Das neue Passwort muss von dem alten Passwort abweichen", - "project_view": { - "sort_by": { - "created_at": "Erstellt am", - "updated_at": "Aktualisiert am", - "name": "Name" - } - }, - "toast": { - "success": "Erfolg!", - "error": "Fehler!" - }, - "links": { - "toasts": { - "created": { - "title": "Link erstellt", - "message": "Link wurde erfolgreich erstellt" - }, - "not_created": { - "title": "Link nicht erstellt", - "message": "Link konnte nicht erstellt werden" - }, - "updated": { - "title": "Link aktualisiert", - "message": "Link wurde erfolgreich aktualisiert" - }, - "not_updated": { - "title": "Link nicht aktualisiert", - "message": "Link konnte nicht aktualisiert werden" - }, - "removed": { - "title": "Link entfernt", - "message": "Link wurde erfolgreich entfernt" - }, - "not_removed": { - "title": "Link nicht entfernt", - "message": "Link konnte nicht entfernt werden" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Ihr Schnellstartleitfaden", - "not_right_now": "Jetzt nicht", - "create_project": { - "title": "Projekt erstellen", - "description": "Die meisten Dinge beginnen mit einem Projekt in Plane.", - "cta": "Los geht’s" - }, - "invite_team": { - "title": "Team einladen", - "description": "Arbeiten Sie mit Kollegen zusammen, um zu gestalten, bereitzustellen und zu verwalten.", - "cta": "Einladen" - }, - "configure_workspace": { - "title": "Konfigurieren Sie Ihren Arbeitsbereich.", - "description": "Aktivieren oder deaktivieren Sie Funktionen oder gehen Sie weiter ins Detail.", - "cta": "Diesen Bereich konfigurieren" - }, - "personalize_account": { - "title": "Personalisieren Sie Plane.", - "description": "Wählen Sie ein Profilbild, Farben und mehr.", - "cta": "Jetzt personalisieren" - }, - "widgets": { - "title": "Ohne Widgets ist es ruhig, schalten Sie sie ein", - "description": "Es scheint, als seien alle Ihre Widgets deaktiviert. Aktivieren Sie sie für ein besseres Erlebnis!", - "primary_button": { - "text": "Widgets verwalten" - } - } - }, - "quick_links": { - "empty": "Speichern Sie hier Links zu wichtigen Dingen, auf die Sie schnell zugreifen möchten.", - "add": "Schnelllink hinzufügen", - "title": "Schnelllink", - "title_plural": "Schnelllinks" - }, - "recents": { - "title": "Zuletzt verwendet", - "empty": { - "project": "Ihre kürzlich aufgerufenen Projekte erscheinen hier, nachdem Sie sie geöffnet haben.", - "page": "Ihre kürzlich aufgerufenen Seiten erscheinen hier, nachdem Sie sie geöffnet haben.", - "issue": "Ihre kürzlich aufgerufenen Arbeitselemente erscheinen hier, nachdem Sie sie geöffnet haben.", - "default": "Sie haben noch keine kürzlichen Elemente." - }, - "filters": { - "all": "Alle", - "projects": "Projekte", - "pages": "Seiten", - "issues": "Arbeitselemente" - } - }, - "new_at_plane": { - "title": "Neu in Plane" - }, - "quick_tutorial": { - "title": "Schnelles Tutorial" - }, - "widget": { - "reordered_successfully": "Widget erfolgreich verschoben.", - "reordering_failed": "Beim Verschieben des Widgets ist ein Fehler aufgetreten." - }, - "manage_widgets": "Widgets verwalten", - "title": "Startseite", - "star_us_on_github": "Geben Sie uns einen Stern auf GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL ist ungültig", - "placeholder": "Geben Sie eine URL ein oder fügen Sie sie ein" - }, - "title": { - "text": "Anzeigename", - "placeholder": "Wie soll dieser Link angezeigt werden" - } - } - }, - "common": { - "all": "Alle", - "states": "Status", - "state": "Status", - "state_groups": "Statusgruppen", - "state_group": "Statusgruppe", - "priorities": "Prioritäten", - "priority": "Priorität", - "team_project": "Teamprojekt", - "project": "Projekt", - "cycle": "Zyklus", - "cycles": "Zyklen", - "module": "Modul", - "modules": "Module", - "labels": "Labels", - "label": "Label", - "assignees": "Zugewiesene", - "assignee": "Zugewiesen", - "created_by": "Erstellt von", - "none": "Keine", - "link": "Link", - "estimates": "Schätzungen", - "estimate": "Schätzung", - "created_at": "Erstellt am", - "completed_at": "Abgeschlossen am", - "layout": "Layout", - "filters": "Filter", - "display": "Anzeigen", - "load_more": "Mehr laden", - "activity": "Aktivität", - "analytics": "Analysen", - "dates": "Daten", - "success": "Erfolg!", - "something_went_wrong": "Etwas ist schiefgelaufen", - "error": { - "label": "Fehler!", - "message": "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut." - }, - "group_by": "Gruppieren nach", - "epic": "Epik", - "epics": "Epiks", - "work_item": "Arbeitselement", - "work_items": "Arbeitselemente", - "sub_work_item": "Untergeordnetes Arbeitselement", - "add": "Hinzufügen", - "warning": "Warnung", - "updating": "Wird aktualisiert", - "adding": "Wird hinzugefügt", - "update": "Aktualisieren", - "creating": "Wird erstellt", - "create": "Erstellen", - "cancel": "Abbrechen", - "description": "Beschreibung", - "title": "Titel", - "attachment": "Anhang", - "general": "Allgemein", - "features": "Funktionen", - "automation": "Automatisierung", - "project_name": "Projektname", - "project_id": "Projekt-ID", - "project_timezone": "Projektzeitzone", - "created_on": "Erstellt am", - "update_project": "Projekt aktualisieren", - "identifier_already_exists": "Der Bezeichner existiert bereits", - "add_more": "Mehr hinzufügen", - "defaults": "Standardwerte", - "add_label": "Label hinzufügen", - "customize_time_range": "Zeitraum anpassen", - "loading": "Wird geladen", - "attachments": "Anhänge", - "property": "Eigenschaft", - "properties": "Eigenschaften", - "parent": "Übergeordnet", - "page": "Seite", - "remove": "Entfernen", - "archiving": "Wird archiviert", - "archive": "Archivieren", - "access": { - "public": "Öffentlich", - "private": "Privat" - }, - "done": "Fertig", - "sub_work_items": "Untergeordnete Arbeitselemente", - "comment": "Kommentar", - "workspace_level": "Arbeitsbereichsebene", - "order_by": { - "label": "Sortieren nach", - "manual": "Manuell", - "last_created": "Zuletzt erstellt", - "last_updated": "Zuletzt aktualisiert", - "start_date": "Startdatum", - "due_date": "Fälligkeitsdatum", - "asc": "Aufsteigend", - "desc": "Absteigend", - "updated_on": "Aktualisiert am" - }, - "sort": { - "asc": "Aufsteigend", - "desc": "Absteigend", - "created_on": "Erstellt am", - "updated_on": "Aktualisiert am" - }, - "comments": "Kommentare", - "updates": "Aktualisierungen", - "clear_all": "Alles löschen", - "copied": "Kopiert!", - "link_copied": "Link kopiert!", - "link_copied_to_clipboard": "Link in die Zwischenablage kopiert", - "copied_to_clipboard": "Link zum Arbeitselement in die Zwischenablage kopiert", - "is_copied_to_clipboard": "Arbeitselement in die Zwischenablage kopiert", - "no_links_added_yet": "Noch keine Links hinzugefügt", - "add_link": "Link hinzufügen", - "links": "Links", - "go_to_workspace": "Zum Arbeitsbereich", - "progress": "Fortschritt", - "optional": "Optional", - "join": "Beitreten", - "go_back": "Zurück", - "continue": "Fortfahren", - "resend": "Erneut senden", - "relations": "Beziehungen", - "errors": { - "default": { - "title": "Fehler!", - "message": "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut." - }, - "required": "Dieses Feld ist erforderlich", - "entity_required": "{entity} ist erforderlich", - "restricted_entity": "{entity} ist eingeschränkt" - }, - "update_link": "Link aktualisieren", - "attach": "Anhängen", - "create_new": "Neu erstellen", - "add_existing": "Vorhandenes hinzufügen", - "type_or_paste_a_url": "Geben Sie eine URL ein oder fügen Sie sie ein", - "url_is_invalid": "URL ist ungültig", - "display_title": "Anzeigename", - "link_title_placeholder": "Wie soll dieser Link angezeigt werden", - "url": "URL", - "side_peek": "Seitenvorschau", - "modal": "Modal", - "full_screen": "Vollbild", - "close_peek_view": "Vorschau schließen", - "toggle_peek_view_layout": "Vorschau-Layout umschalten", - "options": "Optionen", - "duration": "Dauer", - "today": "Heute", - "week": "Woche", - "month": "Monat", - "quarter": "Quartal", - "press_for_commands": "Drücken Sie '/' für Befehle", - "click_to_add_description": "Klicken Sie, um eine Beschreibung hinzuzufügen", - "search": { - "label": "Suchen", - "placeholder": "Suchbegriff eingeben", - "no_matches_found": "Keine Übereinstimmungen gefunden", - "no_matching_results": "Keine übereinstimmenden Ergebnisse" - }, - "actions": { - "edit": "Bearbeiten", - "make_a_copy": "Kopie erstellen", - "open_in_new_tab": "In neuem Tab öffnen", - "copy_link": "Link kopieren", - "archive": "Archivieren", - "restore": "Wiederherstellen", - "delete": "Löschen", - "remove_relation": "Beziehung entfernen", - "subscribe": "Abonnieren", - "unsubscribe": "Abo beenden", - "clear_sorting": "Sortierung löschen", - "show_weekends": "Wochenenden anzeigen", - "enable": "Aktivieren", - "disable": "Deaktivieren" - }, - "name": "Name", - "discard": "Verwerfen", - "confirm": "Bestätigen", - "confirming": "Wird bestätigt", - "read_the_docs": "Lesen Sie die Dokumentation", - "default": "Standard", - "active": "Aktiv", - "enabled": "Aktiviert", - "disabled": "Deaktiviert", - "mandate": "Mandat", - "mandatory": "Verpflichtend", - "yes": "Ja", - "no": "Nein", - "please_wait": "Bitte warten", - "enabling": "Wird aktiviert", - "disabling": "Wird deaktiviert", - "beta": "Beta", - "or": "oder", - "next": "Weiter", - "back": "Zurück", - "cancelling": "Wird abgebrochen", - "configuring": "Wird konfiguriert", - "clear": "Löschen", - "import": "Importieren", - "connect": "Verbinden", - "authorizing": "Wird autorisiert", - "processing": "Wird verarbeitet", - "no_data_available": "Keine Daten verfügbar", - "from": "von {name}", - "authenticated": "Authentifiziert", - "select": "Auswählen", - "upgrade": "Upgrade", - "add_seats": "Sitze hinzufügen", - "projects": "Projekte", - "workspace": "Arbeitsbereich", - "workspaces": "Arbeitsbereiche", - "team": "Team", - "teams": "Teams", - "entity": "Entität", - "entities": "Entitäten", - "task": "Aufgabe", - "tasks": "Aufgaben", - "section": "Abschnitt", - "sections": "Abschnitte", - "edit": "Bearbeiten", - "connecting": "Wird verbunden", - "connected": "Verbunden", - "disconnect": "Trennen", - "disconnecting": "Wird getrennt", - "installing": "Wird installiert", - "install": "Installieren", - "reset": "Zurücksetzen", - "live": "Live", - "change_history": "Änderungsverlauf", - "coming_soon": "Demnächst verfügbar", - "member": "Mitglied", - "members": "Mitglieder", - "you": "Sie", - "upgrade_cta": { - "higher_subscription": "Auf ein höheres Abonnement upgraden", - "talk_to_sales": "Mit Vertrieb sprechen" - }, - "category": "Kategorie", - "categories": "Kategorien", - "saving": "Wird gespeichert", - "save_changes": "Änderungen speichern", - "delete": "Löschen", - "deleting": "Wird gelöscht", - "pending": "Ausstehend", - "invite": "Einladen", - "view": "Ansicht", - "deactivated_user": "Deaktivierter Benutzer", - "apply": "Anwenden", - "applying": "Wird angewendet", - "users": "Benutzer", - "admins": "Administratoren", - "guests": "Gäste", - "on_track": "Im Plan", - "off_track": "Außer Plan", - "at_risk": "Gefährdet", - "timeline": "Zeitleiste", - "completion": "Fertigstellung", - "upcoming": "Bevorstehend", - "completed": "Abgeschlossen", - "in_progress": "In Bearbeitung", - "planned": "Geplant", - "paused": "Pausiert", - "no_of": "Anzahl {entity}", - "resolved": "Gelöst" - }, - "chart": { - "x_axis": "X-Achse", - "y_axis": "Y-Achse", - "metric": "Metrik" - }, - "form": { - "title": { - "required": "Ein Titel ist erforderlich", - "max_length": "Der Titel sollte weniger als {length} Zeichen enthalten" - } - }, - "entity": { - "grouping_title": "Gruppierung von {entity}", - "priority": "Priorität {entity}", - "all": "Alle {entity}", - "drop_here_to_move": "Hier ablegen, um {entity} zu verschieben", - "delete": { - "label": "{entity} löschen", - "success": "{entity} erfolgreich gelöscht", - "failed": "{entity} konnte nicht gelöscht werden" - }, - "update": { - "failed": "{entity} konnte nicht aktualisiert werden", - "success": "{entity} erfolgreich aktualisiert" - }, - "link_copied_to_clipboard": "Link zu {entity} in die Zwischenablage kopiert", - "fetch": { - "failed": "Fehler beim Laden von {entity}" - }, - "add": { - "success": "{entity} erfolgreich hinzugefügt", - "failed": "Fehler beim Hinzufügen von {entity}" - }, - "remove": { - "success": "{entity} erfolgreich entfernt", - "failed": "Fehler beim Entfernen von {entity}" - } - }, - "epic": { - "all": "Alle Epiks", - "label": "{count, plural, one {Epik} other {Epiks}}", - "new": "Neuer Epik", - "adding": "Epik wird hinzugefügt", - "create": { - "success": "Epik erfolgreich erstellt" - }, - "add": { - "press_enter": "Drücken Sie 'Enter', um einen weiteren Epik hinzuzufügen", - "label": "Epik hinzufügen" - }, - "title": { - "label": "Epik-Titel", - "required": "Ein Titel für den Epik ist erforderlich." - } - }, - "issue": { - "label": "{count, plural, one {Arbeitselement} few {Arbeitselemente} other {Arbeitselemente}}", - "all": "Alle Arbeitselemente", - "edit": "Arbeitselement bearbeiten", - "title": { - "label": "Titel des Arbeitselements", - "required": "Ein Titel für das Arbeitselement ist erforderlich." - }, - "add": { - "press_enter": "Drücken Sie 'Enter', um ein weiteres Arbeitselement hinzuzufügen", - "label": "Arbeitselement hinzufügen", - "cycle": { - "failed": "Hinzufügen des Arbeitselements zum Zyklus fehlgeschlagen. Bitte versuchen Sie es erneut.", - "success": "{count, plural, one {Arbeitselement} few {Arbeitselemente} other {Arbeitselemente}} zum Zyklus hinzugefügt.", - "loading": "{count, plural, one {Arbeitselement} other {Arbeitselemente}} werden zum Zyklus hinzugefügt" - }, - "assignee": "Zugewiesene hinzufügen", - "start_date": "Startdatum hinzufügen", - "due_date": "Fälligkeitsdatum hinzufügen", - "parent": "Übergeordnetes Arbeitselement hinzufügen", - "sub_issue": "Untergeordnetes Arbeitselement hinzufügen", - "relation": "Beziehung hinzufügen", - "link": "Link hinzufügen", - "existing": "Vorhandenes Arbeitselement hinzufügen" - }, - "remove": { - "label": "Arbeitselement entfernen", - "cycle": { - "loading": "Arbeitselement wird aus dem Zyklus entfernt", - "success": "Arbeitselement aus dem Zyklus entfernt.", - "failed": "Das Entfernen des Arbeitselements aus dem Zyklus ist fehlgeschlagen. Bitte versuchen Sie es erneut." - }, - "module": { - "loading": "Arbeitselement wird aus dem Modul entfernt", - "success": "Arbeitselement aus dem Modul entfernt.", - "failed": "Das Entfernen des Arbeitselements aus dem Modul ist fehlgeschlagen. Bitte versuchen Sie es erneut." - }, - "parent": { - "label": "Übergeordnetes Arbeitselement entfernen" - } - }, - "new": "Neues Arbeitselement", - "adding": "Arbeitselement wird hinzugefügt", - "create": { - "success": "Arbeitselement erfolgreich erstellt" - }, - "priority": { - "urgent": "Dringend", - "high": "Hoch", - "medium": "Mittel", - "low": "Niedrig" - }, - "display": { - "properties": { - "label": "Anzuzeigende Eigenschaften", - "id": "ID", - "issue_type": "Typ des Arbeitselements", - "sub_issue_count": "Anzahl untergeordneter Elemente", - "attachment_count": "Anzahl Anhänge", - "created_on": "Erstellt am", - "sub_issue": "Untergeordnetes Element", - "work_item_count": "Anzahl Arbeitselemente" - }, - "extra": { - "show_sub_issues": "Untergeordnete Elemente anzeigen", - "show_empty_groups": "Leere Gruppen anzeigen" - } - }, - "layouts": { - "ordered_by_label": "Dieses Layout wird sortiert nach", - "list": "Liste", - "kanban": "Kanban", - "calendar": "Kalender", - "spreadsheet": "Tabellenansicht", - "gantt": "Zeitachsenansicht", - "title": { - "list": "Listenlayout", - "kanban": "Kanban-Layout", - "calendar": "Kalenderlayout", - "spreadsheet": "Tabellenlayout", - "gantt": "Zeitachsenlayout" - } - }, - "states": { - "active": "Aktiv", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Kommentar hinzufügen", - "switch": { - "private": "Zu privatem Kommentar wechseln", - "public": "Zu öffentlichem Kommentar wechseln" - }, - "create": { - "success": "Kommentar erfolgreich erstellt", - "error": "Kommentar konnte nicht erstellt werden. Bitte versuchen Sie es später erneut." - }, - "update": { - "success": "Kommentar erfolgreich aktualisiert", - "error": "Kommentar konnte nicht aktualisiert werden. Bitte versuchen Sie es später erneut." - }, - "remove": { - "success": "Kommentar erfolgreich entfernt", - "error": "Kommentar konnte nicht entfernt werden. Bitte versuchen Sie es später erneut." - }, - "upload": { - "error": "Anhang konnte nicht hochgeladen werden. Bitte versuchen Sie es später erneut." - }, - "copy_link": { - "success": "Kommentar-Link in die Zwischenablage kopiert", - "error": "Fehler beim Kopieren des Kommentar-Links. Bitte versuchen Sie es später erneut." - } - }, - "empty_state": { - "issue_detail": { - "title": "Arbeitselement existiert nicht", - "description": "Das gesuchte Arbeitselement existiert nicht, wurde archiviert oder gelöscht.", - "primary_button": { - "text": "Weitere Arbeitselemente anzeigen" - } - } - }, - "sibling": { - "label": "Verwandte Arbeitselemente" - }, - "archive": { - "description": "Nur abgeschlossene oder abgebrochene Arbeitselemente können archiviert werden", - "label": "Arbeitselement archivieren", - "confirm_message": "Möchten Sie dieses Arbeitselement wirklich archivieren? Alle archivierten Elemente können später wiederhergestellt werden.", - "success": { - "label": "Erfolgreich archiviert", - "message": "Ihre archivierten Elemente finden Sie in den Projektarchiven." - }, - "failed": { - "message": "Archivierung des Arbeitselements fehlgeschlagen. Bitte versuchen Sie es erneut." - } - }, - "restore": { - "success": { - "title": "Wiederherstellung erfolgreich", - "message": "Ihr Arbeitselement ist jetzt wieder in den Arbeitselementen des Projekts zu finden." - }, - "failed": { - "message": "Wiederherstellung des Arbeitselements fehlgeschlagen. Bitte versuchen Sie es erneut." - } - }, - "relation": { - "relates_to": "Steht in Beziehung zu", - "duplicate": "Duplikat", - "blocked_by": "Blockiert durch", - "blocking": "Blockiert" - }, - "copy_link": "Link zum Arbeitselement kopieren", - "delete": { - "label": "Arbeitselement löschen", - "error": "Fehler beim Löschen des Arbeitselements" - }, - "subscription": { - "actions": { - "subscribed": "Arbeitselement erfolgreich abonniert", - "unsubscribed": "Abo für Arbeitselement beendet" - } - }, - "select": { - "error": "Wählen Sie mindestens ein Arbeitselement aus", - "empty": "Keine Arbeitselemente ausgewählt", - "add_selected": "Ausgewählte Arbeitselemente hinzufügen", - "select_all": "Alle auswählen", - "deselect_all": "Alle abwählen" - }, - "open_in_full_screen": "Arbeitselement im Vollbild öffnen" - }, - "attachment": { - "error": "Datei konnte nicht angehängt werden. Bitte versuchen Sie es erneut.", - "only_one_file_allowed": "Es kann jeweils nur eine Datei hochgeladen werden.", - "file_size_limit": "Die Datei muss kleiner als {size} MB sein.", - "drag_and_drop": "Datei hierher ziehen, um sie hochzuladen", - "delete": "Anhang löschen" - }, - "label": { - "select": "Label auswählen", - "create": { - "success": "Label erfolgreich erstellt", - "failed": "Label konnte nicht erstellt werden", - "already_exists": "Label existiert bereits", - "type": "Eingeben, um ein neues Label zu erstellen" - } - }, - "sub_work_item": { - "update": { - "success": "Untergeordnetes Arbeitselement erfolgreich aktualisiert", - "error": "Fehler beim Aktualisieren des untergeordneten Elements" - }, - "remove": { - "success": "Untergeordnetes Arbeitselement erfolgreich entfernt", - "error": "Fehler beim Entfernen des untergeordneten Elements" - }, - "empty_state": { - "sub_list_filters": { - "title": "Sie haben keine untergeordneten Arbeitselemente, die den von Ihnen angewendeten Filtern entsprechen.", - "description": "Um alle untergeordneten Arbeitselemente anzuzeigen, entfernen Sie alle angewendeten Filter.", - "action": "Filter entfernen" - }, - "list_filters": { - "title": "Sie haben keine Arbeitselemente, die den von Ihnen angewendeten Filtern entsprechen.", - "description": "Um alle Arbeitselemente anzuzeigen, entfernen Sie alle angewendeten Filter.", - "action": "Filter entfernen" - } - } - }, - "view": { - "label": "{count, plural, one {Ansicht} few {Ansichten} other {Ansichten}}", - "create": { - "label": "Ansicht erstellen" - }, - "update": { - "label": "Ansicht aktualisieren" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Ausstehend", - "description": "Ausstehend" - }, - "declined": { - "title": "Abgelehnt", - "description": "Abgelehnt" - }, - "snoozed": { - "title": "Verschoben", - "description": "Noch {days, plural, one{# Tag} few{# Tage} other{# Tage}}" - }, - "accepted": { - "title": "Angenommen", - "description": "Angenommen" - }, - "duplicate": { - "title": "Duplikat", - "description": "Duplikat" - } - }, - "modals": { - "decline": { - "title": "Arbeitselement ablehnen", - "content": "Möchten Sie das Arbeitselement {value} wirklich ablehnen?" - }, - "delete": { - "title": "Arbeitselement löschen", - "content": "Möchten Sie das Arbeitselement {value} wirklich löschen?", - "success": "Arbeitselement erfolgreich gelöscht" - } - }, - "errors": { - "snooze_permission": "Nur Projektadministratoren können Arbeitselemente verschieben/wiederherstellen", - "accept_permission": "Nur Projektadministratoren können Arbeitselemente annehmen", - "decline_permission": "Nur Projektadministratoren können Arbeitselemente ablehnen" - }, - "actions": { - "accept": "Annehmen", - "decline": "Ablehnen", - "snooze": "Verschieben", - "unsnooze": "Wiederherstellen", - "copy": "Link zum Arbeitselement kopieren", - "delete": "Löschen", - "open": "Arbeitselement öffnen", - "mark_as_duplicate": "Als Duplikat markieren", - "move": "{value} in die Arbeitselemente des Projekts verschieben" - }, - "source": { - "in-app": "in der App" - }, - "order_by": { - "created_at": "Erstellt am", - "updated_at": "Aktualisiert am", - "id": "ID" - }, - "label": "Eingang", - "page_label": "{workspace} - Eingang", - "modal": { - "title": "Angenommenes Arbeitselement erstellen" - }, - "tabs": { - "open": "Offen", - "closed": "Geschlossen" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Keine offenen Arbeitselemente", - "description": "Offene Arbeitselemente werden hier angezeigt. Erstellen Sie ein neues." - }, - "sidebar_closed_tab": { - "title": "Keine geschlossenen Arbeitselemente", - "description": "Alle angenommenen oder abgelehnten Arbeitselemente erscheinen hier." - }, - "sidebar_filter": { - "title": "Keine passenden Arbeitselemente", - "description": "Kein Element passt zum Eingang-Filter. Erstellen Sie ein neues." - }, - "detail": { - "title": "Wählen Sie ein Arbeitselement, um Details anzuzeigen." - } - } - }, - "workspace_creation": { - "heading": "Erstellen Sie einen Arbeitsbereich", - "subheading": "Um Plane verwenden zu können, müssen Sie einen Arbeitsbereich erstellen oder beitreten.", - "form": { - "name": { - "label": "Geben Sie Ihrem Arbeitsbereich einen Namen", - "placeholder": "Etwas Bekanntes und Wiedererkennbares wäre sinnvoll." - }, - "url": { - "label": "Legen Sie die URL Ihres Arbeitsbereichs fest", - "placeholder": "Geben Sie eine URL ein oder fügen Sie sie ein", - "edit_slug": "Sie können nur den Slug-Teil der URL bearbeiten" - }, - "organization_size": { - "label": "Wie viele Personen werden diesen Bereich nutzen?", - "placeholder": "Wählen Sie einen Bereich" - } - }, - "errors": { - "creation_disabled": { - "title": "Nur der Instanzadministrator kann Arbeitsbereiche erstellen", - "description": "Wenn Sie die E-Mail Ihres Instanzadministrators kennen, klicken Sie unten, um ihn zu kontaktieren.", - "request_button": "Instanzadministrator bitten" - }, - "validation": { - "name_alphanumeric": "Arbeitsbereichsnamen dürfen nur (' '), ('-'), ('_') und alphanumerische Zeichen enthalten.", - "name_length": "Name ist auf 80 Zeichen begrenzt.", - "url_alphanumeric": "URLs dürfen nur ('-') und alphanumerische Zeichen enthalten.", - "url_length": "URL ist auf 48 Zeichen begrenzt.", - "url_already_taken": "Die Arbeitsbereichs-URL ist bereits vergeben!" - } - }, - "request_email": { - "subject": "Anfrage für einen neuen Arbeitsbereich", - "body": "Hallo Admin,\n\nBitte erstellen Sie einen neuen Arbeitsbereich mit der URL [/workspace-name] für [Zweck].\n\nDanke,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Arbeitsbereich erstellen", - "loading": "Arbeitsbereich wird erstellt" - }, - "toast": { - "success": { - "title": "Erfolg", - "message": "Arbeitsbereich erfolgreich erstellt" - }, - "error": { - "title": "Fehler", - "message": "Arbeitsbereich konnte nicht erstellt werden. Bitte versuchen Sie es erneut." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Übersicht über Projekte, Aktivitäten und Kennzahlen", - "description": "Willkommen bei Plane, wir freuen uns, dass Sie hier sind. Erstellen Sie Ihr erstes Projekt, verfolgen Sie Arbeitselemente und diese Seite verwandelt sich in einen Ort für Ihren Fortschritt. Administratoren sehen hier zusätzlich teamrelevante Elemente.", - "primary_button": { - "text": "Erstes Projekt erstellen", - "comic": { - "title": "Alles beginnt mit einem Projekt in Plane", - "description": "Ein Projekt kann eine Produkt-Roadmap, eine Marketingkampagne oder die Markteinführung eines neuen Autos sein." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analysen", - "page_label": "{workspace} - Analysen", - "open_tasks": "Insgesamt offene Aufgaben", - "error": "Fehler beim Laden der Daten.", - "work_items_closed_in": "Arbeitselemente, die abgeschlossen wurden in", - "selected_projects": "Ausgewählte Projekte", - "total_members": "Gesamtmitglieder", - "total_cycles": "Zyklen insgesamt", - "total_modules": "Module insgesamt", - "pending_work_items": { - "title": "Ausstehende Arbeitselemente", - "empty_state": "Hier wird eine Analyse der ausstehenden Elemente nach Mitarbeitern angezeigt." - }, - "work_items_closed_in_a_year": { - "title": "Arbeitselemente, die in einem Jahr abgeschlossen wurden", - "empty_state": "Schließen Sie Elemente ab, um eine Analyse im Diagramm zu sehen." - }, - "most_work_items_created": { - "title": "Die meisten erstellten Elemente", - "empty_state": "Zeigt die Mitarbeiter und die Anzahl der von ihnen erstellten Elemente." - }, - "most_work_items_closed": { - "title": "Die meisten abgeschlossenen Elemente", - "empty_state": "Zeigt die Mitarbeiter und die Anzahl der von ihnen abgeschlossenen Elemente." - }, - "tabs": { - "scope_and_demand": "Umfang und Nachfrage", - "custom": "Benutzerdefinierte Analysen" - }, - "empty_state": { - "customized_insights": { - "description": "Ihnen zugewiesene Arbeitselemente, aufgeschlüsselt nach Status, werden hier angezeigt.", - "title": "Noch keine Daten" - }, - "created_vs_resolved": { - "description": "Im Laufe der Zeit erstellte und gelöste Arbeitselemente werden hier angezeigt.", - "title": "Noch keine Daten" - }, - "project_insights": { - "title": "Noch keine Daten", - "description": "Ihnen zugewiesene Arbeitselemente, aufgeschlüsselt nach Status, werden hier angezeigt." - }, - "general": { - "title": "Verfolgen Sie Fortschritt, Arbeitsbelastung und Zuweisungen. Erkennen Sie Trends, beseitigen Sie Hindernisse und arbeiten Sie schneller", - "description": "Sehen Sie Umfang vs. Nachfrage, Schätzungen und Scope Creep. Messen Sie die Leistung von Teammitgliedern und Teams und stellen Sie sicher, dass Ihr Projekt rechtzeitig abgeschlossen wird.", - "primary_button": { - "text": "Erstes Projekt starten", - "comic": { - "title": "Analytics funktioniert am besten mit Zyklen + Modulen", - "description": "Begrenzen Sie zunächst Ihre Arbeitselemente zeitlich in Zyklen und gruppieren Sie, wenn möglich, Arbeitselemente, die mehr als einen Zyklus umfassen, in Module. Schauen Sie sich beide in der linken Navigation an." - } - } - } - }, - "created_vs_resolved": "Erstellt vs Gelöst", - "customized_insights": "Individuelle Einblicke", - "backlog_work_items": "Backlog-{entity}", - "active_projects": "Aktive Projekte", - "trend_on_charts": "Trend in Diagrammen", - "all_projects": "Alle Projekte", - "summary_of_projects": "Projektübersicht", - "project_insights": "Projekteinblicke", - "started_work_items": "Begonnene {entity}", - "total_work_items": "Gesamte {entity}", - "total_projects": "Gesamtprojekte", - "total_admins": "Gesamtanzahl der Admins", - "total_users": "Gesamtanzahl der Benutzer", - "total_intake": "Gesamteinnahmen", - "un_started_work_items": "Nicht begonnene {entity}", - "total_guests": "Gesamtanzahl der Gäste", - "completed_work_items": "Abgeschlossene {entity}", - "total": "Gesamte {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Projekt} few {Projekte} other {Projekte}}", - "create": { - "label": "Projekt hinzufügen" - }, - "network": { - "label": "Netzwerk", - "private": { - "title": "Privat", - "description": "Nur auf Einladung zugänglich" - }, - "public": { - "title": "Öffentlich", - "description": "Jeder im Arbeitsbereich außer Gästen kann beitreten" - } - }, - "error": { - "permission": "Sie haben keine Berechtigung für diese Aktion.", - "cycle_delete": "Löschen des Zyklus fehlgeschlagen", - "module_delete": "Löschen des Moduls fehlgeschlagen", - "issue_delete": "Löschen des Arbeitselements fehlgeschlagen" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Nicht begonnen", - "started": "Gestartet", - "completed": "Abgeschlossen", - "cancelled": "Abgebrochen" - }, - "sort": { - "manual": "Manuell", - "name": "Name", - "created_at": "Erstellungsdatum", - "members_length": "Mitgliederanzahl" - }, - "scope": { - "my_projects": "Meine Projekte", - "archived_projects": "Archiviert" - }, - "common": { - "months_count": "{months, plural, one{# Monat} few{# Monate} other{# Monate}}" - }, - "empty_state": { - "general": { - "title": "Keine aktiven Projekte", - "description": "Ein Projekt ist einem übergeordneten Ziel zugeordnet. Projekte enthalten Aufgaben, Zyklen und Module. Erstellen Sie ein neues oder filtern Sie archivierte.", - "primary_button": { - "text": "Erstes Projekt erstellen", - "comic": { - "title": "Alles beginnt mit einem Projekt in Plane", - "description": "Ein Projekt kann eine Produkt-Roadmap, eine Marketingkampagne oder die Markteinführung eines neuen Autos sein." - } - } - }, - "no_projects": { - "title": "Keine Projekte", - "description": "Um Arbeitselemente zu erstellen, müssen Sie ein Projekt erstellen oder Teil eines Projekts sein.", - "primary_button": { - "text": "Erstes Projekt erstellen", - "comic": { - "title": "Alles beginnt mit einem Projekt in Plane", - "description": "Ein Projekt kann eine Produkt-Roadmap, eine Marketingkampagne oder die Markteinführung eines neuen Autos sein." - } - } - }, - "filter": { - "title": "Keine passenden Projekte", - "description": "Keine Projekte entsprechen Ihren Kriterien.\nErstellen Sie ein neues." - }, - "search": { - "description": "Keine Projekte entsprechen Ihren Suchkriterien.\nErstellen Sie ein neues." - } - } - }, - "workspace_views": { - "add_view": "Ansicht hinzufügen", - "empty_state": { - "all-issues": { - "title": "Keine Arbeitselemente im Projekt", - "description": "Erstellen Sie Ihr erstes Element und verfolgen Sie Ihren Fortschritt!", - "primary_button": { - "text": "Arbeitselement erstellen" - } - }, - "assigned": { - "title": "Keine zugewiesenen Elemente", - "description": "Hier werden Ihnen zugewiesene Elemente angezeigt.", - "primary_button": { - "text": "Arbeitselement erstellen" - } - }, - "created": { - "title": "Keine erstellten Elemente", - "description": "Hier werden von Ihnen erstellte Elemente angezeigt.", - "primary_button": { - "text": "Arbeitselement erstellen" - } - }, - "subscribed": { - "title": "Keine abonnierten Elemente", - "description": "Abonnieren Sie Elemente, die Sie interessieren." - }, - "custom-view": { - "title": "Keine passenden Elemente", - "description": "Hier werden Elemente angezeigt, die den Filterkriterien entsprechen." - } - } - }, - "workspace_settings": { - "label": "Arbeitsbereich-Einstellungen", - "page_label": "{workspace} - Allgemeine Einstellungen", - "key_created": "Schlüssel erstellt", - "copy_key": "Kopieren Sie diesen Schlüssel und fügen Sie ihn in Plane Pages ein. Nach dem Schließen können Sie ihn nicht mehr sehen. Eine CSV-Datei mit dem Schlüssel wurde heruntergeladen.", - "token_copied": "Token in die Zwischenablage kopiert.", - "settings": { - "general": { - "title": "Allgemein", - "upload_logo": "Logo hochladen", - "edit_logo": "Logo bearbeiten", - "name": "Name des Arbeitsbereichs", - "company_size": "Unternehmensgröße", - "url": "URL des Arbeitsbereichs", - "update_workspace": "Arbeitsbereich aktualisieren", - "delete_workspace": "Diesen Arbeitsbereich löschen", - "delete_workspace_description": "Das Löschen des Arbeitsbereichs entfernt alle Daten und Ressourcen. Diese Aktion ist nicht umkehrbar.", - "delete_btn": "Arbeitsbereich löschen", - "delete_modal": { - "title": "Möchten Sie diesen Arbeitsbereich wirklich löschen?", - "description": "Sie haben eine aktive Testversion. Bitte kündigen Sie diese zuerst.", - "dismiss": "Schließen", - "cancel": "Testversion kündigen", - "success_title": "Arbeitsbereich gelöscht.", - "success_message": "Sie werden auf Ihr Profil umgeleitet.", - "error_title": "Fehlgeschlagen.", - "error_message": "Bitte versuchen Sie es erneut." - }, - "errors": { - "name": { - "required": "Name ist erforderlich", - "max_length": "Der Name des Arbeitsbereichs darf 80 Zeichen nicht überschreiten" - }, - "company_size": { - "required": "Die Unternehmensgröße ist erforderlich" - } - } - }, - "members": { - "title": "Mitglieder", - "add_member": "Mitglied hinzufügen", - "pending_invites": "Ausstehende Einladungen", - "invitations_sent_successfully": "Einladungen erfolgreich versendet", - "leave_confirmation": "Möchten Sie diesen Arbeitsbereich wirklich verlassen? Sie verlieren den Zugriff. Diese Aktion ist nicht umkehrbar.", - "details": { - "full_name": "Vollständiger Name", - "display_name": "Anzeigename", - "email_address": "E-Mail-Adresse", - "account_type": "Kontotyp", - "authentication": "Authentifizierung", - "joining_date": "Beitrittsdatum" - }, - "modal": { - "title": "Mitarbeiter einladen", - "description": "Laden Sie Personen zur Zusammenarbeit ein.", - "button": "Einladungen senden", - "button_loading": "Einladungen werden gesendet", - "placeholder": "name@unternehmen.de", - "errors": { - "required": "Eine E-Mail-Adresse ist erforderlich.", - "invalid": "E-Mail ist ungültig" - } - } - }, - "billing_and_plans": { - "title": "Abrechnung und Pläne", - "current_plan": "Aktueller Plan", - "free_plan": "Sie nutzen den kostenlosen Plan", - "view_plans": "Pläne anzeigen" - }, - "exports": { - "title": "Exporte", - "exporting": "Wird exportiert", - "previous_exports": "Bisherige Exporte", - "export_separate_files": "Daten in separaten Dateien exportieren", - "modal": { - "title": "Exportieren nach", - "toasts": { - "success": { - "title": "Export erfolgreich", - "message": "Die exportierten {entity} können aus dem vorherigen Export heruntergeladen werden." - }, - "error": { - "title": "Export fehlgeschlagen", - "message": "Bitte versuchen Sie es erneut." - } - } - } - }, - "webhooks": { - "title": "Webhooks", - "add_webhook": "Webhook hinzufügen", - "modal": { - "title": "Webhook erstellen", - "details": "Webhook-Details", - "payload": "Payload-URL", - "question": "Bei welchen Ereignissen soll dieser Webhook ausgelöst werden?", - "error": "URL ist erforderlich" - }, - "secret_key": { - "title": "Geheimer Schlüssel", - "message": "Generieren Sie ein Token, um sich bei Webhooks anzumelden" - }, - "options": { - "all": "Alles senden", - "individual": "Einzelne Ereignisse auswählen" - }, - "toasts": { - "created": { - "title": "Webhook erstellt", - "message": "Webhook wurde erfolgreich erstellt" - }, - "not_created": { - "title": "Webhook nicht erstellt", - "message": "Webhook konnte nicht erstellt werden" - }, - "updated": { - "title": "Webhook aktualisiert", - "message": "Webhook wurde erfolgreich aktualisiert" - }, - "not_updated": { - "title": "Webhook-Aktualisierung fehlgeschlagen", - "message": "Webhook konnte nicht aktualisiert werden" - }, - "removed": { - "title": "Webhook entfernt", - "message": "Webhook wurde erfolgreich entfernt" - }, - "not_removed": { - "title": "Webhook konnte nicht entfernt werden", - "message": "Webhook konnte nicht entfernt werden" - }, - "secret_key_copied": { - "message": "Geheimer Schlüssel in die Zwischenablage kopiert." - }, - "secret_key_not_copied": { - "message": "Fehler beim Kopieren des Schlüssels." - } - } - }, - "api_tokens": { - "title": "API-Tokens", - "add_token": "API-Token hinzufügen", - "create_token": "Token erstellen", - "never_expires": "Läuft nie ab", - "generate_token": "Token generieren", - "generating": "Wird generiert", - "delete": { - "title": "API-Token löschen", - "description": "Alle Anwendungen, die diesen Token verwenden, verlieren den Zugriff. Diese Aktion ist nicht umkehrbar.", - "success": { - "title": "Erfolg!", - "message": "Token erfolgreich gelöscht" - }, - "error": { - "title": "Fehler!", - "message": "Löschen des Tokens fehlgeschlagen" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Keine API-Tokens", - "description": "Verwenden Sie die API, um Plane mit externen Systemen zu integrieren." - }, - "webhooks": { - "title": "Keine Webhooks", - "description": "Erstellen Sie Webhooks, um Aktionen zu automatisieren." - }, - "exports": { - "title": "Keine Exporte", - "description": "Hier finden Sie Ihre Exporthistorie." - }, - "imports": { - "title": "Keine Importe", - "description": "Hier finden Sie Ihre Importhistorie." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Ihre Arbeit", - "work": "Arbeit", - "details": { - "joined_on": "Beigetreten am", - "time_zone": "Zeitzone" - }, - "stats": { - "workload": "Auslastung", - "overview": "Übersicht", - "created": "Erstellte Elemente", - "assigned": "Zugewiesene Elemente", - "subscribed": "Abonnierte Elemente", - "state_distribution": { - "title": "Elemente nach Status", - "empty": "Erstellen Sie Arbeitselemente, um eine Statusanalyse zu sehen." - }, - "priority_distribution": { - "title": "Elemente nach Priorität", - "empty": "Erstellen Sie Arbeitselemente, um eine Prioritätsanalyse zu sehen." - }, - "recent_activity": { - "title": "Letzte Aktivität", - "empty": "Keine Aktivität gefunden.", - "button": "Heutige Aktivität herunterladen", - "button_loading": "Wird heruntergeladen" - } - }, - "actions": { - "profile": "Profil", - "security": "Sicherheit", - "activity": "Aktivität", - "appearance": "Aussehen", - "notifications": "Benachrichtigungen" - }, - "tabs": { - "summary": "Zusammenfassung", - "assigned": "Zugewiesen", - "created": "Erstellt", - "subscribed": "Abonniert", - "activity": "Aktivität" - }, - "empty_state": { - "activity": { - "title": "Keine Aktivität", - "description": "Erstellen Sie ein Arbeitselement, um zu beginnen." - }, - "assigned": { - "title": "Keine zugewiesenen Arbeitselemente", - "description": "Hier werden Ihnen zugewiesene Arbeitselemente angezeigt." - }, - "created": { - "title": "Keine erstellten Arbeitselemente", - "description": "Hier werden von Ihnen erstellte Arbeitselemente angezeigt." - }, - "subscribed": { - "title": "Keine abonnierten Arbeitselemente", - "description": "Abonnieren Sie die Arbeitselemente, die Sie interessieren, und verfolgen Sie sie hier." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Geben Sie eine Projekt-ID ein", - "please_select_a_timezone": "Bitte wählen Sie eine Zeitzone aus", - "archive_project": { - "title": "Projekt archivieren", - "description": "Durch das Archivieren wird das Projekt im Menü ausgeblendet. Der Zugriff bleibt über die Projektseite bestehen.", - "button": "Projekt archivieren" - }, - "delete_project": { - "title": "Projekt löschen", - "description": "Durch das Löschen des Projekts werden alle zugehörigen Daten entfernt. Diese Aktion ist nicht umkehrbar.", - "button": "Projekt löschen" - }, - "toast": { - "success": "Projekt aktualisiert", - "error": "Aktualisierung fehlgeschlagen. Bitte versuchen Sie es erneut." - } - }, - "members": { - "label": "Mitglieder", - "project_lead": "Projektleitung", - "default_assignee": "Standardzuweisung", - "guest_super_permissions": { - "title": "Gastbenutzern Zugriff auf alle Elemente gewähren:", - "sub_heading": "Gäste sehen alle Elemente im Projekt." - }, - "invite_members": { - "title": "Mitglieder einladen", - "sub_heading": "Laden Sie Mitglieder in das Projekt ein.", - "select_co_worker": "Wählen Sie einen Mitarbeiter" - } - }, - "states": { - "describe_this_state_for_your_members": "Beschreiben Sie diesen Status für Ihre Mitglieder.", - "empty_state": { - "title": "Keine Status für die Gruppe {groupKey}", - "description": "Erstellen Sie einen neuen Status" - } - }, - "labels": { - "label_title": "Labelname", - "label_title_is_required": "Ein Labelname ist erforderlich", - "label_max_char": "Der Labelname darf nicht mehr als 255 Zeichen enthalten", - "toast": { - "error": "Fehler beim Aktualisieren des Labels" - } - }, - "estimates": { - "label": "Schätzungen", - "title": "Schätzungen für mein Projekt aktivieren", - "description": "Sie helfen dir, die Komplexität und Arbeitsbelastung des Teams zu kommunizieren.", - "no_estimate": "Keine Schätzung", - "new": "Neues Schätzungssystem", - "create": { - "custom": "Benutzerdefiniert", - "start_from_scratch": "Von Grund auf neu", - "choose_template": "Vorlage wählen", - "choose_estimate_system": "Schätzungssystem wählen", - "enter_estimate_point": "Schätzung eingeben", - "step": "Schritt {step} von {total}", - "label": "Schätzung erstellen" - }, - "toasts": { - "created": { - "success": { - "title": "Schätzung erstellt", - "message": "Die Schätzung wurde erfolgreich erstellt" - }, - "error": { - "title": "Schätzungserstellung fehlgeschlagen", - "message": "Wir konnten die neue Schätzung nicht erstellen, bitte versuche es erneut." - } - }, - "updated": { - "success": { - "title": "Schätzung geändert", - "message": "Die Schätzung wurde in deinem Projekt aktualisiert." - }, - "error": { - "title": "Schätzungsänderung fehlgeschlagen", - "message": "Wir konnten die Schätzung nicht ändern, bitte versuche es erneut" - } - }, - "enabled": { - "success": { - "title": "Erfolg!", - "message": "Schätzungen wurden aktiviert." - } - }, - "disabled": { - "success": { - "title": "Erfolg!", - "message": "Schätzungen wurden deaktiviert." - }, - "error": { - "title": "Fehler!", - "message": "Schätzung konnte nicht deaktiviert werden. Bitte versuche es erneut" - } - } - }, - "validation": { - "min_length": "Die Schätzung muss größer als 0 sein.", - "unable_to_process": "Wir können deine Anfrage nicht verarbeiten, bitte versuche es erneut.", - "numeric": "Die Schätzung muss ein numerischer Wert sein.", - "character": "Die Schätzung muss ein Zeichenwert sein.", - "empty": "Der Schätzungswert darf nicht leer sein.", - "already_exists": "Der Schätzungswert existiert bereits.", - "unsaved_changes": "Du hast ungespeicherte Änderungen. Bitte speichere sie, bevor du auf Fertig klickst", - "remove_empty": "Die Schätzung darf nicht leer sein. Gib einen Wert in jedes Feld ein oder entferne die Felder, für die du keine Werte hast." - }, - "systems": { - "points": { - "label": "Punkte", - "fibonacci": "Fibonacci", - "linear": "Linear", - "squares": "Quadrate", - "custom": "Benutzerdefiniert" - }, - "categories": { - "label": "Kategorien", - "t_shirt_sizes": "T-Shirt-Größen", - "easy_to_hard": "Einfach bis schwer", - "custom": "Benutzerdefiniert" - }, - "time": { - "label": "Zeit", - "hours": "Stunden" - } - } - }, - "automations": { - "label": "Automatisierungen", - "auto-archive": { - "title": "Geschlossene Arbeitselemente automatisch archivieren", - "description": "Plane wird Arbeitselemente automatisch archivieren, die abgeschlossen oder abgebrochen wurden.", - "duration": "Arbeitselemente automatisch archivieren, die seit" - }, - "auto-close": { - "title": "Arbeitselemente automatisch schließen", - "description": "Plane wird Arbeitselemente automatisch schließen, die nicht abgeschlossen oder abgebrochen wurden.", - "duration": "Inaktive Arbeitselemente automatisch schließen seit", - "auto_close_status": "Status der automatischen Schließung" - } - }, - "empty_state": { - "labels": { - "title": "Keine Labels", - "description": "Erstellen Sie Labels, um Elemente zu organisieren." - }, - "estimates": { - "title": "Keine Schätzungssysteme", - "description": "Erstellen Sie ein Schätzungssystem, um den Aufwand zu kommunizieren.", - "primary_button": "Schätzungssystem hinzufügen" - } - } - }, - "project_cycles": { - "add_cycle": "Zyklus hinzufügen", - "more_details": "Weitere Details", - "cycle": "Zyklus", - "update_cycle": "Zyklus aktualisieren", - "create_cycle": "Zyklus erstellen", - "no_matching_cycles": "Keine passenden Zyklen", - "remove_filters_to_see_all_cycles": "Entfernen Sie Filter, um alle Zyklen anzuzeigen", - "remove_search_criteria_to_see_all_cycles": "Entfernen Sie Suchkriterien, um alle Zyklen anzuzeigen", - "only_completed_cycles_can_be_archived": "Nur abgeschlossene Zyklen können archiviert werden", - "start_date": "Startdatum", - "end_date": "Enddatum", - "in_your_timezone": "In Ihrer Zeitzone", - "transfer_work_items": "Übertragen von {count} Arbeitselementen", - "date_range": "Datumsbereich", - "add_date": "Datum hinzufügen", - "active_cycle": { - "label": "Aktiver Zyklus", - "progress": "Fortschritt", - "chart": "Burndown-Diagramm", - "priority_issue": "Hochpriorisierte Elemente", - "assignees": "Zuweisungen", - "issue_burndown": "Burndown für Arbeitselemente", - "ideal": "Ideal", - "current": "Aktuell", - "labels": "Labels" - }, - "upcoming_cycle": { - "label": "Bevorstehender Zyklus" - }, - "completed_cycle": { - "label": "Abgeschlossener Zyklus" - }, - "status": { - "days_left": "Tage übrig", - "completed": "Abgeschlossen", - "yet_to_start": "Noch nicht begonnen", - "in_progress": "In Bearbeitung", - "draft": "Entwurf" - }, - "action": { - "restore": { - "title": "Zyklus wiederherstellen", - "success": { - "title": "Zyklus wiederhergestellt", - "description": "Zyklus wurde wiederhergestellt." - }, - "failed": { - "title": "Wiederherstellung fehlgeschlagen", - "description": "Zyklus konnte nicht wiederhergestellt werden." - } - }, - "favorite": { - "loading": "Wird zu Favoriten hinzugefügt", - "success": { - "description": "Zyklus zu Favoriten hinzugefügt.", - "title": "Erfolg!" - }, - "failed": { - "description": "Zu Favoriten hinzufügen fehlgeschlagen.", - "title": "Fehler!" - } - }, - "unfavorite": { - "loading": "Wird aus Favoriten entfernt", - "success": { - "description": "Zyklus aus Favoriten entfernt.", - "title": "Erfolg!" - }, - "failed": { - "description": "Entfernen fehlgeschlagen.", - "title": "Fehler!" - } - }, - "update": { - "loading": "Zyklus wird aktualisiert", - "success": { - "description": "Zyklus aktualisiert.", - "title": "Erfolg!" - }, - "failed": { - "description": "Aktualisierung fehlgeschlagen.", - "title": "Fehler!" - }, - "error": { - "already_exists": "Ein Zyklus mit diesen Daten existiert bereits. Entfernen Sie das Datum für einen Entwurf." - } - } - }, - "empty_state": { - "general": { - "title": "Gruppieren Sie Arbeit in Zyklen.", - "description": "Begrenzen Sie Arbeit zeitlich, verfolgen Sie Fristen und bleiben Sie auf Kurs.", - "primary_button": { - "text": "Ersten Zyklus erstellen", - "comic": { - "title": "Zyklen sind wiederkehrende Zeitspannen.", - "description": "Sprint, Iteration oder jedes andere Zeitfenster, um Arbeit zu verfolgen." - } - } - }, - "no_issues": { - "title": "Keine Elemente im Zyklus", - "description": "Fügen Sie die Elemente hinzu, die Sie verfolgen möchten.", - "primary_button": { - "text": "Element erstellen" - }, - "secondary_button": { - "text": "Vorhandenes Element hinzufügen" - } - }, - "completed_no_issues": { - "title": "Keine Elemente im Zyklus", - "description": "Die Elemente wurden verschoben oder ausgeblendet. Bearbeiten Sie die Eigenschaften, um sie anzuzeigen." - }, - "active": { - "title": "Kein aktiver Zyklus", - "description": "Ein aktiver Zyklus umfasst das heutige Datum. Verfolgen Sie seinen Fortschritt hier." - }, - "archived": { - "title": "Keine archivierten Zyklen", - "description": "Archivieren Sie abgeschlossene Zyklen, um Ordnung zu halten." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Erstellen und zuweisen eines Arbeitselements", - "description": "Arbeitselemente sind Aufgaben, die Sie sich selbst oder dem Team zuweisen. Verfolgen Sie deren Fortschritt.", - "primary_button": { - "text": "Erstes Element erstellen", - "comic": { - "title": "Arbeitselemente sind die Bausteine", - "description": "Beispiele: UI-Redesign, Rebranding, neues System." - } - } - }, - "no_archived_issues": { - "title": "Keine archivierten Elemente", - "description": "Archivieren Sie abgeschlossene oder abgebrochene Elemente. Richten Sie Automatisierungen ein.", - "primary_button": { - "text": "Automatisierung einrichten" - } - }, - "issues_empty_filter": { - "title": "Keine passenden Elemente", - "secondary_button": { - "text": "Filter löschen" - } - } - } - }, - "project_module": { - "add_module": "Modul hinzufügen", - "update_module": "Modul aktualisieren", - "create_module": "Modul erstellen", - "archive_module": "Modul archivieren", - "restore_module": "Modul wiederherstellen", - "delete_module": "Modul löschen", - "empty_state": { - "general": { - "title": "Gruppieren Sie Meilensteine in Modulen.", - "description": "Module fassen Elemente unter einer logischen Einheit zusammen. Verfolgen Sie Fristen und Fortschritt.", - "primary_button": { - "text": "Erstes Modul erstellen", - "comic": { - "title": "Module gruppieren hierarchisch.", - "description": "Beispiele: Warenkorbmodul, Chassis, Lager." - } - } - }, - "no_issues": { - "title": "Keine Elemente im Modul", - "description": "Fügen Sie dem Modul Elemente hinzu.", - "primary_button": { - "text": "Elemente erstellen" - }, - "secondary_button": { - "text": "Vorhandenes Element hinzufügen" - } - }, - "archived": { - "title": "Keine archivierten Module", - "description": "Archivieren Sie abgeschlossene oder abgebrochene Module." - }, - "sidebar": { - "in_active": "Modul ist nicht aktiv.", - "invalid_date": "Ungültiges Datum. Bitte geben Sie ein gültiges Datum ein." - } - }, - "quick_actions": { - "archive_module": "Modul archivieren", - "archive_module_description": "Nur abgeschlossene/abgebrochene Module können archiviert werden.", - "delete_module": "Modul löschen" - }, - "toast": { - "copy": { - "success": "Link zum Modul kopiert" - }, - "delete": { - "success": "Modul gelöscht", - "error": "Löschen fehlgeschlagen" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Speichern Sie Filter als Ansichten.", - "description": "Ansichten sind gespeicherte Filter, auf die Sie schnell zugreifen und die Sie im Team teilen können.", - "primary_button": { - "text": "Erste Ansicht erstellen", - "comic": { - "title": "Ansichten funktionieren mit den Eigenschaften der Arbeitselemente.", - "description": "Erstellen Sie eine Ansicht mit den gewünschten Filtern." - } - } - }, - "filter": { - "title": "Keine passenden Ansichten", - "description": "Erstellen Sie eine neue Ansicht." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Notieren Sie Ideen, Dokumente oder Wissensdatenbanken. Nutzen Sie AI Galileo.", - "description": "Seiten sind Orte für Ihre Gedanken. Schreiben, formatieren, fügen Sie Arbeitselemente ein und verwenden Sie Komponenten.", - "primary_button": { - "text": "Erste Seite erstellen" - } - }, - "private": { - "title": "Keine privaten Seiten", - "description": "Bewahren Sie private Gedanken auf. Teilen Sie sie, wenn Sie bereit sind.", - "primary_button": { - "text": "Seite erstellen" - } - }, - "public": { - "title": "Keine öffentlichen Seiten", - "description": "Hier sehen Sie die im Projekt geteilten Seiten.", - "primary_button": { - "text": "Seite erstellen" - } - }, - "archived": { - "title": "Keine archivierten Seiten", - "description": "Archivieren Sie Seiten für den späteren Zugriff." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Keine Ergebnisse gefunden" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Keine passenden Elemente" - }, - "no_issues": { - "title": "Keine Elemente" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Keine Kommentare", - "description": "Kommentare dienen der Diskussion und der Nachverfolgung von Elementen." - } - } - }, - "notification": { - "label": "Posteingang", - "page_label": "{workspace} - Posteingang", - "options": { - "mark_all_as_read": "Alle als gelesen markieren", - "mark_read": "Als gelesen markieren", - "mark_unread": "Als ungelesen markieren", - "refresh": "Aktualisieren", - "filters": "Posteingangsfilter", - "show_unread": "Ungelesene anzeigen", - "show_snoozed": "Verschobene anzeigen", - "show_archived": "Archivierte anzeigen", - "mark_archive": "Archivieren", - "mark_unarchive": "Archivierung aufheben", - "mark_snooze": "Verschieben", - "mark_unsnooze": "Wiederherstellen" - }, - "toasts": { - "read": "Benachrichtigung gelesen", - "unread": "Als ungelesen markiert", - "archived": "Archiviert", - "unarchived": "Archivierung aufgehoben", - "snoozed": "Verschoben", - "unsnoozed": "Wiederhergestellt" - }, - "empty_state": { - "detail": { - "title": "Wählen Sie ein Element, um Details anzuzeigen." - }, - "all": { - "title": "Keine zugewiesenen Elemente", - "description": "Hier sehen Sie Aktualisierungen zu Ihnen zugewiesenen Elementen." - }, - "mentions": { - "title": "Keine Erwähnungen", - "description": "Hier sehen Sie Erwähnungen über Sie." - } - }, - "tabs": { - "all": "Alle", - "mentions": "Erwähnungen" - }, - "filter": { - "assigned": "Mir zugewiesen", - "created": "Von mir erstellt", - "subscribed": "Abonniert" - }, - "snooze": { - "1_day": "1 Tag", - "3_days": "3 Tage", - "5_days": "5 Tage", - "1_week": "1 Woche", - "2_weeks": "2 Wochen", - "custom": "Benutzerdefiniert" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Fügen Sie Elemente hinzu, um den Fortschritt zu verfolgen" - }, - "chart": { - "title": "Fügen Sie Elemente hinzu, um ein Burndown-Diagramm anzuzeigen." - }, - "priority_issue": { - "title": "Hochpriorisierte Arbeitselemente werden hier angezeigt." - }, - "assignee": { - "title": "Weisen Sie Elemente zu, um eine Übersicht der Zuweisungen zu sehen." - }, - "label": { - "title": "Fügen Sie Labels hinzu, um eine Analyse nach Labels zu erhalten." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Eingang ist nicht aktiviert", - "description": "Aktivieren Sie den Eingang in den Projekteinstellungen, um Anfragen zu verwalten.", - "primary_button": { - "text": "Funktionen verwalten" - } - }, - "cycle": { - "title": "Zyklen sind nicht aktiviert", - "description": "Aktivieren Sie Zyklen, um Arbeit zeitlich zu begrenzen.", - "primary_button": { - "text": "Funktionen verwalten" - } - }, - "module": { - "title": "Module sind nicht aktiviert", - "description": "Aktivieren Sie Module in den Projekteinstellungen.", - "primary_button": { - "text": "Funktionen verwalten" - } - }, - "page": { - "title": "Seiten sind nicht aktiviert", - "description": "Aktivieren Sie Seiten in den Projekteinstellungen.", - "primary_button": { - "text": "Funktionen verwalten" - } - }, - "view": { - "title": "Ansichten sind nicht aktiviert", - "description": "Aktivieren Sie Ansichten in den Projekteinstellungen.", - "primary_button": { - "text": "Funktionen verwalten" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Einen Entwurf für ein Element erstellen", - "empty_state": { - "title": "Entwürfe für Elemente und Kommentare werden hier angezeigt.", - "description": "Beginnen Sie mit dem Erstellen eines Arbeitselements und lassen Sie es als Entwurf.", - "primary_button": { - "text": "Ersten Entwurf erstellen" - } - }, - "delete_modal": { - "title": "Entwurf löschen", - "description": "Möchten Sie diesen Entwurf wirklich löschen? Diese Aktion ist nicht umkehrbar." - }, - "toasts": { - "created": { - "success": "Entwurf erstellt", - "error": "Erstellung fehlgeschlagen" - }, - "deleted": { - "success": "Entwurf gelöscht" - } - } - }, - "stickies": { - "title": "Ihre Notizen", - "placeholder": "Klicken, um zu schreiben", - "all": "Alle Notizen", - "no-data": "Halten Sie Ideen und Gedanken fest. Fügen Sie die erste Notiz hinzu.", - "add": "Notiz hinzufügen", - "search_placeholder": "Nach Name suchen", - "delete": "Notiz löschen", - "delete_confirmation": "Möchten Sie diese Notiz wirklich löschen?", - "empty_state": { - "simple": "Halten Sie Ideen und Gedanken fest. Fügen Sie die erste Notiz hinzu.", - "general": { - "title": "Notizen sind schnelle Aufzeichnungen.", - "description": "Schreiben Sie Ihre Ideen auf und greifen Sie von überall darauf zu.", - "primary_button": { - "text": "Notiz hinzufügen" - } - }, - "search": { - "title": "Keine Notizen gefunden.", - "description": "Versuchen Sie einen anderen Begriff oder erstellen Sie eine neue.", - "primary_button": { - "text": "Notiz hinzufügen" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Der Name der Notiz darf max. 100 Zeichen haben.", - "already_exists": "Eine Notiz ohne Beschreibung existiert bereits" - }, - "created": { - "title": "Notiz erstellt", - "message": "Notiz erfolgreich erstellt" - }, - "not_created": { - "title": "Erstellung fehlgeschlagen", - "message": "Notiz konnte nicht erstellt werden" - }, - "updated": { - "title": "Notiz aktualisiert", - "message": "Notiz erfolgreich aktualisiert" - }, - "not_updated": { - "title": "Aktualisierung fehlgeschlagen", - "message": "Notiz konnte nicht aktualisiert werden" - }, - "removed": { - "title": "Notiz gelöscht", - "message": "Notiz erfolgreich gelöscht" - }, - "not_removed": { - "title": "Löschen fehlgeschlagen", - "message": "Notiz konnte nicht gelöscht werden" - } - } - }, - "role_details": { - "guest": { - "title": "Gast", - "description": "Externe Mitglieder können als Gäste eingeladen werden." - }, - "member": { - "title": "Mitglied", - "description": "Kann Entitäten lesen, schreiben, bearbeiten und löschen." - }, - "admin": { - "title": "Administrator", - "description": "Besitzt alle Berechtigungen im Arbeitsbereich." - } - }, - "user_roles": { - "product_or_project_manager": "Produkt-/Projektmanager", - "development_or_engineering": "Entwicklung/Ingenieurwesen", - "founder_or_executive": "Gründer/Führungskraft", - "freelancer_or_consultant": "Freiberufler/Berater", - "marketing_or_growth": "Marketing/Wachstum", - "sales_or_business_development": "Vertrieb/Business Development", - "support_or_operations": "Support/Betrieb", - "student_or_professor": "Student/Professor", - "human_resources": "Personalwesen", - "other": "Andere" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Arbeitselemente aus GitHub-Repositories importieren." - }, - "jira": { - "title": "Jira", - "description": "Arbeitselemente und Epiks aus Jira importieren." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Arbeitselemente in CSV exportieren.", - "short_description": "Als CSV exportieren" - }, - "excel": { - "title": "Excel", - "description": "Arbeitselemente in Excel exportieren.", - "short_description": "Als Excel exportieren" - }, - "xlsx": { - "title": "Excel", - "description": "Arbeitselemente in Excel exportieren.", - "short_description": "Als Excel exportieren" - }, - "json": { - "title": "JSON", - "description": "Arbeitselemente in JSON exportieren.", - "short_description": "Als JSON exportieren" - } - }, - "default_global_view": { - "all_issues": "Alle Elemente", - "assigned": "Zugewiesen", - "created": "Erstellt", - "subscribed": "Abonniert" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Systemeinstellungen" - }, - "light": { - "label": "Hell" - }, - "dark": { - "label": "Dunkel" - }, - "light_contrast": { - "label": "Heller hoher Kontrast" - }, - "dark_contrast": { - "label": "Dunkler hoher Kontrast" - }, - "custom": { - "label": "Benutzerdefiniertes Theme" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Geplant", - "in_progress": "In Bearbeitung", - "paused": "Pausiert", - "completed": "Abgeschlossen", - "cancelled": "Abgebrochen" - }, - "layout": { - "list": "Liste", - "board": "Board", - "timeline": "Zeitachse" - }, - "order_by": { - "name": "Name", - "progress": "Fortschritt", - "issues": "Anzahl Elemente", - "due_date": "Fälligkeitsdatum", - "created_at": "Erstellungsdatum", - "manual": "Manuell" - } - }, - "cycle": { - "label": "{count, plural, one {Zyklus} few {Zyklen} other {Zyklen}}", - "no_cycle": "Kein Zyklus" - }, - "module": { - "label": "{count, plural, one {Modul} few {Module} other {Module}}", - "no_module": "Kein Modul" - }, - "description_versions": { - "last_edited_by": "Zuletzt bearbeitet von", - "previously_edited_by": "Zuvor bearbeitet von", - "edited_by": "Bearbeitet von" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane ist nicht gestartet. Dies könnte daran liegen, dass einer oder mehrere Plane-Services nicht starten konnten.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Wählen Sie View Logs aus setup.sh und Docker-Logs, um sicherzugehen." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Gliederung", - "empty_state": { - "title": "Fehlende Überschriften", - "description": "Fügen Sie einige Überschriften zu dieser Seite hinzu, um sie hier zu sehen." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Wörter", - "characters": "Zeichen", - "paragraphs": "Absätze", - "read_time": "Lesezeit" - }, - "actors_info": { - "edited_by": "Bearbeitet von", - "created_by": "Erstellt von" - }, - "version_history": { - "label": "Versionsverlauf", - "current_version": "Aktuelle Version" - } - }, - "assets": { - "label": "Assets", - "download_button": "Herunterladen", - "empty_state": { - "title": "Fehlende Bilder", - "description": "Fügen Sie Bilder hinzu, um sie hier zu sehen." - } - } - }, - "open_button": "Navigationsbereich öffnen", - "close_button": "Navigationsbereich schließen", - "outline_floating_button": "Gliederung öffnen" - } -} diff --git a/packages/i18n/src/locales/de/translations.ts b/packages/i18n/src/locales/de/translations.ts new file mode 100644 index 0000000000..095693b1b4 --- /dev/null +++ b/packages/i18n/src/locales/de/translations.ts @@ -0,0 +1,2588 @@ +export default { + sidebar: { + projects: "Projekte", + pages: "Seiten", + new_work_item: "Neues Arbeitselement", + home: "Startseite", + your_work: "Ihre Arbeit", + inbox: "Posteingang", + workspace: "Arbeitsbereich", + views: "Ansichten", + analytics: "Analysen", + work_items: "Arbeitselemente", + cycles: "Zyklen", + modules: "Module", + intake: "Eingang", + drafts: "Entwürfe", + favorites: "Favoriten", + pro: "Pro", + upgrade: "Upgrade", + }, + auth: { + common: { + email: { + label: "E-Mail", + placeholder: "name@unternehmen.de", + errors: { + required: "E-Mail ist erforderlich", + invalid: "E-Mail ist ungültig", + }, + }, + password: { + label: "Passwort", + set_password: "Passwort festlegen", + placeholder: "Passwort eingeben", + confirm_password: { + label: "Passwort bestätigen", + placeholder: "Passwort bestätigen", + }, + current_password: { + label: "Aktuelles Passwort", + }, + new_password: { + label: "Neues Passwort", + placeholder: "Neues Passwort eingeben", + }, + change_password: { + label: { + default: "Passwort ändern", + submitting: "Passwort wird geändert", + }, + }, + errors: { + match: "Passwörter stimmen nicht überein", + empty: "Bitte geben Sie Ihr Passwort ein", + length: "Das Passwort sollte länger als 8 Zeichen sein", + strength: { + weak: "Das Passwort ist schwach", + strong: "Das Passwort ist stark", + }, + }, + submit: "Passwort festlegen", + toast: { + change_password: { + success: { + title: "Erfolg!", + message: "Das Passwort wurde erfolgreich geändert.", + }, + error: { + title: "Fehler!", + message: "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut.", + }, + }, + }, + }, + unique_code: { + label: "Einmaliger Code", + placeholder: "gets-sets-flys", + paste_code: "Fügen Sie den an Ihre E-Mail gesendeten Code ein", + requesting_new_code: "Neuen Code anfordern", + sending_code: "Code wird gesendet", + }, + already_have_an_account: "Haben Sie bereits ein Konto?", + login: "Anmelden", + create_account: "Konto erstellen", + new_to_plane: "Neu bei Plane?", + back_to_sign_in: "Zurück zur Anmeldung", + resend_in: "Erneut senden in {seconds} Sekunden", + sign_in_with_unique_code: "Mit einmaligem Code anmelden", + forgot_password: "Passwort vergessen?", + }, + sign_up: { + header: { + label: "Erstellen Sie ein Konto und beginnen Sie, Ihre Arbeit mit Ihrem Team zu verwalten.", + step: { + email: { + header: "Registrierung", + sub_header: "", + }, + password: { + header: "Registrierung", + sub_header: "Registrieren Sie sich mit einer Kombination aus E-Mail und Passwort.", + }, + unique_code: { + header: "Registrierung", + sub_header: + "Registrieren Sie sich mit einem einmaligen Code, der an die oben angegebene E-Mail-Adresse gesendet wurde.", + }, + }, + }, + errors: { + password: { + strength: "Versuchen Sie, ein starkes Passwort zu wählen, um fortzufahren", + }, + }, + }, + sign_in: { + header: { + label: "Melden Sie sich an und beginnen Sie, Ihre Arbeit mit Ihrem Team zu verwalten.", + step: { + email: { + header: "Anmelden oder registrieren", + sub_header: "", + }, + password: { + header: "Anmelden oder registrieren", + sub_header: "Verwenden Sie Ihre E-Mail-Passwort-Kombination, um sich anzumelden.", + }, + unique_code: { + header: "Anmelden oder registrieren", + sub_header: + "Melden Sie sich mit einem einmaligen Code an, der an die oben angegebene E-Mail-Adresse gesendet wurde.", + }, + }, + }, + }, + forgot_password: { + title: "Passwort zurücksetzen", + description: + "Geben Sie die verifizierte E-Mail-Adresse Ihres Benutzerkontos ein, und wir senden Ihnen einen Link zum Zurücksetzen des Passworts.", + email_sent: "Wir haben Ihnen einen Link zum Zurücksetzen an Ihre E-Mail-Adresse gesendet.", + send_reset_link: "Link zum Zurücksetzen senden", + errors: { + smtp_not_enabled: + "Wir sehen, dass Ihr Administrator SMTP nicht aktiviert hat; wir können keinen Link zum Zurücksetzen des Passworts senden.", + }, + toast: { + success: { + title: "E-Mail gesendet", + message: + "Überprüfen Sie Ihren Posteingang auf den Link zum Zurücksetzen des Passworts. Sollte er innerhalb einiger Minuten nicht ankommen, sehen Sie bitte in Ihrem Spam-Ordner nach.", + }, + error: { + title: "Fehler!", + message: "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut.", + }, + }, + }, + reset_password: { + title: "Neues Passwort festlegen", + description: "Sichern Sie Ihr Konto mit einem starken Passwort", + }, + set_password: { + title: "Sichern Sie Ihr Konto", + description: "Das Festlegen eines Passworts hilft Ihnen, sich sicher anzumelden", + }, + sign_out: { + toast: { + error: { + title: "Fehler!", + message: "Abmelden fehlgeschlagen. Bitte versuchen Sie es erneut.", + }, + }, + }, + }, + submit: "Senden", + cancel: "Abbrechen", + loading: "Wird geladen", + error: "Fehler", + success: "Erfolg", + warning: "Warnung", + info: "Information", + close: "Schließen", + yes: "Ja", + no: "Nein", + ok: "OK", + name: "Name", + description: "Beschreibung", + search: "Suchen", + add_member: "Mitglied hinzufügen", + adding_members: "Mitglieder werden hinzugefügt", + remove_member: "Mitglied entfernen", + add_members: "Mitglieder hinzufügen", + adding_member: "Mitglieder werden hinzugefügt", + remove_members: "Mitglieder entfernen", + add: "Hinzufügen", + adding: "Wird hinzugefügt", + remove: "Entfernen", + add_new: "Neu hinzufügen", + remove_selected: "Ausgewählte entfernen", + first_name: "Vorname", + last_name: "Nachname", + email: "E-Mail", + display_name: "Anzeigename", + role: "Rolle", + timezone: "Zeitzone", + avatar: "Profilbild", + cover_image: "Titelbild", + password: "Passwort", + change_cover: "Titelbild ändern", + language: "Sprache", + saving: "Wird gespeichert", + save_changes: "Änderungen speichern", + deactivate_account: "Konto deaktivieren", + deactivate_account_description: + "Wenn Sie Ihr Konto deaktivieren, werden alle damit verbundenen Daten und Ressourcen dauerhaft gelöscht und können nicht wiederhergestellt werden.", + profile_settings: "Profileinstellungen", + your_account: "Ihr Konto", + security: "Sicherheit", + activity: "Aktivität", + appearance: "Aussehen", + notifications: "Benachrichtigungen", + workspaces: "Arbeitsbereiche", + create_workspace: "Arbeitsbereich erstellen", + invitations: "Einladungen", + summary: "Zusammenfassung", + assigned: "Zugewiesen", + created: "Erstellt", + subscribed: "Abonniert", + you_do_not_have_the_permission_to_access_this_page: "Sie haben keine Berechtigung zum Zugriff auf diese Seite.", + something_went_wrong_please_try_again: "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut.", + load_more: "Mehr laden", + select_or_customize_your_interface_color_scheme: + "Wählen oder gestalten Sie Ihr Farbdesign für die Benutzeroberfläche.", + theme: "Theme", + system_preference: "Systemeinstellungen", + light: "Hell", + dark: "Dunkel", + light_contrast: "Heller hoher Kontrast", + dark_contrast: "Dunkler hoher Kontrast", + custom: "Benutzerdefiniertes Theme", + select_your_theme: "Wählen Sie ein Theme", + customize_your_theme: "Passen Sie Ihr Theme an", + background_color: "Hintergrundfarbe", + text_color: "Textfarbe", + primary_color: "Primärfarbe (Theme)", + sidebar_background_color: "Seitenleisten-Hintergrundfarbe", + sidebar_text_color: "Seitenleisten-Textfarbe", + set_theme: "Theme festlegen", + enter_a_valid_hex_code_of_6_characters: "Geben Sie einen gültigen 6-stelligen Hex-Code ein", + background_color_is_required: "Die Hintergrundfarbe ist erforderlich", + text_color_is_required: "Die Textfarbe ist erforderlich", + primary_color_is_required: "Die Primärfarbe ist erforderlich", + sidebar_background_color_is_required: "Die Hintergrundfarbe der Seitenleiste ist erforderlich", + sidebar_text_color_is_required: "Die Textfarbe der Seitenleiste ist erforderlich", + updating_theme: "Theme wird aktualisiert", + theme_updated_successfully: "Theme erfolgreich aktualisiert", + failed_to_update_the_theme: "Aktualisierung des Themes fehlgeschlagen", + email_notifications: "E-Mail-Benachrichtigungen", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Bleiben Sie informiert über Arbeitselemente, die Sie abonniert haben. Aktivieren Sie diese Option, um Benachrichtigungen zu erhalten.", + email_notification_setting_updated_successfully: "E-Mail-Benachrichtigungseinstellung erfolgreich aktualisiert", + failed_to_update_email_notification_setting: "Aktualisierung der E-Mail-Benachrichtigungseinstellung fehlgeschlagen", + notify_me_when: "Benachrichtige mich, wenn", + property_changes: "Eigenschaften ändern", + property_changes_description: + "Benachrichtigen Sie mich, wenn sich Eigenschaften von Arbeitselementen wie Zuweisung, Priorität, Schätzungen oder Ähnliches ändern.", + state_change: "Statusänderung", + state_change_description: "Benachrichtigen Sie mich, wenn ein Arbeitselement in einen anderen Status wechselt.", + issue_completed: "Arbeitselement abgeschlossen", + issue_completed_description: "Benachrichtigen Sie mich nur, wenn ein Arbeitselement abgeschlossen ist.", + comments: "Kommentare", + comments_description: "Benachrichtigen Sie mich, wenn jemand einen Kommentar zu einem Arbeitselement hinzufügt.", + mentions: "Erwähnungen", + mentions_description: + "Benachrichtigen Sie mich nur, wenn mich jemand in einem Kommentar oder in einer Beschreibung erwähnt.", + old_password: "Altes Passwort", + general_settings: "Allgemeine Einstellungen", + sign_out: "Abmelden", + signing_out: "Wird abgemeldet", + active_cycles: "Aktive Zyklen", + active_cycles_description: + "Verfolgen Sie Zyklen in allen Projekten, überwachen Sie hochpriorisierte Arbeitselemente und konzentrieren Sie sich auf Zyklen, die Aufmerksamkeit erfordern.", + on_demand_snapshots_of_all_your_cycles: "Snapshots aller Ihrer Zyklen auf Abruf", + upgrade: "Upgrade", + "10000_feet_view": "Überblick aus 10.000 Fuß über alle aktiven Zyklen.", + "10000_feet_view_description": + "Verschaffen Sie sich einen Überblick über alle laufenden Zyklen in allen Projekten auf einmal, anstatt zwischen den Zyklen in jedem Projekt zu wechseln.", + get_snapshot_of_each_active_cycle: "Erhalten Sie einen Snapshot jedes aktiven Zyklus.", + get_snapshot_of_each_active_cycle_description: + "Behalten Sie wichtige Kennzahlen für alle aktiven Zyklen im Blick, verfolgen Sie deren Fortschritt und vergleichen Sie den Umfang mit den Fristen.", + compare_burndowns: "Vergleichen Sie Burndown-Charts.", + compare_burndowns_description: + "Überwachen Sie die Teamleistung, indem Sie sich die Burndown-Berichte jedes Zyklus ansehen.", + quickly_see_make_or_break_issues: "Erkennen Sie schnell kritische Arbeitselemente.", + quickly_see_make_or_break_issues_description: + "Sehen Sie sich hochpriorisierte Arbeitselemente für jeden Zyklus in Bezug auf Fristen an. Alle auf einen Klick anzeigen.", + zoom_into_cycles_that_need_attention: "Fokussieren Sie sich auf Zyklen, die besondere Aufmerksamkeit erfordern.", + zoom_into_cycles_that_need_attention_description: + "Untersuchen Sie den Status jedes Zyklus, der nicht den Erwartungen entspricht, mit nur einem Klick.", + stay_ahead_of_blockers: "Erkennen Sie frühzeitig Blocker.", + stay_ahead_of_blockers_description: + "Identifizieren Sie projektübergreifende Probleme und erkennen Sie Abhängigkeiten zwischen Zyklen, die sonst nicht offensichtlich wären.", + analytics: "Analysen", + workspace_invites: "Einladungen zum Arbeitsbereich", + enter_god_mode: "God-Mode betreten", + workspace_logo: "Arbeitsbereichslogo", + new_issue: "Neues Arbeitselement", + your_work: "Ihre Arbeit", + drafts: "Entwürfe", + projects: "Projekte", + views: "Ansichten", + workspace: "Arbeitsbereich", + archives: "Archive", + settings: "Einstellungen", + failed_to_move_favorite: "Verschieben des Favoriten fehlgeschlagen", + favorites: "Favoriten", + no_favorites_yet: "Noch keine Favoriten", + create_folder: "Ordner erstellen", + new_folder: "Neuer Ordner", + favorite_updated_successfully: "Favorit erfolgreich aktualisiert", + favorite_created_successfully: "Favorit erfolgreich erstellt", + folder_already_exists: "Ordner existiert bereits", + folder_name_cannot_be_empty: "Der Ordnername darf nicht leer sein", + something_went_wrong: "Etwas ist schiefgelaufen", + failed_to_reorder_favorite: "Umsortieren des Favoriten fehlgeschlagen", + favorite_removed_successfully: "Favorit erfolgreich entfernt", + failed_to_create_favorite: "Erstellen des Favoriten fehlgeschlagen", + failed_to_rename_favorite: "Umbenennen des Favoriten fehlgeschlagen", + project_link_copied_to_clipboard: "Projektlink in die Zwischenablage kopiert", + link_copied: "Link kopiert", + add_project: "Projekt hinzufügen", + create_project: "Projekt erstellen", + failed_to_remove_project_from_favorites: + "Projekt konnte nicht aus den Favoriten entfernt werden. Bitte versuchen Sie es erneut.", + project_created_successfully: "Projekt erfolgreich erstellt", + project_created_successfully_description: + "Das Projekt wurde erfolgreich erstellt. Sie können nun Arbeitselemente hinzufügen.", + project_name_already_taken: "Der Projektname ist bereits vergeben.", + project_identifier_already_taken: "Der Projekt-Identifier ist bereits vergeben.", + project_cover_image_alt: "Titelbild des Projekts", + name_is_required: "Name ist erforderlich", + title_should_be_less_than_255_characters: "Der Titel sollte weniger als 255 Zeichen enthalten", + project_name: "Projektname", + project_id_must_be_at_least_1_character: "Projekt-ID muss mindestens 1 Zeichen lang sein", + project_id_must_be_at_most_5_characters: "Projekt-ID darf maximal 5 Zeichen lang sein", + project_id: "Projekt-ID", + project_id_tooltip_content: "Hilft, Arbeitselemente im Projekt eindeutig zu identifizieren. Max. 5 Zeichen.", + description_placeholder: "Beschreibung", + only_alphanumeric_non_latin_characters_allowed: "Es sind nur alphanumerische und nicht-lateinische Zeichen erlaubt.", + project_id_is_required: "Projekt-ID ist erforderlich", + project_id_allowed_char: "Es sind nur alphanumerische und nicht-lateinische Zeichen erlaubt.", + project_id_min_char: "Projekt-ID muss mindestens 1 Zeichen lang sein", + project_id_max_char: "Projekt-ID darf maximal 5 Zeichen lang sein", + project_description_placeholder: "Geben Sie eine Projektbeschreibung ein", + select_network: "Netzwerk auswählen", + lead: "Leitung", + date_range: "Datumsbereich", + private: "Privat", + public: "Öffentlich", + accessible_only_by_invite: "Nur auf Einladung zugänglich", + anyone_in_the_workspace_except_guests_can_join: "Jeder im Arbeitsbereich außer Gästen kann beitreten", + creating: "Wird erstellt", + creating_project: "Projekt wird erstellt", + adding_project_to_favorites: "Projekt wird zu Favoriten hinzugefügt", + project_added_to_favorites: "Projekt zu Favoriten hinzugefügt", + couldnt_add_the_project_to_favorites: + "Projekt konnte nicht zu den Favoriten hinzugefügt werden. Bitte versuchen Sie es erneut.", + removing_project_from_favorites: "Projekt wird aus Favoriten entfernt", + project_removed_from_favorites: "Projekt aus Favoriten entfernt", + couldnt_remove_the_project_from_favorites: + "Projekt konnte nicht aus den Favoriten entfernt werden. Bitte versuchen Sie es erneut.", + add_to_favorites: "Zu Favoriten hinzufügen", + remove_from_favorites: "Aus Favoriten entfernen", + publish_project: "Projekt veröffentlichen", + publish: "Veröffentlichen", + copy_link: "Link kopieren", + leave_project: "Projekt verlassen", + join_the_project_to_rearrange: "Treten Sie dem Projekt bei, um die Anordnung zu ändern", + drag_to_rearrange: "Ziehen, um neu anzuordnen", + congrats: "Herzlichen Glückwunsch!", + open_project: "Projekt öffnen", + issues: "Arbeitselemente", + cycles: "Zyklen", + modules: "Module", + pages: "Seiten", + intake: "Eingang", + time_tracking: "Zeiterfassung", + work_management: "Arbeitsverwaltung", + projects_and_issues: "Projekte und Arbeitselemente", + projects_and_issues_description: "Aktivieren oder deaktivieren Sie diese Funktionen im Projekt.", + cycles_description: + "Zeitlich begrenzen Sie die Arbeit pro Projekt und passen Sie den Zeitraum bei Bedarf an. Ein Zyklus kann 2 Wochen dauern, der nächste nur 1 Woche.", + modules_description: "Organisieren Sie die Arbeit in Unterprojekte mit eigenen Leitern und Zuständigen.", + views_description: + "Speichern Sie benutzerdefinierte Sortierungen, Filter und Anzeigeoptionen oder teilen Sie sie mit Ihrem Team.", + pages_description: "Erstellen und bearbeiten Sie frei formulierte Inhalte – Notizen, Dokumente, alles Mögliche.", + intake_description: + "Erlauben Sie Nicht-Mitgliedern, Bugs, Feedback und Vorschläge zu teilen – ohne Ihren Arbeitsablauf zu stören.", + time_tracking_description: "Erfassen Sie die auf Arbeitselemente und Projekte verwendete Zeit.", + work_management_description: "Verwalten Sie Ihre Arbeit und Projekte mühelos.", + documentation: "Dokumentation", + message_support: "Support kontaktieren", + contact_sales: "Vertrieb kontaktieren", + hyper_mode: "Hyper-Modus", + keyboard_shortcuts: "Tastaturkürzel", + whats_new: "Was ist neu?", + version: "Version", + we_are_having_trouble_fetching_the_updates: "Wir haben Probleme beim Abrufen der Updates.", + our_changelogs: "unsere Changelogs", + for_the_latest_updates: "für die neuesten Updates.", + please_visit: "Bitte besuchen Sie", + docs: "Dokumentation", + full_changelog: "Vollständiges Änderungsprotokoll", + support: "Support", + discord: "Discord", + powered_by_plane_pages: "Bereitgestellt von Plane Pages", + please_select_at_least_one_invitation: "Bitte wählen Sie mindestens eine Einladung aus.", + please_select_at_least_one_invitation_description: + "Wählen Sie mindestens eine Einladung aus, um dem Arbeitsbereich beizutreten.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Wir sehen, dass Sie jemand in einen Arbeitsbereich eingeladen hat", + join_a_workspace: "Einem Arbeitsbereich beitreten", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Wir sehen, dass Sie jemand in einen Arbeitsbereich eingeladen hat", + join_a_workspace_description: "Einem Arbeitsbereich beitreten", + accept_and_join: "Akzeptieren und beitreten", + go_home: "Zur Startseite", + no_pending_invites: "Keine ausstehenden Einladungen", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Hier sehen Sie, falls Sie jemand in einen Arbeitsbereich einlädt", + back_to_home: "Zurück zur Startseite", + workspace_name: "arbeitsbereich-name", + deactivate_your_account: "Ihr Konto deaktivieren", + deactivate_your_account_description: + "Nach der Deaktivierung können Ihnen keine Arbeitselemente mehr zugewiesen werden, und es fallen keine Gebühren für den Arbeitsbereich an. Um Ihr Konto wieder zu aktivieren, benötigen Sie eine Einladung zu einem Arbeitsbereich an diese E-Mail-Adresse.", + deactivating: "Wird deaktiviert", + confirm: "Bestätigen", + confirming: "Wird bestätigt", + draft_created: "Entwurf erstellt", + issue_created_successfully: "Arbeitselement erfolgreich erstellt", + draft_creation_failed: "Erstellung des Entwurfs fehlgeschlagen", + issue_creation_failed: "Erstellung des Arbeitselements fehlgeschlagen", + draft_issue: "Entwurf eines Arbeitselements", + issue_updated_successfully: "Arbeitselement erfolgreich aktualisiert", + issue_could_not_be_updated: "Arbeitselement konnte nicht aktualisiert werden", + create_a_draft: "Einen Entwurf erstellen", + save_to_drafts: "Als Entwurf speichern", + save: "Speichern", + update: "Aktualisieren", + updating: "Wird aktualisiert", + create_new_issue: "Neues Arbeitselement erstellen", + editor_is_not_ready_to_discard_changes: "Der Editor ist nicht bereit, Änderungen zu verwerfen", + failed_to_move_issue_to_project: "Verschieben des Arbeitselements in das Projekt fehlgeschlagen", + create_more: "Mehr erstellen", + add_to_project: "Zum Projekt hinzufügen", + discard: "Verwerfen", + duplicate_issue_found: "Doppeltes Arbeitselement gefunden", + duplicate_issues_found: "Doppelte Arbeitselemente gefunden", + no_matching_results: "Keine übereinstimmenden Ergebnisse", + title_is_required: "Ein Titel ist erforderlich", + title: "Titel", + state: "Status", + priority: "Priorität", + none: "Keine", + urgent: "Dringend", + high: "Hoch", + medium: "Mittel", + low: "Niedrig", + members: "Mitglieder", + assignee: "Zugewiesen", + assignees: "Zugewiesene", + you: "Sie", + labels: "Labels", + create_new_label: "Neues Label erstellen", + start_date: "Startdatum", + end_date: "Enddatum", + due_date: "Fälligkeitsdatum", + estimate: "Schätzung", + change_parent_issue: "Übergeordnetes Arbeitselement ändern", + remove_parent_issue: "Übergeordnetes Arbeitselement entfernen", + add_parent: "Übergeordnetes Element hinzufügen", + loading_members: "Mitglieder werden geladen", + view_link_copied_to_clipboard: "Ansichtslink in die Zwischenablage kopiert.", + required: "Erforderlich", + optional: "Optional", + Cancel: "Abbrechen", + edit: "Bearbeiten", + archive: "Archivieren", + restore: "Wiederherstellen", + open_in_new_tab: "In neuem Tab öffnen", + delete: "Löschen", + deleting: "Wird gelöscht", + make_a_copy: "Kopie erstellen", + move_to_project: "In Projekt verschieben", + good: "Guten", + morning: "Morgen", + afternoon: "Nachmittag", + evening: "Abend", + show_all: "Alle anzeigen", + show_less: "Weniger anzeigen", + no_data_yet: "Noch keine Daten", + syncing: "Wird synchronisiert", + add_work_item: "Arbeitselement hinzufügen", + advanced_description_placeholder: "Drücken Sie '/' für Befehle", + create_work_item: "Arbeitselement erstellen", + attachments: "Anhänge", + declining: "Wird abgelehnt", + declined: "Abgelehnt", + decline: "Ablehnen", + unassigned: "Nicht zugewiesen", + work_items: "Arbeitselemente", + add_link: "Link hinzufügen", + points: "Punkte", + no_assignee: "Keine Zuweisung", + no_assignees_yet: "Noch keine Zuweisungen", + no_labels_yet: "Noch keine Labels", + ideal: "Ideal", + current: "Aktuell", + no_matching_members: "Keine passenden Mitglieder", + leaving: "Wird verlassen", + removing: "Wird entfernt", + leave: "Verlassen", + refresh: "Aktualisieren", + refreshing: "Wird aktualisiert", + refresh_status: "Status aktualisieren", + prev: "Zurück", + next: "Weiter", + re_generating: "Wird neu generiert", + re_generate: "Neu generieren", + re_generate_key: "Schlüssel neu generieren", + export: "Exportieren", + member: "{count, plural, one{# Mitglied} few{# Mitglieder} other{# Mitglieder}}", + new_password_must_be_different_from_old_password: "Das neue Passwort muss von dem alten Passwort abweichen", + project_view: { + sort_by: { + created_at: "Erstellt am", + updated_at: "Aktualisiert am", + name: "Name", + }, + }, + toast: { + success: "Erfolg!", + error: "Fehler!", + }, + links: { + toasts: { + created: { + title: "Link erstellt", + message: "Link wurde erfolgreich erstellt", + }, + not_created: { + title: "Link nicht erstellt", + message: "Link konnte nicht erstellt werden", + }, + updated: { + title: "Link aktualisiert", + message: "Link wurde erfolgreich aktualisiert", + }, + not_updated: { + title: "Link nicht aktualisiert", + message: "Link konnte nicht aktualisiert werden", + }, + removed: { + title: "Link entfernt", + message: "Link wurde erfolgreich entfernt", + }, + not_removed: { + title: "Link nicht entfernt", + message: "Link konnte nicht entfernt werden", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Ihr Schnellstartleitfaden", + not_right_now: "Jetzt nicht", + create_project: { + title: "Projekt erstellen", + description: "Die meisten Dinge beginnen mit einem Projekt in Plane.", + cta: "Los geht’s", + }, + invite_team: { + title: "Team einladen", + description: "Arbeiten Sie mit Kollegen zusammen, um zu gestalten, bereitzustellen und zu verwalten.", + cta: "Einladen", + }, + configure_workspace: { + title: "Konfigurieren Sie Ihren Arbeitsbereich.", + description: "Aktivieren oder deaktivieren Sie Funktionen oder gehen Sie weiter ins Detail.", + cta: "Diesen Bereich konfigurieren", + }, + personalize_account: { + title: "Personalisieren Sie Plane.", + description: "Wählen Sie ein Profilbild, Farben und mehr.", + cta: "Jetzt personalisieren", + }, + widgets: { + title: "Ohne Widgets ist es ruhig, schalten Sie sie ein", + description: + "Es scheint, als seien alle Ihre Widgets deaktiviert. Aktivieren Sie sie für ein besseres Erlebnis!", + primary_button: { + text: "Widgets verwalten", + }, + }, + }, + quick_links: { + empty: "Speichern Sie hier Links zu wichtigen Dingen, auf die Sie schnell zugreifen möchten.", + add: "Schnelllink hinzufügen", + title: "Schnelllink", + title_plural: "Schnelllinks", + }, + recents: { + title: "Zuletzt verwendet", + empty: { + project: "Ihre kürzlich aufgerufenen Projekte erscheinen hier, nachdem Sie sie geöffnet haben.", + page: "Ihre kürzlich aufgerufenen Seiten erscheinen hier, nachdem Sie sie geöffnet haben.", + issue: "Ihre kürzlich aufgerufenen Arbeitselemente erscheinen hier, nachdem Sie sie geöffnet haben.", + default: "Sie haben noch keine kürzlichen Elemente.", + }, + filters: { + all: "Alle", + projects: "Projekte", + pages: "Seiten", + issues: "Arbeitselemente", + }, + }, + new_at_plane: { + title: "Neu in Plane", + }, + quick_tutorial: { + title: "Schnelles Tutorial", + }, + widget: { + reordered_successfully: "Widget erfolgreich verschoben.", + reordering_failed: "Beim Verschieben des Widgets ist ein Fehler aufgetreten.", + }, + manage_widgets: "Widgets verwalten", + title: "Startseite", + star_us_on_github: "Geben Sie uns einen Stern auf GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL ist ungültig", + placeholder: "Geben Sie eine URL ein oder fügen Sie sie ein", + }, + title: { + text: "Anzeigename", + placeholder: "Wie soll dieser Link angezeigt werden", + }, + }, + }, + common: { + all: "Alle", + states: "Status", + state: "Status", + state_groups: "Statusgruppen", + state_group: "Statusgruppe", + priorities: "Prioritäten", + priority: "Priorität", + team_project: "Teamprojekt", + project: "Projekt", + cycle: "Zyklus", + cycles: "Zyklen", + module: "Modul", + modules: "Module", + labels: "Labels", + label: "Label", + assignees: "Zugewiesene", + assignee: "Zugewiesen", + created_by: "Erstellt von", + none: "Keine", + link: "Link", + estimates: "Schätzungen", + estimate: "Schätzung", + created_at: "Erstellt am", + completed_at: "Abgeschlossen am", + layout: "Layout", + filters: "Filter", + display: "Anzeigen", + load_more: "Mehr laden", + activity: "Aktivität", + analytics: "Analysen", + dates: "Daten", + success: "Erfolg!", + something_went_wrong: "Etwas ist schiefgelaufen", + error: { + label: "Fehler!", + message: "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.", + }, + group_by: "Gruppieren nach", + epic: "Epik", + epics: "Epiks", + work_item: "Arbeitselement", + work_items: "Arbeitselemente", + sub_work_item: "Untergeordnetes Arbeitselement", + add: "Hinzufügen", + warning: "Warnung", + updating: "Wird aktualisiert", + adding: "Wird hinzugefügt", + update: "Aktualisieren", + creating: "Wird erstellt", + create: "Erstellen", + cancel: "Abbrechen", + description: "Beschreibung", + title: "Titel", + attachment: "Anhang", + general: "Allgemein", + features: "Funktionen", + automation: "Automatisierung", + project_name: "Projektname", + project_id: "Projekt-ID", + project_timezone: "Projektzeitzone", + created_on: "Erstellt am", + update_project: "Projekt aktualisieren", + identifier_already_exists: "Der Bezeichner existiert bereits", + add_more: "Mehr hinzufügen", + defaults: "Standardwerte", + add_label: "Label hinzufügen", + customize_time_range: "Zeitraum anpassen", + loading: "Wird geladen", + attachments: "Anhänge", + property: "Eigenschaft", + properties: "Eigenschaften", + parent: "Übergeordnet", + page: "Seite", + remove: "Entfernen", + archiving: "Wird archiviert", + archive: "Archivieren", + access: { + public: "Öffentlich", + private: "Privat", + }, + done: "Fertig", + sub_work_items: "Untergeordnete Arbeitselemente", + comment: "Kommentar", + workspace_level: "Arbeitsbereichsebene", + order_by: { + label: "Sortieren nach", + manual: "Manuell", + last_created: "Zuletzt erstellt", + last_updated: "Zuletzt aktualisiert", + start_date: "Startdatum", + due_date: "Fälligkeitsdatum", + asc: "Aufsteigend", + desc: "Absteigend", + updated_on: "Aktualisiert am", + }, + sort: { + asc: "Aufsteigend", + desc: "Absteigend", + created_on: "Erstellt am", + updated_on: "Aktualisiert am", + }, + comments: "Kommentare", + updates: "Aktualisierungen", + clear_all: "Alles löschen", + copied: "Kopiert!", + link_copied: "Link kopiert!", + link_copied_to_clipboard: "Link in die Zwischenablage kopiert", + copied_to_clipboard: "Link zum Arbeitselement in die Zwischenablage kopiert", + is_copied_to_clipboard: "Arbeitselement in die Zwischenablage kopiert", + no_links_added_yet: "Noch keine Links hinzugefügt", + add_link: "Link hinzufügen", + links: "Links", + go_to_workspace: "Zum Arbeitsbereich", + progress: "Fortschritt", + optional: "Optional", + join: "Beitreten", + go_back: "Zurück", + continue: "Fortfahren", + resend: "Erneut senden", + relations: "Beziehungen", + errors: { + default: { + title: "Fehler!", + message: "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut.", + }, + required: "Dieses Feld ist erforderlich", + entity_required: "{entity} ist erforderlich", + restricted_entity: "{entity} ist eingeschränkt", + }, + update_link: "Link aktualisieren", + attach: "Anhängen", + create_new: "Neu erstellen", + add_existing: "Vorhandenes hinzufügen", + type_or_paste_a_url: "Geben Sie eine URL ein oder fügen Sie sie ein", + url_is_invalid: "URL ist ungültig", + display_title: "Anzeigename", + link_title_placeholder: "Wie soll dieser Link angezeigt werden", + url: "URL", + side_peek: "Seitenvorschau", + modal: "Modal", + full_screen: "Vollbild", + close_peek_view: "Vorschau schließen", + toggle_peek_view_layout: "Vorschau-Layout umschalten", + options: "Optionen", + duration: "Dauer", + today: "Heute", + week: "Woche", + month: "Monat", + quarter: "Quartal", + press_for_commands: "Drücken Sie '/' für Befehle", + click_to_add_description: "Klicken Sie, um eine Beschreibung hinzuzufügen", + search: { + label: "Suchen", + placeholder: "Suchbegriff eingeben", + no_matches_found: "Keine Übereinstimmungen gefunden", + no_matching_results: "Keine übereinstimmenden Ergebnisse", + }, + actions: { + edit: "Bearbeiten", + make_a_copy: "Kopie erstellen", + open_in_new_tab: "In neuem Tab öffnen", + copy_link: "Link kopieren", + archive: "Archivieren", + restore: "Wiederherstellen", + delete: "Löschen", + remove_relation: "Beziehung entfernen", + subscribe: "Abonnieren", + unsubscribe: "Abo beenden", + clear_sorting: "Sortierung löschen", + show_weekends: "Wochenenden anzeigen", + enable: "Aktivieren", + disable: "Deaktivieren", + }, + name: "Name", + discard: "Verwerfen", + confirm: "Bestätigen", + confirming: "Wird bestätigt", + read_the_docs: "Lesen Sie die Dokumentation", + default: "Standard", + active: "Aktiv", + enabled: "Aktiviert", + disabled: "Deaktiviert", + mandate: "Mandat", + mandatory: "Verpflichtend", + yes: "Ja", + no: "Nein", + please_wait: "Bitte warten", + enabling: "Wird aktiviert", + disabling: "Wird deaktiviert", + beta: "Beta", + or: "oder", + next: "Weiter", + back: "Zurück", + cancelling: "Wird abgebrochen", + configuring: "Wird konfiguriert", + clear: "Löschen", + import: "Importieren", + connect: "Verbinden", + authorizing: "Wird autorisiert", + processing: "Wird verarbeitet", + no_data_available: "Keine Daten verfügbar", + from: "von {name}", + authenticated: "Authentifiziert", + select: "Auswählen", + upgrade: "Upgrade", + add_seats: "Sitze hinzufügen", + projects: "Projekte", + workspace: "Arbeitsbereich", + workspaces: "Arbeitsbereiche", + team: "Team", + teams: "Teams", + entity: "Entität", + entities: "Entitäten", + task: "Aufgabe", + tasks: "Aufgaben", + section: "Abschnitt", + sections: "Abschnitte", + edit: "Bearbeiten", + connecting: "Wird verbunden", + connected: "Verbunden", + disconnect: "Trennen", + disconnecting: "Wird getrennt", + installing: "Wird installiert", + install: "Installieren", + reset: "Zurücksetzen", + live: "Live", + change_history: "Änderungsverlauf", + coming_soon: "Demnächst verfügbar", + member: "Mitglied", + members: "Mitglieder", + you: "Sie", + upgrade_cta: { + higher_subscription: "Auf ein höheres Abonnement upgraden", + talk_to_sales: "Mit Vertrieb sprechen", + }, + category: "Kategorie", + categories: "Kategorien", + saving: "Wird gespeichert", + save_changes: "Änderungen speichern", + delete: "Löschen", + deleting: "Wird gelöscht", + pending: "Ausstehend", + invite: "Einladen", + view: "Ansicht", + deactivated_user: "Deaktivierter Benutzer", + apply: "Anwenden", + applying: "Wird angewendet", + users: "Benutzer", + admins: "Administratoren", + guests: "Gäste", + on_track: "Im Plan", + off_track: "Außer Plan", + at_risk: "Gefährdet", + timeline: "Zeitleiste", + completion: "Fertigstellung", + upcoming: "Bevorstehend", + completed: "Abgeschlossen", + in_progress: "In Bearbeitung", + planned: "Geplant", + paused: "Pausiert", + no_of: "Anzahl {entity}", + resolved: "Gelöst", + }, + chart: { + x_axis: "X-Achse", + y_axis: "Y-Achse", + metric: "Metrik", + }, + form: { + title: { + required: "Ein Titel ist erforderlich", + max_length: "Der Titel sollte weniger als {length} Zeichen enthalten", + }, + }, + entity: { + grouping_title: "Gruppierung von {entity}", + priority: "Priorität {entity}", + all: "Alle {entity}", + drop_here_to_move: "Hier ablegen, um {entity} zu verschieben", + delete: { + label: "{entity} löschen", + success: "{entity} erfolgreich gelöscht", + failed: "{entity} konnte nicht gelöscht werden", + }, + update: { + failed: "{entity} konnte nicht aktualisiert werden", + success: "{entity} erfolgreich aktualisiert", + }, + link_copied_to_clipboard: "Link zu {entity} in die Zwischenablage kopiert", + fetch: { + failed: "Fehler beim Laden von {entity}", + }, + add: { + success: "{entity} erfolgreich hinzugefügt", + failed: "Fehler beim Hinzufügen von {entity}", + }, + remove: { + success: "{entity} erfolgreich entfernt", + failed: "Fehler beim Entfernen von {entity}", + }, + }, + epic: { + all: "Alle Epiks", + label: "{count, plural, one {Epik} other {Epiks}}", + new: "Neuer Epik", + adding: "Epik wird hinzugefügt", + create: { + success: "Epik erfolgreich erstellt", + }, + add: { + press_enter: "Drücken Sie 'Enter', um einen weiteren Epik hinzuzufügen", + label: "Epik hinzufügen", + }, + title: { + label: "Epik-Titel", + required: "Ein Titel für den Epik ist erforderlich.", + }, + }, + issue: { + label: "{count, plural, one {Arbeitselement} few {Arbeitselemente} other {Arbeitselemente}}", + all: "Alle Arbeitselemente", + edit: "Arbeitselement bearbeiten", + title: { + label: "Titel des Arbeitselements", + required: "Ein Titel für das Arbeitselement ist erforderlich.", + }, + add: { + press_enter: "Drücken Sie 'Enter', um ein weiteres Arbeitselement hinzuzufügen", + label: "Arbeitselement hinzufügen", + cycle: { + failed: "Hinzufügen des Arbeitselements zum Zyklus fehlgeschlagen. Bitte versuchen Sie es erneut.", + success: + "{count, plural, one {Arbeitselement} few {Arbeitselemente} other {Arbeitselemente}} zum Zyklus hinzugefügt.", + loading: "{count, plural, one {Arbeitselement} other {Arbeitselemente}} werden zum Zyklus hinzugefügt", + }, + assignee: "Zugewiesene hinzufügen", + start_date: "Startdatum hinzufügen", + due_date: "Fälligkeitsdatum hinzufügen", + parent: "Übergeordnetes Arbeitselement hinzufügen", + sub_issue: "Untergeordnetes Arbeitselement hinzufügen", + relation: "Beziehung hinzufügen", + link: "Link hinzufügen", + existing: "Vorhandenes Arbeitselement hinzufügen", + }, + remove: { + label: "Arbeitselement entfernen", + cycle: { + loading: "Arbeitselement wird aus dem Zyklus entfernt", + success: "Arbeitselement aus dem Zyklus entfernt.", + failed: "Das Entfernen des Arbeitselements aus dem Zyklus ist fehlgeschlagen. Bitte versuchen Sie es erneut.", + }, + module: { + loading: "Arbeitselement wird aus dem Modul entfernt", + success: "Arbeitselement aus dem Modul entfernt.", + failed: "Das Entfernen des Arbeitselements aus dem Modul ist fehlgeschlagen. Bitte versuchen Sie es erneut.", + }, + parent: { + label: "Übergeordnetes Arbeitselement entfernen", + }, + }, + new: "Neues Arbeitselement", + adding: "Arbeitselement wird hinzugefügt", + create: { + success: "Arbeitselement erfolgreich erstellt", + }, + priority: { + urgent: "Dringend", + high: "Hoch", + medium: "Mittel", + low: "Niedrig", + }, + display: { + properties: { + label: "Anzuzeigende Eigenschaften", + id: "ID", + issue_type: "Typ des Arbeitselements", + sub_issue_count: "Anzahl untergeordneter Elemente", + attachment_count: "Anzahl Anhänge", + created_on: "Erstellt am", + sub_issue: "Untergeordnetes Element", + work_item_count: "Anzahl Arbeitselemente", + }, + extra: { + show_sub_issues: "Untergeordnete Elemente anzeigen", + show_empty_groups: "Leere Gruppen anzeigen", + }, + }, + layouts: { + ordered_by_label: "Dieses Layout wird sortiert nach", + list: "Liste", + kanban: "Kanban", + calendar: "Kalender", + spreadsheet: "Tabellenansicht", + gantt: "Zeitachsenansicht", + title: { + list: "Listenlayout", + kanban: "Kanban-Layout", + calendar: "Kalenderlayout", + spreadsheet: "Tabellenlayout", + gantt: "Zeitachsenlayout", + }, + }, + states: { + active: "Aktiv", + backlog: "Backlog", + }, + comments: { + placeholder: "Kommentar hinzufügen", + switch: { + private: "Zu privatem Kommentar wechseln", + public: "Zu öffentlichem Kommentar wechseln", + }, + create: { + success: "Kommentar erfolgreich erstellt", + error: "Kommentar konnte nicht erstellt werden. Bitte versuchen Sie es später erneut.", + }, + update: { + success: "Kommentar erfolgreich aktualisiert", + error: "Kommentar konnte nicht aktualisiert werden. Bitte versuchen Sie es später erneut.", + }, + remove: { + success: "Kommentar erfolgreich entfernt", + error: "Kommentar konnte nicht entfernt werden. Bitte versuchen Sie es später erneut.", + }, + upload: { + error: "Anhang konnte nicht hochgeladen werden. Bitte versuchen Sie es später erneut.", + }, + copy_link: { + success: "Kommentar-Link in die Zwischenablage kopiert", + error: "Fehler beim Kopieren des Kommentar-Links. Bitte versuchen Sie es später erneut.", + }, + }, + empty_state: { + issue_detail: { + title: "Arbeitselement existiert nicht", + description: "Das gesuchte Arbeitselement existiert nicht, wurde archiviert oder gelöscht.", + primary_button: { + text: "Weitere Arbeitselemente anzeigen", + }, + }, + }, + sibling: { + label: "Verwandte Arbeitselemente", + }, + archive: { + description: "Nur abgeschlossene oder abgebrochene Arbeitselemente können archiviert werden", + label: "Arbeitselement archivieren", + confirm_message: + "Möchten Sie dieses Arbeitselement wirklich archivieren? Alle archivierten Elemente können später wiederhergestellt werden.", + success: { + label: "Erfolgreich archiviert", + message: "Ihre archivierten Elemente finden Sie in den Projektarchiven.", + }, + failed: { + message: "Archivierung des Arbeitselements fehlgeschlagen. Bitte versuchen Sie es erneut.", + }, + }, + restore: { + success: { + title: "Wiederherstellung erfolgreich", + message: "Ihr Arbeitselement ist jetzt wieder in den Arbeitselementen des Projekts zu finden.", + }, + failed: { + message: "Wiederherstellung des Arbeitselements fehlgeschlagen. Bitte versuchen Sie es erneut.", + }, + }, + relation: { + relates_to: "Steht in Beziehung zu", + duplicate: "Duplikat", + blocked_by: "Blockiert durch", + blocking: "Blockiert", + }, + copy_link: "Link zum Arbeitselement kopieren", + delete: { + label: "Arbeitselement löschen", + error: "Fehler beim Löschen des Arbeitselements", + }, + subscription: { + actions: { + subscribed: "Arbeitselement erfolgreich abonniert", + unsubscribed: "Abo für Arbeitselement beendet", + }, + }, + select: { + error: "Wählen Sie mindestens ein Arbeitselement aus", + empty: "Keine Arbeitselemente ausgewählt", + add_selected: "Ausgewählte Arbeitselemente hinzufügen", + select_all: "Alle auswählen", + deselect_all: "Alle abwählen", + }, + open_in_full_screen: "Arbeitselement im Vollbild öffnen", + }, + attachment: { + error: "Datei konnte nicht angehängt werden. Bitte versuchen Sie es erneut.", + only_one_file_allowed: "Es kann jeweils nur eine Datei hochgeladen werden.", + file_size_limit: "Die Datei muss kleiner als {size} MB sein.", + drag_and_drop: "Datei hierher ziehen, um sie hochzuladen", + delete: "Anhang löschen", + }, + label: { + select: "Label auswählen", + create: { + success: "Label erfolgreich erstellt", + failed: "Label konnte nicht erstellt werden", + already_exists: "Label existiert bereits", + type: "Eingeben, um ein neues Label zu erstellen", + }, + }, + sub_work_item: { + update: { + success: "Untergeordnetes Arbeitselement erfolgreich aktualisiert", + error: "Fehler beim Aktualisieren des untergeordneten Elements", + }, + remove: { + success: "Untergeordnetes Arbeitselement erfolgreich entfernt", + error: "Fehler beim Entfernen des untergeordneten Elements", + }, + empty_state: { + sub_list_filters: { + title: "Sie haben keine untergeordneten Arbeitselemente, die den von Ihnen angewendeten Filtern entsprechen.", + description: "Um alle untergeordneten Arbeitselemente anzuzeigen, entfernen Sie alle angewendeten Filter.", + action: "Filter entfernen", + }, + list_filters: { + title: "Sie haben keine Arbeitselemente, die den von Ihnen angewendeten Filtern entsprechen.", + description: "Um alle Arbeitselemente anzuzeigen, entfernen Sie alle angewendeten Filter.", + action: "Filter entfernen", + }, + }, + }, + view: { + label: "{count, plural, one {Ansicht} few {Ansichten} other {Ansichten}}", + create: { + label: "Ansicht erstellen", + }, + update: { + label: "Ansicht aktualisieren", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Ausstehend", + description: "Ausstehend", + }, + declined: { + title: "Abgelehnt", + description: "Abgelehnt", + }, + snoozed: { + title: "Verschoben", + description: "Noch {days, plural, one{# Tag} few{# Tage} other{# Tage}}", + }, + accepted: { + title: "Angenommen", + description: "Angenommen", + }, + duplicate: { + title: "Duplikat", + description: "Duplikat", + }, + }, + modals: { + decline: { + title: "Arbeitselement ablehnen", + content: "Möchten Sie das Arbeitselement {value} wirklich ablehnen?", + }, + delete: { + title: "Arbeitselement löschen", + content: "Möchten Sie das Arbeitselement {value} wirklich löschen?", + success: "Arbeitselement erfolgreich gelöscht", + }, + }, + errors: { + snooze_permission: "Nur Projektadministratoren können Arbeitselemente verschieben/wiederherstellen", + accept_permission: "Nur Projektadministratoren können Arbeitselemente annehmen", + decline_permission: "Nur Projektadministratoren können Arbeitselemente ablehnen", + }, + actions: { + accept: "Annehmen", + decline: "Ablehnen", + snooze: "Verschieben", + unsnooze: "Wiederherstellen", + copy: "Link zum Arbeitselement kopieren", + delete: "Löschen", + open: "Arbeitselement öffnen", + mark_as_duplicate: "Als Duplikat markieren", + move: "{value} in die Arbeitselemente des Projekts verschieben", + }, + source: { + "in-app": "in der App", + }, + order_by: { + created_at: "Erstellt am", + updated_at: "Aktualisiert am", + id: "ID", + }, + label: "Eingang", + page_label: "{workspace} - Eingang", + modal: { + title: "Angenommenes Arbeitselement erstellen", + }, + tabs: { + open: "Offen", + closed: "Geschlossen", + }, + empty_state: { + sidebar_open_tab: { + title: "Keine offenen Arbeitselemente", + description: "Offene Arbeitselemente werden hier angezeigt. Erstellen Sie ein neues.", + }, + sidebar_closed_tab: { + title: "Keine geschlossenen Arbeitselemente", + description: "Alle angenommenen oder abgelehnten Arbeitselemente erscheinen hier.", + }, + sidebar_filter: { + title: "Keine passenden Arbeitselemente", + description: "Kein Element passt zum Eingang-Filter. Erstellen Sie ein neues.", + }, + detail: { + title: "Wählen Sie ein Arbeitselement, um Details anzuzeigen.", + }, + }, + }, + workspace_creation: { + heading: "Erstellen Sie einen Arbeitsbereich", + subheading: "Um Plane verwenden zu können, müssen Sie einen Arbeitsbereich erstellen oder beitreten.", + form: { + name: { + label: "Geben Sie Ihrem Arbeitsbereich einen Namen", + placeholder: "Etwas Bekanntes und Wiedererkennbares wäre sinnvoll.", + }, + url: { + label: "Legen Sie die URL Ihres Arbeitsbereichs fest", + placeholder: "Geben Sie eine URL ein oder fügen Sie sie ein", + edit_slug: "Sie können nur den Slug-Teil der URL bearbeiten", + }, + organization_size: { + label: "Wie viele Personen werden diesen Bereich nutzen?", + placeholder: "Wählen Sie einen Bereich", + }, + }, + errors: { + creation_disabled: { + title: "Nur der Instanzadministrator kann Arbeitsbereiche erstellen", + description: + "Wenn Sie die E-Mail Ihres Instanzadministrators kennen, klicken Sie unten, um ihn zu kontaktieren.", + request_button: "Instanzadministrator bitten", + }, + validation: { + name_alphanumeric: "Arbeitsbereichsnamen dürfen nur (' '), ('-'), ('_') und alphanumerische Zeichen enthalten.", + name_length: "Name ist auf 80 Zeichen begrenzt.", + url_alphanumeric: "URLs dürfen nur ('-') und alphanumerische Zeichen enthalten.", + url_length: "URL ist auf 48 Zeichen begrenzt.", + url_already_taken: "Die Arbeitsbereichs-URL ist bereits vergeben!", + }, + }, + request_email: { + subject: "Anfrage für einen neuen Arbeitsbereich", + body: "Hallo Admin,\n\nBitte erstellen Sie einen neuen Arbeitsbereich mit der URL [/workspace-name] für [Zweck].\n\nDanke,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Arbeitsbereich erstellen", + loading: "Arbeitsbereich wird erstellt", + }, + toast: { + success: { + title: "Erfolg", + message: "Arbeitsbereich erfolgreich erstellt", + }, + error: { + title: "Fehler", + message: "Arbeitsbereich konnte nicht erstellt werden. Bitte versuchen Sie es erneut.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Übersicht über Projekte, Aktivitäten und Kennzahlen", + description: + "Willkommen bei Plane, wir freuen uns, dass Sie hier sind. Erstellen Sie Ihr erstes Projekt, verfolgen Sie Arbeitselemente und diese Seite verwandelt sich in einen Ort für Ihren Fortschritt. Administratoren sehen hier zusätzlich teamrelevante Elemente.", + primary_button: { + text: "Erstes Projekt erstellen", + comic: { + title: "Alles beginnt mit einem Projekt in Plane", + description: + "Ein Projekt kann eine Produkt-Roadmap, eine Marketingkampagne oder die Markteinführung eines neuen Autos sein.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analysen", + page_label: "{workspace} - Analysen", + open_tasks: "Insgesamt offene Aufgaben", + error: "Fehler beim Laden der Daten.", + work_items_closed_in: "Arbeitselemente, die abgeschlossen wurden in", + selected_projects: "Ausgewählte Projekte", + total_members: "Gesamtmitglieder", + total_cycles: "Zyklen insgesamt", + total_modules: "Module insgesamt", + pending_work_items: { + title: "Ausstehende Arbeitselemente", + empty_state: "Hier wird eine Analyse der ausstehenden Elemente nach Mitarbeitern angezeigt.", + }, + work_items_closed_in_a_year: { + title: "Arbeitselemente, die in einem Jahr abgeschlossen wurden", + empty_state: "Schließen Sie Elemente ab, um eine Analyse im Diagramm zu sehen.", + }, + most_work_items_created: { + title: "Die meisten erstellten Elemente", + empty_state: "Zeigt die Mitarbeiter und die Anzahl der von ihnen erstellten Elemente.", + }, + most_work_items_closed: { + title: "Die meisten abgeschlossenen Elemente", + empty_state: "Zeigt die Mitarbeiter und die Anzahl der von ihnen abgeschlossenen Elemente.", + }, + tabs: { + scope_and_demand: "Umfang und Nachfrage", + custom: "Benutzerdefinierte Analysen", + }, + empty_state: { + customized_insights: { + description: "Ihnen zugewiesene Arbeitselemente, aufgeschlüsselt nach Status, werden hier angezeigt.", + title: "Noch keine Daten", + }, + created_vs_resolved: { + description: "Im Laufe der Zeit erstellte und gelöste Arbeitselemente werden hier angezeigt.", + title: "Noch keine Daten", + }, + project_insights: { + title: "Noch keine Daten", + description: "Ihnen zugewiesene Arbeitselemente, aufgeschlüsselt nach Status, werden hier angezeigt.", + }, + general: { + title: + "Verfolgen Sie Fortschritt, Arbeitsbelastung und Zuweisungen. Erkennen Sie Trends, beseitigen Sie Hindernisse und arbeiten Sie schneller", + description: + "Sehen Sie Umfang vs. Nachfrage, Schätzungen und Scope Creep. Messen Sie die Leistung von Teammitgliedern und Teams und stellen Sie sicher, dass Ihr Projekt rechtzeitig abgeschlossen wird.", + primary_button: { + text: "Erstes Projekt starten", + comic: { + title: "Analytics funktioniert am besten mit Zyklen + Modulen", + description: + "Begrenzen Sie zunächst Ihre Arbeitselemente zeitlich in Zyklen und gruppieren Sie, wenn möglich, Arbeitselemente, die mehr als einen Zyklus umfassen, in Module. Schauen Sie sich beide in der linken Navigation an.", + }, + }, + }, + }, + created_vs_resolved: "Erstellt vs Gelöst", + customized_insights: "Individuelle Einblicke", + backlog_work_items: "Backlog-{entity}", + active_projects: "Aktive Projekte", + trend_on_charts: "Trend in Diagrammen", + all_projects: "Alle Projekte", + summary_of_projects: "Projektübersicht", + project_insights: "Projekteinblicke", + started_work_items: "Begonnene {entity}", + total_work_items: "Gesamte {entity}", + total_projects: "Gesamtprojekte", + total_admins: "Gesamtanzahl der Admins", + total_users: "Gesamtanzahl der Benutzer", + total_intake: "Gesamteinnahmen", + un_started_work_items: "Nicht begonnene {entity}", + total_guests: "Gesamtanzahl der Gäste", + completed_work_items: "Abgeschlossene {entity}", + total: "Gesamte {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Projekt} few {Projekte} other {Projekte}}", + create: { + label: "Projekt hinzufügen", + }, + network: { + label: "Netzwerk", + private: { + title: "Privat", + description: "Nur auf Einladung zugänglich", + }, + public: { + title: "Öffentlich", + description: "Jeder im Arbeitsbereich außer Gästen kann beitreten", + }, + }, + error: { + permission: "Sie haben keine Berechtigung für diese Aktion.", + cycle_delete: "Löschen des Zyklus fehlgeschlagen", + module_delete: "Löschen des Moduls fehlgeschlagen", + issue_delete: "Löschen des Arbeitselements fehlgeschlagen", + }, + state: { + backlog: "Backlog", + unstarted: "Nicht begonnen", + started: "Gestartet", + completed: "Abgeschlossen", + cancelled: "Abgebrochen", + }, + sort: { + manual: "Manuell", + name: "Name", + created_at: "Erstellungsdatum", + members_length: "Mitgliederanzahl", + }, + scope: { + my_projects: "Meine Projekte", + archived_projects: "Archiviert", + }, + common: { + months_count: "{months, plural, one{# Monat} few{# Monate} other{# Monate}}", + }, + empty_state: { + general: { + title: "Keine aktiven Projekte", + description: + "Ein Projekt ist einem übergeordneten Ziel zugeordnet. Projekte enthalten Aufgaben, Zyklen und Module. Erstellen Sie ein neues oder filtern Sie archivierte.", + primary_button: { + text: "Erstes Projekt erstellen", + comic: { + title: "Alles beginnt mit einem Projekt in Plane", + description: + "Ein Projekt kann eine Produkt-Roadmap, eine Marketingkampagne oder die Markteinführung eines neuen Autos sein.", + }, + }, + }, + no_projects: { + title: "Keine Projekte", + description: "Um Arbeitselemente zu erstellen, müssen Sie ein Projekt erstellen oder Teil eines Projekts sein.", + primary_button: { + text: "Erstes Projekt erstellen", + comic: { + title: "Alles beginnt mit einem Projekt in Plane", + description: + "Ein Projekt kann eine Produkt-Roadmap, eine Marketingkampagne oder die Markteinführung eines neuen Autos sein.", + }, + }, + }, + filter: { + title: "Keine passenden Projekte", + description: "Keine Projekte entsprechen Ihren Kriterien.\nErstellen Sie ein neues.", + }, + search: { + description: "Keine Projekte entsprechen Ihren Suchkriterien.\nErstellen Sie ein neues.", + }, + }, + }, + workspace_views: { + add_view: "Ansicht hinzufügen", + empty_state: { + "all-issues": { + title: "Keine Arbeitselemente im Projekt", + description: "Erstellen Sie Ihr erstes Element und verfolgen Sie Ihren Fortschritt!", + primary_button: { + text: "Arbeitselement erstellen", + }, + }, + assigned: { + title: "Keine zugewiesenen Elemente", + description: "Hier werden Ihnen zugewiesene Elemente angezeigt.", + primary_button: { + text: "Arbeitselement erstellen", + }, + }, + created: { + title: "Keine erstellten Elemente", + description: "Hier werden von Ihnen erstellte Elemente angezeigt.", + primary_button: { + text: "Arbeitselement erstellen", + }, + }, + subscribed: { + title: "Keine abonnierten Elemente", + description: "Abonnieren Sie Elemente, die Sie interessieren.", + }, + "custom-view": { + title: "Keine passenden Elemente", + description: "Hier werden Elemente angezeigt, die den Filterkriterien entsprechen.", + }, + }, + }, + workspace_settings: { + label: "Arbeitsbereich-Einstellungen", + page_label: "{workspace} - Allgemeine Einstellungen", + key_created: "Schlüssel erstellt", + copy_key: + "Kopieren Sie diesen Schlüssel und fügen Sie ihn in Plane Pages ein. Nach dem Schließen können Sie ihn nicht mehr sehen. Eine CSV-Datei mit dem Schlüssel wurde heruntergeladen.", + token_copied: "Token in die Zwischenablage kopiert.", + settings: { + general: { + title: "Allgemein", + upload_logo: "Logo hochladen", + edit_logo: "Logo bearbeiten", + name: "Name des Arbeitsbereichs", + company_size: "Unternehmensgröße", + url: "URL des Arbeitsbereichs", + update_workspace: "Arbeitsbereich aktualisieren", + delete_workspace: "Diesen Arbeitsbereich löschen", + delete_workspace_description: + "Das Löschen des Arbeitsbereichs entfernt alle Daten und Ressourcen. Diese Aktion ist nicht umkehrbar.", + delete_btn: "Arbeitsbereich löschen", + delete_modal: { + title: "Möchten Sie diesen Arbeitsbereich wirklich löschen?", + description: "Sie haben eine aktive Testversion. Bitte kündigen Sie diese zuerst.", + dismiss: "Schließen", + cancel: "Testversion kündigen", + success_title: "Arbeitsbereich gelöscht.", + success_message: "Sie werden auf Ihr Profil umgeleitet.", + error_title: "Fehlgeschlagen.", + error_message: "Bitte versuchen Sie es erneut.", + }, + errors: { + name: { + required: "Name ist erforderlich", + max_length: "Der Name des Arbeitsbereichs darf 80 Zeichen nicht überschreiten", + }, + company_size: { + required: "Die Unternehmensgröße ist erforderlich", + }, + }, + }, + members: { + title: "Mitglieder", + add_member: "Mitglied hinzufügen", + pending_invites: "Ausstehende Einladungen", + invitations_sent_successfully: "Einladungen erfolgreich versendet", + leave_confirmation: + "Möchten Sie diesen Arbeitsbereich wirklich verlassen? Sie verlieren den Zugriff. Diese Aktion ist nicht umkehrbar.", + details: { + full_name: "Vollständiger Name", + display_name: "Anzeigename", + email_address: "E-Mail-Adresse", + account_type: "Kontotyp", + authentication: "Authentifizierung", + joining_date: "Beitrittsdatum", + }, + modal: { + title: "Mitarbeiter einladen", + description: "Laden Sie Personen zur Zusammenarbeit ein.", + button: "Einladungen senden", + button_loading: "Einladungen werden gesendet", + placeholder: "name@unternehmen.de", + errors: { + required: "Eine E-Mail-Adresse ist erforderlich.", + invalid: "E-Mail ist ungültig", + }, + }, + }, + billing_and_plans: { + title: "Abrechnung und Pläne", + current_plan: "Aktueller Plan", + free_plan: "Sie nutzen den kostenlosen Plan", + view_plans: "Pläne anzeigen", + }, + exports: { + title: "Exporte", + exporting: "Wird exportiert", + previous_exports: "Bisherige Exporte", + export_separate_files: "Daten in separaten Dateien exportieren", + modal: { + title: "Exportieren nach", + toasts: { + success: { + title: "Export erfolgreich", + message: "Die exportierten {entity} können aus dem vorherigen Export heruntergeladen werden.", + }, + error: { + title: "Export fehlgeschlagen", + message: "Bitte versuchen Sie es erneut.", + }, + }, + }, + }, + webhooks: { + title: "Webhooks", + add_webhook: "Webhook hinzufügen", + modal: { + title: "Webhook erstellen", + details: "Webhook-Details", + payload: "Payload-URL", + question: "Bei welchen Ereignissen soll dieser Webhook ausgelöst werden?", + error: "URL ist erforderlich", + }, + secret_key: { + title: "Geheimer Schlüssel", + message: "Generieren Sie ein Token, um sich bei Webhooks anzumelden", + }, + options: { + all: "Alles senden", + individual: "Einzelne Ereignisse auswählen", + }, + toasts: { + created: { + title: "Webhook erstellt", + message: "Webhook wurde erfolgreich erstellt", + }, + not_created: { + title: "Webhook nicht erstellt", + message: "Webhook konnte nicht erstellt werden", + }, + updated: { + title: "Webhook aktualisiert", + message: "Webhook wurde erfolgreich aktualisiert", + }, + not_updated: { + title: "Webhook-Aktualisierung fehlgeschlagen", + message: "Webhook konnte nicht aktualisiert werden", + }, + removed: { + title: "Webhook entfernt", + message: "Webhook wurde erfolgreich entfernt", + }, + not_removed: { + title: "Webhook konnte nicht entfernt werden", + message: "Webhook konnte nicht entfernt werden", + }, + secret_key_copied: { + message: "Geheimer Schlüssel in die Zwischenablage kopiert.", + }, + secret_key_not_copied: { + message: "Fehler beim Kopieren des Schlüssels.", + }, + }, + }, + api_tokens: { + title: "API-Tokens", + add_token: "API-Token hinzufügen", + create_token: "Token erstellen", + never_expires: "Läuft nie ab", + generate_token: "Token generieren", + generating: "Wird generiert", + delete: { + title: "API-Token löschen", + description: + "Alle Anwendungen, die diesen Token verwenden, verlieren den Zugriff. Diese Aktion ist nicht umkehrbar.", + success: { + title: "Erfolg!", + message: "Token erfolgreich gelöscht", + }, + error: { + title: "Fehler!", + message: "Löschen des Tokens fehlgeschlagen", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Keine API-Tokens", + description: "Verwenden Sie die API, um Plane mit externen Systemen zu integrieren.", + }, + webhooks: { + title: "Keine Webhooks", + description: "Erstellen Sie Webhooks, um Aktionen zu automatisieren.", + }, + exports: { + title: "Keine Exporte", + description: "Hier finden Sie Ihre Exporthistorie.", + }, + imports: { + title: "Keine Importe", + description: "Hier finden Sie Ihre Importhistorie.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Ihre Arbeit", + work: "Arbeit", + details: { + joined_on: "Beigetreten am", + time_zone: "Zeitzone", + }, + stats: { + workload: "Auslastung", + overview: "Übersicht", + created: "Erstellte Elemente", + assigned: "Zugewiesene Elemente", + subscribed: "Abonnierte Elemente", + state_distribution: { + title: "Elemente nach Status", + empty: "Erstellen Sie Arbeitselemente, um eine Statusanalyse zu sehen.", + }, + priority_distribution: { + title: "Elemente nach Priorität", + empty: "Erstellen Sie Arbeitselemente, um eine Prioritätsanalyse zu sehen.", + }, + recent_activity: { + title: "Letzte Aktivität", + empty: "Keine Aktivität gefunden.", + button: "Heutige Aktivität herunterladen", + button_loading: "Wird heruntergeladen", + }, + }, + actions: { + profile: "Profil", + security: "Sicherheit", + activity: "Aktivität", + appearance: "Aussehen", + notifications: "Benachrichtigungen", + }, + tabs: { + summary: "Zusammenfassung", + assigned: "Zugewiesen", + created: "Erstellt", + subscribed: "Abonniert", + activity: "Aktivität", + }, + empty_state: { + activity: { + title: "Keine Aktivität", + description: "Erstellen Sie ein Arbeitselement, um zu beginnen.", + }, + assigned: { + title: "Keine zugewiesenen Arbeitselemente", + description: "Hier werden Ihnen zugewiesene Arbeitselemente angezeigt.", + }, + created: { + title: "Keine erstellten Arbeitselemente", + description: "Hier werden von Ihnen erstellte Arbeitselemente angezeigt.", + }, + subscribed: { + title: "Keine abonnierten Arbeitselemente", + description: "Abonnieren Sie die Arbeitselemente, die Sie interessieren, und verfolgen Sie sie hier.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Geben Sie eine Projekt-ID ein", + please_select_a_timezone: "Bitte wählen Sie eine Zeitzone aus", + archive_project: { + title: "Projekt archivieren", + description: + "Durch das Archivieren wird das Projekt im Menü ausgeblendet. Der Zugriff bleibt über die Projektseite bestehen.", + button: "Projekt archivieren", + }, + delete_project: { + title: "Projekt löschen", + description: + "Durch das Löschen des Projekts werden alle zugehörigen Daten entfernt. Diese Aktion ist nicht umkehrbar.", + button: "Projekt löschen", + }, + toast: { + success: "Projekt aktualisiert", + error: "Aktualisierung fehlgeschlagen. Bitte versuchen Sie es erneut.", + }, + }, + members: { + label: "Mitglieder", + project_lead: "Projektleitung", + default_assignee: "Standardzuweisung", + guest_super_permissions: { + title: "Gastbenutzern Zugriff auf alle Elemente gewähren:", + sub_heading: "Gäste sehen alle Elemente im Projekt.", + }, + invite_members: { + title: "Mitglieder einladen", + sub_heading: "Laden Sie Mitglieder in das Projekt ein.", + select_co_worker: "Wählen Sie einen Mitarbeiter", + }, + }, + states: { + describe_this_state_for_your_members: "Beschreiben Sie diesen Status für Ihre Mitglieder.", + empty_state: { + title: "Keine Status für die Gruppe {groupKey}", + description: "Erstellen Sie einen neuen Status", + }, + }, + labels: { + label_title: "Labelname", + label_title_is_required: "Ein Labelname ist erforderlich", + label_max_char: "Der Labelname darf nicht mehr als 255 Zeichen enthalten", + toast: { + error: "Fehler beim Aktualisieren des Labels", + }, + }, + estimates: { + label: "Schätzungen", + title: "Schätzungen für mein Projekt aktivieren", + description: "Sie helfen dir, die Komplexität und Arbeitsbelastung des Teams zu kommunizieren.", + no_estimate: "Keine Schätzung", + new: "Neues Schätzungssystem", + create: { + custom: "Benutzerdefiniert", + start_from_scratch: "Von Grund auf neu", + choose_template: "Vorlage wählen", + choose_estimate_system: "Schätzungssystem wählen", + enter_estimate_point: "Schätzung eingeben", + step: "Schritt {step} von {total}", + label: "Schätzung erstellen", + }, + toasts: { + created: { + success: { + title: "Schätzung erstellt", + message: "Die Schätzung wurde erfolgreich erstellt", + }, + error: { + title: "Schätzungserstellung fehlgeschlagen", + message: "Wir konnten die neue Schätzung nicht erstellen, bitte versuche es erneut.", + }, + }, + updated: { + success: { + title: "Schätzung geändert", + message: "Die Schätzung wurde in deinem Projekt aktualisiert.", + }, + error: { + title: "Schätzungsänderung fehlgeschlagen", + message: "Wir konnten die Schätzung nicht ändern, bitte versuche es erneut", + }, + }, + enabled: { + success: { + title: "Erfolg!", + message: "Schätzungen wurden aktiviert.", + }, + }, + disabled: { + success: { + title: "Erfolg!", + message: "Schätzungen wurden deaktiviert.", + }, + error: { + title: "Fehler!", + message: "Schätzung konnte nicht deaktiviert werden. Bitte versuche es erneut", + }, + }, + }, + validation: { + min_length: "Die Schätzung muss größer als 0 sein.", + unable_to_process: "Wir können deine Anfrage nicht verarbeiten, bitte versuche es erneut.", + numeric: "Die Schätzung muss ein numerischer Wert sein.", + character: "Die Schätzung muss ein Zeichenwert sein.", + empty: "Der Schätzungswert darf nicht leer sein.", + already_exists: "Der Schätzungswert existiert bereits.", + unsaved_changes: "Du hast ungespeicherte Änderungen. Bitte speichere sie, bevor du auf Fertig klickst", + remove_empty: + "Die Schätzung darf nicht leer sein. Gib einen Wert in jedes Feld ein oder entferne die Felder, für die du keine Werte hast.", + }, + systems: { + points: { + label: "Punkte", + fibonacci: "Fibonacci", + linear: "Linear", + squares: "Quadrate", + custom: "Benutzerdefiniert", + }, + categories: { + label: "Kategorien", + t_shirt_sizes: "T-Shirt-Größen", + easy_to_hard: "Einfach bis schwer", + custom: "Benutzerdefiniert", + }, + time: { + label: "Zeit", + hours: "Stunden", + }, + }, + }, + automations: { + label: "Automatisierungen", + "auto-archive": { + title: "Geschlossene Arbeitselemente automatisch archivieren", + description: "Plane wird Arbeitselemente automatisch archivieren, die abgeschlossen oder abgebrochen wurden.", + duration: "Arbeitselemente automatisch archivieren, die seit", + }, + "auto-close": { + title: "Arbeitselemente automatisch schließen", + description: + "Plane wird Arbeitselemente automatisch schließen, die nicht abgeschlossen oder abgebrochen wurden.", + duration: "Inaktive Arbeitselemente automatisch schließen seit", + auto_close_status: "Status der automatischen Schließung", + }, + }, + empty_state: { + labels: { + title: "Keine Labels", + description: "Erstellen Sie Labels, um Elemente zu organisieren.", + }, + estimates: { + title: "Keine Schätzungssysteme", + description: "Erstellen Sie ein Schätzungssystem, um den Aufwand zu kommunizieren.", + primary_button: "Schätzungssystem hinzufügen", + }, + }, + }, + project_cycles: { + add_cycle: "Zyklus hinzufügen", + more_details: "Weitere Details", + cycle: "Zyklus", + update_cycle: "Zyklus aktualisieren", + create_cycle: "Zyklus erstellen", + no_matching_cycles: "Keine passenden Zyklen", + remove_filters_to_see_all_cycles: "Entfernen Sie Filter, um alle Zyklen anzuzeigen", + remove_search_criteria_to_see_all_cycles: "Entfernen Sie Suchkriterien, um alle Zyklen anzuzeigen", + only_completed_cycles_can_be_archived: "Nur abgeschlossene Zyklen können archiviert werden", + start_date: "Startdatum", + end_date: "Enddatum", + in_your_timezone: "In Ihrer Zeitzone", + transfer_work_items: "Übertragen von {count} Arbeitselementen", + date_range: "Datumsbereich", + add_date: "Datum hinzufügen", + active_cycle: { + label: "Aktiver Zyklus", + progress: "Fortschritt", + chart: "Burndown-Diagramm", + priority_issue: "Hochpriorisierte Elemente", + assignees: "Zuweisungen", + issue_burndown: "Burndown für Arbeitselemente", + ideal: "Ideal", + current: "Aktuell", + labels: "Labels", + }, + upcoming_cycle: { + label: "Bevorstehender Zyklus", + }, + completed_cycle: { + label: "Abgeschlossener Zyklus", + }, + status: { + days_left: "Tage übrig", + completed: "Abgeschlossen", + yet_to_start: "Noch nicht begonnen", + in_progress: "In Bearbeitung", + draft: "Entwurf", + }, + action: { + restore: { + title: "Zyklus wiederherstellen", + success: { + title: "Zyklus wiederhergestellt", + description: "Zyklus wurde wiederhergestellt.", + }, + failed: { + title: "Wiederherstellung fehlgeschlagen", + description: "Zyklus konnte nicht wiederhergestellt werden.", + }, + }, + favorite: { + loading: "Wird zu Favoriten hinzugefügt", + success: { + description: "Zyklus zu Favoriten hinzugefügt.", + title: "Erfolg!", + }, + failed: { + description: "Zu Favoriten hinzufügen fehlgeschlagen.", + title: "Fehler!", + }, + }, + unfavorite: { + loading: "Wird aus Favoriten entfernt", + success: { + description: "Zyklus aus Favoriten entfernt.", + title: "Erfolg!", + }, + failed: { + description: "Entfernen fehlgeschlagen.", + title: "Fehler!", + }, + }, + update: { + loading: "Zyklus wird aktualisiert", + success: { + description: "Zyklus aktualisiert.", + title: "Erfolg!", + }, + failed: { + description: "Aktualisierung fehlgeschlagen.", + title: "Fehler!", + }, + error: { + already_exists: "Ein Zyklus mit diesen Daten existiert bereits. Entfernen Sie das Datum für einen Entwurf.", + }, + }, + }, + empty_state: { + general: { + title: "Gruppieren Sie Arbeit in Zyklen.", + description: "Begrenzen Sie Arbeit zeitlich, verfolgen Sie Fristen und bleiben Sie auf Kurs.", + primary_button: { + text: "Ersten Zyklus erstellen", + comic: { + title: "Zyklen sind wiederkehrende Zeitspannen.", + description: "Sprint, Iteration oder jedes andere Zeitfenster, um Arbeit zu verfolgen.", + }, + }, + }, + no_issues: { + title: "Keine Elemente im Zyklus", + description: "Fügen Sie die Elemente hinzu, die Sie verfolgen möchten.", + primary_button: { + text: "Element erstellen", + }, + secondary_button: { + text: "Vorhandenes Element hinzufügen", + }, + }, + completed_no_issues: { + title: "Keine Elemente im Zyklus", + description: + "Die Elemente wurden verschoben oder ausgeblendet. Bearbeiten Sie die Eigenschaften, um sie anzuzeigen.", + }, + active: { + title: "Kein aktiver Zyklus", + description: "Ein aktiver Zyklus umfasst das heutige Datum. Verfolgen Sie seinen Fortschritt hier.", + }, + archived: { + title: "Keine archivierten Zyklen", + description: "Archivieren Sie abgeschlossene Zyklen, um Ordnung zu halten.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Erstellen und zuweisen eines Arbeitselements", + description: + "Arbeitselemente sind Aufgaben, die Sie sich selbst oder dem Team zuweisen. Verfolgen Sie deren Fortschritt.", + primary_button: { + text: "Erstes Element erstellen", + comic: { + title: "Arbeitselemente sind die Bausteine", + description: "Beispiele: UI-Redesign, Rebranding, neues System.", + }, + }, + }, + no_archived_issues: { + title: "Keine archivierten Elemente", + description: "Archivieren Sie abgeschlossene oder abgebrochene Elemente. Richten Sie Automatisierungen ein.", + primary_button: { + text: "Automatisierung einrichten", + }, + }, + issues_empty_filter: { + title: "Keine passenden Elemente", + secondary_button: { + text: "Filter löschen", + }, + }, + }, + }, + project_module: { + add_module: "Modul hinzufügen", + update_module: "Modul aktualisieren", + create_module: "Modul erstellen", + archive_module: "Modul archivieren", + restore_module: "Modul wiederherstellen", + delete_module: "Modul löschen", + empty_state: { + general: { + title: "Gruppieren Sie Meilensteine in Modulen.", + description: + "Module fassen Elemente unter einer logischen Einheit zusammen. Verfolgen Sie Fristen und Fortschritt.", + primary_button: { + text: "Erstes Modul erstellen", + comic: { + title: "Module gruppieren hierarchisch.", + description: "Beispiele: Warenkorbmodul, Chassis, Lager.", + }, + }, + }, + no_issues: { + title: "Keine Elemente im Modul", + description: "Fügen Sie dem Modul Elemente hinzu.", + primary_button: { + text: "Elemente erstellen", + }, + secondary_button: { + text: "Vorhandenes Element hinzufügen", + }, + }, + archived: { + title: "Keine archivierten Module", + description: "Archivieren Sie abgeschlossene oder abgebrochene Module.", + }, + sidebar: { + in_active: "Modul ist nicht aktiv.", + invalid_date: "Ungültiges Datum. Bitte geben Sie ein gültiges Datum ein.", + }, + }, + quick_actions: { + archive_module: "Modul archivieren", + archive_module_description: "Nur abgeschlossene/abgebrochene Module können archiviert werden.", + delete_module: "Modul löschen", + }, + toast: { + copy: { + success: "Link zum Modul kopiert", + }, + delete: { + success: "Modul gelöscht", + error: "Löschen fehlgeschlagen", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Speichern Sie Filter als Ansichten.", + description: + "Ansichten sind gespeicherte Filter, auf die Sie schnell zugreifen und die Sie im Team teilen können.", + primary_button: { + text: "Erste Ansicht erstellen", + comic: { + title: "Ansichten funktionieren mit den Eigenschaften der Arbeitselemente.", + description: "Erstellen Sie eine Ansicht mit den gewünschten Filtern.", + }, + }, + }, + filter: { + title: "Keine passenden Ansichten", + description: "Erstellen Sie eine neue Ansicht.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "Notieren Sie Ideen, Dokumente oder Wissensdatenbanken. Nutzen Sie AI Galileo.", + description: + "Seiten sind Orte für Ihre Gedanken. Schreiben, formatieren, fügen Sie Arbeitselemente ein und verwenden Sie Komponenten.", + primary_button: { + text: "Erste Seite erstellen", + }, + }, + private: { + title: "Keine privaten Seiten", + description: "Bewahren Sie private Gedanken auf. Teilen Sie sie, wenn Sie bereit sind.", + primary_button: { + text: "Seite erstellen", + }, + }, + public: { + title: "Keine öffentlichen Seiten", + description: "Hier sehen Sie die im Projekt geteilten Seiten.", + primary_button: { + text: "Seite erstellen", + }, + }, + archived: { + title: "Keine archivierten Seiten", + description: "Archivieren Sie Seiten für den späteren Zugriff.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Keine Ergebnisse gefunden", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Keine passenden Elemente", + }, + no_issues: { + title: "Keine Elemente", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Keine Kommentare", + description: "Kommentare dienen der Diskussion und der Nachverfolgung von Elementen.", + }, + }, + }, + notification: { + label: "Posteingang", + page_label: "{workspace} - Posteingang", + options: { + mark_all_as_read: "Alle als gelesen markieren", + mark_read: "Als gelesen markieren", + mark_unread: "Als ungelesen markieren", + refresh: "Aktualisieren", + filters: "Posteingangsfilter", + show_unread: "Ungelesene anzeigen", + show_snoozed: "Verschobene anzeigen", + show_archived: "Archivierte anzeigen", + mark_archive: "Archivieren", + mark_unarchive: "Archivierung aufheben", + mark_snooze: "Verschieben", + mark_unsnooze: "Wiederherstellen", + }, + toasts: { + read: "Benachrichtigung gelesen", + unread: "Als ungelesen markiert", + archived: "Archiviert", + unarchived: "Archivierung aufgehoben", + snoozed: "Verschoben", + unsnoozed: "Wiederhergestellt", + }, + empty_state: { + detail: { + title: "Wählen Sie ein Element, um Details anzuzeigen.", + }, + all: { + title: "Keine zugewiesenen Elemente", + description: "Hier sehen Sie Aktualisierungen zu Ihnen zugewiesenen Elementen.", + }, + mentions: { + title: "Keine Erwähnungen", + description: "Hier sehen Sie Erwähnungen über Sie.", + }, + }, + tabs: { + all: "Alle", + mentions: "Erwähnungen", + }, + filter: { + assigned: "Mir zugewiesen", + created: "Von mir erstellt", + subscribed: "Abonniert", + }, + snooze: { + "1_day": "1 Tag", + "3_days": "3 Tage", + "5_days": "5 Tage", + "1_week": "1 Woche", + "2_weeks": "2 Wochen", + custom: "Benutzerdefiniert", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Fügen Sie Elemente hinzu, um den Fortschritt zu verfolgen", + }, + chart: { + title: "Fügen Sie Elemente hinzu, um ein Burndown-Diagramm anzuzeigen.", + }, + priority_issue: { + title: "Hochpriorisierte Arbeitselemente werden hier angezeigt.", + }, + assignee: { + title: "Weisen Sie Elemente zu, um eine Übersicht der Zuweisungen zu sehen.", + }, + label: { + title: "Fügen Sie Labels hinzu, um eine Analyse nach Labels zu erhalten.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Eingang ist nicht aktiviert", + description: "Aktivieren Sie den Eingang in den Projekteinstellungen, um Anfragen zu verwalten.", + primary_button: { + text: "Funktionen verwalten", + }, + }, + cycle: { + title: "Zyklen sind nicht aktiviert", + description: "Aktivieren Sie Zyklen, um Arbeit zeitlich zu begrenzen.", + primary_button: { + text: "Funktionen verwalten", + }, + }, + module: { + title: "Module sind nicht aktiviert", + description: "Aktivieren Sie Module in den Projekteinstellungen.", + primary_button: { + text: "Funktionen verwalten", + }, + }, + page: { + title: "Seiten sind nicht aktiviert", + description: "Aktivieren Sie Seiten in den Projekteinstellungen.", + primary_button: { + text: "Funktionen verwalten", + }, + }, + view: { + title: "Ansichten sind nicht aktiviert", + description: "Aktivieren Sie Ansichten in den Projekteinstellungen.", + primary_button: { + text: "Funktionen verwalten", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Einen Entwurf für ein Element erstellen", + empty_state: { + title: "Entwürfe für Elemente und Kommentare werden hier angezeigt.", + description: "Beginnen Sie mit dem Erstellen eines Arbeitselements und lassen Sie es als Entwurf.", + primary_button: { + text: "Ersten Entwurf erstellen", + }, + }, + delete_modal: { + title: "Entwurf löschen", + description: "Möchten Sie diesen Entwurf wirklich löschen? Diese Aktion ist nicht umkehrbar.", + }, + toasts: { + created: { + success: "Entwurf erstellt", + error: "Erstellung fehlgeschlagen", + }, + deleted: { + success: "Entwurf gelöscht", + }, + }, + }, + stickies: { + title: "Ihre Notizen", + placeholder: "Klicken, um zu schreiben", + all: "Alle Notizen", + "no-data": "Halten Sie Ideen und Gedanken fest. Fügen Sie die erste Notiz hinzu.", + add: "Notiz hinzufügen", + search_placeholder: "Nach Name suchen", + delete: "Notiz löschen", + delete_confirmation: "Möchten Sie diese Notiz wirklich löschen?", + empty_state: { + simple: "Halten Sie Ideen und Gedanken fest. Fügen Sie die erste Notiz hinzu.", + general: { + title: "Notizen sind schnelle Aufzeichnungen.", + description: "Schreiben Sie Ihre Ideen auf und greifen Sie von überall darauf zu.", + primary_button: { + text: "Notiz hinzufügen", + }, + }, + search: { + title: "Keine Notizen gefunden.", + description: "Versuchen Sie einen anderen Begriff oder erstellen Sie eine neue.", + primary_button: { + text: "Notiz hinzufügen", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Der Name der Notiz darf max. 100 Zeichen haben.", + already_exists: "Eine Notiz ohne Beschreibung existiert bereits", + }, + created: { + title: "Notiz erstellt", + message: "Notiz erfolgreich erstellt", + }, + not_created: { + title: "Erstellung fehlgeschlagen", + message: "Notiz konnte nicht erstellt werden", + }, + updated: { + title: "Notiz aktualisiert", + message: "Notiz erfolgreich aktualisiert", + }, + not_updated: { + title: "Aktualisierung fehlgeschlagen", + message: "Notiz konnte nicht aktualisiert werden", + }, + removed: { + title: "Notiz gelöscht", + message: "Notiz erfolgreich gelöscht", + }, + not_removed: { + title: "Löschen fehlgeschlagen", + message: "Notiz konnte nicht gelöscht werden", + }, + }, + }, + role_details: { + guest: { + title: "Gast", + description: "Externe Mitglieder können als Gäste eingeladen werden.", + }, + member: { + title: "Mitglied", + description: "Kann Entitäten lesen, schreiben, bearbeiten und löschen.", + }, + admin: { + title: "Administrator", + description: "Besitzt alle Berechtigungen im Arbeitsbereich.", + }, + }, + user_roles: { + product_or_project_manager: "Produkt-/Projektmanager", + development_or_engineering: "Entwicklung/Ingenieurwesen", + founder_or_executive: "Gründer/Führungskraft", + freelancer_or_consultant: "Freiberufler/Berater", + marketing_or_growth: "Marketing/Wachstum", + sales_or_business_development: "Vertrieb/Business Development", + support_or_operations: "Support/Betrieb", + student_or_professor: "Student/Professor", + human_resources: "Personalwesen", + other: "Andere", + }, + importer: { + github: { + title: "GitHub", + description: "Arbeitselemente aus GitHub-Repositories importieren.", + }, + jira: { + title: "Jira", + description: "Arbeitselemente und Epiks aus Jira importieren.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Arbeitselemente in CSV exportieren.", + short_description: "Als CSV exportieren", + }, + excel: { + title: "Excel", + description: "Arbeitselemente in Excel exportieren.", + short_description: "Als Excel exportieren", + }, + xlsx: { + title: "Excel", + description: "Arbeitselemente in Excel exportieren.", + short_description: "Als Excel exportieren", + }, + json: { + title: "JSON", + description: "Arbeitselemente in JSON exportieren.", + short_description: "Als JSON exportieren", + }, + }, + default_global_view: { + all_issues: "Alle Elemente", + assigned: "Zugewiesen", + created: "Erstellt", + subscribed: "Abonniert", + }, + themes: { + theme_options: { + system_preference: { + label: "Systemeinstellungen", + }, + light: { + label: "Hell", + }, + dark: { + label: "Dunkel", + }, + light_contrast: { + label: "Heller hoher Kontrast", + }, + dark_contrast: { + label: "Dunkler hoher Kontrast", + }, + custom: { + label: "Benutzerdefiniertes Theme", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Geplant", + in_progress: "In Bearbeitung", + paused: "Pausiert", + completed: "Abgeschlossen", + cancelled: "Abgebrochen", + }, + layout: { + list: "Liste", + board: "Board", + timeline: "Zeitachse", + }, + order_by: { + name: "Name", + progress: "Fortschritt", + issues: "Anzahl Elemente", + due_date: "Fälligkeitsdatum", + created_at: "Erstellungsdatum", + manual: "Manuell", + }, + }, + cycle: { + label: "{count, plural, one {Zyklus} few {Zyklen} other {Zyklen}}", + no_cycle: "Kein Zyklus", + }, + module: { + label: "{count, plural, one {Modul} few {Module} other {Module}}", + no_module: "Kein Modul", + }, + description_versions: { + last_edited_by: "Zuletzt bearbeitet von", + previously_edited_by: "Zuvor bearbeitet von", + edited_by: "Bearbeitet von", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane ist nicht gestartet. Dies könnte daran liegen, dass einer oder mehrere Plane-Services nicht starten konnten.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Wählen Sie View Logs aus setup.sh und Docker-Logs, um sicherzugehen.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Gliederung", + empty_state: { + title: "Fehlende Überschriften", + description: "Fügen Sie einige Überschriften zu dieser Seite hinzu, um sie hier zu sehen.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Wörter", + characters: "Zeichen", + paragraphs: "Absätze", + read_time: "Lesezeit", + }, + actors_info: { + edited_by: "Bearbeitet von", + created_by: "Erstellt von", + }, + version_history: { + label: "Versionsverlauf", + current_version: "Aktuelle Version", + }, + }, + assets: { + label: "Assets", + download_button: "Herunterladen", + empty_state: { + title: "Fehlende Bilder", + description: "Fügen Sie Bilder hinzu, um sie hier zu sehen.", + }, + }, + }, + open_button: "Navigationsbereich öffnen", + close_button: "Navigationsbereich schließen", + outline_floating_button: "Gliederung öffnen", + }, +} as const; diff --git a/packages/i18n/src/locales/en/accessibility.json b/packages/i18n/src/locales/en/accessibility.json deleted file mode 100644 index 86660d640e..0000000000 --- a/packages/i18n/src/locales/en/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Workspace logo", - "open_workspace_switcher": "Open workspace switcher", - "open_user_menu": "Open user menu", - "open_command_palette": "Open command palette", - "open_extended_sidebar": "Open extended sidebar", - "close_extended_sidebar": "Close extended sidebar", - "create_favorites_folder": "Create favorites folder", - "open_folder": "Open folder", - "close_folder": "Close folder", - "open_favorites_menu": "Open favorites menu", - "close_favorites_menu": "Close favorites menu", - "enter_folder_name": "Enter folder name", - "create_new_project": "Create new project", - "open_projects_menu": "Open projects menu", - "close_projects_menu": "Close projects menu", - "toggle_quick_actions_menu": "Toggle quick actions menu", - "open_project_menu": "Open project menu", - "close_project_menu": "Close project menu", - "collapse_sidebar": "Collapse sidebar", - "expand_sidebar": "Expand sidebar", - "edition_badge": "Open paid plans' modal" - }, - "auth_forms": { - "clear_email": "Clear email", - "show_password": "Show password", - "hide_password": "Hide password", - "close_alert": "Close alert", - "close_popover": "Close popover" - } - } -} diff --git a/packages/i18n/src/locales/en/accessibility.ts b/packages/i18n/src/locales/en/accessibility.ts new file mode 100644 index 0000000000..c9fa1b8baa --- /dev/null +++ b/packages/i18n/src/locales/en/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Workspace logo", + open_workspace_switcher: "Open workspace switcher", + open_user_menu: "Open user menu", + open_command_palette: "Open command palette", + open_extended_sidebar: "Open extended sidebar", + close_extended_sidebar: "Close extended sidebar", + create_favorites_folder: "Create favorites folder", + open_folder: "Open folder", + close_folder: "Close folder", + open_favorites_menu: "Open favorites menu", + close_favorites_menu: "Close favorites menu", + enter_folder_name: "Enter folder name", + create_new_project: "Create new project", + open_projects_menu: "Open projects menu", + close_projects_menu: "Close projects menu", + toggle_quick_actions_menu: "Toggle quick actions menu", + open_project_menu: "Open project menu", + close_project_menu: "Close project menu", + collapse_sidebar: "Collapse sidebar", + expand_sidebar: "Expand sidebar", + edition_badge: "Open paid plans' modal", + }, + auth_forms: { + clear_email: "Clear email", + show_password: "Show password", + hide_password: "Hide password", + close_alert: "Close alert", + close_popover: "Close popover", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/en/core.json b/packages/i18n/src/locales/en/core.json deleted file mode 100644 index a17de227eb..0000000000 --- a/packages/i18n/src/locales/en/core.json +++ /dev/null @@ -1,171 +0,0 @@ -{ - "sidebar": { - "projects": "Projects", - "pages": "Pages", - "new_work_item": "New work item", - "home": "Home", - "your_work": "Your work", - "inbox": "Inbox", - "workspace": "Workspace", - "views": "Views", - "analytics": "Analytics", - "work_items": "Work items", - "cycles": "Cycles", - "modules": "Modules", - "intake": "Intake", - "drafts": "Drafts", - "favorites": "Favorites", - "pro": "Pro", - "upgrade": "Upgrade" - }, - - "auth": { - "common": { - "email": { - "label": "Email", - "placeholder": "name@company.com", - "errors": { - "required": "Email is required", - "invalid": "Email is invalid" - } - }, - "password": { - "label": "Password", - "set_password": "Set a password", - "placeholder": "Enter password", - "confirm_password": { - "label": "Confirm password", - "placeholder": "Confirm password" - }, - "current_password": { - "label": "Current password" - }, - "new_password": { - "label": "New password", - "placeholder": "Enter new password" - }, - "change_password": { - "label": { - "default": "Change password", - "submitting": "Changing password" - } - }, - "errors": { - "match": "Passwords don't match", - "empty": "Please enter your password", - "length": "Password length should me more than 8 characters", - "strength": { - "weak": "Password is weak", - "strong": "Password is strong" - } - }, - "submit": "Set password", - "toast": { - "change_password": { - "success": { - "title": "Success!", - "message": "Password changed successfully." - }, - "error": { - "title": "Error!", - "message": "Something went wrong. Please try again." - } - } - } - }, - "unique_code": { - "label": "Unique code", - "placeholder": "gets-sets-flys", - "paste_code": "Paste the code sent to your email", - "requesting_new_code": "Requesting new code", - "sending_code": "Sending code" - }, - "already_have_an_account": "Already have an account?", - "login": "Log in", - "create_account": "Create an account", - "new_to_plane": "New to Plane?", - "back_to_sign_in": "Back to sign in", - "resend_in": "Resend in {seconds} seconds", - "sign_in_with_unique_code": "Sign in with unique code", - "forgot_password": "Forgot your password?" - }, - "sign_up": { - "header": { - "label": "Create an account to start managing work with your team.", - "step": { - "email": { - "header": "Sign up", - "sub_header": "" - }, - "password": { - "header": "Sign up", - "sub_header": "Sign up using an email-password combination." - }, - "unique_code": { - "header": "Sign up", - "sub_header": "Sign up using a unique code sent to the email address above." - } - } - }, - "errors": { - "password": { - "strength": "Try setting-up a strong password to proceed" - } - } - }, - "sign_in": { - "header": { - "label": "Log in to start managing work with your team.", - "step": { - "email": { - "header": "Log in or sign up", - "sub_header": "" - }, - "password": { - "header": "Log in or sign up", - "sub_header": "Use your email-password combination to log in." - }, - "unique_code": { - "header": "Log in or sign up", - "sub_header": "Log in using a unique code sent to the email address above." - } - } - } - }, - "forgot_password": { - "title": "Reset your password", - "description": "Enter your user account's verified email address and we will send you a password reset link.", - "email_sent": "We sent the reset link to your email address", - "send_reset_link": "Send reset link", - "errors": { - "smtp_not_enabled": "We see that your god hasn't enabled SMTP, we will not be able to send a password reset link" - }, - "toast": { - "success": { - "title": "Email sent", - "message": "Check your inbox for a link to reset your password. If it doesn't appear within a few minutes, check your spam folder." - }, - "error": { - "title": "Error!", - "message": "Something went wrong. Please try again." - } - } - }, - "reset_password": { - "title": "Set new password", - "description": "Secure your account with a strong password" - }, - "set_password": { - "title": "Secure your account", - "description": "Setting password helps you login securely" - }, - "sign_out": { - "toast": { - "error": { - "title": "Error!", - "message": "Failed to sign out. Please try again." - } - } - } - } -} diff --git a/packages/i18n/src/locales/en/core.ts b/packages/i18n/src/locales/en/core.ts new file mode 100644 index 0000000000..bce2ee96eb --- /dev/null +++ b/packages/i18n/src/locales/en/core.ts @@ -0,0 +1,172 @@ +export default { + sidebar: { + projects: "Projects", + pages: "Pages", + new_work_item: "New work item", + home: "Home", + your_work: "Your work", + inbox: "Inbox", + workspace: "Workspace", + views: "Views", + analytics: "Analytics", + work_items: "Work items", + cycles: "Cycles", + modules: "Modules", + intake: "Intake", + drafts: "Drafts", + favorites: "Favorites", + pro: "Pro", + upgrade: "Upgrade", + }, + + auth: { + common: { + email: { + label: "Email", + placeholder: "name@company.com", + errors: { + required: "Email is required", + invalid: "Email is invalid", + }, + }, + password: { + label: "Password", + set_password: "Set a password", + placeholder: "Enter password", + confirm_password: { + label: "Confirm password", + placeholder: "Confirm password", + }, + current_password: { + label: "Current password", + }, + new_password: { + label: "New password", + placeholder: "Enter new password", + }, + change_password: { + label: { + default: "Change password", + submitting: "Changing password", + }, + }, + errors: { + match: "Passwords don't match", + empty: "Please enter your password", + length: "Password length should me more than 8 characters", + strength: { + weak: "Password is weak", + strong: "Password is strong", + }, + }, + submit: "Set password", + toast: { + change_password: { + success: { + title: "Success!", + message: "Password changed successfully.", + }, + error: { + title: "Error!", + message: "Something went wrong. Please try again.", + }, + }, + }, + }, + unique_code: { + label: "Unique code", + placeholder: "gets-sets-flys", + paste_code: "Paste the code sent to your email", + requesting_new_code: "Requesting new code", + sending_code: "Sending code", + }, + already_have_an_account: "Already have an account?", + login: "Log in", + create_account: "Create an account", + new_to_plane: "New to Plane?", + back_to_sign_in: "Back to sign in", + resend_in: "Resend in {seconds} seconds", + sign_in_with_unique_code: "Sign in with unique code", + forgot_password: "Forgot your password?", + }, + sign_up: { + header: { + label: "Create an account to start managing work with your team.", + step: { + email: { + header: "Sign up", + sub_header: "", + }, + password: { + header: "Sign up", + sub_header: "Sign up using an email-password combination.", + }, + unique_code: { + header: "Sign up", + sub_header: "Sign up using a unique code sent to the email address above.", + }, + }, + }, + errors: { + password: { + strength: "Try setting-up a strong password to proceed", + }, + }, + }, + sign_in: { + header: { + label: "Log in to start managing work with your team.", + step: { + email: { + header: "Log in or sign up", + sub_header: "", + }, + password: { + header: "Log in or sign up", + sub_header: "Use your email-password combination to log in.", + }, + unique_code: { + header: "Log in or sign up", + sub_header: "Log in using a unique code sent to the email address above.", + }, + }, + }, + }, + forgot_password: { + title: "Reset your password", + description: "Enter your user account's verified email address and we will send you a password reset link.", + email_sent: "We sent the reset link to your email address", + send_reset_link: "Send reset link", + errors: { + smtp_not_enabled: "We see that your god hasn't enabled SMTP, we will not be able to send a password reset link", + }, + toast: { + success: { + title: "Email sent", + message: + "Check your inbox for a link to reset your password. If it doesn't appear within a few minutes, check your spam folder.", + }, + error: { + title: "Error!", + message: "Something went wrong. Please try again.", + }, + }, + }, + reset_password: { + title: "Set new password", + description: "Secure your account with a strong password", + }, + set_password: { + title: "Secure your account", + description: "Setting password helps you login securely", + }, + sign_out: { + toast: { + error: { + title: "Error!", + message: "Failed to sign out. Please try again.", + }, + }, + }, + }, +} as const; diff --git a/packages/i18n/src/locales/en/editor.json b/packages/i18n/src/locales/en/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/en/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/en/editor.ts b/packages/i18n/src/locales/en/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/en/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/en/translations.json b/packages/i18n/src/locales/en/translations.json deleted file mode 100644 index 341a698a66..0000000000 --- a/packages/i18n/src/locales/en/translations.json +++ /dev/null @@ -1,2416 +0,0 @@ -{ - "submit": "Submit", - "cancel": "Cancel", - "loading": "Loading", - "error": "Error", - "success": "Success", - "warning": "Warning", - "info": "Info", - "close": "Close", - "yes": "Yes", - "no": "No", - "ok": "OK", - "name": "Name", - "description": "Description", - "search": "Search", - "add_member": "Add member", - "adding_members": "Adding members", - "remove_member": "Remove member", - "add_members": "Add members", - "adding_member": "Adding members", - "remove_members": "Remove members", - "add": "Add", - "adding": "Adding", - "remove": "Remove", - "add_new": "Add new", - "remove_selected": "Remove selected", - "first_name": "First name", - "last_name": "Last name", - "email": "Email", - "display_name": "Display name", - "role": "Role", - "timezone": "Timezone", - "avatar": "Avatar", - "cover_image": "Cover image", - "password": "Password", - "change_cover": "Change cover", - "language": "Language", - "saving": "Saving", - "save_changes": "Save changes", - "deactivate_account": "Deactivate account", - "deactivate_account_description": "When deactivating an account, all of the data and resources within that account will be permanently removed and cannot be recovered.", - "profile_settings": "Profile settings", - "your_account": "Your account", - "security": "Security", - "activity": "Activity", - "preferences": "Preferences", - "language_and_time": "Language & Time", - "notifications": "Notifications", - "workspaces": "Workspaces", - "create_workspace": "Create workspace", - "invitations": "Invitations", - "summary": "Summary", - "assigned": "Assigned", - "created": "Created", - "subscribed": "Subscribed", - "you_do_not_have_the_permission_to_access_this_page": "You do not have the permission to access this page.", - "something_went_wrong_please_try_again": "Something went wrong. Please try again.", - "load_more": "Load more", - "select_or_customize_your_interface_color_scheme": "Select or customize your interface color scheme.", - "timezone_setting": "Current timezone setting.", - "language_setting": "Choose the language used in the user interface.", - "settings_moved_to_preferences": "Timezone & Language settings have been moved to preferences.", - "go_to_preferences": "Go to preferences", - "theme": "Theme", - "system_preference": "System preference", - "light": "Light", - "dark": "Dark", - "light_contrast": "Light high contrast", - "dark_contrast": "Dark high contrast", - "custom": "Custom theme", - "select_your_theme": "Select your theme", - "customize_your_theme": "Customize your theme", - "background_color": "Background color", - "text_color": "Text color", - "primary_color": "Primary(Theme) color", - "sidebar_background_color": "Sidebar background color", - "sidebar_text_color": "Sidebar text color", - "set_theme": "Set theme", - "enter_a_valid_hex_code_of_6_characters": "Enter a valid hex code of 6 characters", - "background_color_is_required": "Background color is required", - "text_color_is_required": "Text color is required", - "primary_color_is_required": "Primary color is required", - "sidebar_background_color_is_required": "Sidebar background color is required", - "sidebar_text_color_is_required": "Sidebar text color is required", - "updating_theme": "Updating theme", - "theme_updated_successfully": "Theme updated successfully", - "failed_to_update_the_theme": "Failed to update the theme", - "email_notifications": "Email notifications", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Stay in the loop on Work items you are subscribed to. Enable this to get notified.", - "email_notification_setting_updated_successfully": "Email notification setting updated successfully", - "failed_to_update_email_notification_setting": "Failed to update email notification setting", - "notify_me_when": "Notify me when", - "property_changes": "Property changes", - "property_changes_description": "Notify me when work items' properties like assignees, priority, estimates or anything else changes.", - "state_change": "State change", - "state_change_description": "Notify me when the work items moves to a different state", - "issue_completed": "Work item completed", - "issue_completed_description": "Notify me only when a work item is completed", - "comments": "Comments", - "comments_description": "Notify me when someone leaves a comment on the work item", - "mentions": "Mentions", - "mentions_description": "Notify me only when someone mentions me in the comments or description", - "old_password": "Old password", - "general_settings": "General settings", - "sign_out": "Sign out", - "signing_out": "Signing out", - "active_cycles": "Active cycles", - "active_cycles_description": "Monitor cycles across projects, track high-priority work items, and zoom in cycles that need attention.", - "on_demand_snapshots_of_all_your_cycles": "On-demand snapshots of all your cycles", - "upgrade": "Upgrade", - "10000_feet_view": "10,000-feet view of all active cycles.", - "10000_feet_view_description": "Zoom out to see running cycles across all your projects at once instead of going from Cycle to Cycle in each project.", - "get_snapshot_of_each_active_cycle": "Get a snapshot of each active cycle.", - "get_snapshot_of_each_active_cycle_description": "Track high-level metrics for all active cycles, see their state of progress, and get a sense of scope against deadlines.", - "compare_burndowns": "Compare burndowns.", - "compare_burndowns_description": "Monitor how each of your teams are performing with a peek into each cycle's burndown report.", - "quickly_see_make_or_break_issues": "Quickly see make-or-break work items.", - "quickly_see_make_or_break_issues_description": "Preview high-priority work items for each cycle against due dates. See all of them per cycle in one click.", - "zoom_into_cycles_that_need_attention": "Zoom into cycles that need attention.", - "zoom_into_cycles_that_need_attention_description": "Investigate the state of any cycle that doesn't conform to expectations in one click.", - "stay_ahead_of_blockers": "Stay ahead of blockers.", - "stay_ahead_of_blockers_description": "Spot challenges from one project to another and see inter-cycle dependencies that aren't obvious from any other view.", - "analytics": "Analytics", - "workspace_invites": "Workspace invites", - "enter_god_mode": "Enter god mode", - "workspace_logo": "Workspace logo", - "new_issue": "New work item", - "your_work": "Your work", - "drafts": "Drafts", - "projects": "Projects", - "views": "Views", - "workspace": "Workspace", - "archives": "Archives", - "settings": "Settings", - "failed_to_move_favorite": "Failed to move favorite", - "favorites": "Favorites", - "no_favorites_yet": "No favorites yet", - "create_folder": "Create folder", - "new_folder": "New folder", - "favorite_updated_successfully": "Favorite updated successfully", - "favorite_created_successfully": "Favorite created successfully", - "folder_already_exists": "Folder already exists", - "folder_name_cannot_be_empty": "Folder name cannot be empty", - "something_went_wrong": "Something went wrong", - "failed_to_reorder_favorite": "Failed to reorder favorite", - "favorite_removed_successfully": "Favorite removed successfully", - "failed_to_create_favorite": "Failed to create favorite", - "failed_to_rename_favorite": "Failed to rename favorite", - "project_link_copied_to_clipboard": "Project link copied to clipboard", - "link_copied": "Link copied", - "add_project": "Add project", - "create_project": "Create project", - "failed_to_remove_project_from_favorites": "Couldn't remove the project from favorites. Please try again.", - "project_created_successfully": "Project created successfully", - "project_created_successfully_description": "Project created successfully. You can now start adding work items to it.", - "project_name_already_taken": "The project name is already taken.", - "project_identifier_already_taken": "The project identifier is already taken.", - "project_cover_image_alt": "Project cover image", - "name_is_required": "Name is required", - "title_should_be_less_than_255_characters": "Title should be less than 255 characters", - "project_name": "Project name", - "project_id_must_be_at_least_1_character": "Project ID must at least be of 1 character", - "project_id_must_be_at_most_5_characters": "Project ID must at most be of 5 characters", - "project_id": "Project ID", - "project_id_tooltip_content": "Helps you identify work items in the project uniquely. Max 5 characters.", - "description_placeholder": "Description", - "only_alphanumeric_non_latin_characters_allowed": "Only Alphanumeric & Non-latin characters are allowed.", - "project_id_is_required": "Project ID is required", - "project_id_allowed_char": "Only Alphanumeric & Non-latin characters are allowed.", - "project_id_min_char": "Project ID must at least be of 1 character", - "project_id_max_char": "Project ID must at most be of 5 characters", - "project_description_placeholder": "Enter project description", - "select_network": "Select network", - "lead": "Lead", - "date_range": "Date range", - "private": "Private", - "public": "Public", - "accessible_only_by_invite": "Accessible only by invite", - "anyone_in_the_workspace_except_guests_can_join": "Anyone in the workspace except Guests can join", - "creating": "Creating", - "creating_project": "Creating project", - "adding_project_to_favorites": "Adding project to favorites", - "project_added_to_favorites": "Project added to favorites", - "couldnt_add_the_project_to_favorites": "Couldn't add the project to favorites. Please try again.", - "removing_project_from_favorites": "Removing project from favorites", - "project_removed_from_favorites": "Project removed from favorites", - "couldnt_remove_the_project_from_favorites": "Couldn't remove the project from favorites. Please try again.", - "add_to_favorites": "Add to favorites", - "remove_from_favorites": "Remove from favorites", - "publish_project": "Publish project", - "publish": "Publish", - "copy_link": "Copy link", - "leave_project": "Leave project", - "join_the_project_to_rearrange": "Join the project to rearrange", - "drag_to_rearrange": "Drag to rearrange", - "congrats": "Congrats!", - "open_project": "Open project", - "issues": "Work items", - "cycles": "Cycles", - "modules": "Modules", - "pages": "Pages", - "intake": "Intake", - "time_tracking": "Time Tracking", - "work_management": "Work management", - "projects_and_issues": "Projects and work items", - "projects_and_issues_description": "Toggle these on or off this project.", - "cycles_description": "Timebox work per project and adjust the time period as needed. One cycle can be 2 weeks, the next 1 week.", - "modules_description": "Organize work into sub-projects with dedicated leads and assignees.", - "views_description": "Save custom sorts, filters, and display options or share them with your team.", - "pages_description": "Create and edit free-form content; notes, docs, anything.", - "intake_description": "Let non-members share bugs, feedback, and suggestions; without disrupting your workflow.", - "time_tracking_description": "Log time spent on work items and projects.", - "work_management_description": "Manage your work and projects with ease.", - "documentation": "Documentation", - "message_support": "Message support", - "contact_sales": "Contact sales", - "hyper_mode": "Hyper Mode", - "keyboard_shortcuts": "Keyboard shortcuts", - "whats_new": "What's new?", - "version": "Version", - "we_are_having_trouble_fetching_the_updates": "We are having trouble fetching the updates.", - "our_changelogs": "our changelogs", - "for_the_latest_updates": "for the latest updates.", - "please_visit": "Please visit", - "docs": "Docs", - "full_changelog": "Full changelog", - "support": "Support", - "discord": "Discord", - "powered_by_plane_pages": "Powered by Plane Pages", - "please_select_at_least_one_invitation": "Please select at least one invitation.", - "please_select_at_least_one_invitation_description": "Please select at least one invitation to join the workspace.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "We see that someone has invited you to join a workspace", - "join_a_workspace": "Join a workspace", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "We see that someone has invited you to join a workspace", - "join_a_workspace_description": "Join a workspace", - "accept_and_join": "Accept & Join", - "go_home": "Go Home", - "no_pending_invites": "No pending invites", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "You can see here if someone invites you to a workspace", - "back_to_home": "Back to home", - "workspace_name": "workspace-name", - "deactivate_your_account": "Deactivate your account", - "deactivate_your_account_description": "Once deactivated, you can't be assigned work items and be billed for your workspace. To reactivate your account, you will need an invite to a workspace at this email address.", - "deactivating": "Deactivating", - "confirm": "Confirm", - "confirming": "Confirming", - "draft_created": "Draft created", - "issue_created_successfully": "Work item created successfully", - "draft_creation_failed": "Draft creation failed", - "issue_creation_failed": "Work item creation failed", - "draft_issue": "Draft work item", - "issue_updated_successfully": "Work item updated successfully", - "issue_could_not_be_updated": "Work item could not be updated", - "create_a_draft": "Create a draft", - "save_to_drafts": "Save to Drafts", - "save": "Save", - "update": "Update", - "updating": "Updating", - "create_new_issue": "Create new work item", - "editor_is_not_ready_to_discard_changes": "Editor is not ready to discard changes", - "failed_to_move_issue_to_project": "Failed to move work item to project", - "create_more": "Create more", - "add_to_project": "Add to project", - "discard": "Discard", - "duplicate_issue_found": "Duplicate work item found", - "duplicate_issues_found": "Duplicate work items found", - "no_matching_results": "No matching results", - "title_is_required": "Title is required", - "title": "Title", - "state": "State", - "priority": "Priority", - "none": "None", - "urgent": "Urgent", - "high": "High", - "medium": "Medium", - "low": "Low", - "members": "Members", - "assignee": "Assignee", - "assignees": "Assignees", - "you": "You", - "labels": "Labels", - "create_new_label": "Create new label", - "start_date": "Start date", - "end_date": "End date", - "due_date": "Due date", - "estimate": "Estimate", - "change_parent_issue": "Change parent work item", - "remove_parent_issue": "Remove parent work item", - "add_parent": "Add parent", - "loading_members": "Loading members", - "view_link_copied_to_clipboard": "View link copied to clipboard.", - "required": "Required", - "optional": "Optional", - "Cancel": "Cancel", - "edit": "Edit", - "archive": "Archive", - "restore": "Restore", - "open_in_new_tab": "Open in new tab", - "delete": "Delete", - "deleting": "Deleting", - "make_a_copy": "Make a copy", - "move_to_project": "Move to project", - "good": "Good", - "morning": "morning", - "afternoon": "afternoon", - "evening": "evening", - "show_all": "Show all", - "show_less": "Show less", - "no_data_yet": "No Data yet", - "syncing": "Syncing", - "add_work_item": "Add work item", - "advanced_description_placeholder": "Press '/' for commands", - "create_work_item": "Create work item", - "attachments": "Attachments", - "declining": "Declining", - "declined": "Declined", - "decline": "Decline", - "unassigned": "Unassigned", - "work_items": "Work items", - "add_link": "Add link", - "points": "Points", - "no_assignee": "No assignee", - "no_assignees_yet": "No assignees yet", - "no_labels_yet": "No labels yet", - "ideal": "Ideal", - "current": "Current", - "no_matching_members": "No matching members", - "leaving": "Leaving", - "removing": "Removing", - "leave": "Leave", - "refresh": "Refresh", - "refreshing": "Refreshing", - "refresh_status": "Refresh status", - "prev": "Prev", - "next": "Next", - "re_generating": "Re-generating", - "re_generate": "Re-generate", - "re_generate_key": "Re-generate key", - "export": "Export", - "member": "{count, plural, one{# member} other{# members}}", - "new_password_must_be_different_from_old_password": "New password must be different from old password", - "edited": "edited", - "bot": "Bot", - "settings_description": "Manage your account, workspace, and project preferences all in one place. Switch between tabs to easily configure.", - "back_to_workspace": "Back to workspace", - "project_view": { - "sort_by": { - "created_at": "Created at", - "updated_at": "Updated at", - "name": "Name" - } - }, - "toast": { - "success": "Success!", - "error": "Error!" - }, - "links": { - "toasts": { - "created": { - "title": "Link created", - "message": "The link has been successfully created" - }, - "not_created": { - "title": "Link not created", - "message": "The link could not be created" - }, - "updated": { - "title": "Link updated", - "message": "The link has been successfully updated" - }, - "not_updated": { - "title": "Link not updated", - "message": "The link could not be updated" - }, - "removed": { - "title": "Link removed", - "message": "The link has been successfully removed" - }, - "not_removed": { - "title": "Link not removed", - "message": "The link could not be removed" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Your quickstart guide", - "not_right_now": "Not right now", - "create_project": { - "title": "Create a project", - "description": "Most things start with a project in Plane.", - "cta": "Get started" - }, - "invite_team": { - "title": "Invite your team", - "description": "Build, ship, and manage with coworkers.", - "cta": "Get them in" - }, - "configure_workspace": { - "title": "Set up your workspace.", - "description": "Turn features on or off or go beyond that.", - "cta": "Configure this workspace" - }, - "personalize_account": { - "title": "Make Plane yours.", - "description": "Choose your picture, colors, and more.", - "cta": "Personalize now" - }, - "widgets": { - "title": "It's Quiet Without Widgets, Turn Them On", - "description": "It looks like all your widgets are turned off. Enable them\nnow to enhance your experience!", - "primary_button": { - "text": "Manage widgets" - } - } - }, - "quick_links": { - "empty": "Save links to work things that you'd like handy.", - "add": "Add quick Link", - "title": "Quicklink", - "title_plural": "Quicklinks" - }, - "recents": { - "title": "Recents", - "empty": { - "project": "Your recent projects will appear here once you visit one.", - "page": "Your recent pages will appear here once you visit one.", - "issue": "Your recent work items will appear here once you visit one.", - "default": "You don't have any recents yet." - }, - "filters": { - "all": "All", - "projects": "Projects", - "pages": "Pages", - "issues": "Work items" - } - }, - "new_at_plane": { - "title": "New at Plane" - }, - "quick_tutorial": { - "title": "Quick tutorial" - }, - "widget": { - "reordered_successfully": "Widget reordered successfully.", - "reordering_failed": "Error occurred while reordering widget." - }, - "manage_widgets": "Manage widgets", - "title": "Home", - "star_us_on_github": "Star us on GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL is invalid", - "placeholder": "Type or paste a URL" - }, - "title": { - "text": "Display title", - "placeholder": "What you'd like to see this link as" - } - } - }, - "common": { - "all": "All", - "states": "States", - "state": "State", - "state_groups": "State groups", - "state_group": "State group", - "priorities": "Priorities", - "priority": "Priority", - "team_project": "Team project", - "project": "Project", - "cycle": "Cycle", - "cycles": "Cycles", - "module": "Module", - "modules": "Modules", - "labels": "Labels", - "label": "Label", - "admins": "Admins", - "users": "Users", - "guests": "Guests", - "assignees": "Assignees", - "assignee": "Assignee", - "created_by": "Created by", - "none": "None", - "link": "Link", - "estimates": "Estimates", - "estimate": "Estimate", - "created_at": "Created at", - "completed_at": "Completed at", - "layout": "Layout", - "filters": "Filters", - "display": "Display", - "load_more": "Load more", - "activity": "Activity", - "analytics": "Analytics", - "dates": "Dates", - "success": "Success!", - "something_went_wrong": "Something went wrong", - "error": { - "label": "Error!", - "message": "Some error occurred. Please try again." - }, - "group_by": "Group by", - "epic": "Epic", - "epics": "Epics", - "work_item": "Work item", - "work_items": "Work items", - "sub_work_item": "Sub-work item", - "add": "Add", - "warning": "Warning", - "updating": "Updating", - "adding": "Adding", - "update": "Update", - "creating": "Creating", - "create": "Create", - "cancel": "Cancel", - "description": "Description", - "title": "Title", - "attachment": "Attachment", - "general": "General", - "features": "Features", - "automation": "Automation", - "project_name": "Project name", - "project_id": "Project ID", - "project_timezone": "Project Timezone", - "created_on": "Created on", - "update_project": "Update project", - "identifier_already_exists": "Identifier already exists", - "add_more": "Add more", - "defaults": "Defaults", - "add_label": "Add label", - "customize_time_range": "Customize time range", - "loading": "Loading", - "attachments": "Attachments", - "property": "Property", - "properties": "Properties", - "parent": "Parent", - "page": "Page", - "remove": "Remove", - "archiving": "Archiving", - "archive": "Archive", - "access": { - "public": "Public", - "private": "Private" - }, - "done": "Done", - "sub_work_items": "Sub-work items", - "comment": "Comment", - "workspace_level": "Workspace level", - "order_by": { - "label": "Order by", - "manual": "Manual", - "last_created": "Last created", - "last_updated": "Last updated", - "start_date": "Start date", - "due_date": "Due date", - "asc": "Ascending", - "desc": "Descending", - "updated_on": "Updated on" - }, - "sort": { - "asc": "Ascending", - "desc": "Descending", - "created_on": "Created on", - "updated_on": "Updated on" - }, - "comments": "Comments", - "updates": "Updates", - "clear_all": "Clear all", - "copied": "Copied!", - "link_copied": "Link copied!", - "link_copied_to_clipboard": "Link copied to clipboard", - "copied_to_clipboard": "Work item link copied to clipboard", - "is_copied_to_clipboard": "Work item is copied to clipboard", - "no_links_added_yet": "No links added yet", - "add_link": "Add link", - "links": "Links", - "go_to_workspace": "Go to workspace", - "progress": "Progress", - "optional": "Optional", - "join": "Join", - "go_back": "Go back", - "continue": "Continue", - "resend": "Resend", - "relations": "Relations", - "errors": { - "default": { - "title": "Error!", - "message": "Something went wrong. Please try again." - }, - "required": "This field is required", - "entity_required": "{entity} is required", - "restricted_entity": "{entity} is restricted" - }, - "update_link": "Update link", - "attach": "Attach", - "create_new": "Create new", - "add_existing": "Add existing", - "type_or_paste_a_url": "Type or paste a URL", - "url_is_invalid": "URL is invalid", - "display_title": "Display title", - "link_title_placeholder": "What you'd like to see this link as", - "url": "URL", - "side_peek": "Side Peek", - "modal": "Modal", - "full_screen": "Full Screen", - "close_peek_view": "Close the peek view", - "toggle_peek_view_layout": "Toggle peek view layout", - "options": "Options", - "duration": "Duration", - "today": "Today", - "week": "Week", - "month": "Month", - "quarter": "Quarter", - "press_for_commands": "Press '/' for commands", - "click_to_add_description": "Click to add description", - "on_track": "On-Track", - "off_track": "Off-Track", - "at_risk": "At risk", - "timeline": "Timeline", - "completion": "Completion", - "upcoming": "Upcoming", - "completed": "Completed", - "in_progress": "In progress", - "planned": "Planned", - "paused": "Paused", - "search": { - "label": "Search", - "placeholder": "Type to search", - "no_matches_found": "No matches found", - "no_matching_results": "No matching results" - }, - "actions": { - "edit": "Edit", - "make_a_copy": "Make a copy", - "open_in_new_tab": "Open in new tab", - "copy_link": "Copy link", - "archive": "Archive", - "restore": "Restore", - "delete": "Delete", - "remove_relation": "Remove relation", - "subscribe": "Subscribe", - "unsubscribe": "Unsubscribe", - "clear_sorting": "Clear sorting", - "show_weekends": "Show weekends", - "enable": "Enable", - "disable": "Disable", - "copy_markdown": "Copy markdown" - }, - "name": "Name", - "discard": "Discard", - "confirm": "Confirm", - "confirming": "Confirming", - "read_the_docs": "Read the docs", - "default": "Default", - "active": "Active", - "enabled": "Enabled", - "disabled": "Disabled", - "mandate": "Mandate", - "mandatory": "Mandatory", - "yes": "Yes", - "no": "No", - "please_wait": "Please wait", - "enabling": "Enabling", - "disabling": "Disabling", - "beta": "Beta", - "or": "or", - "next": "Next", - "back": "Back", - "cancelling": "Cancelling", - "configuring": "Configuring", - "clear": "Clear", - "import": "Import", - "connect": "Connect", - "authorizing": "Authorizing", - "processing": "Processing", - "no_data_available": "No data available", - "from": "from {name}", - "authenticated": "Authenticated", - "select": "Select", - "upgrade": "Upgrade", - "add_seats": "Add Seats", - "projects": "Projects", - "workspace": "Workspace", - "workspaces": "Workspaces", - "team": "Team", - "teams": "Teams", - "entity": "Entity", - "entities": "Entities", - "task": "Task", - "tasks": "Tasks", - "section": "Section", - "sections": "Sections", - "edit": "Edit", - "connecting": "Connecting", - "connected": "Connected", - "disconnect": "Disconnect", - "disconnecting": "Disconnecting", - "installing": "Installing", - "install": "Install", - "reset": "Reset", - "live": "Live", - "change_history": "Change History", - "coming_soon": "Coming soon", - "member": "Member", - "members": "Members", - "you": "You", - "upgrade_cta": { - "higher_subscription": "Upgrade to higher subscription", - "talk_to_sales": "Talk to Sales" - }, - "category": "Category", - "categories": "Categories", - "saving": "Saving", - "save_changes": "Save changes", - "delete": "Delete", - "deleting": "Deleting", - "pending": "Pending", - "invite": "Invite", - "view": "View", - "deactivated_user": "Deactivated user", - "apply": "Apply", - "applying": "Applying", - "overview": "Overview", - "no_of": "No. of {entity}", - "resolved": "Resolved" - }, - "chart": { - "x_axis": "X-axis", - "y_axis": "Y-axis", - "metric": "Metric" - }, - "form": { - "title": { - "required": "Title is required", - "max_length": "Title should be less than {length} characters" - } - }, - "entity": { - "grouping_title": "{entity} Grouping", - "priority": "{entity} Priority", - "all": "All {entity}", - "drop_here_to_move": "Drop here to move the {entity}", - "delete": { - "label": "Delete {entity}", - "success": "{entity} deleted successfully", - "failed": "{entity} delete failed" - }, - "update": { - "failed": "{entity} update failed", - "success": "{entity} updated successfully" - }, - "link_copied_to_clipboard": "{entity} link copied to clipboard", - "fetch": { - "failed": "Error fetching {entity}" - }, - "add": { - "success": "{entity} added successfully", - "failed": "Error adding {entity}" - }, - "remove": { - "success": "{entity} removed successfully", - "failed": "Error removing {entity}" - } - }, - "epic": { - "all": "All Epics", - "label": "{count, plural, one {Epic} other {Epics}}", - "new": "New Epic", - "adding": "Adding epic", - "create": { - "success": "Epic created successfully" - }, - "add": { - "press_enter": "Press 'Enter' to add another epic", - "label": "Add Epic" - }, - "title": { - "label": "Epic Title", - "required": "Epic title is required." - } - }, - "issue": { - "label": "{count, plural, one {Work item} other {Work items}}", - "all": "All Work items", - "edit": "Edit work item", - "title": { - "label": "Work item title", - "required": "Work item title is required." - }, - "add": { - "press_enter": "Press 'Enter' to add another work item", - "label": "Add work item", - "cycle": { - "failed": "Work item could not be added to the cycle. Please try again.", - "success": "{count, plural, one {Work item} other {Work items}} added to the cycle successfully.", - "loading": "Adding {count, plural, one {work item} other {work items}} to the cycle" - }, - "assignee": "Add assignees", - "start_date": "Add start date", - "due_date": "Add due date", - "parent": "Add parent work item", - "sub_issue": "Add sub-work item", - "relation": "Add relation", - "link": "Add link", - "existing": "Add existing work item" - }, - "remove": { - "label": "Remove work item", - "cycle": { - "loading": "Removing work item from the cycle", - "success": "Work item removed from the cycle successfully.", - "failed": "Work item could not be removed from the cycle. Please try again." - }, - "module": { - "loading": "Removing work item from the module", - "success": "Work item removed from the module successfully.", - "failed": "Work item could not be removed from the module. Please try again." - }, - "parent": { - "label": "Remove parent work item" - } - }, - "new": "New Work item", - "adding": "Adding work item", - "create": { - "success": "Work item created successfully" - }, - "priority": { - "urgent": "Urgent", - "high": "High", - "medium": "Medium", - "low": "Low" - }, - "display": { - "properties": { - "label": "Display Properties", - "id": "ID", - "issue_type": "Work item Type", - "sub_issue_count": "Sub-work item count", - "attachment_count": "Attachment count", - "created_on": "Created on", - "sub_issue": "Sub-work item", - "work_item_count": "Work item count" - }, - "extra": { - "show_sub_issues": "Show sub-work items", - "show_empty_groups": "Show empty groups" - } - }, - "layouts": { - "ordered_by_label": "This layout is ordered by", - "list": "List", - "kanban": "Board", - "calendar": "Calendar", - "spreadsheet": "Table", - "gantt": "Timeline", - "title": { - "list": "List Layout", - "kanban": "Board Layout", - "calendar": "Calendar Layout", - "spreadsheet": "Table Layout", - "gantt": "Timeline Layout" - } - }, - "states": { - "active": "Active", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Add comment", - "switch": { - "private": "Switch to private comment", - "public": "Switch to public comment" - }, - "create": { - "success": "Comment created successfully", - "error": "Comment creation failed. Please try again later." - }, - "update": { - "success": "Comment updated successfully", - "error": "Comment update failed. Please try again later." - }, - "remove": { - "success": "Comment removed successfully", - "error": "Comment remove failed. Please try again later." - }, - "upload": { - "error": "Asset upload failed. Please try again later." - }, - "copy_link": { - "success": "Comment link copied to clipboard", - "error": "Error copying comment link. Please try again later." - } - }, - "empty_state": { - "issue_detail": { - "title": "Work item does not exist", - "description": "The work item you are looking for does not exist, has been archived, or has been deleted.", - "primary_button": { - "text": "View other work items" - } - } - }, - "sibling": { - "label": "Sibling work items" - }, - "archive": { - "description": "Only completed or canceled\nwork items can be archived", - "label": "Archive Work item", - "confirm_message": "Are you sure you want to archive the work item? All your archived work items can be restored later.", - "success": { - "label": "Archive success", - "message": "Your archives can be found in project archives." - }, - "failed": { - "message": "Work item could not be archived. Please try again." - } - }, - "restore": { - "success": { - "title": "Restore success", - "message": "Your work item can be found in project work items." - }, - "failed": { - "message": "Work item could not be restored. Please try again." - } - }, - "relation": { - "relates_to": "Relates to", - "duplicate": "Duplicate of", - "blocked_by": "Blocked by", - "blocking": "Blocking" - }, - "copy_link": "Copy work item link", - "delete": { - "label": "Delete work item", - "error": "Error deleting work item" - }, - "subscription": { - "actions": { - "subscribed": "Work item subscribed successfully", - "unsubscribed": "Work item unsubscribed successfully" - } - }, - "select": { - "error": "Please select at least one work item", - "empty": "No work items selected", - "add_selected": "Add selected work items", - "select_all": "Select all", - "deselect_all": "Deselect all" - }, - "open_in_full_screen": "Open work item in full screen" - }, - "attachment": { - "error": "File could not be attached. Try uploading again.", - "only_one_file_allowed": "Only one file can be uploaded at a time.", - "file_size_limit": "File must be of {size}MB or less in size.", - "drag_and_drop": "Drag and drop anywhere to upload", - "delete": "Delete attachment" - }, - "label": { - "select": "Select label", - "create": { - "success": "Label created successfully", - "failed": "Label creation failed", - "already_exists": "Label already exists", - "type": "Type to add a new label" - } - }, - "sub_work_item": { - "update": { - "success": "Sub-work item updated successfully", - "error": "Error updating sub-work item" - }, - "remove": { - "success": "Sub-work item removed successfully", - "error": "Error removing sub-work item" - }, - "empty_state": { - "sub_list_filters": { - "title": "You don't have sub-work items that match the filters you've applied.", - "description": "To see all sub-work items, clear all applied filters.", - "action": "Clear filters" - }, - "list_filters": { - "title": "You don't have work items that match the filters you've applied.", - "description": "To see all work items, clear all applied filters.", - "action": "Clear filters" - } - } - }, - "view": { - "label": "{count, plural, one {View} other {Views}}", - "create": { - "label": "Create View" - }, - "update": { - "label": "Update View" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Pending", - "description": "Pending" - }, - "declined": { - "title": "Declined", - "description": "Declined" - }, - "snoozed": { - "title": "Snoozed", - "description": "{days, plural, one{# day} other{# days}} to go" - }, - "accepted": { - "title": "Accepted", - "description": "Accepted" - }, - "duplicate": { - "title": "Duplicate", - "description": "Duplicate" - } - }, - "modals": { - "decline": { - "title": "Decline work item", - "content": "Are you sure you want to decline work item {value}?" - }, - "delete": { - "title": "Delete work item", - "content": "Are you sure you want to delete work item {value}?", - "success": "Work item deleted successfully" - } - }, - "errors": { - "snooze_permission": "Only project admins can snooze/Un-snooze work items", - "accept_permission": "Only project admins can accept work items", - "decline_permission": "Only project admins can deny work items" - }, - "actions": { - "accept": "Accept", - "decline": "Decline", - "snooze": "Snooze", - "unsnooze": "Un snooze", - "copy": "Copy work item link", - "delete": "Delete", - "open": "Open work item", - "mark_as_duplicate": "Mark as duplicate", - "move": "Move {value} to project work items" - }, - "source": { - "in-app": "in-app" - }, - "order_by": { - "created_at": "Created at", - "updated_at": "Updated at", - "id": "ID" - }, - "label": "Intake", - "page_label": "{workspace} - Intake", - "modal": { - "title": "Create intake work item" - }, - "tabs": { - "open": "Open", - "closed": "Closed" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "No open work items", - "description": "Find open work items here. Create new work item." - }, - "sidebar_closed_tab": { - "title": "No closed work items", - "description": "All the work items whether accepted or declined can be found here." - }, - "sidebar_filter": { - "title": "No matching work items", - "description": "No work item matches filter applied in intake. Create a new work item." - }, - "detail": { - "title": "Select a work item to view its details." - } - } - }, - "workspace_creation": { - "heading": "Create your workspace", - "subheading": "To start using Plane, you need to create or join a workspace.", - "form": { - "name": { - "label": "Name your workspace", - "placeholder": "Something familiar and recognizable is always best." - }, - "url": { - "label": "Set your workspace's URL", - "placeholder": "Type or paste a URL", - "edit_slug": "You can only edit the slug of the URL" - }, - "organization_size": { - "label": "How many people will use this workspace?", - "placeholder": "Select a range" - } - }, - "errors": { - "creation_disabled": { - "title": "Only your instance admin can create workspaces", - "description": "If you know your instance admin's email address, click the button below to get in touch with them.", - "request_button": "Request instance admin" - }, - "validation": { - "name_alphanumeric": "Workspaces names can contain only (' '), ('-'), ('_') and alphanumeric characters.", - "name_length": "Limit your name to 80 characters.", - "url_alphanumeric": "URLs can contain only ('-') and alphanumeric characters.", - "url_length": "Limit your URL to 48 characters.", - "url_already_taken": "Workspace URL is already taken!" - } - }, - "request_email": { - "subject": "Requesting a new workspace", - "body": "Hi instance admin(s),\n\nPlease create a new workspace with the URL [/workspace-name] for [purpose of creating the workspace].\n\nThanks,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Create workspace", - "loading": "Creating workspace" - }, - "toast": { - "success": { - "title": "Success", - "message": "Workspace created successfully" - }, - "error": { - "title": "Error", - "message": "Workspace could not be created. Please try again." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Overview of your projects, activity, and metrics", - "description": "Welcome to Plane, we are excited to have you here. Create your first project and track your work items, and this page will transform into a space that helps you progress. Admins will also see items which help their team progress.", - "primary_button": { - "text": "Build your first project", - "comic": { - "title": "Everything starts with a project in Plane", - "description": "A project could be a product's roadmap, a marketing campaign, or launching a new car." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analytics", - "page_label": "{workspace} - Analytics", - "open_tasks": "Total open tasks", - "error": "There was some error in fetching the data.", - "work_items_closed_in": "Work items closed in", - "selected_projects": "Selected projects", - "total_members": "Total members", - "total_cycles": "Total cycles", - "total_modules": "Total modules", - "pending_work_items": { - "title": "Pending work items", - "empty_state": "Analysis of pending work items by co-workers appears here." - }, - "work_items_closed_in_a_year": { - "title": "Work items closed in a year", - "empty_state": "Close work items to view analysis of the same in the form of a graph." - }, - "most_work_items_created": { - "title": "Most work items created", - "empty_state": "Co-workers and the number of work items created by them appears here." - }, - "most_work_items_closed": { - "title": "Most work items closed", - "empty_state": "Co-workers and the number of work items closed by them appears here." - }, - "tabs": { - "scope_and_demand": "Scope and Demand", - "custom": "Custom Analytics" - }, - "total": "Total {entity}", - "started_work_items": "Started {entity}", - "backlog_work_items": "Backlog {entity}", - "un_started_work_items": "Unstarted {entity}", - "completed_work_items": "Completed {entity}", - "project_insights": "Project Insights", - "summary_of_projects": "Summary of Projects", - "all_projects": "All Projects", - "trend_on_charts": "Trend on charts", - "active_projects": "Active Projects", - "customized_insights": "Customized Insights", - "created_vs_resolved": "Created vs Resolved", - "empty_state": { - "project_insights": { - "title": "No data yet", - "description": "Work items assigned to you, broken down by state, will show up here." - }, - "created_vs_resolved": { - "title": "No data yet", - "description": "Work items created and resolved over time will show up here." - }, - "customized_insights": { - "title": "No data yet", - "description": "Work items assigned to you, broken down by state, will show up here." - }, - "general": { - "title": "Track progress, workloads, and allocations. Spot trends, remove blockers, and move work faster", - "description": "See scope versus demand, estimates, and scope creep. Get performance by team members and teams, and make sure your project runs on time.", - "primary_button": { - "text": "Start your first project", - "comic": { - "title": "Analytics works best with Cycles + Modules", - "description": "First, timebox your issues into Cycles and, if you can, group issues that span more than a cycle into Modules. Check out both on the left nav." - } - } - } - } - }, - "workspace_projects": { - "label": "{count, plural, one {Project} other {Projects}}", - "create": { - "label": "Add Project" - }, - "network": { - "label": "Network", - "private": { - "title": "Private", - "description": "Accessible only by invite" - }, - "public": { - "title": "Public", - "description": "Anyone in the workspace except Guests can join" - } - }, - "error": { - "permission": "You don't have permission to perform this action.", - "cycle_delete": "Failed to delete cycle", - "module_delete": "Failed to delete module", - "issue_delete": "Failed to delete work item" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Unstarted", - "started": "Started", - "completed": "Completed", - "cancelled": "Cancelled" - }, - "sort": { - "manual": "Manual", - "name": "Name", - "created_at": "Created date", - "members_length": "Number of members" - }, - "scope": { - "my_projects": "My projects", - "archived_projects": "Archived" - }, - "common": { - "months_count": "{months, plural, one{# month} other{# months}}" - }, - "empty_state": { - "general": { - "title": "No active projects", - "description": "Think of each project as the parent for goal-oriented work. Projects are where Jobs, Cycles, and Modules live and, along with your colleagues, help you achieve that goal. Create a new project or filter for archived projects.", - "primary_button": { - "text": "Start your first project", - "comic": { - "title": "Everything starts with a project in Plane", - "description": "A project could be a product's roadmap, a marketing campaign, or launching a new car." - } - } - }, - "no_projects": { - "title": "No project", - "description": "To create work items or manage your work, you need to create a project or be a part of one.", - "primary_button": { - "text": "Start your first project", - "comic": { - "title": "Everything starts with a project in Plane", - "description": "A project could be a product's roadmap, a marketing campaign, or launching a new car." - } - } - }, - "filter": { - "title": "No matching projects", - "description": "No projects detected with the matching criteria. \n Create a new project instead." - }, - "search": { - "description": "No projects detected with the matching criteria.\nCreate a new project instead" - } - } - }, - "workspace_views": { - "add_view": "Add view", - "empty_state": { - "all-issues": { - "title": "No work items in the project", - "description": "First project done! Now, slice your work into trackable pieces with work items. Let's go!", - "primary_button": { - "text": "Create new work item" - } - }, - "assigned": { - "title": "No work items yet", - "description": "Work items assigned to you can be tracked from here.", - "primary_button": { - "text": "Create new work item" - } - }, - "created": { - "title": "No work items yet", - "description": "All work items created by you come here, track them here directly.", - "primary_button": { - "text": "Create new work item" - } - }, - "subscribed": { - "title": "No work items yet", - "description": "Subscribe to work items you are interested in, track all of them here." - }, - "custom-view": { - "title": "No work items yet", - "description": "Work items that applies to the filters, track all of them here." - } - } - }, - "account_settings": { - "profile": {}, - "preferences": { - "heading": "Preferences", - "description": "Customize your app experience the way you work" - }, - "notifications": { - "heading": "Email notifications", - "description": "Stay in the loop on Work items you are subscribed to. Enable this to get notified." - }, - "security": { - "heading": "Security" - }, - "api_tokens": { - "heading": "Personal Access Tokens", - "description": "Generate secure API tokens to integrate your data with external systems and applications." - }, - "activity": { - "heading": "Activity", - "description": "Track your recent actions and changes across all projects and work items." - } - }, - "workspace_settings": { - "label": "Workspace settings", - "page_label": "{workspace} - General settings", - "key_created": "Key created", - "copy_key": "Copy and save this secret key in Plane Pages. You can't see this key after you hit Close. A CSV file containing the key has been downloaded.", - "token_copied": "Token copied to clipboard.", - "settings": { - "general": { - "title": "General", - "upload_logo": "Upload logo", - "edit_logo": "Edit logo", - "name": "Workspace name", - "company_size": "Company size", - "url": "Workspace URL", - "update_workspace": "Update workspace", - "delete_workspace": "Delete this workspace", - "delete_workspace_description": "When deleting a workspace, all of the data and resources within that workspace will be permanently removed and cannot be recovered.", - "delete_btn": "Delete this workspace", - "delete_modal": { - "title": "Are you sure you want to delete this workspace?", - "description": "You have an active trial to one of our paid plans. Please cancel it first to proceed.", - "dismiss": "Dismiss", - "cancel": "Cancel trial", - "success_title": "Workspace deleted.", - "success_message": "You will soon go to your profile page.", - "error_title": "That didn't work.", - "error_message": "Try again, please." - }, - "errors": { - "name": { - "required": "Name is required", - "max_length": "Workspace name should not exceed 80 characters" - }, - "company_size": { - "required": "Company size is required", - "select_a_range": "Select organization size" - } - } - }, - "members": { - "title": "Members", - "add_member": "Add member", - "pending_invites": "Pending invites", - "invitations_sent_successfully": "Invitations sent successfully", - "leave_confirmation": "Are you sure you want to leave the workspace? You will no longer have access to this workspace. This action cannot be undone.", - "details": { - "full_name": "Full name", - "display_name": "Display name", - "email_address": "Email address", - "account_type": "Account type", - "authentication": "Authentication", - "joining_date": "Joining date" - }, - "modal": { - "title": "Invite people to collaborate", - "description": "Invite people to collaborate on your workspace.", - "button": "Send invitations", - "button_loading": "Sending invitations", - "placeholder": "name@company.com", - "errors": { - "required": "We need an email address to invite them.", - "invalid": "Email is invalid" - } - } - }, - "billing_and_plans": { - "heading": "Billing & Plans", - "description": "Choose your plan, manage subscriptions, and easily upgrade as your needs grow.", - "title": "Billing & Plans", - "current_plan": "Current plan", - "free_plan": "You are currently using the free plan", - "view_plans": "View plans" - }, - "exports": { - "heading": "Exports", - "description": "Export your project data in various formats and access your export history with download links.", - "title": "Exports", - "exporting": "Exporting", - "previous_exports": "Previous exports", - "export_separate_files": "Export the data into separate files", - "exporting_projects": "Exporting project", - "format": "Format", - "modal": { - "title": "Export to", - "toasts": { - "success": { - "title": "Export successful", - "message": "You will be able to download the exported {entity} from the previous export." - }, - "error": { - "title": "Export failed", - "message": "Export was unsuccessful. Please try again." - } - } - } - }, - "webhooks": { - "heading": "Webhooks", - "description": "Automate notifications to external services when project events occur.", - "title": "Webhooks", - "add_webhook": "Add webhook", - "modal": { - "title": "Create webhook", - "details": "Webhook details", - "payload": "Payload URL", - "question": "Which events would you like to trigger this webhook?", - "error": "URL is required" - }, - "secret_key": { - "title": "Secret key", - "message": "Generate a token to sign-in to the webhook payload" - }, - "options": { - "all": "Send me everything", - "individual": "Select individual events" - }, - "toasts": { - "created": { - "title": "Webhook created", - "message": "The webhook has been successfully created" - }, - "not_created": { - "title": "Webhook not created", - "message": "The webhook could not be created" - }, - "updated": { - "title": "Webhook updated", - "message": "The webhook has been successfully updated" - }, - "not_updated": { - "title": "Webhook not updated", - "message": "The webhook could not be updated" - }, - "removed": { - "title": "Webhook removed", - "message": "The webhook has been successfully removed" - }, - "not_removed": { - "title": "Webhook not removed", - "message": "The webhook could not be removed" - }, - "secret_key_copied": { - "message": "Secret key copied to clipboard." - }, - "secret_key_not_copied": { - "message": "Error occurred while copying secret key." - } - } - }, - "api_tokens": { - "title": "Personal Access Tokens", - "add_token": "Add personal access token", - "create_token": "Create token", - "never_expires": "Never expires", - "generate_token": "Generate token", - "generating": "Generating", - "delete": { - "title": "Delete personal access token", - "description": "Any application using this token will no longer have the access to Plane data. This action cannot be undone.", - "success": { - "title": "Success!", - "message": "The token has been successfully deleted" - }, - "error": { - "title": "Error!", - "message": "The token could not be deleted" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "No personal access tokens created", - "description": "Plane APIs can be used to integrate your data in Plane with any external system. Create a token to get started." - }, - "webhooks": { - "title": "No webhooks added", - "description": "Create webhooks to receive real-time updates and automate actions." - }, - "exports": { - "title": "No exports yet", - "description": "Anytime you export, you will also have a copy here for reference." - }, - "imports": { - "title": "No imports yet", - "description": "Find all your previous imports here and download them." - } - } - }, - "profile": { - "label": "Profile", - "page_label": "Your work", - "work": "Work", - "details": { - "joined_on": "Joined on", - "time_zone": "Timezone" - }, - "stats": { - "workload": "Workload", - "overview": "Overview", - "created": "Work items created", - "assigned": "Work items assigned", - "subscribed": "Work items subscribed", - "state_distribution": { - "title": "Work items by state", - "empty": "Create work items to view the them by states in the graph for better analysis." - }, - "priority_distribution": { - "title": "Work items by Priority", - "empty": "Create work items to view the them by priority in the graph for better analysis." - }, - "recent_activity": { - "title": "Recent activity", - "empty": "We couldn't find data. Kindly view your inputs", - "button": "Download today's activity", - "button_loading": "Downloading" - } - }, - "actions": { - "profile": "Profile", - "security": "Security", - "activity": "Activity", - "preferences": "Preferences", - "notifications": "Notifications", - "api-tokens": "Personal Access Tokens" - }, - "tabs": { - "summary": "Summary", - "assigned": "Assigned", - "created": "Created", - "subscribed": "Subscribed", - "activity": "Activity" - }, - "empty_state": { - "activity": { - "title": "No activities yet", - "description": "Get started by creating a new work item! Add details and properties to it. Explore more in Plane to see your activity." - }, - "assigned": { - "title": "No work items are assigned to you", - "description": "Work items assigned to you can be tracked from here." - }, - "created": { - "title": "No work items yet", - "description": "All work items created by you come here, track them here directly." - }, - "subscribed": { - "title": "No work items yet", - "description": "Subscribe to work items you are interested in, track all of them here." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Enter project ID", - "please_select_a_timezone": "Please select a timezone", - "archive_project": { - "title": "Archive project", - "description": "Archiving a project will unlist your project from your side navigation although you will still be able to access it from your projects page. You can restore the project or delete it whenever you want.", - "button": "Archive project" - }, - "delete_project": { - "title": "Delete project", - "description": "When deleting a project, all of the data and resources within that project will be permanently removed and cannot be recovered.", - "button": "Delete my project" - }, - "toast": { - "success": "Project updated successfully", - "error": "Project could not be updated. Please try again." - } - }, - "members": { - "label": "Members", - "project_lead": "Project lead", - "default_assignee": "Default assignee", - "guest_super_permissions": { - "title": "Grant view access to all work items for guest users:", - "sub_heading": "This will allow guests to have view access to all the project work items." - }, - "invite_members": { - "title": "Invite members", - "sub_heading": "Invite members to work on your project.", - "select_co_worker": "Select co-worker" - } - }, - "states": { - "heading": "States", - "description": "Define and customize workflow states to track the progress of your work items.", - "describe_this_state_for_your_members": "Describe this state for your members.", - "empty_state": { - "title": "No states available for the {groupKey} group", - "description": "Please create a new state" - } - }, - "labels": { - "heading": "Labels", - "description": "Create custom labels to categorize and organize your work items", - "label_title": "Label title", - "label_title_is_required": "Label title is required", - "label_max_char": "Label name should not exceed 255 characters", - "toast": { - "error": "Error while updating the label" - } - }, - "estimates": { - "heading": "Estimates", - "description": "Set up estimation systems to track and communicate the effort required for each work item.", - "label": "Estimates", - "title": "Enable estimates for my project", - "enable_description": "They help you in communicating complexity and workload of the team.", - "no_estimate": "No estimate", - "new": "New estimate system", - "create": { - "custom": "Custom", - "start_from_scratch": "Start from scratch", - "choose_template": "Choose a template", - "choose_estimate_system": "Choose an estimate system", - "enter_estimate_point": "Enter estimate", - "step": "Step {step} of {total}", - "label": "Create estimate" - }, - "toasts": { - "created": { - "success": { - "title": "Estimate created", - "message": "The estimate has been created successfully" - }, - "error": { - "title": "Estimate creation failed", - "message": "We were unable to create the new estimate, please try again." - } - }, - "updated": { - "success": { - "title": "Estimate modified", - "message": "The estimate has been updated in your project." - }, - "error": { - "title": "Estimate modification failed", - "message": "We were unable to modify the estimate, please try again" - } - }, - "enabled": { - "success": { - "title": "Success!", - "message": "Estimates have been enabled." - } - }, - "disabled": { - "success": { - "title": "Success!", - "message": "Estimates have been disabled." - }, - "error": { - "title": "Error!", - "message": "Estimate could not be disabled. Please try again" - } - } - }, - "validation": { - "min_length": "Estimate needs to be greater than 0.", - "unable_to_process": "We are unable to process your request, please try again.", - "numeric": "Estimate needs to be a numeric value.", - "character": "Estimate needs to be a character value.", - "empty": "Estimate value cannot be empty.", - "already_exists": "Estimate value already exists.", - "unsaved_changes": "You have some unsaved changes, Please save them before clicking on done", - "remove_empty": "Estimate can't be empty. Enter a value in each field or remove those you don't have values for." - }, - "systems": { - "points": { - "label": "Points", - "fibonacci": "Fibonacci", - "linear": "Linear", - "squares": "Squares", - "custom": "Custom" - }, - "categories": { - "label": "Categories", - "t_shirt_sizes": "T-Shirt Sizes", - "easy_to_hard": "Easy to hard", - "custom": "Custom" - }, - "time": { - "label": "Time", - "hours": "Hours" - } - } - }, - "automations": { - "label": "Automations", - "heading": "Automations", - "description": "Configure automated actions to streamline your project management workflow and reduce manual tasks.", - "auto-archive": { - "title": "Auto-archive closed work items", - "description": "Plane will auto archive work items that have been completed or canceled.", - "duration": "Auto-archive work items that are closed for" - }, - "auto-close": { - "title": "Auto-close work items", - "description": "Plane will automatically close work items that haven't been completed or canceled.", - "duration": "Auto-close work items that are inactive for", - "auto_close_status": "Auto-close status" - } - }, - "empty_state": { - "labels": { - "title": "No labels yet", - "description": "Create labels to help organize and filter work items in you project." - }, - "estimates": { - "title": "No estimate systems yet", - "description": "Create a set of estimates to communicate the amount of work per work item.", - "primary_button": "Add estimate system" - } - } - }, - "project_cycles": { - "add_cycle": "Add cycle", - "more_details": "More details", - "cycle": "Cycle", - "update_cycle": "Update cycle", - "create_cycle": "Create cycle", - "no_matching_cycles": "No matching cycles", - "remove_filters_to_see_all_cycles": "Remove the filters to see all cycles", - "remove_search_criteria_to_see_all_cycles": "Remove the search criteria to see all cycles", - "only_completed_cycles_can_be_archived": "Only completed cycles can be archived", - "start_date": "Start date", - "end_date": "End date", - "in_your_timezone": "In your timezone", - "transfer_work_items": "Transfer {count} work items", - "date_range": "Date range", - "add_date": "Add date", - "active_cycle": { - "label": "Active cycle", - "progress": "Progress", - "chart": "Burndown chart", - "priority_issue": "Priority work items", - "assignees": "Assignees", - "issue_burndown": "Work item burndown", - "ideal": "Ideal", - "current": "Current", - "labels": "Labels" - }, - "upcoming_cycle": { - "label": "Upcoming cycle" - }, - "completed_cycle": { - "label": "Completed cycle" - }, - "status": { - "days_left": "Days left", - "completed": "Completed", - "yet_to_start": "Yet to start", - "in_progress": "In progress", - "draft": "Draft" - }, - "action": { - "restore": { - "title": "Restore cycle", - "success": { - "title": "Cycle restored", - "description": "The cycle has been restored." - }, - "failed": { - "title": "Cycle restore failed", - "description": "The cycle could not be restored. Please try again." - } - }, - "favorite": { - "loading": "Adding cycle to favorites", - "success": { - "description": "Cycle added to favorites.", - "title": "Success!" - }, - "failed": { - "description": "Couldn't add the cycle to favorites. Please try again.", - "title": "Error!" - } - }, - "unfavorite": { - "loading": "Removing cycle from favorites", - "success": { - "description": "Cycle removed from favorites.", - "title": "Success!" - }, - "failed": { - "description": "Couldn't remove the cycle from favorites. Please try again.", - "title": "Error!" - } - }, - "update": { - "loading": "Updating cycle", - "success": { - "description": "Cycle updated successfully.", - "title": "Success!" - }, - "failed": { - "description": "Error updating the cycle. Please try again.", - "title": "Error!" - }, - "error": { - "already_exists": "You already have a cycle on the given dates, if you want to create a draft cycle, you can do that by removing both the dates." - } - } - }, - "empty_state": { - "general": { - "title": "Group and timebox your work in Cycles.", - "description": "Break work down by timeboxed chunks, work backwards from your project deadline to set dates, and make tangible progress as a team.", - "primary_button": { - "text": "Set your first cycle", - "comic": { - "title": "Cycles are repetitive time-boxes.", - "description": "A sprint, an iteration, and or any other term you use for weekly or fortnightly tracking of work is a cycle." - } - } - }, - "no_issues": { - "title": "No work items added to the cycle", - "description": "Add or create work items you wish to timebox and deliver within this cycle", - "primary_button": { - "text": "Create new work item" - }, - "secondary_button": { - "text": "Add existing work item" - } - }, - "completed_no_issues": { - "title": "No work items in the cycle", - "description": "No work items in the cycle. Work items are either transferred or hidden. To see hidden work items if any, update your display properties accordingly." - }, - "active": { - "title": "No active cycle", - "description": "An active cycle includes any period that encompasses today's date within its range. Find the progress and details of the active cycle here." - }, - "archived": { - "title": "No archived cycles yet", - "description": "To tidy up your project, archive completed cycles. Find them here once archived." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Create a work item and assign it to someone, even yourself", - "description": "Think of work items as jobs, tasks, work, or JTBD. Which we like. A work item and its sub-work items are usually time-based actionables assigned to members of your team. Your team creates, assigns, and completes work items to move your project towards its goal.", - "primary_button": { - "text": "Create your first work item", - "comic": { - "title": "Work items are building blocks in Plane.", - "description": "Redesign the Plane UI, Rebrand the company, or Launch the new fuel injection system are examples of work items that likely have sub-work items." - } - } - }, - "no_archived_issues": { - "title": "No archived work items yet", - "description": "Manually or through automation, you can archive work items that are completed or cancelled. Find them here once archived.", - "primary_button": { - "text": "Set automation" - } - }, - "issues_empty_filter": { - "title": "No work items found matching the filters applied", - "secondary_button": { - "text": "Clear all filters" - } - } - } - }, - "project_module": { - "add_module": "Add Module", - "update_module": "Update Module", - "create_module": "Create Module", - "archive_module": "Archive Module", - "restore_module": "Restore Module", - "delete_module": "Delete module", - "empty_state": { - "general": { - "title": "Map your project milestones to Modules and track aggregated work easily.", - "description": "A group of work items that belong to a logical, hierarchical parent form a module. Think of them as a way to track work by project milestones. They have their own periods and deadlines as well as analytics to help you see how close or far you are from a milestone.", - "primary_button": { - "text": "Build your first module", - "comic": { - "title": "Modules help group work by hierarchy.", - "description": "A cart module, a chassis module, and a warehouse module are all good example of this grouping." - } - } - }, - "no_issues": { - "title": "No work items in the module", - "description": "Create or add work items which you want to accomplish as part of this module", - "primary_button": { - "text": "Create new work items" - }, - "secondary_button": { - "text": "Add an existing work item" - } - }, - "archived": { - "title": "No archived Modules yet", - "description": "To tidy up your project, archive completed or cancelled modules. Find them here once archived." - }, - "sidebar": { - "in_active": "This module isn't active yet.", - "invalid_date": "Invalid date. Please enter valid date." - } - }, - "quick_actions": { - "archive_module": "Archive module", - "archive_module_description": "Only completed or canceled\nmodule can be archived.", - "delete_module": "Delete module" - }, - "toast": { - "copy": { - "success": "Module link copied to clipboard" - }, - "delete": { - "success": "Module deleted successfully", - "error": "Failed to delete module" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Save filtered views for your project. Create as many as you need", - "description": "Views are a set of saved filters that you use frequently or want easy access to. All your colleagues in a project can see everyone’s views and choose whichever suits their needs best.", - "primary_button": { - "text": "Create your first view", - "comic": { - "title": "Views work atop Work item properties.", - "description": "You can create a view from here with as many properties as filters as you see fit." - } - } - }, - "filter": { - "title": "No matching views", - "description": "No views match the search criteria. \n Create a new view instead." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Write a note, a doc, or a full knowledge base. Get Galileo, Plane's AI assistant, to help you get started", - "description": "Pages are thoughts potting space in Plane. Take down meeting notes, format them easily, embed work items, lay them out using a library of components, and keep them all in your project's context. To make short work of any doc, invoke Galileo, Plane's AI, with a shortcut or the click of a button.", - "primary_button": { - "text": "Create your first page" - } - }, - "private": { - "title": "No private pages yet", - "description": "Keep your private thoughts here. When you're ready to share, the team's just a click away.", - "primary_button": { - "text": "Create your first page" - } - }, - "public": { - "title": "No public pages yet", - "description": "See pages shared with everyone in your project right here.", - "primary_button": { - "text": "Create your first page" - } - }, - "archived": { - "title": "No archived pages yet", - "description": "Archive pages not on your radar. Access them here when needed." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "No results found" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "No matching work items found" - }, - "no_issues": { - "title": "No work items found" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "No comments yet", - "description": "Comments can be used as a discussion and follow-up space for the work items" - } - } - }, - "notification": { - "label": "Inbox", - "page_label": "{workspace} - Inbox", - "options": { - "mark_all_as_read": "Mark all as read", - "mark_read": "Mark as read", - "mark_unread": "Mark as unread", - "refresh": "Refresh", - "filters": "Inbox Filters", - "show_unread": "Show unread", - "show_snoozed": "Show snoozed", - "show_archived": "Show archived", - "mark_archive": "Archive", - "mark_unarchive": "Un archive", - "mark_snooze": "Snooze", - "mark_unsnooze": "Un snooze" - }, - "toasts": { - "read": "Notification marked as read", - "unread": "Notification marked as unread", - "archived": "Notification marked as archived", - "unarchived": "Notification marked as un archived", - "snoozed": "Notification snoozed", - "unsnoozed": "Notification un snoozed" - }, - "empty_state": { - "detail": { - "title": "Select to view details." - }, - "all": { - "title": "No work items assigned", - "description": "Updates for work items assigned to you can be \n seen here" - }, - "mentions": { - "title": "No work items assigned", - "description": "Updates for work items assigned to you can be \n seen here" - } - }, - "tabs": { - "all": "All", - "mentions": "Mentions" - }, - "filter": { - "assigned": "Assigned to me", - "created": "Created by me", - "subscribed": "Subscribed by me" - }, - "snooze": { - "1_day": "1 day", - "3_days": "3 days", - "5_days": "5 days", - "1_week": "1 week", - "2_weeks": "2 weeks", - "custom": "Custom" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Add work items to the cycle to view it's progress" - }, - "chart": { - "title": "Add work items to the cycle to view the burndown chart." - }, - "priority_issue": { - "title": "Observe high priority work items tackled in the cycle at a glance." - }, - "assignee": { - "title": "Add assignees to work items to see a breakdown of work by assignees." - }, - "label": { - "title": "Add labels to work items to see the breakdown of work by labels." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Intake is not enabled for the project.", - "description": "Intake helps you manage incoming requests to your project and add them as work items in your workflow. Enable intake from project settings to manage requests.", - "primary_button": { - "text": "Manage features" - } - }, - "cycle": { - "title": "Cycles is not enabled for this project.", - "description": "Break work down by timeboxed chunks, work backwards from your project deadline to set dates, and make tangible progress as a team. Enable the cycles feature for your project to start using them.", - "primary_button": { - "text": "Manage features" - } - }, - "module": { - "title": "Modules are not enabled for the project.", - "description": "Modules are the building blocks of your project. Enable modules from project settings to start using them.", - "primary_button": { - "text": "Manage features" - } - }, - "page": { - "title": "Pages are not enabled for the project.", - "description": "Pages are the building blocks of your project. Enable pages from project settings to start using them.", - "primary_button": { - "text": "Manage features" - } - }, - "view": { - "title": "Views are not enabled for the project.", - "description": "Views are the building blocks of your project. Enable views from project settings to start using them.", - "primary_button": { - "text": "Manage features" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Draft a work item", - "empty_state": { - "title": "Half-written work items, and soon, comments will show up here.", - "description": "To try this out, start adding a work item and leave it mid-way or create your first draft below. 😉", - "primary_button": { - "text": "Create your first draft" - } - }, - "delete_modal": { - "title": "Delete draft", - "description": "Are you sure you want to delete this draft? This can't be undone." - }, - "toasts": { - "created": { - "success": "Draft created", - "error": "Work item could not be created. Please try again." - }, - "deleted": { - "success": "Draft deleted" - } - } - }, - "stickies": { - "title": "Your stickies", - "placeholder": "click to type here", - "all": "All stickies", - "no-data": "Jot down an idea, capture an aha, or record a brainwave. Add a sticky to get started.", - "add": "Add sticky", - "search_placeholder": "Search by title", - "delete": "Delete sticky", - "delete_confirmation": "Are you sure you want to delete this sticky?", - "empty_state": { - "simple": "Jot down an idea, capture an aha, or record a brainwave. Add a sticky to get started.", - "general": { - "title": "Stickies are quick notes and to-dos you take down on the fly.", - "description": "Capture your thoughts and ideas effortlessly by creating stickies that you can access anytime and from anywhere.", - "primary_button": { - "text": "Add sticky" - } - }, - "search": { - "title": "That doesn't match any of your stickies.", - "description": "Try a different term or let us know\nif you are sure your search is right. ", - "primary_button": { - "text": "Add sticky" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "The sticky name cannot be longer than 100 characters.", - "already_exists": "There already exists a sticky with no description" - }, - "created": { - "title": "Sticky created", - "message": "The sticky has been successfully created" - }, - "not_created": { - "title": "Sticky not created", - "message": "The sticky could not be created" - }, - "updated": { - "title": "Sticky updated", - "message": "The sticky has been successfully updated" - }, - "not_updated": { - "title": "Sticky not updated", - "message": "The sticky could not be updated" - }, - "removed": { - "title": "Sticky removed", - "message": "The sticky has been successfully removed" - }, - "not_removed": { - "title": "Sticky not removed", - "message": "The sticky could not be removed" - } - } - }, - "role_details": { - "guest": { - "title": "Guest", - "description": "External members of organizations can be invited as guests." - }, - "member": { - "title": "Member", - "description": "Ability to read, write, edit, and delete entities inside projects, cycles, and modules" - }, - "admin": { - "title": "Admin", - "description": "All permissions set to true within the workspace." - } - }, - "user_roles": { - "product_or_project_manager": "Product / Project Manager", - "development_or_engineering": "Development / Engineering", - "founder_or_executive": "Founder / Executive", - "freelancer_or_consultant": "Freelancer / Consultant", - "marketing_or_growth": "Marketing / Growth", - "sales_or_business_development": "Sales / Business Development", - "support_or_operations": "Support / Operations", - "student_or_professor": "Student / Professor", - "human_resources": "Human / Resources", - "other": "Other" - }, - "importer": { - "github": { - "title": "Github", - "description": "Import work items from GitHub repositories and sync them." - }, - "jira": { - "title": "Jira", - "description": "Import work items and epics from Jira projects and epics." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Export work items to a CSV file.", - "short_description": "Export as csv" - }, - "excel": { - "title": "Excel", - "description": "Export work items to a Excel file.", - "short_description": "Export as excel" - }, - "xlsx": { - "title": "Excel", - "description": "Export work items to a Excel file.", - "short_description": "Export as excel" - }, - "json": { - "title": "JSON", - "description": "Export work items to a JSON file.", - "short_description": "Export as json" - } - }, - "default_global_view": { - "all_issues": "All work items", - "assigned": "Assigned", - "created": "Created", - "subscribed": "Subscribed" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "System preference" - }, - "light": { - "label": "Light" - }, - "dark": { - "label": "Dark" - }, - "light_contrast": { - "label": "Light high contrast" - }, - "dark_contrast": { - "label": "Dark high contrast" - }, - "custom": { - "label": "Custom theme" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Planned", - "in_progress": "In Progress", - "paused": "Paused", - "completed": "Completed", - "cancelled": "Cancelled" - }, - "layout": { - "list": "List layout", - "board": "Gallery layout", - "timeline": "Timeline layout" - }, - "order_by": { - "name": "Name", - "progress": "Progress", - "issues": "Number of work items", - "due_date": "Due date", - "created_at": "Created date", - "manual": "Manual" - } - }, - "cycle": { - "label": "{count, plural, one {Cycle} other {Cycles}}", - "no_cycle": "No cycle" - }, - "module": { - "label": "{count, plural, one {Module} other {Modules}}", - "no_module": "No module" - }, - "description_versions": { - "last_edited_by": "Last edited by", - "previously_edited_by": "Previously edited by", - "edited_by": "Edited by" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane didn't start up. This could be because one or more Plane services failed to start.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Choose View Logs from setup.sh and Docker logs to be sure." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Outline", - "empty_state": { - "title": "Missing headings", - "description": "Let's put some headings in this page to see them here." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Words", - "characters": "Characters", - "paragraphs": "Paragraphs", - "read_time": "Read time" - }, - "actors_info": { - "edited_by": "Edited by", - "created_by": "Created by" - }, - "version_history": { - "label": "Version history", - "current_version": "Current version" - } - }, - "assets": { - "label": "Assets", - "download_button": "Download", - "empty_state": { - "title": "Missing images", - "description": "Add images to see them here." - } - } - }, - "open_button": "Open navigation pane", - "close_button": "Close navigation pane", - "outline_floating_button": "Open outline" - }, - "project_members": { - "full_name": "Full name", - "display_name": "Display name", - "email": "Email", - "joining_date": "Joining date", - "role": "Role" - } -} diff --git a/packages/i18n/src/locales/en/translations.ts b/packages/i18n/src/locales/en/translations.ts new file mode 100644 index 0000000000..d0c5b908ac --- /dev/null +++ b/packages/i18n/src/locales/en/translations.ts @@ -0,0 +1,2467 @@ +export default { + submit: "Submit", + cancel: "Cancel", + loading: "Loading", + error: "Error", + success: "Success", + warning: "Warning", + info: "Info", + close: "Close", + yes: "Yes", + no: "No", + ok: "OK", + name: "Name", + description: "Description", + search: "Search", + add_member: "Add member", + adding_members: "Adding members", + remove_member: "Remove member", + add_members: "Add members", + adding_member: "Adding members", + remove_members: "Remove members", + add: "Add", + adding: "Adding", + remove: "Remove", + add_new: "Add new", + remove_selected: "Remove selected", + first_name: "First name", + last_name: "Last name", + email: "Email", + display_name: "Display name", + role: "Role", + timezone: "Timezone", + avatar: "Avatar", + cover_image: "Cover image", + password: "Password", + change_cover: "Change cover", + language: "Language", + saving: "Saving", + save_changes: "Save changes", + deactivate_account: "Deactivate account", + deactivate_account_description: + "When deactivating an account, all of the data and resources within that account will be permanently removed and cannot be recovered.", + profile_settings: "Profile settings", + your_account: "Your account", + security: "Security", + activity: "Activity", + preferences: "Preferences", + language_and_time: "Language & Time", + notifications: "Notifications", + workspaces: "Workspaces", + create_workspace: "Create workspace", + invitations: "Invitations", + summary: "Summary", + assigned: "Assigned", + created: "Created", + subscribed: "Subscribed", + you_do_not_have_the_permission_to_access_this_page: "You do not have the permission to access this page.", + something_went_wrong_please_try_again: "Something went wrong. Please try again.", + load_more: "Load more", + select_or_customize_your_interface_color_scheme: "Select or customize your interface color scheme.", + timezone_setting: "Current timezone setting.", + language_setting: "Choose the language used in the user interface.", + settings_moved_to_preferences: "Timezone & Language settings have been moved to preferences.", + go_to_preferences: "Go to preferences", + theme: "Theme", + system_preference: "System preference", + light: "Light", + dark: "Dark", + light_contrast: "Light high contrast", + dark_contrast: "Dark high contrast", + custom: "Custom theme", + select_your_theme: "Select your theme", + customize_your_theme: "Customize your theme", + background_color: "Background color", + text_color: "Text color", + primary_color: "Primary(Theme) color", + sidebar_background_color: "Sidebar background color", + sidebar_text_color: "Sidebar text color", + set_theme: "Set theme", + enter_a_valid_hex_code_of_6_characters: "Enter a valid hex code of 6 characters", + background_color_is_required: "Background color is required", + text_color_is_required: "Text color is required", + primary_color_is_required: "Primary color is required", + sidebar_background_color_is_required: "Sidebar background color is required", + sidebar_text_color_is_required: "Sidebar text color is required", + updating_theme: "Updating theme", + theme_updated_successfully: "Theme updated successfully", + failed_to_update_the_theme: "Failed to update the theme", + email_notifications: "Email notifications", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Stay in the loop on Work items you are subscribed to. Enable this to get notified.", + email_notification_setting_updated_successfully: "Email notification setting updated successfully", + failed_to_update_email_notification_setting: "Failed to update email notification setting", + notify_me_when: "Notify me when", + property_changes: "Property changes", + property_changes_description: + "Notify me when work items' properties like assignees, priority, estimates or anything else changes.", + state_change: "State change", + state_change_description: "Notify me when the work items moves to a different state", + issue_completed: "Work item completed", + issue_completed_description: "Notify me only when a work item is completed", + comments: "Comments", + comments_description: "Notify me when someone leaves a comment on the work item", + mentions: "Mentions", + mentions_description: "Notify me only when someone mentions me in the comments or description", + old_password: "Old password", + general_settings: "General settings", + sign_out: "Sign out", + signing_out: "Signing out", + active_cycles: "Active cycles", + active_cycles_description: + "Monitor cycles across projects, track high-priority work items, and zoom in cycles that need attention.", + on_demand_snapshots_of_all_your_cycles: "On-demand snapshots of all your cycles", + upgrade: "Upgrade", + "10000_feet_view": "10,000-feet view of all active cycles.", + "10000_feet_view_description": + "Zoom out to see running cycles across all your projects at once instead of going from Cycle to Cycle in each project.", + get_snapshot_of_each_active_cycle: "Get a snapshot of each active cycle.", + get_snapshot_of_each_active_cycle_description: + "Track high-level metrics for all active cycles, see their state of progress, and get a sense of scope against deadlines.", + compare_burndowns: "Compare burndowns.", + compare_burndowns_description: + "Monitor how each of your teams are performing with a peek into each cycle's burndown report.", + quickly_see_make_or_break_issues: "Quickly see make-or-break work items.", + quickly_see_make_or_break_issues_description: + "Preview high-priority work items for each cycle against due dates. See all of them per cycle in one click.", + zoom_into_cycles_that_need_attention: "Zoom into cycles that need attention.", + zoom_into_cycles_that_need_attention_description: + "Investigate the state of any cycle that doesn't conform to expectations in one click.", + stay_ahead_of_blockers: "Stay ahead of blockers.", + stay_ahead_of_blockers_description: + "Spot challenges from one project to another and see inter-cycle dependencies that aren't obvious from any other view.", + analytics: "Analytics", + workspace_invites: "Workspace invites", + enter_god_mode: "Enter god mode", + workspace_logo: "Workspace logo", + new_issue: "New work item", + your_work: "Your work", + drafts: "Drafts", + projects: "Projects", + views: "Views", + workspace: "Workspace", + archives: "Archives", + settings: "Settings", + failed_to_move_favorite: "Failed to move favorite", + favorites: "Favorites", + no_favorites_yet: "No favorites yet", + create_folder: "Create folder", + new_folder: "New folder", + favorite_updated_successfully: "Favorite updated successfully", + favorite_created_successfully: "Favorite created successfully", + folder_already_exists: "Folder already exists", + folder_name_cannot_be_empty: "Folder name cannot be empty", + something_went_wrong: "Something went wrong", + failed_to_reorder_favorite: "Failed to reorder favorite", + favorite_removed_successfully: "Favorite removed successfully", + failed_to_create_favorite: "Failed to create favorite", + failed_to_rename_favorite: "Failed to rename favorite", + project_link_copied_to_clipboard: "Project link copied to clipboard", + link_copied: "Link copied", + add_project: "Add project", + create_project: "Create project", + failed_to_remove_project_from_favorites: "Couldn't remove the project from favorites. Please try again.", + project_created_successfully: "Project created successfully", + project_created_successfully_description: "Project created successfully. You can now start adding work items to it.", + project_name_already_taken: "The project name is already taken.", + project_identifier_already_taken: "The project identifier is already taken.", + project_cover_image_alt: "Project cover image", + name_is_required: "Name is required", + title_should_be_less_than_255_characters: "Title should be less than 255 characters", + project_name: "Project name", + project_id_must_be_at_least_1_character: "Project ID must at least be of 1 character", + project_id_must_be_at_most_5_characters: "Project ID must at most be of 5 characters", + project_id: "Project ID", + project_id_tooltip_content: "Helps you identify work items in the project uniquely. Max 5 characters.", + description_placeholder: "Description", + only_alphanumeric_non_latin_characters_allowed: "Only Alphanumeric & Non-latin characters are allowed.", + project_id_is_required: "Project ID is required", + project_id_allowed_char: "Only Alphanumeric & Non-latin characters are allowed.", + project_id_min_char: "Project ID must at least be of 1 character", + project_id_max_char: "Project ID must at most be of 5 characters", + project_description_placeholder: "Enter project description", + select_network: "Select network", + lead: "Lead", + date_range: "Date range", + private: "Private", + public: "Public", + accessible_only_by_invite: "Accessible only by invite", + anyone_in_the_workspace_except_guests_can_join: "Anyone in the workspace except Guests can join", + creating: "Creating", + creating_project: "Creating project", + adding_project_to_favorites: "Adding project to favorites", + project_added_to_favorites: "Project added to favorites", + couldnt_add_the_project_to_favorites: "Couldn't add the project to favorites. Please try again.", + removing_project_from_favorites: "Removing project from favorites", + project_removed_from_favorites: "Project removed from favorites", + couldnt_remove_the_project_from_favorites: "Couldn't remove the project from favorites. Please try again.", + add_to_favorites: "Add to favorites", + remove_from_favorites: "Remove from favorites", + publish_project: "Publish project", + publish: "Publish", + copy_link: "Copy link", + leave_project: "Leave project", + join_the_project_to_rearrange: "Join the project to rearrange", + drag_to_rearrange: "Drag to rearrange", + congrats: "Congrats!", + open_project: "Open project", + issues: "Work items", + cycles: "Cycles", + modules: "Modules", + pages: "Pages", + intake: "Intake", + time_tracking: "Time Tracking", + work_management: "Work management", + projects_and_issues: "Projects and work items", + projects_and_issues_description: "Toggle these on or off this project.", + cycles_description: + "Timebox work per project and adjust the time period as needed. One cycle can be 2 weeks, the next 1 week.", + modules_description: "Organize work into sub-projects with dedicated leads and assignees.", + views_description: "Save custom sorts, filters, and display options or share them with your team.", + pages_description: "Create and edit free-form content; notes, docs, anything.", + intake_description: "Let non-members share bugs, feedback, and suggestions; without disrupting your workflow.", + time_tracking_description: "Log time spent on work items and projects.", + work_management_description: "Manage your work and projects with ease.", + documentation: "Documentation", + message_support: "Message support", + contact_sales: "Contact sales", + hyper_mode: "Hyper Mode", + keyboard_shortcuts: "Keyboard shortcuts", + whats_new: "What's new?", + version: "Version", + we_are_having_trouble_fetching_the_updates: "We are having trouble fetching the updates.", + our_changelogs: "our changelogs", + for_the_latest_updates: "for the latest updates.", + please_visit: "Please visit", + docs: "Docs", + full_changelog: "Full changelog", + support: "Support", + discord: "Discord", + powered_by_plane_pages: "Powered by Plane Pages", + please_select_at_least_one_invitation: "Please select at least one invitation.", + please_select_at_least_one_invitation_description: "Please select at least one invitation to join the workspace.", + we_see_that_someone_has_invited_you_to_join_a_workspace: "We see that someone has invited you to join a workspace", + join_a_workspace: "Join a workspace", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "We see that someone has invited you to join a workspace", + join_a_workspace_description: "Join a workspace", + accept_and_join: "Accept & Join", + go_home: "Go Home", + no_pending_invites: "No pending invites", + you_can_see_here_if_someone_invites_you_to_a_workspace: "You can see here if someone invites you to a workspace", + back_to_home: "Back to home", + workspace_name: "workspace-name", + deactivate_your_account: "Deactivate your account", + deactivate_your_account_description: + "Once deactivated, you can't be assigned work items and be billed for your workspace. To reactivate your account, you will need an invite to a workspace at this email address.", + deactivating: "Deactivating", + confirm: "Confirm", + confirming: "Confirming", + draft_created: "Draft created", + issue_created_successfully: "Work item created successfully", + draft_creation_failed: "Draft creation failed", + issue_creation_failed: "Work item creation failed", + draft_issue: "Draft work item", + issue_updated_successfully: "Work item updated successfully", + issue_could_not_be_updated: "Work item could not be updated", + create_a_draft: "Create a draft", + save_to_drafts: "Save to Drafts", + save: "Save", + update: "Update", + updating: "Updating", + create_new_issue: "Create new work item", + editor_is_not_ready_to_discard_changes: "Editor is not ready to discard changes", + failed_to_move_issue_to_project: "Failed to move work item to project", + create_more: "Create more", + add_to_project: "Add to project", + discard: "Discard", + duplicate_issue_found: "Duplicate work item found", + duplicate_issues_found: "Duplicate work items found", + no_matching_results: "No matching results", + title_is_required: "Title is required", + title: "Title", + state: "State", + priority: "Priority", + none: "None", + urgent: "Urgent", + high: "High", + medium: "Medium", + low: "Low", + members: "Members", + assignee: "Assignee", + assignees: "Assignees", + you: "You", + labels: "Labels", + create_new_label: "Create new label", + start_date: "Start date", + end_date: "End date", + due_date: "Due date", + estimate: "Estimate", + change_parent_issue: "Change parent work item", + remove_parent_issue: "Remove parent work item", + add_parent: "Add parent", + loading_members: "Loading members", + view_link_copied_to_clipboard: "View link copied to clipboard.", + required: "Required", + optional: "Optional", + Cancel: "Cancel", + edit: "Edit", + archive: "Archive", + restore: "Restore", + open_in_new_tab: "Open in new tab", + delete: "Delete", + deleting: "Deleting", + make_a_copy: "Make a copy", + move_to_project: "Move to project", + good: "Good", + morning: "morning", + afternoon: "afternoon", + evening: "evening", + show_all: "Show all", + show_less: "Show less", + no_data_yet: "No Data yet", + syncing: "Syncing", + add_work_item: "Add work item", + advanced_description_placeholder: "Press '/' for commands", + create_work_item: "Create work item", + attachments: "Attachments", + declining: "Declining", + declined: "Declined", + decline: "Decline", + unassigned: "Unassigned", + work_items: "Work items", + add_link: "Add link", + points: "Points", + no_assignee: "No assignee", + no_assignees_yet: "No assignees yet", + no_labels_yet: "No labels yet", + ideal: "Ideal", + current: "Current", + no_matching_members: "No matching members", + leaving: "Leaving", + removing: "Removing", + leave: "Leave", + refresh: "Refresh", + refreshing: "Refreshing", + refresh_status: "Refresh status", + prev: "Prev", + next: "Next", + re_generating: "Re-generating", + re_generate: "Re-generate", + re_generate_key: "Re-generate key", + export: "Export", + member: "{count, plural, one{# member} other{# members}}", + new_password_must_be_different_from_old_password: "New password must be different from old password", + edited: "edited", + bot: "Bot", + settings_description: + "Manage your account, workspace, and project preferences all in one place. Switch between tabs to easily configure.", + back_to_workspace: "Back to workspace", + project_view: { + sort_by: { + created_at: "Created at", + updated_at: "Updated at", + name: "Name", + }, + }, + toast: { + success: "Success!", + error: "Error!", + }, + links: { + toasts: { + created: { + title: "Link created", + message: "The link has been successfully created", + }, + not_created: { + title: "Link not created", + message: "The link could not be created", + }, + updated: { + title: "Link updated", + message: "The link has been successfully updated", + }, + not_updated: { + title: "Link not updated", + message: "The link could not be updated", + }, + removed: { + title: "Link removed", + message: "The link has been successfully removed", + }, + not_removed: { + title: "Link not removed", + message: "The link could not be removed", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Your quickstart guide", + not_right_now: "Not right now", + create_project: { + title: "Create a project", + description: "Most things start with a project in Plane.", + cta: "Get started", + }, + invite_team: { + title: "Invite your team", + description: "Build, ship, and manage with coworkers.", + cta: "Get them in", + }, + configure_workspace: { + title: "Set up your workspace.", + description: "Turn features on or off or go beyond that.", + cta: "Configure this workspace", + }, + personalize_account: { + title: "Make Plane yours.", + description: "Choose your picture, colors, and more.", + cta: "Personalize now", + }, + widgets: { + title: "It's Quiet Without Widgets, Turn Them On", + description: "It looks like all your widgets are turned off. Enable them\nnow to enhance your experience!", + primary_button: { + text: "Manage widgets", + }, + }, + }, + quick_links: { + empty: "Save links to work things that you'd like handy.", + add: "Add quick Link", + title: "Quicklink", + title_plural: "Quicklinks", + }, + recents: { + title: "Recents", + empty: { + project: "Your recent projects will appear here once you visit one.", + page: "Your recent pages will appear here once you visit one.", + issue: "Your recent work items will appear here once you visit one.", + default: "You don't have any recents yet.", + }, + filters: { + all: "All", + projects: "Projects", + pages: "Pages", + issues: "Work items", + }, + }, + new_at_plane: { + title: "New at Plane", + }, + quick_tutorial: { + title: "Quick tutorial", + }, + widget: { + reordered_successfully: "Widget reordered successfully.", + reordering_failed: "Error occurred while reordering widget.", + }, + manage_widgets: "Manage widgets", + title: "Home", + star_us_on_github: "Star us on GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL is invalid", + placeholder: "Type or paste a URL", + }, + title: { + text: "Display title", + placeholder: "What you'd like to see this link as", + }, + }, + }, + common: { + all: "All", + states: "States", + state: "State", + state_groups: "State groups", + state_group: "State group", + priorities: "Priorities", + priority: "Priority", + team_project: "Team project", + project: "Project", + cycle: "Cycle", + cycles: "Cycles", + module: "Module", + modules: "Modules", + labels: "Labels", + label: "Label", + admins: "Admins", + users: "Users", + guests: "Guests", + assignees: "Assignees", + assignee: "Assignee", + created_by: "Created by", + none: "None", + link: "Link", + estimates: "Estimates", + estimate: "Estimate", + created_at: "Created at", + completed_at: "Completed at", + layout: "Layout", + filters: "Filters", + display: "Display", + load_more: "Load more", + activity: "Activity", + analytics: "Analytics", + dates: "Dates", + success: "Success!", + something_went_wrong: "Something went wrong", + error: { + label: "Error!", + message: "Some error occurred. Please try again.", + }, + group_by: "Group by", + epic: "Epic", + epics: "Epics", + work_item: "Work item", + work_items: "Work items", + sub_work_item: "Sub-work item", + add: "Add", + warning: "Warning", + updating: "Updating", + adding: "Adding", + update: "Update", + creating: "Creating", + create: "Create", + cancel: "Cancel", + description: "Description", + title: "Title", + attachment: "Attachment", + general: "General", + features: "Features", + automation: "Automation", + project_name: "Project name", + project_id: "Project ID", + project_timezone: "Project Timezone", + created_on: "Created on", + update_project: "Update project", + identifier_already_exists: "Identifier already exists", + add_more: "Add more", + defaults: "Defaults", + add_label: "Add label", + customize_time_range: "Customize time range", + loading: "Loading", + attachments: "Attachments", + property: "Property", + properties: "Properties", + parent: "Parent", + page: "Page", + remove: "Remove", + archiving: "Archiving", + archive: "Archive", + access: { + public: "Public", + private: "Private", + }, + done: "Done", + sub_work_items: "Sub-work items", + comment: "Comment", + workspace_level: "Workspace level", + order_by: { + label: "Order by", + manual: "Manual", + last_created: "Last created", + last_updated: "Last updated", + start_date: "Start date", + due_date: "Due date", + asc: "Ascending", + desc: "Descending", + updated_on: "Updated on", + }, + sort: { + asc: "Ascending", + desc: "Descending", + created_on: "Created on", + updated_on: "Updated on", + }, + comments: "Comments", + updates: "Updates", + clear_all: "Clear all", + copied: "Copied!", + link_copied: "Link copied!", + link_copied_to_clipboard: "Link copied to clipboard", + copied_to_clipboard: "Work item link copied to clipboard", + is_copied_to_clipboard: "Work item is copied to clipboard", + no_links_added_yet: "No links added yet", + add_link: "Add link", + links: "Links", + go_to_workspace: "Go to workspace", + progress: "Progress", + optional: "Optional", + join: "Join", + go_back: "Go back", + continue: "Continue", + resend: "Resend", + relations: "Relations", + errors: { + default: { + title: "Error!", + message: "Something went wrong. Please try again.", + }, + required: "This field is required", + entity_required: "{entity} is required", + restricted_entity: "{entity} is restricted", + }, + update_link: "Update link", + attach: "Attach", + create_new: "Create new", + add_existing: "Add existing", + type_or_paste_a_url: "Type or paste a URL", + url_is_invalid: "URL is invalid", + display_title: "Display title", + link_title_placeholder: "What you'd like to see this link as", + url: "URL", + side_peek: "Side Peek", + modal: "Modal", + full_screen: "Full Screen", + close_peek_view: "Close the peek view", + toggle_peek_view_layout: "Toggle peek view layout", + options: "Options", + duration: "Duration", + today: "Today", + week: "Week", + month: "Month", + quarter: "Quarter", + press_for_commands: "Press '/' for commands", + click_to_add_description: "Click to add description", + on_track: "On-Track", + off_track: "Off-Track", + at_risk: "At risk", + timeline: "Timeline", + completion: "Completion", + upcoming: "Upcoming", + completed: "Completed", + in_progress: "In progress", + planned: "Planned", + paused: "Paused", + search: { + label: "Search", + placeholder: "Type to search", + no_matches_found: "No matches found", + no_matching_results: "No matching results", + }, + actions: { + edit: "Edit", + make_a_copy: "Make a copy", + open_in_new_tab: "Open in new tab", + copy_link: "Copy link", + archive: "Archive", + restore: "Restore", + delete: "Delete", + remove_relation: "Remove relation", + subscribe: "Subscribe", + unsubscribe: "Unsubscribe", + clear_sorting: "Clear sorting", + show_weekends: "Show weekends", + enable: "Enable", + disable: "Disable", + copy_markdown: "Copy markdown", + }, + name: "Name", + discard: "Discard", + confirm: "Confirm", + confirming: "Confirming", + read_the_docs: "Read the docs", + default: "Default", + active: "Active", + enabled: "Enabled", + disabled: "Disabled", + mandate: "Mandate", + mandatory: "Mandatory", + yes: "Yes", + no: "No", + please_wait: "Please wait", + enabling: "Enabling", + disabling: "Disabling", + beta: "Beta", + or: "or", + next: "Next", + back: "Back", + cancelling: "Cancelling", + configuring: "Configuring", + clear: "Clear", + import: "Import", + connect: "Connect", + authorizing: "Authorizing", + processing: "Processing", + no_data_available: "No data available", + from: "from {name}", + authenticated: "Authenticated", + select: "Select", + upgrade: "Upgrade", + add_seats: "Add Seats", + projects: "Projects", + workspace: "Workspace", + workspaces: "Workspaces", + team: "Team", + teams: "Teams", + entity: "Entity", + entities: "Entities", + task: "Task", + tasks: "Tasks", + section: "Section", + sections: "Sections", + edit: "Edit", + connecting: "Connecting", + connected: "Connected", + disconnect: "Disconnect", + disconnecting: "Disconnecting", + installing: "Installing", + install: "Install", + reset: "Reset", + live: "Live", + change_history: "Change History", + coming_soon: "Coming soon", + member: "Member", + members: "Members", + you: "You", + upgrade_cta: { + higher_subscription: "Upgrade to higher subscription", + talk_to_sales: "Talk to Sales", + }, + category: "Category", + categories: "Categories", + saving: "Saving", + save_changes: "Save changes", + delete: "Delete", + deleting: "Deleting", + pending: "Pending", + invite: "Invite", + view: "View", + deactivated_user: "Deactivated user", + apply: "Apply", + applying: "Applying", + overview: "Overview", + no_of: "No. of {entity}", + resolved: "Resolved", + }, + chart: { + x_axis: "X-axis", + y_axis: "Y-axis", + metric: "Metric", + }, + form: { + title: { + required: "Title is required", + max_length: "Title should be less than {length} characters", + }, + }, + entity: { + grouping_title: "{entity} Grouping", + priority: "{entity} Priority", + all: "All {entity}", + drop_here_to_move: "Drop here to move the {entity}", + delete: { + label: "Delete {entity}", + success: "{entity} deleted successfully", + failed: "{entity} delete failed", + }, + update: { + failed: "{entity} update failed", + success: "{entity} updated successfully", + }, + link_copied_to_clipboard: "{entity} link copied to clipboard", + fetch: { + failed: "Error fetching {entity}", + }, + add: { + success: "{entity} added successfully", + failed: "Error adding {entity}", + }, + remove: { + success: "{entity} removed successfully", + failed: "Error removing {entity}", + }, + }, + epic: { + all: "All Epics", + label: "{count, plural, one {Epic} other {Epics}}", + new: "New Epic", + adding: "Adding epic", + create: { + success: "Epic created successfully", + }, + add: { + press_enter: "Press 'Enter' to add another epic", + label: "Add Epic", + }, + title: { + label: "Epic Title", + required: "Epic title is required.", + }, + }, + issue: { + label: "{count, plural, one {Work item} other {Work items}}", + all: "All Work items", + edit: "Edit work item", + title: { + label: "Work item title", + required: "Work item title is required.", + }, + add: { + press_enter: "Press 'Enter' to add another work item", + label: "Add work item", + cycle: { + failed: "Work item could not be added to the cycle. Please try again.", + success: "{count, plural, one {Work item} other {Work items}} added to the cycle successfully.", + loading: "Adding {count, plural, one {work item} other {work items}} to the cycle", + }, + assignee: "Add assignees", + start_date: "Add start date", + due_date: "Add due date", + parent: "Add parent work item", + sub_issue: "Add sub-work item", + relation: "Add relation", + link: "Add link", + existing: "Add existing work item", + }, + remove: { + label: "Remove work item", + cycle: { + loading: "Removing work item from the cycle", + success: "Work item removed from the cycle successfully.", + failed: "Work item could not be removed from the cycle. Please try again.", + }, + module: { + loading: "Removing work item from the module", + success: "Work item removed from the module successfully.", + failed: "Work item could not be removed from the module. Please try again.", + }, + parent: { + label: "Remove parent work item", + }, + }, + new: "New Work item", + adding: "Adding work item", + create: { + success: "Work item created successfully", + }, + priority: { + urgent: "Urgent", + high: "High", + medium: "Medium", + low: "Low", + }, + display: { + properties: { + label: "Display Properties", + id: "ID", + issue_type: "Work item Type", + sub_issue_count: "Sub-work item count", + attachment_count: "Attachment count", + created_on: "Created on", + sub_issue: "Sub-work item", + work_item_count: "Work item count", + }, + extra: { + show_sub_issues: "Show sub-work items", + show_empty_groups: "Show empty groups", + }, + }, + layouts: { + ordered_by_label: "This layout is ordered by", + list: "List", + kanban: "Board", + calendar: "Calendar", + spreadsheet: "Table", + gantt: "Timeline", + title: { + list: "List Layout", + kanban: "Board Layout", + calendar: "Calendar Layout", + spreadsheet: "Table Layout", + gantt: "Timeline Layout", + }, + }, + states: { + active: "Active", + backlog: "Backlog", + }, + comments: { + placeholder: "Add comment", + switch: { + private: "Switch to private comment", + public: "Switch to public comment", + }, + create: { + success: "Comment created successfully", + error: "Comment creation failed. Please try again later.", + }, + update: { + success: "Comment updated successfully", + error: "Comment update failed. Please try again later.", + }, + remove: { + success: "Comment removed successfully", + error: "Comment remove failed. Please try again later.", + }, + upload: { + error: "Asset upload failed. Please try again later.", + }, + copy_link: { + success: "Comment link copied to clipboard", + error: "Error copying comment link. Please try again later.", + }, + }, + empty_state: { + issue_detail: { + title: "Work item does not exist", + description: "The work item you are looking for does not exist, has been archived, or has been deleted.", + primary_button: { + text: "View other work items", + }, + }, + }, + sibling: { + label: "Sibling work items", + }, + archive: { + description: "Only completed or canceled\nwork items can be archived", + label: "Archive Work item", + confirm_message: + "Are you sure you want to archive the work item? All your archived work items can be restored later.", + success: { + label: "Archive success", + message: "Your archives can be found in project archives.", + }, + failed: { + message: "Work item could not be archived. Please try again.", + }, + }, + restore: { + success: { + title: "Restore success", + message: "Your work item can be found in project work items.", + }, + failed: { + message: "Work item could not be restored. Please try again.", + }, + }, + relation: { + relates_to: "Relates to", + duplicate: "Duplicate of", + blocked_by: "Blocked by", + blocking: "Blocking", + }, + copy_link: "Copy work item link", + delete: { + label: "Delete work item", + error: "Error deleting work item", + }, + subscription: { + actions: { + subscribed: "Work item subscribed successfully", + unsubscribed: "Work item unsubscribed successfully", + }, + }, + select: { + error: "Please select at least one work item", + empty: "No work items selected", + add_selected: "Add selected work items", + select_all: "Select all", + deselect_all: "Deselect all", + }, + open_in_full_screen: "Open work item in full screen", + }, + attachment: { + error: "File could not be attached. Try uploading again.", + only_one_file_allowed: "Only one file can be uploaded at a time.", + file_size_limit: "File must be of {size}MB or less in size.", + drag_and_drop: "Drag and drop anywhere to upload", + delete: "Delete attachment", + }, + label: { + select: "Select label", + create: { + success: "Label created successfully", + failed: "Label creation failed", + already_exists: "Label already exists", + type: "Type to add a new label", + }, + }, + sub_work_item: { + update: { + success: "Sub-work item updated successfully", + error: "Error updating sub-work item", + }, + remove: { + success: "Sub-work item removed successfully", + error: "Error removing sub-work item", + }, + empty_state: { + sub_list_filters: { + title: "You don't have sub-work items that match the filters you've applied.", + description: "To see all sub-work items, clear all applied filters.", + action: "Clear filters", + }, + list_filters: { + title: "You don't have work items that match the filters you've applied.", + description: "To see all work items, clear all applied filters.", + action: "Clear filters", + }, + }, + }, + view: { + label: "{count, plural, one {View} other {Views}}", + create: { + label: "Create View", + }, + update: { + label: "Update View", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Pending", + description: "Pending", + }, + declined: { + title: "Declined", + description: "Declined", + }, + snoozed: { + title: "Snoozed", + description: "{days, plural, one{# day} other{# days}} to go", + }, + accepted: { + title: "Accepted", + description: "Accepted", + }, + duplicate: { + title: "Duplicate", + description: "Duplicate", + }, + }, + modals: { + decline: { + title: "Decline work item", + content: "Are you sure you want to decline work item {value}?", + }, + delete: { + title: "Delete work item", + content: "Are you sure you want to delete work item {value}?", + success: "Work item deleted successfully", + }, + }, + errors: { + snooze_permission: "Only project admins can snooze/Un-snooze work items", + accept_permission: "Only project admins can accept work items", + decline_permission: "Only project admins can deny work items", + }, + actions: { + accept: "Accept", + decline: "Decline", + snooze: "Snooze", + unsnooze: "Un snooze", + copy: "Copy work item link", + delete: "Delete", + open: "Open work item", + mark_as_duplicate: "Mark as duplicate", + move: "Move {value} to project work items", + }, + source: { + "in-app": "in-app", + }, + order_by: { + created_at: "Created at", + updated_at: "Updated at", + id: "ID", + }, + label: "Intake", + page_label: "{workspace} - Intake", + modal: { + title: "Create intake work item", + }, + tabs: { + open: "Open", + closed: "Closed", + }, + empty_state: { + sidebar_open_tab: { + title: "No open work items", + description: "Find open work items here. Create new work item.", + }, + sidebar_closed_tab: { + title: "No closed work items", + description: "All the work items whether accepted or declined can be found here.", + }, + sidebar_filter: { + title: "No matching work items", + description: "No work item matches filter applied in intake. Create a new work item.", + }, + detail: { + title: "Select a work item to view its details.", + }, + }, + }, + workspace_creation: { + heading: "Create your workspace", + subheading: "To start using Plane, you need to create or join a workspace.", + form: { + name: { + label: "Name your workspace", + placeholder: "Something familiar and recognizable is always best.", + }, + url: { + label: "Set your workspace's URL", + placeholder: "Type or paste a URL", + edit_slug: "You can only edit the slug of the URL", + }, + organization_size: { + label: "How many people will use this workspace?", + placeholder: "Select a range", + }, + }, + errors: { + creation_disabled: { + title: "Only your instance admin can create workspaces", + description: + "If you know your instance admin's email address, click the button below to get in touch with them.", + request_button: "Request instance admin", + }, + validation: { + name_alphanumeric: "Workspaces names can contain only (' '), ('-'), ('_') and alphanumeric characters.", + name_length: "Limit your name to 80 characters.", + url_alphanumeric: "URLs can contain only ('-') and alphanumeric characters.", + url_length: "Limit your URL to 48 characters.", + url_already_taken: "Workspace URL is already taken!", + }, + }, + request_email: { + subject: "Requesting a new workspace", + body: "Hi instance admin(s),\n\nPlease create a new workspace with the URL [/workspace-name] for [purpose of creating the workspace].\n\nThanks,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Create workspace", + loading: "Creating workspace", + }, + toast: { + success: { + title: "Success", + message: "Workspace created successfully", + }, + error: { + title: "Error", + message: "Workspace could not be created. Please try again.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Overview of your projects, activity, and metrics", + description: + "Welcome to Plane, we are excited to have you here. Create your first project and track your work items, and this page will transform into a space that helps you progress. Admins will also see items which help their team progress.", + primary_button: { + text: "Build your first project", + comic: { + title: "Everything starts with a project in Plane", + description: "A project could be a product's roadmap, a marketing campaign, or launching a new car.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analytics", + page_label: "{workspace} - Analytics", + open_tasks: "Total open tasks", + error: "There was some error in fetching the data.", + work_items_closed_in: "Work items closed in", + selected_projects: "Selected projects", + total_members: "Total members", + total_cycles: "Total cycles", + total_modules: "Total modules", + pending_work_items: { + title: "Pending work items", + empty_state: "Analysis of pending work items by co-workers appears here.", + }, + work_items_closed_in_a_year: { + title: "Work items closed in a year", + empty_state: "Close work items to view analysis of the same in the form of a graph.", + }, + most_work_items_created: { + title: "Most work items created", + empty_state: "Co-workers and the number of work items created by them appears here.", + }, + most_work_items_closed: { + title: "Most work items closed", + empty_state: "Co-workers and the number of work items closed by them appears here.", + }, + tabs: { + scope_and_demand: "Scope and Demand", + custom: "Custom Analytics", + }, + total: "Total {entity}", + started_work_items: "Started {entity}", + backlog_work_items: "Backlog {entity}", + un_started_work_items: "Unstarted {entity}", + completed_work_items: "Completed {entity}", + project_insights: "Project Insights", + summary_of_projects: "Summary of Projects", + all_projects: "All Projects", + trend_on_charts: "Trend on charts", + active_projects: "Active Projects", + customized_insights: "Customized Insights", + created_vs_resolved: "Created vs Resolved", + empty_state: { + project_insights: { + title: "No data yet", + description: "Work items assigned to you, broken down by state, will show up here.", + }, + created_vs_resolved: { + title: "No data yet", + description: "Work items created and resolved over time will show up here.", + }, + customized_insights: { + title: "No data yet", + description: "Work items assigned to you, broken down by state, will show up here.", + }, + general: { + title: "Track progress, workloads, and allocations. Spot trends, remove blockers, and move work faster", + description: + "See scope versus demand, estimates, and scope creep. Get performance by team members and teams, and make sure your project runs on time.", + primary_button: { + text: "Start your first project", + comic: { + title: "Analytics works best with Cycles + Modules", + description: + "First, timebox your issues into Cycles and, if you can, group issues that span more than a cycle into Modules. Check out both on the left nav.", + }, + }, + }, + }, + }, + workspace_projects: { + label: "{count, plural, one {Project} other {Projects}}", + create: { + label: "Add Project", + }, + network: { + label: "Network", + private: { + title: "Private", + description: "Accessible only by invite", + }, + public: { + title: "Public", + description: "Anyone in the workspace except Guests can join", + }, + }, + error: { + permission: "You don't have permission to perform this action.", + cycle_delete: "Failed to delete cycle", + module_delete: "Failed to delete module", + issue_delete: "Failed to delete work item", + }, + state: { + backlog: "Backlog", + unstarted: "Unstarted", + started: "Started", + completed: "Completed", + cancelled: "Cancelled", + }, + sort: { + manual: "Manual", + name: "Name", + created_at: "Created date", + members_length: "Number of members", + }, + scope: { + my_projects: "My projects", + archived_projects: "Archived", + }, + common: { + months_count: "{months, plural, one{# month} other{# months}}", + }, + empty_state: { + general: { + title: "No active projects", + description: + "Think of each project as the parent for goal-oriented work. Projects are where Jobs, Cycles, and Modules live and, along with your colleagues, help you achieve that goal. Create a new project or filter for archived projects.", + primary_button: { + text: "Start your first project", + comic: { + title: "Everything starts with a project in Plane", + description: "A project could be a product's roadmap, a marketing campaign, or launching a new car.", + }, + }, + }, + no_projects: { + title: "No project", + description: "To create work items or manage your work, you need to create a project or be a part of one.", + primary_button: { + text: "Start your first project", + comic: { + title: "Everything starts with a project in Plane", + description: "A project could be a product's roadmap, a marketing campaign, or launching a new car.", + }, + }, + }, + filter: { + title: "No matching projects", + description: "No projects detected with the matching criteria. \n Create a new project instead.", + }, + search: { + description: "No projects detected with the matching criteria.\nCreate a new project instead", + }, + }, + }, + workspace_views: { + add_view: "Add view", + empty_state: { + "all-issues": { + title: "No work items in the project", + description: "First project done! Now, slice your work into trackable pieces with work items. Let's go!", + primary_button: { + text: "Create new work item", + }, + }, + assigned: { + title: "No work items yet", + description: "Work items assigned to you can be tracked from here.", + primary_button: { + text: "Create new work item", + }, + }, + created: { + title: "No work items yet", + description: "All work items created by you come here, track them here directly.", + primary_button: { + text: "Create new work item", + }, + }, + subscribed: { + title: "No work items yet", + description: "Subscribe to work items you are interested in, track all of them here.", + }, + "custom-view": { + title: "No work items yet", + description: "Work items that applies to the filters, track all of them here.", + }, + }, + }, + account_settings: { + profile: {}, + preferences: { + heading: "Preferences", + description: "Customize your app experience the way you work", + }, + notifications: { + heading: "Email notifications", + description: "Stay in the loop on Work items you are subscribed to. Enable this to get notified.", + }, + security: { + heading: "Security", + }, + api_tokens: { + heading: "Personal Access Tokens", + description: "Generate secure API tokens to integrate your data with external systems and applications.", + }, + activity: { + heading: "Activity", + description: "Track your recent actions and changes across all projects and work items.", + }, + }, + workspace_settings: { + label: "Workspace settings", + page_label: "{workspace} - General settings", + key_created: "Key created", + copy_key: + "Copy and save this secret key in Plane Pages. You can't see this key after you hit Close. A CSV file containing the key has been downloaded.", + token_copied: "Token copied to clipboard.", + settings: { + general: { + title: "General", + upload_logo: "Upload logo", + edit_logo: "Edit logo", + name: "Workspace name", + company_size: "Company size", + url: "Workspace URL", + update_workspace: "Update workspace", + delete_workspace: "Delete this workspace", + delete_workspace_description: + "When deleting a workspace, all of the data and resources within that workspace will be permanently removed and cannot be recovered.", + delete_btn: "Delete this workspace", + delete_modal: { + title: "Are you sure you want to delete this workspace?", + description: "You have an active trial to one of our paid plans. Please cancel it first to proceed.", + dismiss: "Dismiss", + cancel: "Cancel trial", + success_title: "Workspace deleted.", + success_message: "You will soon go to your profile page.", + error_title: "That didn't work.", + error_message: "Try again, please.", + }, + errors: { + name: { + required: "Name is required", + max_length: "Workspace name should not exceed 80 characters", + }, + company_size: { + required: "Company size is required", + select_a_range: "Select organization size", + }, + }, + }, + members: { + title: "Members", + add_member: "Add member", + pending_invites: "Pending invites", + invitations_sent_successfully: "Invitations sent successfully", + leave_confirmation: + "Are you sure you want to leave the workspace? You will no longer have access to this workspace. This action cannot be undone.", + details: { + full_name: "Full name", + display_name: "Display name", + email_address: "Email address", + account_type: "Account type", + authentication: "Authentication", + joining_date: "Joining date", + }, + modal: { + title: "Invite people to collaborate", + description: "Invite people to collaborate on your workspace.", + button: "Send invitations", + button_loading: "Sending invitations", + placeholder: "name@company.com", + errors: { + required: "We need an email address to invite them.", + invalid: "Email is invalid", + }, + }, + }, + billing_and_plans: { + heading: "Billing & Plans", + description: "Choose your plan, manage subscriptions, and easily upgrade as your needs grow.", + title: "Billing & Plans", + current_plan: "Current plan", + free_plan: "You are currently using the free plan", + view_plans: "View plans", + }, + exports: { + heading: "Exports", + description: "Export your project data in various formats and access your export history with download links.", + title: "Exports", + exporting: "Exporting", + previous_exports: "Previous exports", + export_separate_files: "Export the data into separate files", + exporting_projects: "Exporting project", + format: "Format", + modal: { + title: "Export to", + toasts: { + success: { + title: "Export successful", + message: "You will be able to download the exported {entity} from the previous export.", + }, + error: { + title: "Export failed", + message: "Export was unsuccessful. Please try again.", + }, + }, + }, + }, + webhooks: { + heading: "Webhooks", + description: "Automate notifications to external services when project events occur.", + title: "Webhooks", + add_webhook: "Add webhook", + modal: { + title: "Create webhook", + details: "Webhook details", + payload: "Payload URL", + question: "Which events would you like to trigger this webhook?", + error: "URL is required", + }, + secret_key: { + title: "Secret key", + message: "Generate a token to sign-in to the webhook payload", + }, + options: { + all: "Send me everything", + individual: "Select individual events", + }, + toasts: { + created: { + title: "Webhook created", + message: "The webhook has been successfully created", + }, + not_created: { + title: "Webhook not created", + message: "The webhook could not be created", + }, + updated: { + title: "Webhook updated", + message: "The webhook has been successfully updated", + }, + not_updated: { + title: "Webhook not updated", + message: "The webhook could not be updated", + }, + removed: { + title: "Webhook removed", + message: "The webhook has been successfully removed", + }, + not_removed: { + title: "Webhook not removed", + message: "The webhook could not be removed", + }, + secret_key_copied: { + message: "Secret key copied to clipboard.", + }, + secret_key_not_copied: { + message: "Error occurred while copying secret key.", + }, + }, + }, + api_tokens: { + title: "Personal Access Tokens", + add_token: "Add personal access token", + create_token: "Create token", + never_expires: "Never expires", + generate_token: "Generate token", + generating: "Generating", + delete: { + title: "Delete personal access token", + description: + "Any application using this token will no longer have the access to Plane data. This action cannot be undone.", + success: { + title: "Success!", + message: "The token has been successfully deleted", + }, + error: { + title: "Error!", + message: "The token could not be deleted", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "No personal access tokens created", + description: + "Plane APIs can be used to integrate your data in Plane with any external system. Create a token to get started.", + }, + webhooks: { + title: "No webhooks added", + description: "Create webhooks to receive real-time updates and automate actions.", + }, + exports: { + title: "No exports yet", + description: "Anytime you export, you will also have a copy here for reference.", + }, + imports: { + title: "No imports yet", + description: "Find all your previous imports here and download them.", + }, + }, + }, + profile: { + label: "Profile", + page_label: "Your work", + work: "Work", + details: { + joined_on: "Joined on", + time_zone: "Timezone", + }, + stats: { + workload: "Workload", + overview: "Overview", + created: "Work items created", + assigned: "Work items assigned", + subscribed: "Work items subscribed", + state_distribution: { + title: "Work items by state", + empty: "Create work items to view the them by states in the graph for better analysis.", + }, + priority_distribution: { + title: "Work items by Priority", + empty: "Create work items to view the them by priority in the graph for better analysis.", + }, + recent_activity: { + title: "Recent activity", + empty: "We couldn't find data. Kindly view your inputs", + button: "Download today's activity", + button_loading: "Downloading", + }, + }, + actions: { + profile: "Profile", + security: "Security", + activity: "Activity", + preferences: "Preferences", + notifications: "Notifications", + "api-tokens": "Personal Access Tokens", + }, + tabs: { + summary: "Summary", + assigned: "Assigned", + created: "Created", + subscribed: "Subscribed", + activity: "Activity", + }, + empty_state: { + activity: { + title: "No activities yet", + description: + "Get started by creating a new work item! Add details and properties to it. Explore more in Plane to see your activity.", + }, + assigned: { + title: "No work items are assigned to you", + description: "Work items assigned to you can be tracked from here.", + }, + created: { + title: "No work items yet", + description: "All work items created by you come here, track them here directly.", + }, + subscribed: { + title: "No work items yet", + description: "Subscribe to work items you are interested in, track all of them here.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Enter project ID", + please_select_a_timezone: "Please select a timezone", + archive_project: { + title: "Archive project", + description: + "Archiving a project will unlist your project from your side navigation although you will still be able to access it from your projects page. You can restore the project or delete it whenever you want.", + button: "Archive project", + }, + delete_project: { + title: "Delete project", + description: + "When deleting a project, all of the data and resources within that project will be permanently removed and cannot be recovered.", + button: "Delete my project", + }, + toast: { + success: "Project updated successfully", + error: "Project could not be updated. Please try again.", + }, + }, + members: { + label: "Members", + project_lead: "Project lead", + default_assignee: "Default assignee", + guest_super_permissions: { + title: "Grant view access to all work items for guest users:", + sub_heading: "This will allow guests to have view access to all the project work items.", + }, + invite_members: { + title: "Invite members", + sub_heading: "Invite members to work on your project.", + select_co_worker: "Select co-worker", + }, + }, + states: { + heading: "States", + description: "Define and customize workflow states to track the progress of your work items.", + describe_this_state_for_your_members: "Describe this state for your members.", + empty_state: { + title: "No states available for the {groupKey} group", + description: "Please create a new state", + }, + }, + labels: { + heading: "Labels", + description: "Create custom labels to categorize and organize your work items", + label_title: "Label title", + label_title_is_required: "Label title is required", + label_max_char: "Label name should not exceed 255 characters", + toast: { + error: "Error while updating the label", + }, + }, + estimates: { + heading: "Estimates", + description: "Set up estimation systems to track and communicate the effort required for each work item.", + label: "Estimates", + title: "Enable estimates for my project", + enable_description: "They help you in communicating complexity and workload of the team.", + no_estimate: "No estimate", + new: "New estimate system", + create: { + custom: "Custom", + start_from_scratch: "Start from scratch", + choose_template: "Choose a template", + choose_estimate_system: "Choose an estimate system", + enter_estimate_point: "Enter estimate", + step: "Step {step} of {total}", + label: "Create estimate", + }, + toasts: { + created: { + success: { + title: "Estimate created", + message: "The estimate has been created successfully", + }, + error: { + title: "Estimate creation failed", + message: "We were unable to create the new estimate, please try again.", + }, + }, + updated: { + success: { + title: "Estimate modified", + message: "The estimate has been updated in your project.", + }, + error: { + title: "Estimate modification failed", + message: "We were unable to modify the estimate, please try again", + }, + }, + enabled: { + success: { + title: "Success!", + message: "Estimates have been enabled.", + }, + }, + disabled: { + success: { + title: "Success!", + message: "Estimates have been disabled.", + }, + error: { + title: "Error!", + message: "Estimate could not be disabled. Please try again", + }, + }, + }, + validation: { + min_length: "Estimate needs to be greater than 0.", + unable_to_process: "We are unable to process your request, please try again.", + numeric: "Estimate needs to be a numeric value.", + character: "Estimate needs to be a character value.", + empty: "Estimate value cannot be empty.", + already_exists: "Estimate value already exists.", + unsaved_changes: "You have some unsaved changes, Please save them before clicking on done", + remove_empty: "Estimate can't be empty. Enter a value in each field or remove those you don't have values for.", + }, + systems: { + points: { + label: "Points", + fibonacci: "Fibonacci", + linear: "Linear", + squares: "Squares", + custom: "Custom", + }, + categories: { + label: "Categories", + t_shirt_sizes: "T-Shirt Sizes", + easy_to_hard: "Easy to hard", + custom: "Custom", + }, + time: { + label: "Time", + hours: "Hours", + }, + }, + }, + automations: { + label: "Automations", + heading: "Automations", + description: + "Configure automated actions to streamline your project management workflow and reduce manual tasks.", + "auto-archive": { + title: "Auto-archive closed work items", + description: "Plane will auto archive work items that have been completed or canceled.", + duration: "Auto-archive work items that are closed for", + }, + "auto-close": { + title: "Auto-close work items", + description: "Plane will automatically close work items that haven't been completed or canceled.", + duration: "Auto-close work items that are inactive for", + auto_close_status: "Auto-close status", + }, + }, + empty_state: { + labels: { + title: "No labels yet", + description: "Create labels to help organize and filter work items in you project.", + }, + estimates: { + title: "No estimate systems yet", + description: "Create a set of estimates to communicate the amount of work per work item.", + primary_button: "Add estimate system", + }, + }, + }, + project_cycles: { + add_cycle: "Add cycle", + more_details: "More details", + cycle: "Cycle", + update_cycle: "Update cycle", + create_cycle: "Create cycle", + no_matching_cycles: "No matching cycles", + remove_filters_to_see_all_cycles: "Remove the filters to see all cycles", + remove_search_criteria_to_see_all_cycles: "Remove the search criteria to see all cycles", + only_completed_cycles_can_be_archived: "Only completed cycles can be archived", + start_date: "Start date", + end_date: "End date", + in_your_timezone: "In your timezone", + transfer_work_items: "Transfer {count} work items", + date_range: "Date range", + add_date: "Add date", + active_cycle: { + label: "Active cycle", + progress: "Progress", + chart: "Burndown chart", + priority_issue: "Priority work items", + assignees: "Assignees", + issue_burndown: "Work item burndown", + ideal: "Ideal", + current: "Current", + labels: "Labels", + }, + upcoming_cycle: { + label: "Upcoming cycle", + }, + completed_cycle: { + label: "Completed cycle", + }, + status: { + days_left: "Days left", + completed: "Completed", + yet_to_start: "Yet to start", + in_progress: "In progress", + draft: "Draft", + }, + action: { + restore: { + title: "Restore cycle", + success: { + title: "Cycle restored", + description: "The cycle has been restored.", + }, + failed: { + title: "Cycle restore failed", + description: "The cycle could not be restored. Please try again.", + }, + }, + favorite: { + loading: "Adding cycle to favorites", + success: { + description: "Cycle added to favorites.", + title: "Success!", + }, + failed: { + description: "Couldn't add the cycle to favorites. Please try again.", + title: "Error!", + }, + }, + unfavorite: { + loading: "Removing cycle from favorites", + success: { + description: "Cycle removed from favorites.", + title: "Success!", + }, + failed: { + description: "Couldn't remove the cycle from favorites. Please try again.", + title: "Error!", + }, + }, + update: { + loading: "Updating cycle", + success: { + description: "Cycle updated successfully.", + title: "Success!", + }, + failed: { + description: "Error updating the cycle. Please try again.", + title: "Error!", + }, + error: { + already_exists: + "You already have a cycle on the given dates, if you want to create a draft cycle, you can do that by removing both the dates.", + }, + }, + }, + empty_state: { + general: { + title: "Group and timebox your work in Cycles.", + description: + "Break work down by timeboxed chunks, work backwards from your project deadline to set dates, and make tangible progress as a team.", + primary_button: { + text: "Set your first cycle", + comic: { + title: "Cycles are repetitive time-boxes.", + description: + "A sprint, an iteration, and or any other term you use for weekly or fortnightly tracking of work is a cycle.", + }, + }, + }, + no_issues: { + title: "No work items added to the cycle", + description: "Add or create work items you wish to timebox and deliver within this cycle", + primary_button: { + text: "Create new work item", + }, + secondary_button: { + text: "Add existing work item", + }, + }, + completed_no_issues: { + title: "No work items in the cycle", + description: + "No work items in the cycle. Work items are either transferred or hidden. To see hidden work items if any, update your display properties accordingly.", + }, + active: { + title: "No active cycle", + description: + "An active cycle includes any period that encompasses today's date within its range. Find the progress and details of the active cycle here.", + }, + archived: { + title: "No archived cycles yet", + description: "To tidy up your project, archive completed cycles. Find them here once archived.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Create a work item and assign it to someone, even yourself", + description: + "Think of work items as jobs, tasks, work, or JTBD. Which we like. A work item and its sub-work items are usually time-based actionables assigned to members of your team. Your team creates, assigns, and completes work items to move your project towards its goal.", + primary_button: { + text: "Create your first work item", + comic: { + title: "Work items are building blocks in Plane.", + description: + "Redesign the Plane UI, Rebrand the company, or Launch the new fuel injection system are examples of work items that likely have sub-work items.", + }, + }, + }, + no_archived_issues: { + title: "No archived work items yet", + description: + "Manually or through automation, you can archive work items that are completed or cancelled. Find them here once archived.", + primary_button: { + text: "Set automation", + }, + }, + issues_empty_filter: { + title: "No work items found matching the filters applied", + secondary_button: { + text: "Clear all filters", + }, + }, + }, + }, + project_module: { + add_module: "Add Module", + update_module: "Update Module", + create_module: "Create Module", + archive_module: "Archive Module", + restore_module: "Restore Module", + delete_module: "Delete module", + empty_state: { + general: { + title: "Map your project milestones to Modules and track aggregated work easily.", + description: + "A group of work items that belong to a logical, hierarchical parent form a module. Think of them as a way to track work by project milestones. They have their own periods and deadlines as well as analytics to help you see how close or far you are from a milestone.", + primary_button: { + text: "Build your first module", + comic: { + title: "Modules help group work by hierarchy.", + description: + "A cart module, a chassis module, and a warehouse module are all good example of this grouping.", + }, + }, + }, + no_issues: { + title: "No work items in the module", + description: "Create or add work items which you want to accomplish as part of this module", + primary_button: { + text: "Create new work items", + }, + secondary_button: { + text: "Add an existing work item", + }, + }, + archived: { + title: "No archived Modules yet", + description: "To tidy up your project, archive completed or cancelled modules. Find them here once archived.", + }, + sidebar: { + in_active: "This module isn't active yet.", + invalid_date: "Invalid date. Please enter valid date.", + }, + }, + quick_actions: { + archive_module: "Archive module", + archive_module_description: "Only completed or canceled\nmodule can be archived.", + delete_module: "Delete module", + }, + toast: { + copy: { + success: "Module link copied to clipboard", + }, + delete: { + success: "Module deleted successfully", + error: "Failed to delete module", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Save filtered views for your project. Create as many as you need", + description: + "Views are a set of saved filters that you use frequently or want easy access to. All your colleagues in a project can see everyone’s views and choose whichever suits their needs best.", + primary_button: { + text: "Create your first view", + comic: { + title: "Views work atop Work item properties.", + description: "You can create a view from here with as many properties as filters as you see fit.", + }, + }, + }, + filter: { + title: "No matching views", + description: "No views match the search criteria. \n Create a new view instead.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Write a note, a doc, or a full knowledge base. Get Galileo, Plane's AI assistant, to help you get started", + description: + "Pages are thoughts potting space in Plane. Take down meeting notes, format them easily, embed work items, lay them out using a library of components, and keep them all in your project's context. To make short work of any doc, invoke Galileo, Plane's AI, with a shortcut or the click of a button.", + primary_button: { + text: "Create your first page", + }, + }, + private: { + title: "No private pages yet", + description: "Keep your private thoughts here. When you're ready to share, the team's just a click away.", + primary_button: { + text: "Create your first page", + }, + }, + public: { + title: "No public pages yet", + description: "See pages shared with everyone in your project right here.", + primary_button: { + text: "Create your first page", + }, + }, + archived: { + title: "No archived pages yet", + description: "Archive pages not on your radar. Access them here when needed.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "No results found", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "No matching work items found", + }, + no_issues: { + title: "No work items found", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "No comments yet", + description: "Comments can be used as a discussion and follow-up space for the work items", + }, + }, + }, + notification: { + label: "Inbox", + page_label: "{workspace} - Inbox", + options: { + mark_all_as_read: "Mark all as read", + mark_read: "Mark as read", + mark_unread: "Mark as unread", + refresh: "Refresh", + filters: "Inbox Filters", + show_unread: "Show unread", + show_snoozed: "Show snoozed", + show_archived: "Show archived", + mark_archive: "Archive", + mark_unarchive: "Un archive", + mark_snooze: "Snooze", + mark_unsnooze: "Un snooze", + }, + toasts: { + read: "Notification marked as read", + unread: "Notification marked as unread", + archived: "Notification marked as archived", + unarchived: "Notification marked as un archived", + snoozed: "Notification snoozed", + unsnoozed: "Notification un snoozed", + }, + empty_state: { + detail: { + title: "Select to view details.", + }, + all: { + title: "No work items assigned", + description: "Updates for work items assigned to you can be \n seen here", + }, + mentions: { + title: "No work items assigned", + description: "Updates for work items assigned to you can be \n seen here", + }, + }, + tabs: { + all: "All", + mentions: "Mentions", + }, + filter: { + assigned: "Assigned to me", + created: "Created by me", + subscribed: "Subscribed by me", + }, + snooze: { + "1_day": "1 day", + "3_days": "3 days", + "5_days": "5 days", + "1_week": "1 week", + "2_weeks": "2 weeks", + custom: "Custom", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Add work items to the cycle to view it's progress", + }, + chart: { + title: "Add work items to the cycle to view the burndown chart.", + }, + priority_issue: { + title: "Observe high priority work items tackled in the cycle at a glance.", + }, + assignee: { + title: "Add assignees to work items to see a breakdown of work by assignees.", + }, + label: { + title: "Add labels to work items to see the breakdown of work by labels.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Intake is not enabled for the project.", + description: + "Intake helps you manage incoming requests to your project and add them as work items in your workflow. Enable intake from project settings to manage requests.", + primary_button: { + text: "Manage features", + }, + }, + cycle: { + title: "Cycles is not enabled for this project.", + description: + "Break work down by timeboxed chunks, work backwards from your project deadline to set dates, and make tangible progress as a team. Enable the cycles feature for your project to start using them.", + primary_button: { + text: "Manage features", + }, + }, + module: { + title: "Modules are not enabled for the project.", + description: + "Modules are the building blocks of your project. Enable modules from project settings to start using them.", + primary_button: { + text: "Manage features", + }, + }, + page: { + title: "Pages are not enabled for the project.", + description: + "Pages are the building blocks of your project. Enable pages from project settings to start using them.", + primary_button: { + text: "Manage features", + }, + }, + view: { + title: "Views are not enabled for the project.", + description: + "Views are the building blocks of your project. Enable views from project settings to start using them.", + primary_button: { + text: "Manage features", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Draft a work item", + empty_state: { + title: "Half-written work items, and soon, comments will show up here.", + description: + "To try this out, start adding a work item and leave it mid-way or create your first draft below. 😉", + primary_button: { + text: "Create your first draft", + }, + }, + delete_modal: { + title: "Delete draft", + description: "Are you sure you want to delete this draft? This can't be undone.", + }, + toasts: { + created: { + success: "Draft created", + error: "Work item could not be created. Please try again.", + }, + deleted: { + success: "Draft deleted", + }, + }, + }, + stickies: { + title: "Your stickies", + placeholder: "click to type here", + all: "All stickies", + "no-data": "Jot down an idea, capture an aha, or record a brainwave. Add a sticky to get started.", + add: "Add sticky", + search_placeholder: "Search by title", + delete: "Delete sticky", + delete_confirmation: "Are you sure you want to delete this sticky?", + empty_state: { + simple: "Jot down an idea, capture an aha, or record a brainwave. Add a sticky to get started.", + general: { + title: "Stickies are quick notes and to-dos you take down on the fly.", + description: + "Capture your thoughts and ideas effortlessly by creating stickies that you can access anytime and from anywhere.", + primary_button: { + text: "Add sticky", + }, + }, + search: { + title: "That doesn't match any of your stickies.", + description: "Try a different term or let us know\nif you are sure your search is right. ", + primary_button: { + text: "Add sticky", + }, + }, + }, + toasts: { + errors: { + wrong_name: "The sticky name cannot be longer than 100 characters.", + already_exists: "There already exists a sticky with no description", + }, + created: { + title: "Sticky created", + message: "The sticky has been successfully created", + }, + not_created: { + title: "Sticky not created", + message: "The sticky could not be created", + }, + updated: { + title: "Sticky updated", + message: "The sticky has been successfully updated", + }, + not_updated: { + title: "Sticky not updated", + message: "The sticky could not be updated", + }, + removed: { + title: "Sticky removed", + message: "The sticky has been successfully removed", + }, + not_removed: { + title: "Sticky not removed", + message: "The sticky could not be removed", + }, + }, + }, + role_details: { + guest: { + title: "Guest", + description: "External members of organizations can be invited as guests.", + }, + member: { + title: "Member", + description: "Ability to read, write, edit, and delete entities inside projects, cycles, and modules", + }, + admin: { + title: "Admin", + description: "All permissions set to true within the workspace.", + }, + }, + user_roles: { + product_or_project_manager: "Product / Project Manager", + development_or_engineering: "Development / Engineering", + founder_or_executive: "Founder / Executive", + freelancer_or_consultant: "Freelancer / Consultant", + marketing_or_growth: "Marketing / Growth", + sales_or_business_development: "Sales / Business Development", + support_or_operations: "Support / Operations", + student_or_professor: "Student / Professor", + human_resources: "Human / Resources", + other: "Other", + }, + importer: { + github: { + title: "Github", + description: "Import work items from GitHub repositories and sync them.", + }, + jira: { + title: "Jira", + description: "Import work items and epics from Jira projects and epics.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Export work items to a CSV file.", + short_description: "Export as csv", + }, + excel: { + title: "Excel", + description: "Export work items to a Excel file.", + short_description: "Export as excel", + }, + xlsx: { + title: "Excel", + description: "Export work items to a Excel file.", + short_description: "Export as excel", + }, + json: { + title: "JSON", + description: "Export work items to a JSON file.", + short_description: "Export as json", + }, + }, + default_global_view: { + all_issues: "All work items", + assigned: "Assigned", + created: "Created", + subscribed: "Subscribed", + }, + themes: { + theme_options: { + system_preference: { + label: "System preference", + }, + light: { + label: "Light", + }, + dark: { + label: "Dark", + }, + light_contrast: { + label: "Light high contrast", + }, + dark_contrast: { + label: "Dark high contrast", + }, + custom: { + label: "Custom theme", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Planned", + in_progress: "In Progress", + paused: "Paused", + completed: "Completed", + cancelled: "Cancelled", + }, + layout: { + list: "List layout", + board: "Gallery layout", + timeline: "Timeline layout", + }, + order_by: { + name: "Name", + progress: "Progress", + issues: "Number of work items", + due_date: "Due date", + created_at: "Created date", + manual: "Manual", + }, + }, + cycle: { + label: "{count, plural, one {Cycle} other {Cycles}}", + no_cycle: "No cycle", + }, + module: { + label: "{count, plural, one {Module} other {Modules}}", + no_module: "No module", + }, + description_versions: { + last_edited_by: "Last edited by", + previously_edited_by: "Previously edited by", + edited_by: "Edited by", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane didn't start up. This could be because one or more Plane services failed to start.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Choose View Logs from setup.sh and Docker logs to be sure.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Outline", + empty_state: { + title: "Missing headings", + description: "Let's put some headings in this page to see them here.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Words", + characters: "Characters", + paragraphs: "Paragraphs", + read_time: "Read time", + }, + actors_info: { + edited_by: "Edited by", + created_by: "Created by", + }, + version_history: { + label: "Version history", + current_version: "Current version", + }, + }, + assets: { + label: "Assets", + download_button: "Download", + empty_state: { + title: "Missing images", + description: "Add images to see them here.", + }, + }, + }, + open_button: "Open navigation pane", + close_button: "Close navigation pane", + outline_floating_button: "Open outline", + }, + project_members: { + full_name: "Full name", + display_name: "Display name", + email: "Email", + joining_date: "Joining date", + role: "Role", + }, +} as const; diff --git a/packages/i18n/src/locales/es/accessibility.json b/packages/i18n/src/locales/es/accessibility.json deleted file mode 100644 index 4d957f5a9f..0000000000 --- a/packages/i18n/src/locales/es/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo del espacio de trabajo", - "open_workspace_switcher": "Abrir cambiador de espacio de trabajo", - "open_user_menu": "Abrir menú de usuario", - "open_command_palette": "Abrir paleta de comandos", - "open_extended_sidebar": "Abrir barra lateral extendida", - "close_extended_sidebar": "Cerrar barra lateral extendida", - "create_favorites_folder": "Crear carpeta de favoritos", - "open_folder": "Abrir carpeta", - "close_folder": "Cerrar carpeta", - "open_favorites_menu": "Abrir menú de favoritos", - "close_favorites_menu": "Cerrar menú de favoritos", - "enter_folder_name": "Ingresar nombre de carpeta", - "create_new_project": "Crear nuevo proyecto", - "open_projects_menu": "Abrir menú de proyectos", - "close_projects_menu": "Cerrar menú de proyectos", - "toggle_quick_actions_menu": "Alternar menú de acciones rápidas", - "open_project_menu": "Abrir menú de proyecto", - "close_project_menu": "Cerrar menú de proyecto", - "collapse_sidebar": "Colapsar barra lateral", - "expand_sidebar": "Expandir barra lateral", - "edition_badge": "Abrir modal de planes de pago" - }, - "auth_forms": { - "clear_email": "Limpiar correo electrónico", - "show_password": "Mostrar contraseña", - "hide_password": "Ocultar contraseña", - "close_alert": "Cerrar alerta", - "close_popover": "Cerrar ventana emergente" - } - } -} diff --git a/packages/i18n/src/locales/es/accessibility.ts b/packages/i18n/src/locales/es/accessibility.ts new file mode 100644 index 0000000000..83bb5d7d9c --- /dev/null +++ b/packages/i18n/src/locales/es/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo del espacio de trabajo", + open_workspace_switcher: "Abrir cambiador de espacio de trabajo", + open_user_menu: "Abrir menú de usuario", + open_command_palette: "Abrir paleta de comandos", + open_extended_sidebar: "Abrir barra lateral extendida", + close_extended_sidebar: "Cerrar barra lateral extendida", + create_favorites_folder: "Crear carpeta de favoritos", + open_folder: "Abrir carpeta", + close_folder: "Cerrar carpeta", + open_favorites_menu: "Abrir menú de favoritos", + close_favorites_menu: "Cerrar menú de favoritos", + enter_folder_name: "Ingresar nombre de carpeta", + create_new_project: "Crear nuevo proyecto", + open_projects_menu: "Abrir menú de proyectos", + close_projects_menu: "Cerrar menú de proyectos", + toggle_quick_actions_menu: "Alternar menú de acciones rápidas", + open_project_menu: "Abrir menú de proyecto", + close_project_menu: "Cerrar menú de proyecto", + collapse_sidebar: "Colapsar barra lateral", + expand_sidebar: "Expandir barra lateral", + edition_badge: "Abrir modal de planes de pago", + }, + auth_forms: { + clear_email: "Limpiar correo electrónico", + show_password: "Mostrar contraseña", + hide_password: "Ocultar contraseña", + close_alert: "Cerrar alerta", + close_popover: "Cerrar ventana emergente", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/es/editor.json b/packages/i18n/src/locales/es/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/es/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/es/editor.ts b/packages/i18n/src/locales/es/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/es/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/es/translations.json b/packages/i18n/src/locales/es/translations.json deleted file mode 100644 index 1621a1c8e9..0000000000 --- a/packages/i18n/src/locales/es/translations.json +++ /dev/null @@ -1,2535 +0,0 @@ -{ - "sidebar": { - "projects": "Proyectos", - "pages": "Páginas", - "new_work_item": "Nuevo elemento de trabajo", - "home": "Inicio", - "your_work": "Tu trabajo", - "inbox": "Bandeja de entrada", - "workspace": "Espacio de trabajo", - "views": "Vistas", - "analytics": "Análisis", - "work_items": "Elementos de trabajo", - "cycles": "Ciclos", - "modules": "Módulos", - "intake": "Entrada", - "drafts": "Borradores", - "favorites": "Favoritos", - "pro": "Pro", - "upgrade": "Mejorar" - }, - "auth": { - "common": { - "email": { - "label": "Correo electrónico", - "placeholder": "nombre@empresa.com", - "errors": { - "required": "El correo electrónico es obligatorio", - "invalid": "El correo electrónico no es válido" - } - }, - "password": { - "label": "Contraseña", - "set_password": "Establecer una contraseña", - "placeholder": "Ingresa la contraseña", - "confirm_password": { - "label": "Confirmar contraseña", - "placeholder": "Confirmar contraseña" - }, - "current_password": { - "label": "Contraseña actual" - }, - "new_password": { - "label": "Nueva contraseña", - "placeholder": "Ingresa nueva contraseña" - }, - "change_password": { - "label": { - "default": "Cambiar contraseña", - "submitting": "Cambiando contraseña" - } - }, - "errors": { - "match": "Las contraseñas no coinciden", - "empty": "Por favor ingresa tu contraseña", - "length": "La contraseña debe tener más de 8 caracteres", - "strength": { - "weak": "La contraseña es débil", - "strong": "La contraseña es fuerte" - } - }, - "submit": "Establecer contraseña", - "toast": { - "change_password": { - "success": { - "title": "¡Éxito!", - "message": "Contraseña cambiada exitosamente." - }, - "error": { - "title": "¡Error!", - "message": "Algo salió mal. Por favor intenta de nuevo." - } - } - } - }, - "unique_code": { - "label": "Código único", - "placeholder": "obtiene-establece-vuela", - "paste_code": "Pega el código enviado a tu correo electrónico", - "requesting_new_code": "Solicitando nuevo código", - "sending_code": "Enviando código" - }, - "already_have_an_account": "¿Ya tienes una cuenta?", - "login": "Iniciar sesión", - "create_account": "Crear una cuenta", - "new_to_plane": "¿Nuevo en Plane?", - "back_to_sign_in": "Volver a iniciar sesión", - "resend_in": "Reenviar en {seconds} segundos", - "sign_in_with_unique_code": "Iniciar sesión con código único", - "forgot_password": "¿Olvidaste tu contraseña?" - }, - "sign_up": { - "header": { - "label": "Crea una cuenta para comenzar a gestionar el trabajo con tu equipo.", - "step": { - "email": { - "header": "Registrarse", - "sub_header": "" - }, - "password": { - "header": "Registrarse", - "sub_header": "Regístrate usando una combinación de correo electrónico y contraseña." - }, - "unique_code": { - "header": "Registrarse", - "sub_header": "Regístrate usando un código único enviado a la dirección de correo electrónico anterior." - } - } - }, - "errors": { - "password": { - "strength": "Intenta establecer una contraseña fuerte para continuar" - } - } - }, - "sign_in": { - "header": { - "label": "Inicia sesión para comenzar a gestionar el trabajo con tu equipo.", - "step": { - "email": { - "header": "Iniciar sesión o registrarse", - "sub_header": "" - }, - "password": { - "header": "Iniciar sesión o registrarse", - "sub_header": "Usa tu combinación de correo electrónico y contraseña para iniciar sesión." - }, - "unique_code": { - "header": "Iniciar sesión o registrarse", - "sub_header": "Inicia sesión usando un código único enviado a la dirección de correo electrónico anterior." - } - } - } - }, - "forgot_password": { - "title": "Restablecer tu contraseña", - "description": "Ingresa la dirección de correo electrónico verificada de tu cuenta de usuario y te enviaremos un enlace para restablecer la contraseña.", - "email_sent": "Enviamos el enlace de restablecimiento a tu dirección de correo electrónico", - "send_reset_link": "Enviar enlace de restablecimiento", - "errors": { - "smtp_not_enabled": "Vemos que tu administrador no ha habilitado SMTP, no podremos enviar un enlace para restablecer la contraseña" - }, - "toast": { - "success": { - "title": "Correo enviado", - "message": "Revisa tu bandeja de entrada para encontrar un enlace para restablecer tu contraseña. Si no aparece en unos minutos, revisa tu carpeta de spam." - }, - "error": { - "title": "¡Error!", - "message": "Algo salió mal. Por favor intenta de nuevo." - } - } - }, - "reset_password": { - "title": "Establecer nueva contraseña", - "description": "Asegura tu cuenta con una contraseña fuerte" - }, - "set_password": { - "title": "Asegura tu cuenta", - "description": "Establecer una contraseña te ayuda a iniciar sesión de forma segura" - }, - "sign_out": { - "toast": { - "error": { - "title": "¡Error!", - "message": "Error al cerrar sesión. Por favor intenta de nuevo." - } - } - } - }, - "submit": "Enviar", - "cancel": "Cancelar", - "loading": "Cargando", - "error": "Error", - "success": "Éxito", - "warning": "Advertencia", - "info": "Información", - "close": "Cerrar", - "yes": "Sí", - "no": "No", - "ok": "Aceptar", - "name": "Nombre", - "description": "Descripción", - "search": "Buscar", - "add_member": "Agregar miembro", - "adding_members": "Agregando miembros", - "remove_member": "Eliminar miembro", - "add_members": "Agregar miembros", - "adding_member": "Agregando miembros", - "remove_members": "Eliminar miembros", - "add": "Agregar", - "adding": "Agregando", - "remove": "Eliminar", - "add_new": "Agregar nuevo", - "remove_selected": "Eliminar seleccionados", - "first_name": "Nombre", - "last_name": "Apellido", - "email": "Correo electrónico", - "display_name": "Nombre para mostrar", - "role": "Rol", - "timezone": "Zona horaria", - "avatar": "Avatar", - "cover_image": "Imagen de portada", - "password": "Contraseña", - "change_cover": "Cambiar portada", - "language": "Idioma", - "saving": "Guardando", - "save_changes": "Guardar cambios", - "deactivate_account": "Desactivar cuenta", - "deactivate_account_description": "Al desactivar una cuenta, todos los datos y recursos dentro de esa cuenta se eliminarán permanentemente y no se podrán recuperar.", - "profile_settings": "Configuración del perfil", - "your_account": "Tu cuenta", - "security": "Seguridad", - "activity": "Actividad", - "appearance": "Apariencia", - "notifications": "Notificaciones", - "connections": "Conexiones", - "workspaces": "Espacios de trabajo", - "create_workspace": "Crear espacio de trabajo", - "invitations": "Invitaciones", - "summary": "Resumen", - "assigned": "Asignado", - "created": "Creado", - "subscribed": "Suscrito", - "you_do_not_have_the_permission_to_access_this_page": "No tienes permiso para acceder a esta página.", - "something_went_wrong_please_try_again": "Algo salió mal. Por favor, inténtalo de nuevo.", - "load_more": "Cargar más", - "select_or_customize_your_interface_color_scheme": "Selecciona o personaliza el esquema de colores de tu interfaz.", - "theme": "Tema", - "system_preference": "Preferencia del sistema", - "light": "Claro", - "dark": "Oscuro", - "light_contrast": "Alto contraste claro", - "dark_contrast": "Alto contraste oscuro", - "custom": "Tema personalizado", - "select_your_theme": "Selecciona tu tema", - "customize_your_theme": "Personaliza tu tema", - "background_color": "Color de fondo", - "text_color": "Color del texto", - "primary_color": "Color primario (Tema)", - "sidebar_background_color": "Color de fondo de la barra lateral", - "sidebar_text_color": "Color del texto de la barra lateral", - "set_theme": "Establecer tema", - "enter_a_valid_hex_code_of_6_characters": "Ingresa un código hexadecimal válido de 6 caracteres", - "background_color_is_required": "El color de fondo es requerido", - "text_color_is_required": "El color del texto es requerido", - "primary_color_is_required": "El color primario es requerido", - "sidebar_background_color_is_required": "El color de fondo de la barra lateral es requerido", - "sidebar_text_color_is_required": "El color del texto de la barra lateral es requerido", - "updating_theme": "Actualizando tema", - "theme_updated_successfully": "Tema actualizado exitosamente", - "failed_to_update_the_theme": "Error al actualizar el tema", - "email_notifications": "Notificaciones por correo electrónico", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Mantente al tanto de los elementos de trabajo a los que estás suscrito. Activa esto para recibir notificaciones.", - "email_notification_setting_updated_successfully": "Configuración de notificaciones por correo electrónico actualizada exitosamente", - "failed_to_update_email_notification_setting": "Error al actualizar la configuración de notificaciones por correo electrónico", - "notify_me_when": "Notificarme cuando", - "property_changes": "Cambios de propiedades", - "property_changes_description": "Notificarme cuando cambien las propiedades de los elementos de trabajo como asignados, prioridad, estimaciones o cualquier otra cosa.", - "state_change": "Cambio de estado", - "state_change_description": "Notificarme cuando los elementos de trabajo se muevan a un estado diferente", - "issue_completed": "Elemento de trabajo completado", - "issue_completed_description": "Notificarme solo cuando se complete un elemento de trabajo", - "comments": "Comentarios", - "comments_description": "Notificarme cuando alguien deje un comentario en el elemento de trabajo", - "mentions": "Menciones", - "mentions_description": "Notificarme solo cuando alguien me mencione en los comentarios o descripción", - "old_password": "Contraseña anterior", - "general_settings": "Configuración general", - "sign_out": "Cerrar sesión", - "signing_out": "Cerrando sesión", - "active_cycles": "Ciclos activos", - "active_cycles_description": "Monitorea ciclos en todos los proyectos, rastrea elementos de trabajo de alta prioridad y enfócate en los ciclos que necesitan atención.", - "on_demand_snapshots_of_all_your_cycles": "Instantáneas bajo demanda de todos tus ciclos", - "upgrade": "Actualizar", - "10000_feet_view": "Vista panorámica de todos los ciclos activos.", - "10000_feet_view_description": "Aléjate para ver los ciclos en ejecución en todos tus proyectos a la vez en lugar de ir de Ciclo en Ciclo en cada proyecto.", - "get_snapshot_of_each_active_cycle": "Obtén una instantánea de cada ciclo activo.", - "get_snapshot_of_each_active_cycle_description": "Rastrea métricas de alto nivel para todos los ciclos activos, ve su estado de progreso y obtén una idea del alcance contra los plazos.", - "compare_burndowns": "Compara los burndowns.", - "compare_burndowns_description": "Monitorea cómo se está desempeñando cada uno de tus equipos con un vistazo al informe de burndown de cada ciclo.", - "quickly_see_make_or_break_issues": "Ve rápidamente los elementos de trabajo críticos.", - "quickly_see_make_or_break_issues_description": "Previsualiza elementos de trabajo de alta prioridad para cada ciclo contra fechas de vencimiento. Vélos todos por ciclo con un clic.", - "zoom_into_cycles_that_need_attention": "Enfócate en los ciclos que necesitan atención.", - "zoom_into_cycles_that_need_attention_description": "Investiga el estado de cualquier ciclo que no se ajuste a las expectativas con un clic.", - "stay_ahead_of_blockers": "Mantente adelante de los bloqueadores.", - "stay_ahead_of_blockers_description": "Detecta desafíos de un proyecto a otro y ve dependencias entre ciclos que no son obvias desde ninguna otra vista.", - "analytics": "Análisis", - "workspace_invites": "Invitaciones al espacio de trabajo", - "enter_god_mode": "Entrar en modo dios", - "workspace_logo": "Logo del espacio de trabajo", - "new_issue": "Nuevo elemento de trabajo", - "your_work": "Tu trabajo", - "workspace_dashboards": "Paneles de control", - "drafts": "Borradores", - "projects": "Proyectos", - "views": "Vistas", - "workspace": "Espacio de trabajo", - "archives": "Archivos", - "settings": "Configuración", - "failed_to_move_favorite": "Error al mover favorito", - "favorites": "Favoritos", - "no_favorites_yet": "Aún no hay favoritos", - "create_folder": "Crear carpeta", - "new_folder": "Nueva carpeta", - "favorite_updated_successfully": "Favorito actualizado exitosamente", - "favorite_created_successfully": "Favorito creado exitosamente", - "folder_already_exists": "La carpeta ya existe", - "folder_name_cannot_be_empty": "El nombre de la carpeta no puede estar vacío", - "something_went_wrong": "Algo salió mal", - "failed_to_reorder_favorite": "Error al reordenar favorito", - "favorite_removed_successfully": "Favorito eliminado exitosamente", - "failed_to_create_favorite": "Error al crear favorito", - "failed_to_rename_favorite": "Error al renombrar favorito", - "project_link_copied_to_clipboard": "Enlace del proyecto copiado al portapapeles", - "link_copied": "Enlace copiado", - "add_project": "Agregar proyecto", - "create_project": "Crear proyecto", - "failed_to_remove_project_from_favorites": "No se pudo eliminar el proyecto de favoritos. Por favor, inténtalo de nuevo.", - "project_created_successfully": "Proyecto creado exitosamente", - "project_created_successfully_description": "Proyecto creado exitosamente. Ahora puedes comenzar a agregar elementos de trabajo.", - "project_name_already_taken": "El nombre del proyecto ya está en uso.", - "project_identifier_already_taken": "El identificador del proyecto ya está en uso.", - "project_cover_image_alt": "Imagen de portada del proyecto", - "name_is_required": "El nombre es requerido", - "title_should_be_less_than_255_characters": "El título debe tener menos de 255 caracteres", - "project_name": "Nombre del proyecto", - "project_id_must_be_at_least_1_character": "El ID del proyecto debe tener al menos 1 carácter", - "project_id_must_be_at_most_5_characters": "El ID del proyecto debe tener como máximo 5 caracteres", - "project_id": "ID del proyecto", - "project_id_tooltip_content": "Te ayuda a identificar elementos de trabajo en el proyecto de manera única. Máximo 5 caracteres.", - "description_placeholder": "Descripción", - "only_alphanumeric_non_latin_characters_allowed": "Solo se permiten caracteres alfanuméricos y no latinos.", - "project_id_is_required": "El ID del proyecto es requerido", - "project_id_allowed_char": "Solo se permiten caracteres alfanuméricos y no latinos.", - "project_id_min_char": "El ID del proyecto debe tener al menos 1 carácter", - "project_id_max_char": "El ID del proyecto debe tener como máximo 5 caracteres", - "project_description_placeholder": "Ingresa la descripción del proyecto", - "select_network": "Seleccionar red", - "lead": "Líder", - "date_range": "Rango de fechas", - "private": "Privado", - "public": "Público", - "accessible_only_by_invite": "Accesible solo por invitación", - "anyone_in_the_workspace_except_guests_can_join": "Cualquiera en el espacio de trabajo excepto invitados puede unirse", - "creating": "Creando", - "creating_project": "Creando proyecto", - "adding_project_to_favorites": "Agregando proyecto a favoritos", - "project_added_to_favorites": "Proyecto agregado a favoritos", - "couldnt_add_the_project_to_favorites": "No se pudo agregar el proyecto a favoritos. Por favor, inténtalo de nuevo.", - "removing_project_from_favorites": "Eliminando proyecto de favoritos", - "project_removed_from_favorites": "Proyecto eliminado de favoritos", - "couldnt_remove_the_project_from_favorites": "No se pudo eliminar el proyecto de favoritos. Por favor, inténtalo de nuevo.", - "add_to_favorites": "Agregar a favoritos", - "remove_from_favorites": "Eliminar de favoritos", - "publish_project": "Publicar proyecto", - "publish": "Publicar", - "copy_link": "Copiar enlace", - "leave_project": "Abandonar proyecto", - "join_the_project_to_rearrange": "Únete al proyecto para reorganizar", - "drag_to_rearrange": "Arrastra para reorganizar", - "congrats": "¡Felicitaciones!", - "open_project": "Abrir proyecto", - "issues": "Elementos de trabajo", - "cycles": "Ciclos", - "modules": "Módulos", - "pages": "Páginas", - "intake": "Entrada", - "time_tracking": "Seguimiento de tiempo", - "work_management": "Gestión del trabajo", - "projects_and_issues": "Proyectos y elementos de trabajo", - "projects_and_issues_description": "Activa o desactiva estos en este proyecto.", - "cycles_description": "Organiza el trabajo por proyecto en períodos de tiempo y ajusta la duración según sea necesario. Un ciclo puede ser de 2 semanas y el siguiente de 1 semana.", - "modules_description": "Organiza el trabajo en subproyectos con líderes y responsables dedicados.", - "views_description": "Guarda ordenamientos, filtros y opciones de visualización personalizadas o compártelos con tu equipo.", - "pages_description": "Crea y edita contenido libre; notas, documentos, lo que sea.", - "intake_description": "Permite que personas ajenas al equipo compartan errores, comentarios y sugerencias sin interrumpir tu flujo de trabajo.", - "time_tracking_description": "Registra el tiempo dedicado a elementos de trabajo y proyectos.", - "work_management_description": "Gestiona tu trabajo y proyectos con facilidad.", - "documentation": "Documentación", - "message_support": "Mensaje al soporte", - "contact_sales": "Contactar ventas", - "hyper_mode": "Modo Hyper", - "keyboard_shortcuts": "Atajos de teclado", - "whats_new": "¿Qué hay de nuevo?", - "version": "Versión", - "we_are_having_trouble_fetching_the_updates": "Estamos teniendo problemas para obtener las actualizaciones.", - "our_changelogs": "nuestros registros de cambios", - "for_the_latest_updates": "para las últimas actualizaciones.", - "please_visit": "Por favor visita", - "docs": "Documentación", - "full_changelog": "Registro de cambios completo", - "support": "Soporte", - "discord": "Discord", - "powered_by_plane_pages": "Desarrollado por Plane Pages", - "please_select_at_least_one_invitation": "Por favor selecciona al menos una invitación.", - "please_select_at_least_one_invitation_description": "Por favor selecciona al menos una invitación para unirte al espacio de trabajo.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Vemos que alguien te ha invitado a unirte a un espacio de trabajo", - "join_a_workspace": "Únete a un espacio de trabajo", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Vemos que alguien te ha invitado a unirte a un espacio de trabajo", - "join_a_workspace_description": "Únete a un espacio de trabajo", - "accept_and_join": "Aceptar y unirse", - "go_home": "Ir a inicio", - "no_pending_invites": "No hay invitaciones pendientes", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Puedes ver aquí si alguien te invita a un espacio de trabajo", - "back_to_home": "Volver a inicio", - "workspace_name": "nombre-del-espacio-de-trabajo", - "deactivate_your_account": "Desactivar tu cuenta", - "deactivate_your_account_description": "Una vez desactivada, no se te podrán asignar elementos de trabajo ni se te facturará por tu espacio de trabajo. Para reactivar tu cuenta, necesitarás una invitación a un espacio de trabajo con esta dirección de correo electrónico.", - "deactivating": "Desactivando", - "confirm": "Confirmar", - "confirming": "Confirmando", - "draft_created": "Borrador creado", - "issue_created_successfully": "Elemento de trabajo creado exitosamente", - "draft_creation_failed": "Error al crear borrador", - "issue_creation_failed": "Error al crear elemento de trabajo", - "draft_issue": "Borrador de elemento de trabajo", - "issue_updated_successfully": "Elemento de trabajo actualizado exitosamente", - "issue_could_not_be_updated": "El elemento de trabajo no pudo ser actualizado", - "create_a_draft": "Crear un borrador", - "save_to_drafts": "Guardar en borradores", - "save": "Guardar", - "update": "Actualizar", - "updating": "Actualizando", - "create_new_issue": "Crear nuevo elemento de trabajo", - "editor_is_not_ready_to_discard_changes": "El editor no está listo para descartar cambios", - "failed_to_move_issue_to_project": "Error al mover elemento de trabajo al proyecto", - "create_more": "Crear más", - "add_to_project": "Agregar al proyecto", - "discard": "Descartar", - "duplicate_issue_found": "Se encontró un elemento de trabajo duplicado", - "duplicate_issues_found": "Se encontraron elementos de trabajo duplicados", - "no_matching_results": "No hay resultados coincidentes", - "title_is_required": "El título es requerido", - "title": "Título", - "state": "Estado", - "priority": "Prioridad", - "none": "Ninguno", - "urgent": "Urgente", - "high": "Alta", - "medium": "Media", - "low": "Baja", - "members": "Miembros", - "assignee": "Asignado", - "assignees": "Asignados", - "you": "Tú", - "labels": "Etiquetas", - "create_new_label": "Crear nueva etiqueta", - "start_date": "Fecha de inicio", - "end_date": "Fecha de fin", - "due_date": "Fecha de vencimiento", - "estimate": "Estimación", - "change_parent_issue": "Cambiar elemento de trabajo padre", - "remove_parent_issue": "Eliminar elemento de trabajo padre", - "add_parent": "Agregar padre", - "loading_members": "Cargando miembros", - "view_link_copied_to_clipboard": "Enlace de vista copiado al portapapeles.", - "required": "Requerido", - "optional": "Opcional", - "Cancel": "Cancelar", - "edit": "Editar", - "archive": "Archivar", - "restore": "Restaurar", - "open_in_new_tab": "Abrir en nueva pestaña", - "delete": "Eliminar", - "deleting": "Eliminando", - "make_a_copy": "Hacer una copia", - "move_to_project": "Mover al proyecto", - "good": "Buenos", - "morning": "días", - "afternoon": "tardes", - "evening": "noches", - "show_all": "Mostrar todo", - "show_less": "Mostrar menos", - "no_data_yet": "Aún no hay datos", - "syncing": "Sincronizando", - "add_work_item": "Agregar elemento de trabajo", - "advanced_description_placeholder": "Presiona '/' para comandos", - "create_work_item": "Crear elemento de trabajo", - "attachments": "Archivos adjuntos", - "declining": "Rechazando", - "declined": "Rechazado", - "decline": "Rechazar", - "unassigned": "Sin asignar", - "work_items": "Elementos de trabajo", - "add_link": "Agregar enlace", - "points": "Puntos", - "no_assignee": "Sin asignado", - "no_assignees_yet": "Aún no hay asignados", - "no_labels_yet": "Aún no hay etiquetas", - "ideal": "Ideal", - "current": "Actual", - "no_matching_members": "No hay miembros coincidentes", - "leaving": "Abandonando", - "removing": "Eliminando", - "leave": "Abandonar", - "refresh": "Actualizar", - "refreshing": "Actualizando", - "refresh_status": "Actualizar estado", - "prev": "Anterior", - "next": "Siguiente", - "re_generating": "Regenerando", - "re_generate": "Regenerar", - "re_generate_key": "Regenerar clave", - "export": "Exportar", - "member": "{count, plural, one{# miembro} other{# miembros}}", - "new_password_must_be_different_from_old_password": "La nueva contraseña debe ser diferente a la contraseña anterior", - "edited": "Modificado", - "bot": "Bot", - "project_view": { - "sort_by": { - "created_at": "Creado el", - "updated_at": "Actualizado el", - "name": "Nombre" - } - }, - "toast": { - "success": "¡Éxito!", - "error": "¡Error!" - }, - "links": { - "toasts": { - "created": { - "title": "Enlace creado", - "message": "El enlace se ha creado correctamente" - }, - "not_created": { - "title": "Enlace no creado", - "message": "No se pudo crear el enlace" - }, - "updated": { - "title": "Enlace actualizado", - "message": "El enlace se ha actualizado correctamente" - }, - "not_updated": { - "title": "Enlace no actualizado", - "message": "No se pudo actualizar el enlace" - }, - "removed": { - "title": "Enlace eliminado", - "message": "El enlace se ha eliminado correctamente" - }, - "not_removed": { - "title": "Enlace no eliminado", - "message": "No se pudo eliminar el enlace" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Guía de inicio rápido", - "not_right_now": "Ahora no", - "create_project": { - "title": "Crear un proyecto", - "description": "La mayoría de las cosas comienzan con un proyecto en Plane.", - "cta": "Comenzar" - }, - "invite_team": { - "title": "Invita a tu equipo", - "description": "Construye, implementa y gestiona con compañeros de trabajo.", - "cta": "Hazlos entrar" - }, - "configure_workspace": { - "title": "Configura tu espacio de trabajo.", - "description": "Activa o desactiva funciones o ve más allá.", - "cta": "Configurar este espacio de trabajo" - }, - "personalize_account": { - "title": "Haz Plane tuyo.", - "description": "Elige tu foto, colores y más.", - "cta": "Personalizar ahora" - }, - "widgets": { - "title": "Está Silencioso Sin Widgets, Actívalos", - "description": "Parece que todos tus widgets están desactivados. ¡Actívalos\nahora para mejorar tu experiencia!", - "primary_button": { - "text": "Gestionar widgets" - } - } - }, - "quick_links": { - "empty": "Guarda enlaces a cosas de trabajo que te gustaría tener a mano.", - "add": "Agregar enlace rápido", - "title": "Enlace rápido", - "title_plural": "Enlaces rápidos" - }, - "recents": { - "title": "Recientes", - "empty": { - "project": "Tus proyectos recientes aparecerán aquí una vez que visites uno.", - "page": "Tus páginas recientes aparecerán aquí una vez que visites una.", - "issue": "Tus elementos de trabajo recientes aparecerán aquí una vez que visites uno.", - "default": "Aún no tienes elementos recientes." - }, - "filters": { - "all": "Todos", - "projects": "Proyectos", - "pages": "Páginas", - "issues": "Elementos de trabajo" - } - }, - "new_at_plane": { - "title": "Nuevo en Plane" - }, - "quick_tutorial": { - "title": "Tutorial rápido" - }, - "widget": { - "reordered_successfully": "Widget reordenado correctamente.", - "reordering_failed": "Ocurrió un error al reordenar el widget." - }, - "manage_widgets": "Gestionar widgets", - "title": "Inicio", - "star_us_on_github": "Danos una estrella en GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "La URL no es válida", - "placeholder": "Escribe o pega una URL" - }, - "title": { - "text": "Título a mostrar", - "placeholder": "Cómo te gustaría ver este enlace" - } - } - }, - "common": { - "all": "Todo", - "states": "Estados", - "state": "Estado", - "state_groups": "Grupos de estados", - "state_group": "Grupos de estado", - "priorities": "Prioridades", - "priority": "Prioridad", - "team_project": "Proyecto de equipo", - "project": "Proyecto", - "cycle": "Ciclo", - "cycles": "Ciclos", - "module": "Módulo", - "modules": "Módulos", - "labels": "Etiquetas", - "label": "Etiqueta", - "assignees": "Asignados", - "assignee": "Asignado", - "created_by": "Creado por", - "none": "Ninguno", - "link": "Enlace", - "estimates": "Estimaciones", - "estimate": "Estimación", - "created_at": "Creado en", - "completed_at": "Completado en", - "layout": "Diseño", - "filters": "Filtros", - "display": "Mostrar", - "load_more": "Cargar más", - "activity": "Actividad", - "analytics": "Análisis", - "dates": "Fechas", - "success": "¡Éxito!", - "something_went_wrong": "Algo salió mal", - "error": { - "label": "¡Error!", - "message": "Ocurrió un error. Por favor, inténtalo de nuevo." - }, - "group_by": "Agrupar por", - "epic": "Epic", - "epics": "Epics", - "work_item": "Elemento de trabajo", - "work_items": "Elementos de trabajo", - "sub_work_item": "Sub-elemento de trabajo", - "add": "Agregar", - "warning": "Advertencia", - "updating": "Actualizando", - "adding": "Agregando", - "update": "Actualizar", - "creating": "Creando", - "create": "Crear", - "cancel": "Cancelar", - "description": "Descripción", - "title": "Título", - "attachment": "Archivo adjunto", - "general": "General", - "features": "Características", - "automation": "Automatización", - "project_name": "Nombre del proyecto", - "project_id": "ID del proyecto", - "project_timezone": "Zona horaria del proyecto", - "created_on": "Creado el", - "update_project": "Actualizar proyecto", - "identifier_already_exists": "El identificador ya existe", - "add_more": "Agregar más", - "defaults": "Valores predeterminados", - "add_label": "Agregar etiqueta", - "customize_time_range": "Personalizar rango de tiempo", - "loading": "Cargando", - "attachments": "Archivos adjuntos", - "property": "Propiedad", - "properties": "Propiedades", - "parent": "Padre", - "page": "página", - "remove": "Eliminar", - "archiving": "Archivando", - "archive": "Archivar", - "access": { - "public": "Público", - "private": "Privado" - }, - "done": "Hecho", - "sub_work_items": "Sub-elementos de trabajo", - "comment": "Comentario", - "workspace_level": "Nivel de espacio de trabajo", - "order_by": { - "label": "Ordenar por", - "manual": "Manual", - "last_created": "Último creado", - "last_updated": "Última actualización", - "start_date": "Fecha de inicio", - "due_date": "Fecha de vencimiento", - "asc": "Ascendente", - "desc": "Descendente", - "updated_on": "Actualizado el" - }, - "sort": { - "asc": "Ascendente", - "desc": "Descendente", - "created_on": "Creado el", - "updated_on": "Actualizado el" - }, - "comments": "Comentarios", - "updates": "Actualizaciones", - "clear_all": "Limpiar todo", - "copied": "¡Copiado!", - "link_copied": "¡Enlace copiado!", - "link_copied_to_clipboard": "Enlace copiado al portapapeles", - "copied_to_clipboard": "Enlace del elemento de trabajo copiado al portapapeles", - "is_copied_to_clipboard": "El elemento de trabajo está copiado al portapapeles", - "no_links_added_yet": "Aún no se han agregado enlaces", - "add_link": "Agregar enlace", - "links": "Enlaces", - "go_to_workspace": "Ir al espacio de trabajo", - "progress": "Progreso", - "optional": "Opcional", - "join": "Unirse", - "go_back": "Volver", - "continue": "Continuar", - "resend": "Reenviar", - "relations": "Relaciones", - "errors": { - "default": { - "title": "¡Error!", - "message": "Algo salió mal. Por favor, inténtalo de nuevo." - }, - "required": "Este campo es obligatorio", - "entity_required": "{entity} es obligatorio", - "restricted_entity": "{entity} está restringido" - }, - "update_link": "Actualizar enlace", - "attach": "Adjuntar", - "create_new": "Crear nuevo", - "add_existing": "Agregar existente", - "type_or_paste_a_url": "Escribe o pega una URL", - "url_is_invalid": "La URL no es válida", - "display_title": "Título a mostrar", - "link_title_placeholder": "Cómo te gustaría ver este enlace", - "url": "URL", - "side_peek": "Vista lateral", - "modal": "Modal", - "full_screen": "Pantalla completa", - "close_peek_view": "Cerrar la vista previa", - "toggle_peek_view_layout": "Alternar diseño de vista previa", - "options": "Opciones", - "duration": "Duración", - "today": "Hoy", - "week": "Semana", - "month": "Mes", - "quarter": "Trimestre", - "press_for_commands": "Presiona '/' para comandos", - "click_to_add_description": "Haz clic para agregar descripción", - "search": { - "label": "Buscar", - "placeholder": "Escribe para buscar", - "no_matches_found": "No se encontraron coincidencias", - "no_matching_results": "No hay resultados coincidentes" - }, - "actions": { - "edit": "Editar", - "make_a_copy": "Hacer una copia", - "open_in_new_tab": "Abrir en nueva pestaña", - "copy_link": "Copiar enlace", - "archive": "Archivar", - "delete": "Eliminar", - "remove_relation": "Eliminar relación", - "subscribe": "Suscribirse", - "unsubscribe": "Cancelar suscripción", - "clear_sorting": "Limpiar ordenamiento", - "show_weekends": "Mostrar fines de semana", - "enable": "Habilitar", - "disable": "Deshabilitar" - }, - "name": "Nombre", - "discard": "Descartar", - "confirm": "Confirmar", - "confirming": "Confirmando", - "read_the_docs": "Leer la documentación", - "default": "Predeterminado", - "active": "Activo", - "enabled": "Habilitado", - "disabled": "Deshabilitado", - "mandate": "Mandato", - "mandatory": "Obligatorio", - "yes": "Sí", - "no": "No", - "please_wait": "Por favor espera", - "enabling": "Habilitando", - "disabling": "Deshabilitando", - "beta": "Beta", - "or": "o", - "next": "Siguiente", - "back": "Atrás", - "cancelling": "Cancelando", - "configuring": "Configurando", - "clear": "Limpiar", - "import": "Importar", - "connect": "Conectar", - "authorizing": "Autorizando", - "processing": "Procesando", - "no_data_available": "No hay datos disponibles", - "from": "de {name}", - "authenticated": "Autenticado", - "select": "Seleccionar", - "upgrade": "Mejorar", - "add_seats": "Agregar asientos", - "projects": "Proyectos", - "workspace": "Espacio de trabajo", - "workspaces": "Espacios de trabajo", - "team": "Equipo", - "teams": "Equipos", - "entity": "Entidad", - "entities": "Entidades", - "task": "Tarea", - "tasks": "Tareas", - "section": "Sección", - "sections": "Secciones", - "edit": "Editar", - "connecting": "Conectando", - "connected": "Conectado", - "disconnect": "Desconectar", - "disconnecting": "Desconectando", - "installing": "Instalando", - "install": "Instalar", - "reset": "Reiniciar", - "live": "En vivo", - "change_history": "Historial de cambios", - "coming_soon": "Próximamente", - "member": "Miembro", - "members": "Miembros", - "you": "Tú", - "upgrade_cta": { - "higher_subscription": "Mejorar a una suscripción más alta", - "talk_to_sales": "Hablar con ventas" - }, - "category": "Categoría", - "categories": "Categorías", - "saving": "Guardando", - "save_changes": "Guardar cambios", - "delete": "Eliminar", - "deleting": "Eliminando", - "pending": "Pendiente", - "invite": "Invitar", - "view": "Ver", - "deactivated_user": "Usuario desactivado", - "apply": "Aplicar", - "applying": "Aplicando", - "users": "Usuarios", - "admins": "Administradores", - "guests": "Invitados", - "on_track": "En camino", - "off_track": "Fuera de camino", - "at_risk": "En riesgo", - "timeline": "Cronograma", - "completion": "Finalización", - "upcoming": "Próximo", - "completed": "Completado", - "in_progress": "En progreso", - "planned": "Planificado", - "paused": "Pausado", - "no_of": "N.º de {entity}", - "resolved": "Resuelto" - }, - "chart": { - "x_axis": "Eje X", - "y_axis": "Eje Y", - "metric": "Métrica" - }, - "form": { - "title": { - "required": "El título es obligatorio", - "max_length": "El título debe tener menos de {length} caracteres" - } - }, - "entity": { - "grouping_title": "Agrupación de {entity}", - "priority": "Prioridad de {entity}", - "all": "Todos los {entity}", - "drop_here_to_move": "Suelta aquí para mover el {entity}", - "delete": { - "label": "Eliminar {entity}", - "success": "{entity} eliminado correctamente", - "failed": "Error al eliminar {entity}" - }, - "update": { - "failed": "Error al actualizar {entity}", - "success": "{entity} actualizado correctamente" - }, - "link_copied_to_clipboard": "Enlace de {entity} copiado al portapapeles", - "fetch": { - "failed": "Error al obtener {entity}" - }, - "add": { - "success": "{entity} agregado correctamente", - "failed": "Error al agregar {entity}" - }, - "remove": { - "success": "{entity} eliminado correctamente", - "failed": "Error al eliminar {entity}" - } - }, - "epic": { - "all": "Todos los Epics", - "label": "{count, plural, one {Epic} other {Epics}}", - "new": "Nuevo Epic", - "adding": "Agregando epic", - "create": { - "success": "Epic creado correctamente" - }, - "add": { - "press_enter": "Presiona 'Enter' para agregar otro epic", - "label": "Agregar Epic" - }, - "title": { - "label": "Título del Epic", - "required": "El título del epic es obligatorio." - } - }, - "issue": { - "label": "{count, plural, one {Elemento de trabajo} other {Elementos de trabajo}}", - "all": "Todos los elementos de trabajo", - "edit": "Editar elemento de trabajo", - "title": { - "label": "Título del elemento de trabajo", - "required": "El título del elemento de trabajo es obligatorio." - }, - "add": { - "press_enter": "Presiona 'Enter' para agregar otro elemento de trabajo", - "label": "Agregar elemento de trabajo", - "cycle": { - "failed": "No se pudo agregar el elemento de trabajo al ciclo. Por favor, inténtalo de nuevo.", - "success": "{count, plural, one {Elemento de trabajo agregado} other {Elementos de trabajo agregados}} al ciclo correctamente.", - "loading": "Agregando {count, plural, one {elemento de trabajo} other {elementos de trabajo}} al ciclo" - }, - "assignee": "Agregar asignados", - "start_date": "Agregar fecha de inicio", - "due_date": "Agregar fecha de vencimiento", - "parent": "Agregar elemento de trabajo padre", - "sub_issue": "Agregar sub-elemento de trabajo", - "relation": "Agregar relación", - "link": "Agregar enlace", - "existing": "Agregar elemento de trabajo existente" - }, - "remove": { - "label": "Eliminar elemento de trabajo", - "cycle": { - "loading": "Eliminando elemento de trabajo del ciclo", - "success": "Elemento de trabajo eliminado del ciclo correctamente.", - "failed": "No se pudo eliminar el elemento de trabajo del ciclo. Por favor, inténtalo de nuevo." - }, - "module": { - "loading": "Eliminando elemento de trabajo del módulo", - "success": "Elemento de trabajo eliminado del módulo correctamente.", - "failed": "No se pudo eliminar el elemento de trabajo del módulo. Por favor, inténtalo de nuevo." - }, - "parent": { - "label": "Eliminar elemento de trabajo padre" - } - }, - "new": "Nuevo elemento de trabajo", - "adding": "Agregando elemento de trabajo", - "create": { - "success": "Elemento de trabajo creado correctamente" - }, - "priority": { - "urgent": "Urgente", - "high": "Alta", - "medium": "Media", - "low": "Baja" - }, - "display": { - "properties": { - "label": "Mostrar propiedades", - "id": "ID", - "issue_type": "Tipo de elemento de trabajo", - "sub_issue_count": "Cantidad de sub-elementos", - "attachment_count": "Cantidad de archivos adjuntos", - "created_on": "Creado el", - "sub_issue": "Sub-elemento de trabajo", - "work_item_count": "Recuento de elementos de trabajo" - }, - "extra": { - "show_sub_issues": "Mostrar sub-elementos", - "show_empty_groups": "Mostrar grupos vacíos" - } - }, - "layouts": { - "ordered_by_label": "Este diseño está ordenado por", - "list": "Lista", - "kanban": "Tablero", - "calendar": "Calendario", - "spreadsheet": "Tabla", - "gantt": "Línea de tiempo", - "title": { - "list": "Diseño de lista", - "kanban": "Diseño de tablero", - "calendar": "Diseño de calendario", - "spreadsheet": "Diseño de tabla", - "gantt": "Diseño de línea de tiempo" - } - }, - "states": { - "active": "Activo", - "backlog": "Pendientes" - }, - "comments": { - "placeholder": "Agregar comentario", - "switch": { - "private": "Cambiar a comentario privado", - "public": "Cambiar a comentario público" - }, - "create": { - "success": "Comentario creado correctamente", - "error": "Error al crear el comentario. Por favor, inténtalo más tarde." - }, - "update": { - "success": "Comentario actualizado correctamente", - "error": "Error al actualizar el comentario. Por favor, inténtalo más tarde." - }, - "remove": { - "success": "Comentario eliminado correctamente", - "error": "Error al eliminar el comentario. Por favor, inténtalo más tarde." - }, - "upload": { - "error": "Error al subir el archivo. Por favor, inténtalo más tarde." - }, - "copy_link": { - "success": "Enlace del comentario copiado al portapapeles", - "error": "Error al copiar el enlace del comentario. Inténtelo de nuevo más tarde." - } - }, - "empty_state": { - "issue_detail": { - "title": "El elemento de trabajo no existe", - "description": "El elemento de trabajo que buscas no existe, ha sido archivado o ha sido eliminado.", - "primary_button": { - "text": "Ver otros elementos de trabajo" - } - } - }, - "sibling": { - "label": "Elementos de trabajo hermanos" - }, - "archive": { - "description": "Solo los elementos de trabajo completados\no cancelados pueden ser archivados", - "label": "Archivar elemento de trabajo", - "confirm_message": "¿Estás seguro de que quieres archivar el elemento de trabajo? Todos tus elementos archivados pueden ser restaurados más tarde.", - "success": { - "label": "Archivo exitoso", - "message": "Tus archivos se pueden encontrar en los archivos del proyecto." - }, - "failed": { - "message": "No se pudo archivar el elemento de trabajo. Por favor, inténtalo de nuevo." - } - }, - "restore": { - "success": { - "title": "Restauración exitosa", - "message": "Tu elemento de trabajo se puede encontrar en los elementos de trabajo del proyecto." - }, - "failed": { - "message": "No se pudo restaurar el elemento de trabajo. Por favor, inténtalo de nuevo." - } - }, - "relation": { - "relates_to": "Se relaciona con", - "duplicate": "Duplicado de", - "blocked_by": "Bloqueado por", - "blocking": "Bloqueando" - }, - "copy_link": "Copiar enlace del elemento de trabajo", - "delete": { - "label": "Eliminar elemento de trabajo", - "error": "Error al eliminar el elemento de trabajo" - }, - "subscription": { - "actions": { - "subscribed": "Suscrito al elemento de trabajo correctamente", - "unsubscribed": "Desuscrito del elemento de trabajo correctamente" - } - }, - "select": { - "error": "Por favor selecciona al menos un elemento de trabajo", - "empty": "No hay elementos de trabajo seleccionados", - "add_selected": "Agregar elementos seleccionados", - "select_all": "Seleccionar todo", - "deselect_all": "Deseleccionar todo" - }, - "open_in_full_screen": "Abrir elemento de trabajo en pantalla completa" - }, - "attachment": { - "error": "No se pudo adjuntar el archivo. Intenta subirlo de nuevo.", - "only_one_file_allowed": "Solo se puede subir un archivo a la vez.", - "file_size_limit": "El archivo debe tener {size}MB o menos de tamaño.", - "drag_and_drop": "Arrastra y suelta en cualquier lugar para subir", - "delete": "Eliminar archivo adjunto" - }, - "label": { - "select": "Seleccionar etiqueta", - "create": { - "success": "Etiqueta creada correctamente", - "failed": "Error al crear la etiqueta", - "already_exists": "La etiqueta ya existe", - "type": "Escribe para agregar una nueva etiqueta" - } - }, - "sub_work_item": { - "update": { - "success": "Sub-elemento actualizado correctamente", - "error": "Error al actualizar el sub-elemento" - }, - "remove": { - "success": "Sub-elemento eliminado correctamente", - "error": "Error al eliminar el sub-elemento" - }, - "empty_state": { - "sub_list_filters": { - "title": "No tienes sub-elementos de trabajo que coincidan con los filtros que has aplicado.", - "description": "Para ver todos los sub-elementos de trabajo, elimina todos los filtros aplicados.", - "action": "Eliminar filtros" - }, - "list_filters": { - "title": "No tienes elementos de trabajo que coincidan con los filtros que has aplicado.", - "description": "Para ver todos los elementos de trabajo, elimina todos los filtros aplicados.", - "action": "Eliminar filtros" - } - } - }, - "view": { - "label": "{count, plural, one {Vista} other {Vistas}}", - "create": { - "label": "Crear vista" - }, - "update": { - "label": "Actualizar vista" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Pendiente", - "description": "Pendiente" - }, - "declined": { - "title": "Rechazado", - "description": "Rechazado" - }, - "snoozed": { - "title": "Pospuesto", - "description": "Faltan {days, plural, one{# día} other{# días}}" - }, - "accepted": { - "title": "Aceptado", - "description": "Aceptado" - }, - "duplicate": { - "title": "Duplicado", - "description": "Duplicado" - } - }, - "modals": { - "decline": { - "title": "Rechazar elemento de trabajo", - "content": "¿Estás seguro de que quieres rechazar el elemento de trabajo {value}?" - }, - "delete": { - "title": "Eliminar elemento de trabajo", - "content": "¿Estás seguro de que quieres eliminar el elemento de trabajo {value}?", - "success": "Elemento de trabajo eliminado correctamente" - } - }, - "errors": { - "snooze_permission": "Solo los administradores del proyecto pueden posponer/desposponer elementos de trabajo", - "accept_permission": "Solo los administradores del proyecto pueden aceptar elementos de trabajo", - "decline_permission": "Solo los administradores del proyecto pueden rechazar elementos de trabajo" - }, - "actions": { - "accept": "Aceptar", - "decline": "Rechazar", - "snooze": "Posponer", - "unsnooze": "Desposponer", - "copy": "Copiar enlace del elemento de trabajo", - "delete": "Eliminar", - "open": "Abrir elemento de trabajo", - "mark_as_duplicate": "Marcar como duplicado", - "move": "Mover {value} a elementos de trabajo del proyecto" - }, - "source": { - "in-app": "en-app" - }, - "order_by": { - "created_at": "Creado el", - "updated_at": "Actualizado el", - "id": "ID" - }, - "label": "Intake", - "page_label": "{workspace} - Intake", - "modal": { - "title": "Crear elemento de trabajo de intake" - }, - "tabs": { - "open": "Abiertos", - "closed": "Cerrados" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "No hay elementos de trabajo abiertos", - "description": "Encuentra elementos de trabajo abiertos aquí. Crea un nuevo elemento de trabajo." - }, - "sidebar_closed_tab": { - "title": "No hay elementos de trabajo cerrados", - "description": "Todos los elementos de trabajo, ya sean aceptados o rechazados, se pueden encontrar aquí." - }, - "sidebar_filter": { - "title": "No hay elementos de trabajo coincidentes", - "description": "Ningún elemento de trabajo coincide con el filtro aplicado en intake. Crea un nuevo elemento de trabajo." - }, - "detail": { - "title": "Selecciona un elemento de trabajo para ver sus detalles." - } - } - }, - "workspace_creation": { - "heading": "Crea tu espacio de trabajo", - "subheading": "Para comenzar a usar Plane, necesitas crear o unirte a un espacio de trabajo.", - "form": { - "name": { - "label": "Nombra tu espacio de trabajo", - "placeholder": "Algo familiar y reconocible es siempre lo mejor." - }, - "url": { - "label": "Establece la URL de tu espacio de trabajo", - "placeholder": "Escribe o pega una URL", - "edit_slug": "Solo puedes editar el slug de la URL" - }, - "organization_size": { - "label": "¿Cuántas personas usarán este espacio de trabajo?", - "placeholder": "Selecciona un rango" - } - }, - "errors": { - "creation_disabled": { - "title": "Solo el administrador de tu instancia puede crear espacios de trabajo", - "description": "Si conoces la dirección de correo electrónico del administrador de tu instancia, haz clic en el botón de abajo para ponerte en contacto con él.", - "request_button": "Solicitar administrador de instancia" - }, - "validation": { - "name_alphanumeric": "Los nombres de espacios de trabajo solo pueden contener (' '), ('-'), ('_') y caracteres alfanuméricos.", - "name_length": "Limita tu nombre a 80 caracteres.", - "url_alphanumeric": "Las URLs solo pueden contener ('-') y caracteres alfanuméricos.", - "url_length": "Limita tu URL a 48 caracteres.", - "url_already_taken": "¡La URL del espacio de trabajo ya está en uso!" - } - }, - "request_email": { - "subject": "Solicitando un nuevo espacio de trabajo", - "body": "Hola administrador(es) de instancia,\n\nPor favor, crea un nuevo espacio de trabajo con la URL [/nombre-espacio-trabajo] para [propósito de crear el espacio de trabajo].\n\nGracias,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Crear espacio de trabajo", - "loading": "Creando espacio de trabajo" - }, - "toast": { - "success": { - "title": "Éxito", - "message": "Espacio de trabajo creado correctamente" - }, - "error": { - "title": "Error", - "message": "No se pudo crear el espacio de trabajo. Por favor, inténtalo de nuevo." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Resumen de tus proyectos, actividad y métricas", - "description": "Bienvenido a Plane, estamos emocionados de tenerte aquí. Crea tu primer proyecto y rastrea tus elementos de trabajo, y esta página se transformará en un espacio que te ayuda a progresar. Los administradores también verán elementos que ayudan a su equipo a progresar.", - "primary_button": { - "text": "Construye tu primer proyecto", - "comic": { - "title": "Todo comienza con un proyecto en Plane", - "description": "Un proyecto podría ser la hoja de ruta de un producto, una campaña de marketing o el lanzamiento de un nuevo automóvil." - } - } - } - } - }, - "workspace_analytics": { - "label": "Análisis", - "page_label": "{workspace} - Análisis", - "open_tasks": "Total de tareas abiertas", - "error": "Hubo un error al obtener los datos.", - "work_items_closed_in": "Elementos de trabajo cerrados en", - "selected_projects": "Proyectos seleccionados", - "total_members": "Total de miembros", - "total_cycles": "Total de Ciclos", - "total_modules": "Total de Módulos", - "pending_work_items": { - "title": "Elementos de trabajo pendientes", - "empty_state": "El análisis de elementos de trabajo pendientes por compañeros aparece aquí." - }, - "work_items_closed_in_a_year": { - "title": "Elementos de trabajo cerrados en un año", - "empty_state": "Cierra elementos de trabajo para ver su análisis en forma de gráfico." - }, - "most_work_items_created": { - "title": "Más elementos de trabajo creados", - "empty_state": "Los compañeros y el número de elementos de trabajo creados por ellos aparecen aquí." - }, - "most_work_items_closed": { - "title": "Más elementos de trabajo cerrados", - "empty_state": "Los compañeros y el número de elementos de trabajo cerrados por ellos aparecen aquí." - }, - "tabs": { - "scope_and_demand": "Alcance y Demanda", - "custom": "Análisis Personalizado" - }, - "empty_state": { - "customized_insights": { - "description": "Los elementos de trabajo asignados a ti, desglosados por estado, aparecerán aquí.", - "title": "Aún no hay datos" - }, - "created_vs_resolved": { - "description": "Los elementos de trabajo creados y resueltos con el tiempo aparecerán aquí.", - "title": "Aún no hay datos" - }, - "project_insights": { - "title": "Aún no hay datos", - "description": "Los elementos de trabajo asignados a ti, desglosados por estado, aparecerán aquí." - }, - "general": { - "title": "Rastrea el progreso, las cargas de trabajo y las asignaciones. Identifica tendencias, elimina bloqueos y trabaja más rápido", - "description": "Ve alcance versus demanda, estimaciones y crecimiento del alcance. Obtén rendimiento por miembros del equipo y equipos, y asegúrate de que tu proyecto se ejecute a tiempo.", - "primary_button": { - "text": "Inicia tu primer proyecto", - "comic": { - "title": "Analytics funciona mejor con Ciclos + Módulos", - "description": "Primero, encuadra tus elementos de trabajo en Ciclos y, si puedes, agrupa elementos que abarcan más de un ciclo en Módulos. Revisa ambos en la navegación izquierda." - } - } - } - }, - "created_vs_resolved": "Creado vs Resuelto", - "customized_insights": "Información personalizada", - "backlog_work_items": "{entity} en backlog", - "active_projects": "Proyectos activos", - "trend_on_charts": "Tendencia en gráficos", - "all_projects": "Todos los proyectos", - "summary_of_projects": "Resumen de proyectos", - "project_insights": "Información del proyecto", - "started_work_items": "{entity} iniciados", - "total_work_items": "Total de {entity}", - "total_projects": "Total de proyectos", - "total_admins": "Total de administradores", - "total_users": "Total de usuarios", - "total_intake": "Ingreso total", - "un_started_work_items": "{entity} no iniciados", - "total_guests": "Total de invitados", - "completed_work_items": "{entity} completados", - "total": "Total de {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Proyecto} other {Proyectos}}", - "create": { - "label": "Agregar Proyecto" - }, - "network": { - "private": { - "title": "Privado", - "description": "Accesible solo por invitación" - }, - "public": { - "title": "Público", - "description": "Cualquiera en el espacio de trabajo excepto Invitados puede unirse" - } - }, - "error": { - "permission": "No tienes permiso para realizar esta acción.", - "cycle_delete": "Error al eliminar el ciclo", - "module_delete": "Error al eliminar el módulo", - "issue_delete": "Error al eliminar el elemento de trabajo" - }, - "state": { - "backlog": "Pendiente", - "unstarted": "Sin iniciar", - "started": "Iniciado", - "completed": "Completado", - "cancelled": "Cancelado" - }, - "sort": { - "manual": "Manual", - "name": "Nombre", - "created_at": "Fecha de creación", - "members_length": "Número de miembros" - }, - "scope": { - "my_projects": "Mis proyectos", - "archived_projects": "Archivados" - }, - "common": { - "months_count": "{months, plural, one{# mes} other{# meses}}" - }, - "empty_state": { - "general": { - "title": "No hay proyectos activos", - "description": "Piensa en cada proyecto como el padre para el trabajo orientado a objetivos. Los proyectos son donde viven las Tareas, Ciclos y Módulos y, junto con tus colegas, te ayudan a alcanzar ese objetivo. Crea un nuevo proyecto o filtra por proyectos archivados.", - "primary_button": { - "text": "Inicia tu primer proyecto", - "comic": { - "title": "Todo comienza con un proyecto en Plane", - "description": "Un proyecto podría ser la hoja de ruta de un producto, una campaña de marketing o el lanzamiento de un nuevo automóvil." - } - } - }, - "no_projects": { - "title": "Sin proyecto", - "description": "Para crear elementos de trabajo o gestionar tu trabajo, necesitas crear un proyecto o ser parte de uno.", - "primary_button": { - "text": "Inicia tu primer proyecto", - "comic": { - "title": "Todo comienza con un proyecto en Plane", - "description": "Un proyecto podría ser la hoja de ruta de un producto, una campaña de marketing o el lanzamiento de un nuevo automóvil." - } - } - }, - "filter": { - "title": "No hay proyectos coincidentes", - "description": "No se detectaron proyectos con los criterios coincidentes. \n Crea un nuevo proyecto en su lugar." - }, - "search": { - "description": "No se detectaron proyectos con los criterios coincidentes.\nCrea un nuevo proyecto en su lugar" - } - } - }, - "workspace_views": { - "add_view": "Agregar vista", - "empty_state": { - "all-issues": { - "title": "No hay elementos de trabajo en el proyecto", - "description": "¡Primer proyecto completado! Ahora, divide tu trabajo en piezas rastreables con elementos de trabajo. ¡Vamos!", - "primary_button": { - "text": "Crear nuevo elemento de trabajo" - } - }, - "assigned": { - "title": "No hay elementos de trabajo aún", - "description": "Los elementos de trabajo asignados a ti se pueden rastrear desde aquí.", - "primary_button": { - "text": "Crear nuevo elemento de trabajo" - } - }, - "created": { - "title": "No hay elementos de trabajo aún", - "description": "Todos los elementos de trabajo creados por ti vienen aquí, rastréalos aquí directamente.", - "primary_button": { - "text": "Crear nuevo elemento de trabajo" - } - }, - "subscribed": { - "title": "No hay elementos de trabajo aún", - "description": "Suscríbete a los elementos de trabajo que te interesan, rastréalos todos aquí." - }, - "custom-view": { - "title": "No hay elementos de trabajo aún", - "description": "Elementos de trabajo que aplican a los filtros, rastréalos todos aquí." - } - } - }, - "workspace_settings": { - "label": "Configuración del espacio de trabajo", - "page_label": "{workspace} - Configuración general", - "key_created": "Clave creada", - "copy_key": "Copia y guarda esta clave secreta en Plane Pages. No podrás ver esta clave después de hacer clic en Cerrar. Se ha descargado un archivo CSV que contiene la clave.", - "token_copied": "Token copiado al portapapeles.", - "settings": { - "general": { - "title": "General", - "upload_logo": "Subir logo", - "edit_logo": "Editar logo", - "name": "Nombre del espacio de trabajo", - "company_size": "Tamaño de la empresa", - "url": "URL del espacio de trabajo", - "update_workspace": "Actualizar espacio de trabajo", - "delete_workspace": "Eliminar este espacio de trabajo", - "delete_workspace_description": "Al eliminar un espacio de trabajo, todos los datos y recursos dentro de ese espacio se eliminarán permanentemente y no podrán recuperarse.", - "delete_btn": "Eliminar este espacio de trabajo", - "delete_modal": { - "title": "¿Está seguro de que desea eliminar este espacio de trabajo?", - "description": "Tiene una prueba activa de uno de nuestros planes de pago. Por favor, cancelela primero para continuar.", - "dismiss": "Descartar", - "cancel": "Cancelar prueba", - "success_title": "Espacio de trabajo eliminado.", - "success_message": "Pronto irá a su página de perfil.", - "error_title": "Eso no funcionó.", - "error_message": "Por favor, inténtelo de nuevo." - }, - "errors": { - "name": { - "required": "El nombre es obligatorio", - "max_length": "El nombre del espacio de trabajo no debe exceder los 80 caracteres" - }, - "company_size": { - "required": "El tamaño de la empresa es obligatorio", - "select_a_range": "Seleccionar tamaño de la organización" - } - } - }, - "members": { - "title": "Miembros", - "add_member": "Agregar miembro", - "pending_invites": "Invitaciones pendientes", - "invitations_sent_successfully": "Invitaciones enviadas exitosamente", - "leave_confirmation": "¿Estás seguro de que quieres abandonar el espacio de trabajo? Ya no tendrás acceso a este espacio de trabajo. Esta acción no se puede deshacer.", - "details": { - "full_name": "Nombre completo", - "display_name": "Nombre para mostrar", - "email_address": "Dirección de correo electrónico", - "account_type": "Tipo de cuenta", - "authentication": "Autenticación", - "joining_date": "Fecha de incorporación" - }, - "modal": { - "title": "Invitar personas a colaborar", - "description": "Invita personas a colaborar en tu espacio de trabajo.", - "button": "Enviar invitaciones", - "button_loading": "Enviando invitaciones", - "placeholder": "nombre@empresa.com", - "errors": { - "required": "Necesitamos una dirección de correo electrónico para invitarlos.", - "invalid": "El correo electrónico no es válido" - } - } - }, - "billing_and_plans": { - "title": "Facturación y Planes", - "current_plan": "Plan actual", - "free_plan": "Actualmente estás usando el plan gratuito", - "view_plans": "Ver planes" - }, - "exports": { - "title": "Exportaciones", - "exporting": "Exportando", - "previous_exports": "Exportaciones anteriores", - "export_separate_files": "Exportar los datos en archivos separados", - "modal": { - "title": "Exportar a", - "toasts": { - "success": { - "title": "Exportación exitosa", - "message": "Podrás descargar el {entity} exportado desde la exportación anterior." - }, - "error": { - "title": "Exportación fallida", - "message": "La exportación no tuvo éxito. Por favor, inténtalo de nuevo." - } - } - } - }, - "webhooks": { - "title": "Webhooks", - "add_webhook": "Agregar webhook", - "modal": { - "title": "Crear webhook", - "details": "Detalles del webhook", - "payload": "URL del payload", - "question": "¿Qué eventos te gustaría que activaran este webhook?", - "error": "La URL es obligatoria" - }, - "secret_key": { - "title": "Clave secreta", - "message": "Genera un token para iniciar sesión en el payload del webhook" - }, - "options": { - "all": "Envíame todo", - "individual": "Seleccionar eventos individuales" - }, - "toasts": { - "created": { - "title": "Webhook creado", - "message": "El webhook se ha creado exitosamente" - }, - "not_created": { - "title": "Webhook no creado", - "message": "No se pudo crear el webhook" - }, - "updated": { - "title": "Webhook actualizado", - "message": "El webhook se ha actualizado exitosamente" - }, - "not_updated": { - "title": "Webhook no actualizado", - "message": "No se pudo actualizar el webhook" - }, - "removed": { - "title": "Webhook eliminado", - "message": "El webhook se ha eliminado exitosamente" - }, - "not_removed": { - "title": "Webhook no eliminado", - "message": "No se pudo eliminar el webhook" - }, - "secret_key_copied": { - "message": "Clave secreta copiada al portapapeles." - }, - "secret_key_not_copied": { - "message": "Ocurrió un error al copiar la clave secreta." - } - } - }, - "api_tokens": { - "title": "Tokens de API", - "add_token": "Agregar token de API", - "create_token": "Crear token", - "never_expires": "Nunca expira", - "generate_token": "Generar token", - "generating": "Generando", - "delete": { - "title": "Eliminar token de API", - "description": "Cualquier aplicación que use este token ya no tendrá acceso a los datos de Plane. Esta acción no se puede deshacer.", - "success": { - "title": "¡Éxito!", - "message": "El token de API se ha eliminado exitosamente" - }, - "error": { - "title": "¡Error!", - "message": "No se pudo eliminar el token de API" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "No se han creado tokens de API", - "description": "Las APIs de Plane se pueden usar para integrar tus datos en Plane con cualquier sistema externo. Crea un token para comenzar." - }, - "webhooks": { - "title": "No se han agregado webhooks", - "description": "Crea webhooks para recibir actualizaciones en tiempo real y automatizar acciones." - }, - "exports": { - "title": "No hay exportaciones aún", - "description": "Cada vez que exportes, también tendrás una copia aquí para referencia." - }, - "imports": { - "title": "No hay importaciones aún", - "description": "Encuentra todas tus importaciones anteriores aquí y descárgalas." - } - } - }, - "profile": { - "label": "Perfil", - "page_label": "Tu trabajo", - "work": "Trabajo", - "details": { - "joined_on": "Se unió el", - "time_zone": "Zona horaria" - }, - "stats": { - "workload": "Carga de trabajo", - "overview": "Resumen", - "created": "Elementos de trabajo creados", - "assigned": "Elementos de trabajo asignados", - "subscribed": "Elementos de trabajo suscritos", - "state_distribution": { - "title": "Elementos de trabajo por estado", - "empty": "Crea elementos de trabajo para verlos por estados en el gráfico para un mejor análisis." - }, - "priority_distribution": { - "title": "Elementos de trabajo por Prioridad", - "empty": "Crea elementos de trabajo para verlos por prioridad en el gráfico para un mejor análisis." - }, - "recent_activity": { - "title": "Actividad reciente", - "empty": "No pudimos encontrar datos. Por favor revisa tus entradas", - "button": "Descargar actividad de hoy", - "button_loading": "Descargando" - } - }, - "actions": { - "profile": "Perfil", - "security": "Seguridad", - "activity": "Actividad", - "appearance": "Apariencia", - "notifications": "Notificaciones" - }, - "tabs": { - "summary": "Resumen", - "assigned": "Asignado", - "created": "Creado", - "subscribed": "Suscrito", - "activity": "Actividad" - }, - "empty_state": { - "activity": { - "title": "Aún no hay actividades", - "description": "¡Comienza creando un nuevo elemento de trabajo! Agrégale detalles y propiedades. Explora más en Plane para ver tu actividad." - }, - "assigned": { - "title": "No hay elementos de trabajo asignados a ti", - "description": "Los elementos de trabajo asignados a ti se pueden rastrear desde aquí." - }, - "created": { - "title": "Aún no hay elementos de trabajo", - "description": "Todos los elementos de trabajo creados por ti aparecen aquí, rastréalos directamente aquí." - }, - "subscribed": { - "title": "Aún no hay elementos de trabajo", - "description": "Suscríbete a los elementos de trabajo que te interesen, rastréalos todos aquí." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Ingresa el ID del proyecto", - "please_select_a_timezone": "Por favor selecciona una zona horaria", - "archive_project": { - "title": "Archivar proyecto", - "description": "Archivar un proyecto lo eliminará de tu navegación lateral aunque aún podrás acceder a él desde tu página de proyectos. Puedes restaurar el proyecto o eliminarlo cuando quieras.", - "button": "Archivar proyecto" - }, - "delete_project": { - "title": "Eliminar proyecto", - "description": "Al eliminar un proyecto, todos los datos y recursos dentro de ese proyecto se eliminarán permanentemente y no podrán recuperarse.", - "button": "Eliminar mi proyecto" - }, - "toast": { - "success": "Proyecto actualizado exitosamente", - "error": "No se pudo actualizar el proyecto. Por favor intenta de nuevo." - } - }, - "members": { - "label": "Miembros", - "project_lead": "Líder del proyecto", - "default_assignee": "Asignado por defecto", - "guest_super_permissions": { - "title": "Otorgar acceso de visualización a todos los elementos de trabajo para usuarios invitados:", - "sub_heading": "Esto permitirá a los invitados tener acceso de visualización a todos los elementos de trabajo del proyecto." - }, - "invite_members": { - "title": "Invitar miembros", - "sub_heading": "Invita miembros para trabajar en tu proyecto.", - "select_co_worker": "Seleccionar compañero de trabajo" - } - }, - "states": { - "describe_this_state_for_your_members": "Describe este estado para tus miembros.", - "empty_state": { - "title": "No estados disponibles para el grupo {groupKey}", - "description": "Por favor, crea un nuevo estado" - } - }, - "labels": { - "label_title": "Título de la etiqueta", - "label_title_is_required": "El título de la etiqueta es requerido", - "label_max_char": "El nombre de la etiqueta no debe exceder 255 caracteres", - "toast": { - "error": "Error al actualizar la etiqueta" - } - }, - "estimates": { - "label": "Estimaciones", - "title": "Activar estimaciones para mi proyecto", - "description": "Te ayudan a comunicar la complejidad y la carga de trabajo del equipo.", - "no_estimate": "Sin estimación", - "new": "Nuevo sistema de estimación", - "create": { - "custom": "Personalizado", - "start_from_scratch": "Comenzar desde cero", - "choose_template": "Elegir una plantilla", - "choose_estimate_system": "Elegir un sistema de estimación", - "enter_estimate_point": "Ingresar estimación", - "step": "Paso {step} de {total}", - "label": "Crear estimación" - }, - "toasts": { - "created": { - "success": { - "title": "Estimación creada", - "message": "La estimación se ha creado correctamente" - }, - "error": { - "title": "Error al crear la estimación", - "message": "No pudimos crear la nueva estimación, por favor inténtalo de nuevo." - } - }, - "updated": { - "success": { - "title": "Estimación modificada", - "message": "La estimación se ha actualizado en tu proyecto." - }, - "error": { - "title": "Error al modificar la estimación", - "message": "No pudimos modificar la estimación, por favor inténtalo de nuevo" - } - }, - "enabled": { - "success": { - "title": "¡Éxito!", - "message": "Las estimaciones han sido activadas." - } - }, - "disabled": { - "success": { - "title": "¡Éxito!", - "message": "Las estimaciones han sido desactivadas." - }, - "error": { - "title": "¡Error!", - "message": "No se pudo desactivar la estimación. Por favor inténtalo de nuevo" - } - } - }, - "validation": { - "min_length": "La estimación debe ser mayor que 0.", - "unable_to_process": "No podemos procesar tu solicitud, por favor inténtalo de nuevo.", - "numeric": "La estimación debe ser un valor numérico.", - "character": "La estimación debe ser un valor de carácter.", - "empty": "El valor de la estimación no puede estar vacío.", - "already_exists": "El valor de la estimación ya existe.", - "unsaved_changes": "Tienes cambios sin guardar. Por favor guárdalos antes de hacer clic en Hecho", - "remove_empty": "La estimación no puede estar vacía. Ingresa un valor en cada campo o elimina aquellos para los que no tienes valores." - }, - "systems": { - "points": { - "label": "Puntos", - "fibonacci": "Fibonacci", - "linear": "Lineal", - "squares": "Cuadrados", - "custom": "Personalizado" - }, - "categories": { - "label": "Categorías", - "t_shirt_sizes": "Tallas de camiseta", - "easy_to_hard": "Fácil a difícil", - "custom": "Personalizado" - }, - "time": { - "label": "Tiempo", - "hours": "Horas" - } - } - }, - "automations": { - "label": "Automatizaciones", - "auto-archive": { - "title": "Archivar automáticamente elementos de trabajo cerrados", - "description": "Plane archivará automáticamente los elementos de trabajo que hayan sido completados o cancelados.", - "duration": "Archivar automáticamente elementos de trabajo cerrados durante" - }, - "auto-close": { - "title": "Cerrar automáticamente elementos de trabajo", - "description": "Plane cerrará automáticamente los elementos de trabajo que no hayan sido completados o cancelados.", - "duration": "Cerrar automáticamente elementos de trabajo inactivos durante", - "auto_close_status": "Estado de cierre automático" - } - }, - "empty_state": { - "labels": { - "title": "Aún no hay etiquetas", - "description": "Crea etiquetas para organizar y filtrar elementos de trabajo en tu proyecto." - }, - "estimates": { - "title": "Aún no hay sistemas de estimación", - "description": "Crea un conjunto de estimaciones para comunicar el volumen de trabajo por elemento de trabajo.", - "primary_button": "Agregar sistema de estimación" - } - } - }, - "project_cycles": { - "add_cycle": "Agregar ciclo", - "more_details": "Más detalles", - "cycle": "Ciclo", - "update_cycle": "Actualizar ciclo", - "create_cycle": "Crear ciclo", - "no_matching_cycles": "No hay ciclos coincidentes", - "remove_filters_to_see_all_cycles": "Elimina los filtros para ver todos los ciclos", - "remove_search_criteria_to_see_all_cycles": "Elimina los criterios de búsqueda para ver todos los ciclos", - "only_completed_cycles_can_be_archived": "Solo los ciclos completados pueden ser archivados", - "start_date": "Fecha de inicio", - "end_date": "Fecha de finalización", - "in_your_timezone": "En tu zona horaria", - "transfer_work_items": "Transferir {count} elementos de trabajo", - "date_range": "Rango de fechas", - "add_date": "Agregar fecha", - "active_cycle": { - "label": "Ciclo activo", - "progress": "Progreso", - "chart": "Gráfico de avance", - "priority_issue": "Elementos de trabajo prioritarios", - "assignees": "Asignados", - "issue_burndown": "Avance de elementos de trabajo", - "ideal": "Ideal", - "current": "Actual", - "labels": "Etiquetas" - }, - "upcoming_cycle": { - "label": "Ciclo próximo" - }, - "completed_cycle": { - "label": "Ciclo completado" - }, - "status": { - "days_left": "Días restantes", - "completed": "Completado", - "yet_to_start": "Por comenzar", - "in_progress": "En progreso", - "draft": "Borrador" - }, - "action": { - "restore": { - "title": "Restaurar ciclo", - "success": { - "title": "Ciclo restaurado", - "description": "El ciclo ha sido restaurado." - }, - "failed": { - "title": "Falló la restauración del ciclo", - "description": "No se pudo restaurar el ciclo. Por favor intenta de nuevo." - } - }, - "favorite": { - "loading": "Agregando ciclo a favoritos", - "success": { - "description": "Ciclo agregado a favoritos.", - "title": "¡Éxito!" - }, - "failed": { - "description": "No se pudo agregar el ciclo a favoritos. Por favor intenta de nuevo.", - "title": "¡Error!" - } - }, - "unfavorite": { - "loading": "Eliminando ciclo de favoritos", - "success": { - "description": "Ciclo eliminado de favoritos.", - "title": "¡Éxito!" - }, - "failed": { - "description": "No se pudo eliminar el ciclo de favoritos. Por favor intenta de nuevo.", - "title": "¡Error!" - } - }, - "update": { - "loading": "Actualizando ciclo", - "success": { - "description": "Ciclo actualizado exitosamente.", - "title": "¡Éxito!" - }, - "failed": { - "description": "Error al actualizar el ciclo. Por favor intenta de nuevo.", - "title": "¡Error!" - }, - "error": { - "already_exists": "Ya tienes un ciclo en las fechas dadas, si quieres crear un ciclo en borrador, puedes hacerlo eliminando ambas fechas." - } - } - }, - "empty_state": { - "general": { - "title": "Agrupa y delimita tu trabajo en Ciclos.", - "description": "Divide el trabajo en bloques de tiempo, trabaja hacia atrás desde la fecha límite de tu proyecto para establecer fechas, y haz un progreso tangible como equipo.", - "primary_button": { - "text": "Establece tu primer ciclo", - "comic": { - "title": "Los ciclos son bloques de tiempo repetitivos.", - "description": "Un sprint, una iteración, o cualquier otro término que uses para el seguimiento semanal o quincenal del trabajo es un ciclo." - } - } - }, - "no_issues": { - "title": "No hay elementos de trabajo agregados al ciclo", - "description": "Agrega o crea elementos de trabajo que desees delimitar y entregar dentro de este ciclo", - "primary_button": { - "text": "Crear nuevo elemento de trabajo" - }, - "secondary_button": { - "text": "Agregar elemento de trabajo existente" - } - }, - "completed_no_issues": { - "title": "No hay elementos de trabajo en el ciclo", - "description": "No hay elementos de trabajo en el ciclo. Los elementos de trabajo están transferidos u ocultos. Para ver elementos de trabajo ocultos si los hay, actualiza tus propiedades de visualización según corresponda." - }, - "active": { - "title": "No hay ciclo activo", - "description": "Un ciclo activo incluye cualquier período que abarque la fecha de hoy dentro de su rango. Encuentra el progreso y los detalles del ciclo activo aquí." - }, - "archived": { - "title": "Aún no hay ciclos archivados", - "description": "Para mantener ordenado tu proyecto, archiva los ciclos completados. Encuéntralos aquí una vez archivados." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Crea un elemento de trabajo y asígnalo a alguien, incluso a ti mismo", - "description": "Piensa en los elementos de trabajo como trabajos, tareas, trabajo o JTBD. Los cuales nos gustan. Un elemento de trabajo y sus sub-elementos de trabajo son generalmente acciones basadas en tiempo asignadas a miembros de tu equipo. Tu equipo crea, asigna y completa elementos de trabajo para mover tu proyecto hacia su objetivo.", - "primary_button": { - "text": "Crea tu primer elemento de trabajo", - "comic": { - "title": "Los elementos de trabajo son bloques de construcción en Plane.", - "description": "Rediseñar la interfaz de Plane, Cambiar la marca de la empresa o Lanzar el nuevo sistema de inyección de combustible son ejemplos de elementos de trabajo que probablemente tienen sub-elementos de trabajo." - } - } - }, - "no_archived_issues": { - "title": "Aún no hay elementos de trabajo archivados", - "description": "Manualmente o a través de automatización, puedes archivar elementos de trabajo que estén completados o cancelados. Encuéntralos aquí una vez archivados.", - "primary_button": { - "text": "Establecer automatización" - } - }, - "issues_empty_filter": { - "title": "No se encontraron elementos de trabajo que coincidan con los filtros aplicados", - "secondary_button": { - "text": "Limpiar todos los filtros" - } - } - } - }, - "project_module": { - "add_module": "Agregar Módulo", - "update_module": "Actualizar Módulo", - "create_module": "Crear Módulo", - "archive_module": "Archivar Módulo", - "restore_module": "Restaurar Módulo", - "delete_module": "Eliminar módulo", - "empty_state": { - "general": { - "title": "Mapea los hitos de tu proyecto a Módulos y rastrea el trabajo agregado fácilmente.", - "description": "Un grupo de elementos de trabajo que pertenecen a un padre lógico y jerárquico forman un módulo. Piensa en ellos como una forma de rastrear el trabajo por hitos del proyecto. Tienen sus propios períodos y fechas límite, así como análisis para ayudarte a ver qué tan cerca o lejos estás de un hito.", - "primary_button": { - "text": "Construye tu primer módulo", - "comic": { - "title": "Los módulos ayudan a agrupar el trabajo por jerarquía.", - "description": "Un módulo de carrito, un módulo de chasis y un módulo de almacén son buenos ejemplos de esta agrupación." - } - } - }, - "no_issues": { - "title": "No hay elementos de trabajo en el módulo", - "description": "Crea o agrega elementos de trabajo que quieras lograr como parte de este módulo", - "primary_button": { - "text": "Crear nuevos elementos de trabajo" - }, - "secondary_button": { - "text": "Agregar un elemento de trabajo existente" - } - }, - "archived": { - "title": "Aún no hay Módulos archivados", - "description": "Para mantener ordenado tu proyecto, archiva los módulos completados o cancelados. Encuéntralos aquí una vez archivados." - }, - "sidebar": { - "in_active": "Este módulo aún no está activo.", - "invalid_date": "Fecha inválida. Por favor ingresa una fecha válida." - } - }, - "quick_actions": { - "archive_module": "Archivar módulo", - "archive_module_description": "Solo los módulos completados o\ncancelados pueden ser archivados.", - "delete_module": "Eliminar módulo" - }, - "toast": { - "copy": { - "success": "Enlace del módulo copiado al portapapeles" - }, - "delete": { - "success": "Módulo eliminado exitosamente", - "error": "Error al eliminar el módulo" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Guarda vistas filtradas para tu proyecto. Crea tantas como necesites", - "description": "Las vistas son un conjunto de filtros guardados que usas frecuentemente o a los que quieres tener fácil acceso. Todos tus colegas en un proyecto pueden ver las vistas de todos y elegir la que mejor se adapte a sus necesidades.", - "primary_button": { - "text": "Crea tu primera vista", - "comic": { - "title": "Las vistas funcionan sobre las propiedades de los Elementos de trabajo.", - "description": "Puedes crear una vista desde aquí con tantas propiedades como filtros como consideres apropiado." - } - } - }, - "filter": { - "title": "No hay vistas coincidentes", - "description": "Ninguna vista coincide con los criterios de búsqueda. \n Crea una nueva vista en su lugar." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Escribe una nota, un documento o una base de conocimiento completa. Obtén ayuda de Galileo, el asistente de IA de Plane, para comenzar", - "description": "Las páginas son espacios para pensamientos en Plane. Toma notas de reuniones, fórmalas fácilmente, integra elementos de trabajo, organízalas usando una biblioteca de componentes y mantenlas todas en el contexto de tu proyecto. Para hacer cualquier documento rápidamente, invoca a Galileo, la IA de Plane, con un atajo o haciendo clic en un botón.", - "primary_button": { - "text": "Crea tu primera página" - } - }, - "private": { - "title": "Aún no hay páginas privadas", - "description": "Mantén tus pensamientos privados aquí. Cuando estés listo para compartir, el equipo está a solo un clic de distancia.", - "primary_button": { - "text": "Crea tu primera página" - } - }, - "public": { - "title": "Aún no hay páginas públicas", - "description": "Ve las páginas compartidas con todos en tu proyecto aquí mismo.", - "primary_button": { - "text": "Crea tu primera página" - } - }, - "archived": { - "title": "Aún no hay páginas archivadas", - "description": "Archiva las páginas que no estén en tu radar. Accede a ellas aquí cuando las necesites." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "No se encontraron resultados" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "No se encontraron elementos de trabajo coincidentes" - }, - "no_issues": { - "title": "No se encontraron elementos de trabajo" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Aún no hay comentarios", - "description": "Los comentarios pueden usarse como un espacio de discusión y seguimiento para los elementos de trabajo" - } - } - }, - "notification": { - "label": "Bandeja de entrada", - "page_label": "{workspace} - Bandeja de entrada", - "options": { - "mark_all_as_read": "Marcar todo como leído", - "mark_read": "Marcar como leído", - "mark_unread": "Marcar como no leído", - "refresh": "Actualizar", - "filters": "Filtros de bandeja de entrada", - "show_unread": "Mostrar no leídos", - "show_snoozed": "Mostrar pospuestos", - "show_archived": "Mostrar archivados", - "mark_archive": "Archivar", - "mark_unarchive": "Desarchivar", - "mark_snooze": "Posponer", - "mark_unsnooze": "Quitar posposición" - }, - "toasts": { - "read": "Notificación marcada como leída", - "unread": "Notificación marcada como no leída", - "archived": "Notificación marcada como archivada", - "unarchived": "Notificación marcada como no archivada", - "snoozed": "Notificación pospuesta", - "unsnoozed": "Notificación posposición cancelada" - }, - "empty_state": { - "detail": { - "title": "Selecciona para ver detalles." - }, - "all": { - "title": "No hay elementos de trabajo asignados", - "description": "Las actualizaciones de elementos de trabajo asignados a ti se pueden \n ver aquí" - }, - "mentions": { - "title": "No hay elementos de trabajo asignados", - "description": "Las actualizaciones de elementos de trabajo asignados a ti se pueden \n ver aquí" - } - }, - "tabs": { - "all": "Todo", - "mentions": "Menciones" - }, - "filter": { - "assigned": "Asignado a mí", - "created": "Creado por mí", - "subscribed": "Suscrito por mí" - }, - "snooze": { - "1_day": "1 día", - "3_days": "3 días", - "5_days": "5 días", - "1_week": "1 semana", - "2_weeks": "2 semanas", - "custom": "Personalizado" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Agrega elementos de trabajo al ciclo para ver su progreso" - }, - "chart": { - "title": "Agrega elementos de trabajo al ciclo para ver el gráfico de avance." - }, - "priority_issue": { - "title": "Observa los elementos de trabajo de alta prioridad abordados en el ciclo de un vistazo." - }, - "assignee": { - "title": "Agrega asignados a los elementos de trabajo para ver un desglose del trabajo por asignados." - }, - "label": { - "title": "Agrega etiquetas a los elementos de trabajo para ver el desglose del trabajo por etiquetas." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Intake no está habilitado para el proyecto.", - "description": "Intake te ayuda a gestionar las solicitudes entrantes a tu proyecto y agregarlas como elementos de trabajo en tu flujo de trabajo. Habilita Intake desde la configuración del proyecto para gestionar las solicitudes.", - "primary_button": { - "text": "Gestionar funciones" - } - }, - "cycle": { - "title": "Los Ciclos no están habilitados para este proyecto.", - "description": "Divide el trabajo en fragmentos limitados por tiempo, trabaja hacia atrás desde la fecha límite de tu proyecto para establecer fechas y haz un progreso tangible como equipo. Habilita la función de ciclos para tu proyecto para comenzar a usarlos.", - "primary_button": { - "text": "Gestionar funciones" - } - }, - "module": { - "title": "Los Módulos no están habilitados para el proyecto.", - "description": "Los Módulos son los componentes básicos de tu proyecto. Habilita los módulos desde la configuración del proyecto para comenzar a usarlos.", - "primary_button": { - "text": "Gestionar funciones" - } - }, - "page": { - "title": "Las Páginas no están habilitadas para el proyecto.", - "description": "Las Páginas son los componentes básicos de tu proyecto. Habilita las páginas desde la configuración del proyecto para comenzar a usarlas.", - "primary_button": { - "text": "Gestionar funciones" - } - }, - "view": { - "title": "Las Vistas no están habilitadas para el proyecto.", - "description": "Las Vistas son los componentes básicos de tu proyecto. Habilita las vistas desde la configuración del proyecto para comenzar a usarlas.", - "primary_button": { - "text": "Gestionar funciones" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Borrador de elemento de trabajo", - "empty_state": { - "title": "Los elementos de trabajo a medio escribir y pronto los comentarios aparecerán aquí.", - "description": "Para probar esto, comienza a agregar un elemento de trabajo y déjalo a medias o crea tu primer borrador a continuación. 😉", - "primary_button": { - "text": "Crea tu primer borrador" - } - }, - "delete_modal": { - "title": "Eliminar borrador", - "description": "¿Estás seguro de que quieres eliminar este borrador? Esto no se puede deshacer." - }, - "toasts": { - "created": { - "success": "Borrador creado", - "error": "No se pudo crear el elemento de trabajo. Por favor, inténtalo de nuevo." - }, - "deleted": { - "success": "Borrador eliminado" - } - } - }, - "stickies": { - "title": "Tus notas adhesivas", - "placeholder": "haz clic para escribir aquí", - "all": "Todas las notas adhesivas", - "no-data": "Anota una idea, captura un momento eureka o registra una inspiración. Agrega una nota adhesiva para comenzar.", - "add": "Agregar nota adhesiva", - "search_placeholder": "Buscar por título", - "delete": "Eliminar nota adhesiva", - "delete_confirmation": "¿Estás seguro de que quieres eliminar esta nota adhesiva?", - "empty_state": { - "simple": "Anota una idea, captura un momento eureka o registra una inspiración. Agrega una nota adhesiva para comenzar.", - "general": { - "title": "Las notas adhesivas son notas rápidas y tareas pendientes que anotas al vuelo.", - "description": "Captura tus pensamientos e ideas sin esfuerzo creando notas adhesivas a las que puedes acceder en cualquier momento y desde cualquier lugar.", - "primary_button": { - "text": "Agregar nota adhesiva" - } - }, - "search": { - "title": "Eso no coincide con ninguna de tus notas adhesivas.", - "description": "Prueba un término diferente o háznoslo saber\nsi estás seguro de que tu búsqueda es correcta.", - "primary_button": { - "text": "Agregar nota adhesiva" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "El nombre de la nota adhesiva no puede tener más de 100 caracteres.", - "already_exists": "Ya existe una nota adhesiva sin descripción" - }, - "created": { - "title": "Nota adhesiva creada", - "message": "La nota adhesiva se ha creado exitosamente" - }, - "not_created": { - "title": "Nota adhesiva no creada", - "message": "No se pudo crear la nota adhesiva" - }, - "updated": { - "title": "Nota adhesiva actualizada", - "message": "La nota adhesiva se ha actualizado exitosamente" - }, - "not_updated": { - "title": "Nota adhesiva no actualizada", - "message": "No se pudo actualizar la nota adhesiva" - }, - "removed": { - "title": "Nota adhesiva eliminada", - "message": "La nota adhesiva se ha eliminado exitosamente" - }, - "not_removed": { - "title": "Nota adhesiva no eliminada", - "message": "No se pudo eliminar la nota adhesiva" - } - } - }, - "role_details": { - "guest": { - "title": "Invitado", - "description": "Los miembros externos de las organizaciones pueden ser invitados como invitados." - }, - "member": { - "title": "Miembro", - "description": "Capacidad para leer, escribir, editar y eliminar entidades dentro de proyectos, ciclos y módulos" - }, - "admin": { - "title": "Administrador", - "description": "Todos los permisos establecidos como verdaderos dentro del espacio de trabajo." - } - }, - "user_roles": { - "product_or_project_manager": "Gerente de Producto / Proyecto", - "development_or_engineering": "Desarrollo / Ingeniería", - "founder_or_executive": "Fundador / Ejecutivo", - "freelancer_or_consultant": "Freelancer / Consultor", - "marketing_or_growth": "Marketing / Crecimiento", - "sales_or_business_development": "Ventas / Desarrollo de Negocios", - "support_or_operations": "Soporte / Operaciones", - "student_or_professor": "Estudiante / Profesor", - "human_resources": "Recursos Humanos", - "other": "Otro" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Importa elementos de trabajo desde repositorios de GitHub y sincronízalos." - }, - "jira": { - "title": "Jira", - "description": "Importa elementos de trabajo y epics desde proyectos y epics de Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Exporta elementos de trabajo a un archivo CSV.", - "short_description": "Exportar como csv" - }, - "excel": { - "title": "Excel", - "description": "Exporta elementos de trabajo a un archivo Excel.", - "short_description": "Exportar como excel" - }, - "xlsx": { - "title": "Excel", - "description": "Exporta elementos de trabajo a un archivo Excel.", - "short_description": "Exportar como excel" - }, - "json": { - "title": "JSON", - "description": "Exporta elementos de trabajo a un archivo JSON.", - "short_description": "Exportar como json" - } - }, - "default_global_view": { - "all_issues": "Todos los elementos de trabajo", - "assigned": "Asignados", - "created": "Creados", - "subscribed": "Suscritos" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Preferencia del sistema" - }, - "light": { - "label": "Claro" - }, - "dark": { - "label": "Oscuro" - }, - "light_contrast": { - "label": "Claro de alto contraste" - }, - "dark_contrast": { - "label": "Oscuro de alto contraste" - }, - "custom": { - "label": "Tema personalizado" - } - } - }, - "project_modules": { - "status": { - "backlog": "Pendientes", - "planned": "Planificado", - "in_progress": "En progreso", - "paused": "Pausado", - "completed": "Completado", - "cancelled": "Cancelado" - }, - "layout": { - "list": "Vista de lista", - "board": "Vista de galería", - "timeline": "Vista de línea de tiempo" - }, - "order_by": { - "name": "Nombre", - "progress": "Progreso", - "issues": "Número de elementos de trabajo", - "due_date": "Fecha de vencimiento", - "created_at": "Fecha de creación", - "manual": "Manual" - } - }, - "cycle": { - "label": "{count, plural, one {Ciclo} other {Ciclos}}", - "no_cycle": "Sin ciclo" - }, - "module": { - "label": "{count, plural, one {Módulo} other {Módulos}}", - "no_module": "Sin módulo" - }, - "description_versions": { - "last_edited_by": "Última edición por", - "previously_edited_by": "Editado anteriormente por", - "edited_by": "Editado por" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane no se inició. Esto podría deberse a que uno o más servicios de Plane fallaron al iniciar.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Selecciona View Logs desde setup.sh y los logs de Docker para estar seguro." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Esquema", - "empty_state": { - "title": "Faltan encabezados", - "description": "Añade algunos encabezados a esta página para verlos aquí." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Palabras", - "characters": "Caracteres", - "paragraphs": "Párrafos", - "read_time": "Tiempo de lectura" - }, - "actors_info": { - "edited_by": "Editado por", - "created_by": "Creado por" - }, - "version_history": { - "label": "Historial de versiones", - "current_version": "Versión actual" - } - }, - "assets": { - "label": "Recursos", - "download_button": "Descargar", - "empty_state": { - "title": "Faltan imágenes", - "description": "Añade imágenes para verlas aquí." - } - } - }, - "open_button": "Abrir panel de navegación", - "close_button": "Cerrar panel de navegación", - "outline_floating_button": "Abrir esquema" - } -} diff --git a/packages/i18n/src/locales/es/translations.ts b/packages/i18n/src/locales/es/translations.ts new file mode 100644 index 0000000000..e2ba9330d9 --- /dev/null +++ b/packages/i18n/src/locales/es/translations.ts @@ -0,0 +1,2620 @@ +export default { + sidebar: { + projects: "Proyectos", + pages: "Páginas", + new_work_item: "Nuevo elemento de trabajo", + home: "Inicio", + your_work: "Tu trabajo", + inbox: "Bandeja de entrada", + workspace: "Espacio de trabajo", + views: "Vistas", + analytics: "Análisis", + work_items: "Elementos de trabajo", + cycles: "Ciclos", + modules: "Módulos", + intake: "Entrada", + drafts: "Borradores", + favorites: "Favoritos", + pro: "Pro", + upgrade: "Mejorar", + }, + auth: { + common: { + email: { + label: "Correo electrónico", + placeholder: "nombre@empresa.com", + errors: { + required: "El correo electrónico es obligatorio", + invalid: "El correo electrónico no es válido", + }, + }, + password: { + label: "Contraseña", + set_password: "Establecer una contraseña", + placeholder: "Ingresa la contraseña", + confirm_password: { + label: "Confirmar contraseña", + placeholder: "Confirmar contraseña", + }, + current_password: { + label: "Contraseña actual", + }, + new_password: { + label: "Nueva contraseña", + placeholder: "Ingresa nueva contraseña", + }, + change_password: { + label: { + default: "Cambiar contraseña", + submitting: "Cambiando contraseña", + }, + }, + errors: { + match: "Las contraseñas no coinciden", + empty: "Por favor ingresa tu contraseña", + length: "La contraseña debe tener más de 8 caracteres", + strength: { + weak: "La contraseña es débil", + strong: "La contraseña es fuerte", + }, + }, + submit: "Establecer contraseña", + toast: { + change_password: { + success: { + title: "¡Éxito!", + message: "Contraseña cambiada exitosamente.", + }, + error: { + title: "¡Error!", + message: "Algo salió mal. Por favor intenta de nuevo.", + }, + }, + }, + }, + unique_code: { + label: "Código único", + placeholder: "obtiene-establece-vuela", + paste_code: "Pega el código enviado a tu correo electrónico", + requesting_new_code: "Solicitando nuevo código", + sending_code: "Enviando código", + }, + already_have_an_account: "¿Ya tienes una cuenta?", + login: "Iniciar sesión", + create_account: "Crear una cuenta", + new_to_plane: "¿Nuevo en Plane?", + back_to_sign_in: "Volver a iniciar sesión", + resend_in: "Reenviar en {seconds} segundos", + sign_in_with_unique_code: "Iniciar sesión con código único", + forgot_password: "¿Olvidaste tu contraseña?", + }, + sign_up: { + header: { + label: "Crea una cuenta para comenzar a gestionar el trabajo con tu equipo.", + step: { + email: { + header: "Registrarse", + sub_header: "", + }, + password: { + header: "Registrarse", + sub_header: "Regístrate usando una combinación de correo electrónico y contraseña.", + }, + unique_code: { + header: "Registrarse", + sub_header: "Regístrate usando un código único enviado a la dirección de correo electrónico anterior.", + }, + }, + }, + errors: { + password: { + strength: "Intenta establecer una contraseña fuerte para continuar", + }, + }, + }, + sign_in: { + header: { + label: "Inicia sesión para comenzar a gestionar el trabajo con tu equipo.", + step: { + email: { + header: "Iniciar sesión o registrarse", + sub_header: "", + }, + password: { + header: "Iniciar sesión o registrarse", + sub_header: "Usa tu combinación de correo electrónico y contraseña para iniciar sesión.", + }, + unique_code: { + header: "Iniciar sesión o registrarse", + sub_header: "Inicia sesión usando un código único enviado a la dirección de correo electrónico anterior.", + }, + }, + }, + }, + forgot_password: { + title: "Restablecer tu contraseña", + description: + "Ingresa la dirección de correo electrónico verificada de tu cuenta de usuario y te enviaremos un enlace para restablecer la contraseña.", + email_sent: "Enviamos el enlace de restablecimiento a tu dirección de correo electrónico", + send_reset_link: "Enviar enlace de restablecimiento", + errors: { + smtp_not_enabled: + "Vemos que tu administrador no ha habilitado SMTP, no podremos enviar un enlace para restablecer la contraseña", + }, + toast: { + success: { + title: "Correo enviado", + message: + "Revisa tu bandeja de entrada para encontrar un enlace para restablecer tu contraseña. Si no aparece en unos minutos, revisa tu carpeta de spam.", + }, + error: { + title: "¡Error!", + message: "Algo salió mal. Por favor intenta de nuevo.", + }, + }, + }, + reset_password: { + title: "Establecer nueva contraseña", + description: "Asegura tu cuenta con una contraseña fuerte", + }, + set_password: { + title: "Asegura tu cuenta", + description: "Establecer una contraseña te ayuda a iniciar sesión de forma segura", + }, + sign_out: { + toast: { + error: { + title: "¡Error!", + message: "Error al cerrar sesión. Por favor intenta de nuevo.", + }, + }, + }, + }, + submit: "Enviar", + cancel: "Cancelar", + loading: "Cargando", + error: "Error", + success: "Éxito", + warning: "Advertencia", + info: "Información", + close: "Cerrar", + yes: "Sí", + no: "No", + ok: "Aceptar", + name: "Nombre", + description: "Descripción", + search: "Buscar", + add_member: "Agregar miembro", + adding_members: "Agregando miembros", + remove_member: "Eliminar miembro", + add_members: "Agregar miembros", + adding_member: "Agregando miembros", + remove_members: "Eliminar miembros", + add: "Agregar", + adding: "Agregando", + remove: "Eliminar", + add_new: "Agregar nuevo", + remove_selected: "Eliminar seleccionados", + first_name: "Nombre", + last_name: "Apellido", + email: "Correo electrónico", + display_name: "Nombre para mostrar", + role: "Rol", + timezone: "Zona horaria", + avatar: "Avatar", + cover_image: "Imagen de portada", + password: "Contraseña", + change_cover: "Cambiar portada", + language: "Idioma", + saving: "Guardando", + save_changes: "Guardar cambios", + deactivate_account: "Desactivar cuenta", + deactivate_account_description: + "Al desactivar una cuenta, todos los datos y recursos dentro de esa cuenta se eliminarán permanentemente y no se podrán recuperar.", + profile_settings: "Configuración del perfil", + your_account: "Tu cuenta", + security: "Seguridad", + activity: "Actividad", + appearance: "Apariencia", + notifications: "Notificaciones", + connections: "Conexiones", + workspaces: "Espacios de trabajo", + create_workspace: "Crear espacio de trabajo", + invitations: "Invitaciones", + summary: "Resumen", + assigned: "Asignado", + created: "Creado", + subscribed: "Suscrito", + you_do_not_have_the_permission_to_access_this_page: "No tienes permiso para acceder a esta página.", + something_went_wrong_please_try_again: "Algo salió mal. Por favor, inténtalo de nuevo.", + load_more: "Cargar más", + select_or_customize_your_interface_color_scheme: "Selecciona o personaliza el esquema de colores de tu interfaz.", + theme: "Tema", + system_preference: "Preferencia del sistema", + light: "Claro", + dark: "Oscuro", + light_contrast: "Alto contraste claro", + dark_contrast: "Alto contraste oscuro", + custom: "Tema personalizado", + select_your_theme: "Selecciona tu tema", + customize_your_theme: "Personaliza tu tema", + background_color: "Color de fondo", + text_color: "Color del texto", + primary_color: "Color primario (Tema)", + sidebar_background_color: "Color de fondo de la barra lateral", + sidebar_text_color: "Color del texto de la barra lateral", + set_theme: "Establecer tema", + enter_a_valid_hex_code_of_6_characters: "Ingresa un código hexadecimal válido de 6 caracteres", + background_color_is_required: "El color de fondo es requerido", + text_color_is_required: "El color del texto es requerido", + primary_color_is_required: "El color primario es requerido", + sidebar_background_color_is_required: "El color de fondo de la barra lateral es requerido", + sidebar_text_color_is_required: "El color del texto de la barra lateral es requerido", + updating_theme: "Actualizando tema", + theme_updated_successfully: "Tema actualizado exitosamente", + failed_to_update_the_theme: "Error al actualizar el tema", + email_notifications: "Notificaciones por correo electrónico", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Mantente al tanto de los elementos de trabajo a los que estás suscrito. Activa esto para recibir notificaciones.", + email_notification_setting_updated_successfully: + "Configuración de notificaciones por correo electrónico actualizada exitosamente", + failed_to_update_email_notification_setting: + "Error al actualizar la configuración de notificaciones por correo electrónico", + notify_me_when: "Notificarme cuando", + property_changes: "Cambios de propiedades", + property_changes_description: + "Notificarme cuando cambien las propiedades de los elementos de trabajo como asignados, prioridad, estimaciones o cualquier otra cosa.", + state_change: "Cambio de estado", + state_change_description: "Notificarme cuando los elementos de trabajo se muevan a un estado diferente", + issue_completed: "Elemento de trabajo completado", + issue_completed_description: "Notificarme solo cuando se complete un elemento de trabajo", + comments: "Comentarios", + comments_description: "Notificarme cuando alguien deje un comentario en el elemento de trabajo", + mentions: "Menciones", + mentions_description: "Notificarme solo cuando alguien me mencione en los comentarios o descripción", + old_password: "Contraseña anterior", + general_settings: "Configuración general", + sign_out: "Cerrar sesión", + signing_out: "Cerrando sesión", + active_cycles: "Ciclos activos", + active_cycles_description: + "Monitorea ciclos en todos los proyectos, rastrea elementos de trabajo de alta prioridad y enfócate en los ciclos que necesitan atención.", + on_demand_snapshots_of_all_your_cycles: "Instantáneas bajo demanda de todos tus ciclos", + upgrade: "Actualizar", + "10000_feet_view": "Vista panorámica de todos los ciclos activos.", + "10000_feet_view_description": + "Aléjate para ver los ciclos en ejecución en todos tus proyectos a la vez en lugar de ir de Ciclo en Ciclo en cada proyecto.", + get_snapshot_of_each_active_cycle: "Obtén una instantánea de cada ciclo activo.", + get_snapshot_of_each_active_cycle_description: + "Rastrea métricas de alto nivel para todos los ciclos activos, ve su estado de progreso y obtén una idea del alcance contra los plazos.", + compare_burndowns: "Compara los burndowns.", + compare_burndowns_description: + "Monitorea cómo se está desempeñando cada uno de tus equipos con un vistazo al informe de burndown de cada ciclo.", + quickly_see_make_or_break_issues: "Ve rápidamente los elementos de trabajo críticos.", + quickly_see_make_or_break_issues_description: + "Previsualiza elementos de trabajo de alta prioridad para cada ciclo contra fechas de vencimiento. Vélos todos por ciclo con un clic.", + zoom_into_cycles_that_need_attention: "Enfócate en los ciclos que necesitan atención.", + zoom_into_cycles_that_need_attention_description: + "Investiga el estado de cualquier ciclo que no se ajuste a las expectativas con un clic.", + stay_ahead_of_blockers: "Mantente adelante de los bloqueadores.", + stay_ahead_of_blockers_description: + "Detecta desafíos de un proyecto a otro y ve dependencias entre ciclos que no son obvias desde ninguna otra vista.", + analytics: "Análisis", + workspace_invites: "Invitaciones al espacio de trabajo", + enter_god_mode: "Entrar en modo dios", + workspace_logo: "Logo del espacio de trabajo", + new_issue: "Nuevo elemento de trabajo", + your_work: "Tu trabajo", + workspace_dashboards: "Paneles de control", + drafts: "Borradores", + projects: "Proyectos", + views: "Vistas", + workspace: "Espacio de trabajo", + archives: "Archivos", + settings: "Configuración", + failed_to_move_favorite: "Error al mover favorito", + favorites: "Favoritos", + no_favorites_yet: "Aún no hay favoritos", + create_folder: "Crear carpeta", + new_folder: "Nueva carpeta", + favorite_updated_successfully: "Favorito actualizado exitosamente", + favorite_created_successfully: "Favorito creado exitosamente", + folder_already_exists: "La carpeta ya existe", + folder_name_cannot_be_empty: "El nombre de la carpeta no puede estar vacío", + something_went_wrong: "Algo salió mal", + failed_to_reorder_favorite: "Error al reordenar favorito", + favorite_removed_successfully: "Favorito eliminado exitosamente", + failed_to_create_favorite: "Error al crear favorito", + failed_to_rename_favorite: "Error al renombrar favorito", + project_link_copied_to_clipboard: "Enlace del proyecto copiado al portapapeles", + link_copied: "Enlace copiado", + add_project: "Agregar proyecto", + create_project: "Crear proyecto", + failed_to_remove_project_from_favorites: + "No se pudo eliminar el proyecto de favoritos. Por favor, inténtalo de nuevo.", + project_created_successfully: "Proyecto creado exitosamente", + project_created_successfully_description: + "Proyecto creado exitosamente. Ahora puedes comenzar a agregar elementos de trabajo.", + project_name_already_taken: "El nombre del proyecto ya está en uso.", + project_identifier_already_taken: "El identificador del proyecto ya está en uso.", + project_cover_image_alt: "Imagen de portada del proyecto", + name_is_required: "El nombre es requerido", + title_should_be_less_than_255_characters: "El título debe tener menos de 255 caracteres", + project_name: "Nombre del proyecto", + project_id_must_be_at_least_1_character: "El ID del proyecto debe tener al menos 1 carácter", + project_id_must_be_at_most_5_characters: "El ID del proyecto debe tener como máximo 5 caracteres", + project_id: "ID del proyecto", + project_id_tooltip_content: + "Te ayuda a identificar elementos de trabajo en el proyecto de manera única. Máximo 5 caracteres.", + description_placeholder: "Descripción", + only_alphanumeric_non_latin_characters_allowed: "Solo se permiten caracteres alfanuméricos y no latinos.", + project_id_is_required: "El ID del proyecto es requerido", + project_id_allowed_char: "Solo se permiten caracteres alfanuméricos y no latinos.", + project_id_min_char: "El ID del proyecto debe tener al menos 1 carácter", + project_id_max_char: "El ID del proyecto debe tener como máximo 5 caracteres", + project_description_placeholder: "Ingresa la descripción del proyecto", + select_network: "Seleccionar red", + lead: "Líder", + date_range: "Rango de fechas", + private: "Privado", + public: "Público", + accessible_only_by_invite: "Accesible solo por invitación", + anyone_in_the_workspace_except_guests_can_join: "Cualquiera en el espacio de trabajo excepto invitados puede unirse", + creating: "Creando", + creating_project: "Creando proyecto", + adding_project_to_favorites: "Agregando proyecto a favoritos", + project_added_to_favorites: "Proyecto agregado a favoritos", + couldnt_add_the_project_to_favorites: "No se pudo agregar el proyecto a favoritos. Por favor, inténtalo de nuevo.", + removing_project_from_favorites: "Eliminando proyecto de favoritos", + project_removed_from_favorites: "Proyecto eliminado de favoritos", + couldnt_remove_the_project_from_favorites: + "No se pudo eliminar el proyecto de favoritos. Por favor, inténtalo de nuevo.", + add_to_favorites: "Agregar a favoritos", + remove_from_favorites: "Eliminar de favoritos", + publish_project: "Publicar proyecto", + publish: "Publicar", + copy_link: "Copiar enlace", + leave_project: "Abandonar proyecto", + join_the_project_to_rearrange: "Únete al proyecto para reorganizar", + drag_to_rearrange: "Arrastra para reorganizar", + congrats: "¡Felicitaciones!", + open_project: "Abrir proyecto", + issues: "Elementos de trabajo", + cycles: "Ciclos", + modules: "Módulos", + pages: "Páginas", + intake: "Entrada", + time_tracking: "Seguimiento de tiempo", + work_management: "Gestión del trabajo", + projects_and_issues: "Proyectos y elementos de trabajo", + projects_and_issues_description: "Activa o desactiva estos en este proyecto.", + cycles_description: + "Organiza el trabajo por proyecto en períodos de tiempo y ajusta la duración según sea necesario. Un ciclo puede ser de 2 semanas y el siguiente de 1 semana.", + modules_description: "Organiza el trabajo en subproyectos con líderes y responsables dedicados.", + views_description: + "Guarda ordenamientos, filtros y opciones de visualización personalizadas o compártelos con tu equipo.", + pages_description: "Crea y edita contenido libre; notas, documentos, lo que sea.", + intake_description: + "Permite que personas ajenas al equipo compartan errores, comentarios y sugerencias sin interrumpir tu flujo de trabajo.", + time_tracking_description: "Registra el tiempo dedicado a elementos de trabajo y proyectos.", + work_management_description: "Gestiona tu trabajo y proyectos con facilidad.", + documentation: "Documentación", + message_support: "Mensaje al soporte", + contact_sales: "Contactar ventas", + hyper_mode: "Modo Hyper", + keyboard_shortcuts: "Atajos de teclado", + whats_new: "¿Qué hay de nuevo?", + version: "Versión", + we_are_having_trouble_fetching_the_updates: "Estamos teniendo problemas para obtener las actualizaciones.", + our_changelogs: "nuestros registros de cambios", + for_the_latest_updates: "para las últimas actualizaciones.", + please_visit: "Por favor visita", + docs: "Documentación", + full_changelog: "Registro de cambios completo", + support: "Soporte", + discord: "Discord", + powered_by_plane_pages: "Desarrollado por Plane Pages", + please_select_at_least_one_invitation: "Por favor selecciona al menos una invitación.", + please_select_at_least_one_invitation_description: + "Por favor selecciona al menos una invitación para unirte al espacio de trabajo.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Vemos que alguien te ha invitado a unirte a un espacio de trabajo", + join_a_workspace: "Únete a un espacio de trabajo", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Vemos que alguien te ha invitado a unirte a un espacio de trabajo", + join_a_workspace_description: "Únete a un espacio de trabajo", + accept_and_join: "Aceptar y unirse", + go_home: "Ir a inicio", + no_pending_invites: "No hay invitaciones pendientes", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Puedes ver aquí si alguien te invita a un espacio de trabajo", + back_to_home: "Volver a inicio", + workspace_name: "nombre-del-espacio-de-trabajo", + deactivate_your_account: "Desactivar tu cuenta", + deactivate_your_account_description: + "Una vez desactivada, no se te podrán asignar elementos de trabajo ni se te facturará por tu espacio de trabajo. Para reactivar tu cuenta, necesitarás una invitación a un espacio de trabajo con esta dirección de correo electrónico.", + deactivating: "Desactivando", + confirm: "Confirmar", + confirming: "Confirmando", + draft_created: "Borrador creado", + issue_created_successfully: "Elemento de trabajo creado exitosamente", + draft_creation_failed: "Error al crear borrador", + issue_creation_failed: "Error al crear elemento de trabajo", + draft_issue: "Borrador de elemento de trabajo", + issue_updated_successfully: "Elemento de trabajo actualizado exitosamente", + issue_could_not_be_updated: "El elemento de trabajo no pudo ser actualizado", + create_a_draft: "Crear un borrador", + save_to_drafts: "Guardar en borradores", + save: "Guardar", + update: "Actualizar", + updating: "Actualizando", + create_new_issue: "Crear nuevo elemento de trabajo", + editor_is_not_ready_to_discard_changes: "El editor no está listo para descartar cambios", + failed_to_move_issue_to_project: "Error al mover elemento de trabajo al proyecto", + create_more: "Crear más", + add_to_project: "Agregar al proyecto", + discard: "Descartar", + duplicate_issue_found: "Se encontró un elemento de trabajo duplicado", + duplicate_issues_found: "Se encontraron elementos de trabajo duplicados", + no_matching_results: "No hay resultados coincidentes", + title_is_required: "El título es requerido", + title: "Título", + state: "Estado", + priority: "Prioridad", + none: "Ninguno", + urgent: "Urgente", + high: "Alta", + medium: "Media", + low: "Baja", + members: "Miembros", + assignee: "Asignado", + assignees: "Asignados", + you: "Tú", + labels: "Etiquetas", + create_new_label: "Crear nueva etiqueta", + start_date: "Fecha de inicio", + end_date: "Fecha de fin", + due_date: "Fecha de vencimiento", + estimate: "Estimación", + change_parent_issue: "Cambiar elemento de trabajo padre", + remove_parent_issue: "Eliminar elemento de trabajo padre", + add_parent: "Agregar padre", + loading_members: "Cargando miembros", + view_link_copied_to_clipboard: "Enlace de vista copiado al portapapeles.", + required: "Requerido", + optional: "Opcional", + Cancel: "Cancelar", + edit: "Editar", + archive: "Archivar", + restore: "Restaurar", + open_in_new_tab: "Abrir en nueva pestaña", + delete: "Eliminar", + deleting: "Eliminando", + make_a_copy: "Hacer una copia", + move_to_project: "Mover al proyecto", + good: "Buenos", + morning: "días", + afternoon: "tardes", + evening: "noches", + show_all: "Mostrar todo", + show_less: "Mostrar menos", + no_data_yet: "Aún no hay datos", + syncing: "Sincronizando", + add_work_item: "Agregar elemento de trabajo", + advanced_description_placeholder: "Presiona '/' para comandos", + create_work_item: "Crear elemento de trabajo", + attachments: "Archivos adjuntos", + declining: "Rechazando", + declined: "Rechazado", + decline: "Rechazar", + unassigned: "Sin asignar", + work_items: "Elementos de trabajo", + add_link: "Agregar enlace", + points: "Puntos", + no_assignee: "Sin asignado", + no_assignees_yet: "Aún no hay asignados", + no_labels_yet: "Aún no hay etiquetas", + ideal: "Ideal", + current: "Actual", + no_matching_members: "No hay miembros coincidentes", + leaving: "Abandonando", + removing: "Eliminando", + leave: "Abandonar", + refresh: "Actualizar", + refreshing: "Actualizando", + refresh_status: "Actualizar estado", + prev: "Anterior", + next: "Siguiente", + re_generating: "Regenerando", + re_generate: "Regenerar", + re_generate_key: "Regenerar clave", + export: "Exportar", + member: "{count, plural, one{# miembro} other{# miembros}}", + new_password_must_be_different_from_old_password: "La nueva contraseña debe ser diferente a la contraseña anterior", + edited: "Modificado", + bot: "Bot", + project_view: { + sort_by: { + created_at: "Creado el", + updated_at: "Actualizado el", + name: "Nombre", + }, + }, + toast: { + success: "¡Éxito!", + error: "¡Error!", + }, + links: { + toasts: { + created: { + title: "Enlace creado", + message: "El enlace se ha creado correctamente", + }, + not_created: { + title: "Enlace no creado", + message: "No se pudo crear el enlace", + }, + updated: { + title: "Enlace actualizado", + message: "El enlace se ha actualizado correctamente", + }, + not_updated: { + title: "Enlace no actualizado", + message: "No se pudo actualizar el enlace", + }, + removed: { + title: "Enlace eliminado", + message: "El enlace se ha eliminado correctamente", + }, + not_removed: { + title: "Enlace no eliminado", + message: "No se pudo eliminar el enlace", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Guía de inicio rápido", + not_right_now: "Ahora no", + create_project: { + title: "Crear un proyecto", + description: "La mayoría de las cosas comienzan con un proyecto en Plane.", + cta: "Comenzar", + }, + invite_team: { + title: "Invita a tu equipo", + description: "Construye, implementa y gestiona con compañeros de trabajo.", + cta: "Hazlos entrar", + }, + configure_workspace: { + title: "Configura tu espacio de trabajo.", + description: "Activa o desactiva funciones o ve más allá.", + cta: "Configurar este espacio de trabajo", + }, + personalize_account: { + title: "Haz Plane tuyo.", + description: "Elige tu foto, colores y más.", + cta: "Personalizar ahora", + }, + widgets: { + title: "Está Silencioso Sin Widgets, Actívalos", + description: "Parece que todos tus widgets están desactivados. ¡Actívalos\nahora para mejorar tu experiencia!", + primary_button: { + text: "Gestionar widgets", + }, + }, + }, + quick_links: { + empty: "Guarda enlaces a cosas de trabajo que te gustaría tener a mano.", + add: "Agregar enlace rápido", + title: "Enlace rápido", + title_plural: "Enlaces rápidos", + }, + recents: { + title: "Recientes", + empty: { + project: "Tus proyectos recientes aparecerán aquí una vez que visites uno.", + page: "Tus páginas recientes aparecerán aquí una vez que visites una.", + issue: "Tus elementos de trabajo recientes aparecerán aquí una vez que visites uno.", + default: "Aún no tienes elementos recientes.", + }, + filters: { + all: "Todos", + projects: "Proyectos", + pages: "Páginas", + issues: "Elementos de trabajo", + }, + }, + new_at_plane: { + title: "Nuevo en Plane", + }, + quick_tutorial: { + title: "Tutorial rápido", + }, + widget: { + reordered_successfully: "Widget reordenado correctamente.", + reordering_failed: "Ocurrió un error al reordenar el widget.", + }, + manage_widgets: "Gestionar widgets", + title: "Inicio", + star_us_on_github: "Danos una estrella en GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "La URL no es válida", + placeholder: "Escribe o pega una URL", + }, + title: { + text: "Título a mostrar", + placeholder: "Cómo te gustaría ver este enlace", + }, + }, + }, + common: { + all: "Todo", + states: "Estados", + state: "Estado", + state_groups: "Grupos de estados", + state_group: "Grupos de estado", + priorities: "Prioridades", + priority: "Prioridad", + team_project: "Proyecto de equipo", + project: "Proyecto", + cycle: "Ciclo", + cycles: "Ciclos", + module: "Módulo", + modules: "Módulos", + labels: "Etiquetas", + label: "Etiqueta", + assignees: "Asignados", + assignee: "Asignado", + created_by: "Creado por", + none: "Ninguno", + link: "Enlace", + estimates: "Estimaciones", + estimate: "Estimación", + created_at: "Creado en", + completed_at: "Completado en", + layout: "Diseño", + filters: "Filtros", + display: "Mostrar", + load_more: "Cargar más", + activity: "Actividad", + analytics: "Análisis", + dates: "Fechas", + success: "¡Éxito!", + something_went_wrong: "Algo salió mal", + error: { + label: "¡Error!", + message: "Ocurrió un error. Por favor, inténtalo de nuevo.", + }, + group_by: "Agrupar por", + epic: "Epic", + epics: "Epics", + work_item: "Elemento de trabajo", + work_items: "Elementos de trabajo", + sub_work_item: "Sub-elemento de trabajo", + add: "Agregar", + warning: "Advertencia", + updating: "Actualizando", + adding: "Agregando", + update: "Actualizar", + creating: "Creando", + create: "Crear", + cancel: "Cancelar", + description: "Descripción", + title: "Título", + attachment: "Archivo adjunto", + general: "General", + features: "Características", + automation: "Automatización", + project_name: "Nombre del proyecto", + project_id: "ID del proyecto", + project_timezone: "Zona horaria del proyecto", + created_on: "Creado el", + update_project: "Actualizar proyecto", + identifier_already_exists: "El identificador ya existe", + add_more: "Agregar más", + defaults: "Valores predeterminados", + add_label: "Agregar etiqueta", + customize_time_range: "Personalizar rango de tiempo", + loading: "Cargando", + attachments: "Archivos adjuntos", + property: "Propiedad", + properties: "Propiedades", + parent: "Padre", + page: "página", + remove: "Eliminar", + archiving: "Archivando", + archive: "Archivar", + access: { + public: "Público", + private: "Privado", + }, + done: "Hecho", + sub_work_items: "Sub-elementos de trabajo", + comment: "Comentario", + workspace_level: "Nivel de espacio de trabajo", + order_by: { + label: "Ordenar por", + manual: "Manual", + last_created: "Último creado", + last_updated: "Última actualización", + start_date: "Fecha de inicio", + due_date: "Fecha de vencimiento", + asc: "Ascendente", + desc: "Descendente", + updated_on: "Actualizado el", + }, + sort: { + asc: "Ascendente", + desc: "Descendente", + created_on: "Creado el", + updated_on: "Actualizado el", + }, + comments: "Comentarios", + updates: "Actualizaciones", + clear_all: "Limpiar todo", + copied: "¡Copiado!", + link_copied: "¡Enlace copiado!", + link_copied_to_clipboard: "Enlace copiado al portapapeles", + copied_to_clipboard: "Enlace del elemento de trabajo copiado al portapapeles", + is_copied_to_clipboard: "El elemento de trabajo está copiado al portapapeles", + no_links_added_yet: "Aún no se han agregado enlaces", + add_link: "Agregar enlace", + links: "Enlaces", + go_to_workspace: "Ir al espacio de trabajo", + progress: "Progreso", + optional: "Opcional", + join: "Unirse", + go_back: "Volver", + continue: "Continuar", + resend: "Reenviar", + relations: "Relaciones", + errors: { + default: { + title: "¡Error!", + message: "Algo salió mal. Por favor, inténtalo de nuevo.", + }, + required: "Este campo es obligatorio", + entity_required: "{entity} es obligatorio", + restricted_entity: "{entity} está restringido", + }, + update_link: "Actualizar enlace", + attach: "Adjuntar", + create_new: "Crear nuevo", + add_existing: "Agregar existente", + type_or_paste_a_url: "Escribe o pega una URL", + url_is_invalid: "La URL no es válida", + display_title: "Título a mostrar", + link_title_placeholder: "Cómo te gustaría ver este enlace", + url: "URL", + side_peek: "Vista lateral", + modal: "Modal", + full_screen: "Pantalla completa", + close_peek_view: "Cerrar la vista previa", + toggle_peek_view_layout: "Alternar diseño de vista previa", + options: "Opciones", + duration: "Duración", + today: "Hoy", + week: "Semana", + month: "Mes", + quarter: "Trimestre", + press_for_commands: "Presiona '/' para comandos", + click_to_add_description: "Haz clic para agregar descripción", + search: { + label: "Buscar", + placeholder: "Escribe para buscar", + no_matches_found: "No se encontraron coincidencias", + no_matching_results: "No hay resultados coincidentes", + }, + actions: { + edit: "Editar", + make_a_copy: "Hacer una copia", + open_in_new_tab: "Abrir en nueva pestaña", + copy_link: "Copiar enlace", + archive: "Archivar", + delete: "Eliminar", + remove_relation: "Eliminar relación", + subscribe: "Suscribirse", + unsubscribe: "Cancelar suscripción", + clear_sorting: "Limpiar ordenamiento", + show_weekends: "Mostrar fines de semana", + enable: "Habilitar", + disable: "Deshabilitar", + }, + name: "Nombre", + discard: "Descartar", + confirm: "Confirmar", + confirming: "Confirmando", + read_the_docs: "Leer la documentación", + default: "Predeterminado", + active: "Activo", + enabled: "Habilitado", + disabled: "Deshabilitado", + mandate: "Mandato", + mandatory: "Obligatorio", + yes: "Sí", + no: "No", + please_wait: "Por favor espera", + enabling: "Habilitando", + disabling: "Deshabilitando", + beta: "Beta", + or: "o", + next: "Siguiente", + back: "Atrás", + cancelling: "Cancelando", + configuring: "Configurando", + clear: "Limpiar", + import: "Importar", + connect: "Conectar", + authorizing: "Autorizando", + processing: "Procesando", + no_data_available: "No hay datos disponibles", + from: "de {name}", + authenticated: "Autenticado", + select: "Seleccionar", + upgrade: "Mejorar", + add_seats: "Agregar asientos", + projects: "Proyectos", + workspace: "Espacio de trabajo", + workspaces: "Espacios de trabajo", + team: "Equipo", + teams: "Equipos", + entity: "Entidad", + entities: "Entidades", + task: "Tarea", + tasks: "Tareas", + section: "Sección", + sections: "Secciones", + edit: "Editar", + connecting: "Conectando", + connected: "Conectado", + disconnect: "Desconectar", + disconnecting: "Desconectando", + installing: "Instalando", + install: "Instalar", + reset: "Reiniciar", + live: "En vivo", + change_history: "Historial de cambios", + coming_soon: "Próximamente", + member: "Miembro", + members: "Miembros", + you: "Tú", + upgrade_cta: { + higher_subscription: "Mejorar a una suscripción más alta", + talk_to_sales: "Hablar con ventas", + }, + category: "Categoría", + categories: "Categorías", + saving: "Guardando", + save_changes: "Guardar cambios", + delete: "Eliminar", + deleting: "Eliminando", + pending: "Pendiente", + invite: "Invitar", + view: "Ver", + deactivated_user: "Usuario desactivado", + apply: "Aplicar", + applying: "Aplicando", + users: "Usuarios", + admins: "Administradores", + guests: "Invitados", + on_track: "En camino", + off_track: "Fuera de camino", + at_risk: "En riesgo", + timeline: "Cronograma", + completion: "Finalización", + upcoming: "Próximo", + completed: "Completado", + in_progress: "En progreso", + planned: "Planificado", + paused: "Pausado", + no_of: "N.º de {entity}", + resolved: "Resuelto", + }, + chart: { + x_axis: "Eje X", + y_axis: "Eje Y", + metric: "Métrica", + }, + form: { + title: { + required: "El título es obligatorio", + max_length: "El título debe tener menos de {length} caracteres", + }, + }, + entity: { + grouping_title: "Agrupación de {entity}", + priority: "Prioridad de {entity}", + all: "Todos los {entity}", + drop_here_to_move: "Suelta aquí para mover el {entity}", + delete: { + label: "Eliminar {entity}", + success: "{entity} eliminado correctamente", + failed: "Error al eliminar {entity}", + }, + update: { + failed: "Error al actualizar {entity}", + success: "{entity} actualizado correctamente", + }, + link_copied_to_clipboard: "Enlace de {entity} copiado al portapapeles", + fetch: { + failed: "Error al obtener {entity}", + }, + add: { + success: "{entity} agregado correctamente", + failed: "Error al agregar {entity}", + }, + remove: { + success: "{entity} eliminado correctamente", + failed: "Error al eliminar {entity}", + }, + }, + epic: { + all: "Todos los Epics", + label: "{count, plural, one {Epic} other {Epics}}", + new: "Nuevo Epic", + adding: "Agregando epic", + create: { + success: "Epic creado correctamente", + }, + add: { + press_enter: "Presiona 'Enter' para agregar otro epic", + label: "Agregar Epic", + }, + title: { + label: "Título del Epic", + required: "El título del epic es obligatorio.", + }, + }, + issue: { + label: "{count, plural, one {Elemento de trabajo} other {Elementos de trabajo}}", + all: "Todos los elementos de trabajo", + edit: "Editar elemento de trabajo", + title: { + label: "Título del elemento de trabajo", + required: "El título del elemento de trabajo es obligatorio.", + }, + add: { + press_enter: "Presiona 'Enter' para agregar otro elemento de trabajo", + label: "Agregar elemento de trabajo", + cycle: { + failed: "No se pudo agregar el elemento de trabajo al ciclo. Por favor, inténtalo de nuevo.", + success: + "{count, plural, one {Elemento de trabajo agregado} other {Elementos de trabajo agregados}} al ciclo correctamente.", + loading: "Agregando {count, plural, one {elemento de trabajo} other {elementos de trabajo}} al ciclo", + }, + assignee: "Agregar asignados", + start_date: "Agregar fecha de inicio", + due_date: "Agregar fecha de vencimiento", + parent: "Agregar elemento de trabajo padre", + sub_issue: "Agregar sub-elemento de trabajo", + relation: "Agregar relación", + link: "Agregar enlace", + existing: "Agregar elemento de trabajo existente", + }, + remove: { + label: "Eliminar elemento de trabajo", + cycle: { + loading: "Eliminando elemento de trabajo del ciclo", + success: "Elemento de trabajo eliminado del ciclo correctamente.", + failed: "No se pudo eliminar el elemento de trabajo del ciclo. Por favor, inténtalo de nuevo.", + }, + module: { + loading: "Eliminando elemento de trabajo del módulo", + success: "Elemento de trabajo eliminado del módulo correctamente.", + failed: "No se pudo eliminar el elemento de trabajo del módulo. Por favor, inténtalo de nuevo.", + }, + parent: { + label: "Eliminar elemento de trabajo padre", + }, + }, + new: "Nuevo elemento de trabajo", + adding: "Agregando elemento de trabajo", + create: { + success: "Elemento de trabajo creado correctamente", + }, + priority: { + urgent: "Urgente", + high: "Alta", + medium: "Media", + low: "Baja", + }, + display: { + properties: { + label: "Mostrar propiedades", + id: "ID", + issue_type: "Tipo de elemento de trabajo", + sub_issue_count: "Cantidad de sub-elementos", + attachment_count: "Cantidad de archivos adjuntos", + created_on: "Creado el", + sub_issue: "Sub-elemento de trabajo", + work_item_count: "Recuento de elementos de trabajo", + }, + extra: { + show_sub_issues: "Mostrar sub-elementos", + show_empty_groups: "Mostrar grupos vacíos", + }, + }, + layouts: { + ordered_by_label: "Este diseño está ordenado por", + list: "Lista", + kanban: "Tablero", + calendar: "Calendario", + spreadsheet: "Tabla", + gantt: "Línea de tiempo", + title: { + list: "Diseño de lista", + kanban: "Diseño de tablero", + calendar: "Diseño de calendario", + spreadsheet: "Diseño de tabla", + gantt: "Diseño de línea de tiempo", + }, + }, + states: { + active: "Activo", + backlog: "Pendientes", + }, + comments: { + placeholder: "Agregar comentario", + switch: { + private: "Cambiar a comentario privado", + public: "Cambiar a comentario público", + }, + create: { + success: "Comentario creado correctamente", + error: "Error al crear el comentario. Por favor, inténtalo más tarde.", + }, + update: { + success: "Comentario actualizado correctamente", + error: "Error al actualizar el comentario. Por favor, inténtalo más tarde.", + }, + remove: { + success: "Comentario eliminado correctamente", + error: "Error al eliminar el comentario. Por favor, inténtalo más tarde.", + }, + upload: { + error: "Error al subir el archivo. Por favor, inténtalo más tarde.", + }, + copy_link: { + success: "Enlace del comentario copiado al portapapeles", + error: "Error al copiar el enlace del comentario. Inténtelo de nuevo más tarde.", + }, + }, + empty_state: { + issue_detail: { + title: "El elemento de trabajo no existe", + description: "El elemento de trabajo que buscas no existe, ha sido archivado o ha sido eliminado.", + primary_button: { + text: "Ver otros elementos de trabajo", + }, + }, + }, + sibling: { + label: "Elementos de trabajo hermanos", + }, + archive: { + description: "Solo los elementos de trabajo completados\no cancelados pueden ser archivados", + label: "Archivar elemento de trabajo", + confirm_message: + "¿Estás seguro de que quieres archivar el elemento de trabajo? Todos tus elementos archivados pueden ser restaurados más tarde.", + success: { + label: "Archivo exitoso", + message: "Tus archivos se pueden encontrar en los archivos del proyecto.", + }, + failed: { + message: "No se pudo archivar el elemento de trabajo. Por favor, inténtalo de nuevo.", + }, + }, + restore: { + success: { + title: "Restauración exitosa", + message: "Tu elemento de trabajo se puede encontrar en los elementos de trabajo del proyecto.", + }, + failed: { + message: "No se pudo restaurar el elemento de trabajo. Por favor, inténtalo de nuevo.", + }, + }, + relation: { + relates_to: "Se relaciona con", + duplicate: "Duplicado de", + blocked_by: "Bloqueado por", + blocking: "Bloqueando", + }, + copy_link: "Copiar enlace del elemento de trabajo", + delete: { + label: "Eliminar elemento de trabajo", + error: "Error al eliminar el elemento de trabajo", + }, + subscription: { + actions: { + subscribed: "Suscrito al elemento de trabajo correctamente", + unsubscribed: "Desuscrito del elemento de trabajo correctamente", + }, + }, + select: { + error: "Por favor selecciona al menos un elemento de trabajo", + empty: "No hay elementos de trabajo seleccionados", + add_selected: "Agregar elementos seleccionados", + select_all: "Seleccionar todo", + deselect_all: "Deseleccionar todo", + }, + open_in_full_screen: "Abrir elemento de trabajo en pantalla completa", + }, + attachment: { + error: "No se pudo adjuntar el archivo. Intenta subirlo de nuevo.", + only_one_file_allowed: "Solo se puede subir un archivo a la vez.", + file_size_limit: "El archivo debe tener {size}MB o menos de tamaño.", + drag_and_drop: "Arrastra y suelta en cualquier lugar para subir", + delete: "Eliminar archivo adjunto", + }, + label: { + select: "Seleccionar etiqueta", + create: { + success: "Etiqueta creada correctamente", + failed: "Error al crear la etiqueta", + already_exists: "La etiqueta ya existe", + type: "Escribe para agregar una nueva etiqueta", + }, + }, + sub_work_item: { + update: { + success: "Sub-elemento actualizado correctamente", + error: "Error al actualizar el sub-elemento", + }, + remove: { + success: "Sub-elemento eliminado correctamente", + error: "Error al eliminar el sub-elemento", + }, + empty_state: { + sub_list_filters: { + title: "No tienes sub-elementos de trabajo que coincidan con los filtros que has aplicado.", + description: "Para ver todos los sub-elementos de trabajo, elimina todos los filtros aplicados.", + action: "Eliminar filtros", + }, + list_filters: { + title: "No tienes elementos de trabajo que coincidan con los filtros que has aplicado.", + description: "Para ver todos los elementos de trabajo, elimina todos los filtros aplicados.", + action: "Eliminar filtros", + }, + }, + }, + view: { + label: "{count, plural, one {Vista} other {Vistas}}", + create: { + label: "Crear vista", + }, + update: { + label: "Actualizar vista", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Pendiente", + description: "Pendiente", + }, + declined: { + title: "Rechazado", + description: "Rechazado", + }, + snoozed: { + title: "Pospuesto", + description: "Faltan {days, plural, one{# día} other{# días}}", + }, + accepted: { + title: "Aceptado", + description: "Aceptado", + }, + duplicate: { + title: "Duplicado", + description: "Duplicado", + }, + }, + modals: { + decline: { + title: "Rechazar elemento de trabajo", + content: "¿Estás seguro de que quieres rechazar el elemento de trabajo {value}?", + }, + delete: { + title: "Eliminar elemento de trabajo", + content: "¿Estás seguro de que quieres eliminar el elemento de trabajo {value}?", + success: "Elemento de trabajo eliminado correctamente", + }, + }, + errors: { + snooze_permission: "Solo los administradores del proyecto pueden posponer/desposponer elementos de trabajo", + accept_permission: "Solo los administradores del proyecto pueden aceptar elementos de trabajo", + decline_permission: "Solo los administradores del proyecto pueden rechazar elementos de trabajo", + }, + actions: { + accept: "Aceptar", + decline: "Rechazar", + snooze: "Posponer", + unsnooze: "Desposponer", + copy: "Copiar enlace del elemento de trabajo", + delete: "Eliminar", + open: "Abrir elemento de trabajo", + mark_as_duplicate: "Marcar como duplicado", + move: "Mover {value} a elementos de trabajo del proyecto", + }, + source: { + "in-app": "en-app", + }, + order_by: { + created_at: "Creado el", + updated_at: "Actualizado el", + id: "ID", + }, + label: "Intake", + page_label: "{workspace} - Intake", + modal: { + title: "Crear elemento de trabajo de intake", + }, + tabs: { + open: "Abiertos", + closed: "Cerrados", + }, + empty_state: { + sidebar_open_tab: { + title: "No hay elementos de trabajo abiertos", + description: "Encuentra elementos de trabajo abiertos aquí. Crea un nuevo elemento de trabajo.", + }, + sidebar_closed_tab: { + title: "No hay elementos de trabajo cerrados", + description: "Todos los elementos de trabajo, ya sean aceptados o rechazados, se pueden encontrar aquí.", + }, + sidebar_filter: { + title: "No hay elementos de trabajo coincidentes", + description: + "Ningún elemento de trabajo coincide con el filtro aplicado en intake. Crea un nuevo elemento de trabajo.", + }, + detail: { + title: "Selecciona un elemento de trabajo para ver sus detalles.", + }, + }, + }, + workspace_creation: { + heading: "Crea tu espacio de trabajo", + subheading: "Para comenzar a usar Plane, necesitas crear o unirte a un espacio de trabajo.", + form: { + name: { + label: "Nombra tu espacio de trabajo", + placeholder: "Algo familiar y reconocible es siempre lo mejor.", + }, + url: { + label: "Establece la URL de tu espacio de trabajo", + placeholder: "Escribe o pega una URL", + edit_slug: "Solo puedes editar el slug de la URL", + }, + organization_size: { + label: "¿Cuántas personas usarán este espacio de trabajo?", + placeholder: "Selecciona un rango", + }, + }, + errors: { + creation_disabled: { + title: "Solo el administrador de tu instancia puede crear espacios de trabajo", + description: + "Si conoces la dirección de correo electrónico del administrador de tu instancia, haz clic en el botón de abajo para ponerte en contacto con él.", + request_button: "Solicitar administrador de instancia", + }, + validation: { + name_alphanumeric: + "Los nombres de espacios de trabajo solo pueden contener (' '), ('-'), ('_') y caracteres alfanuméricos.", + name_length: "Limita tu nombre a 80 caracteres.", + url_alphanumeric: "Las URLs solo pueden contener ('-') y caracteres alfanuméricos.", + url_length: "Limita tu URL a 48 caracteres.", + url_already_taken: "¡La URL del espacio de trabajo ya está en uso!", + }, + }, + request_email: { + subject: "Solicitando un nuevo espacio de trabajo", + body: "Hola administrador(es) de instancia,\n\nPor favor, crea un nuevo espacio de trabajo con la URL [/nombre-espacio-trabajo] para [propósito de crear el espacio de trabajo].\n\nGracias,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Crear espacio de trabajo", + loading: "Creando espacio de trabajo", + }, + toast: { + success: { + title: "Éxito", + message: "Espacio de trabajo creado correctamente", + }, + error: { + title: "Error", + message: "No se pudo crear el espacio de trabajo. Por favor, inténtalo de nuevo.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Resumen de tus proyectos, actividad y métricas", + description: + "Bienvenido a Plane, estamos emocionados de tenerte aquí. Crea tu primer proyecto y rastrea tus elementos de trabajo, y esta página se transformará en un espacio que te ayuda a progresar. Los administradores también verán elementos que ayudan a su equipo a progresar.", + primary_button: { + text: "Construye tu primer proyecto", + comic: { + title: "Todo comienza con un proyecto en Plane", + description: + "Un proyecto podría ser la hoja de ruta de un producto, una campaña de marketing o el lanzamiento de un nuevo automóvil.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Análisis", + page_label: "{workspace} - Análisis", + open_tasks: "Total de tareas abiertas", + error: "Hubo un error al obtener los datos.", + work_items_closed_in: "Elementos de trabajo cerrados en", + selected_projects: "Proyectos seleccionados", + total_members: "Total de miembros", + total_cycles: "Total de Ciclos", + total_modules: "Total de Módulos", + pending_work_items: { + title: "Elementos de trabajo pendientes", + empty_state: "El análisis de elementos de trabajo pendientes por compañeros aparece aquí.", + }, + work_items_closed_in_a_year: { + title: "Elementos de trabajo cerrados en un año", + empty_state: "Cierra elementos de trabajo para ver su análisis en forma de gráfico.", + }, + most_work_items_created: { + title: "Más elementos de trabajo creados", + empty_state: "Los compañeros y el número de elementos de trabajo creados por ellos aparecen aquí.", + }, + most_work_items_closed: { + title: "Más elementos de trabajo cerrados", + empty_state: "Los compañeros y el número de elementos de trabajo cerrados por ellos aparecen aquí.", + }, + tabs: { + scope_and_demand: "Alcance y Demanda", + custom: "Análisis Personalizado", + }, + empty_state: { + customized_insights: { + description: "Los elementos de trabajo asignados a ti, desglosados por estado, aparecerán aquí.", + title: "Aún no hay datos", + }, + created_vs_resolved: { + description: "Los elementos de trabajo creados y resueltos con el tiempo aparecerán aquí.", + title: "Aún no hay datos", + }, + project_insights: { + title: "Aún no hay datos", + description: "Los elementos de trabajo asignados a ti, desglosados por estado, aparecerán aquí.", + }, + general: { + title: + "Rastrea el progreso, las cargas de trabajo y las asignaciones. Identifica tendencias, elimina bloqueos y trabaja más rápido", + description: + "Ve alcance versus demanda, estimaciones y crecimiento del alcance. Obtén rendimiento por miembros del equipo y equipos, y asegúrate de que tu proyecto se ejecute a tiempo.", + primary_button: { + text: "Inicia tu primer proyecto", + comic: { + title: "Analytics funciona mejor con Ciclos + Módulos", + description: + "Primero, encuadra tus elementos de trabajo en Ciclos y, si puedes, agrupa elementos que abarcan más de un ciclo en Módulos. Revisa ambos en la navegación izquierda.", + }, + }, + }, + }, + created_vs_resolved: "Creado vs Resuelto", + customized_insights: "Información personalizada", + backlog_work_items: "{entity} en backlog", + active_projects: "Proyectos activos", + trend_on_charts: "Tendencia en gráficos", + all_projects: "Todos los proyectos", + summary_of_projects: "Resumen de proyectos", + project_insights: "Información del proyecto", + started_work_items: "{entity} iniciados", + total_work_items: "Total de {entity}", + total_projects: "Total de proyectos", + total_admins: "Total de administradores", + total_users: "Total de usuarios", + total_intake: "Ingreso total", + un_started_work_items: "{entity} no iniciados", + total_guests: "Total de invitados", + completed_work_items: "{entity} completados", + total: "Total de {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Proyecto} other {Proyectos}}", + create: { + label: "Agregar Proyecto", + }, + network: { + private: { + title: "Privado", + description: "Accesible solo por invitación", + }, + public: { + title: "Público", + description: "Cualquiera en el espacio de trabajo excepto Invitados puede unirse", + }, + }, + error: { + permission: "No tienes permiso para realizar esta acción.", + cycle_delete: "Error al eliminar el ciclo", + module_delete: "Error al eliminar el módulo", + issue_delete: "Error al eliminar el elemento de trabajo", + }, + state: { + backlog: "Pendiente", + unstarted: "Sin iniciar", + started: "Iniciado", + completed: "Completado", + cancelled: "Cancelado", + }, + sort: { + manual: "Manual", + name: "Nombre", + created_at: "Fecha de creación", + members_length: "Número de miembros", + }, + scope: { + my_projects: "Mis proyectos", + archived_projects: "Archivados", + }, + common: { + months_count: "{months, plural, one{# mes} other{# meses}}", + }, + empty_state: { + general: { + title: "No hay proyectos activos", + description: + "Piensa en cada proyecto como el padre para el trabajo orientado a objetivos. Los proyectos son donde viven las Tareas, Ciclos y Módulos y, junto con tus colegas, te ayudan a alcanzar ese objetivo. Crea un nuevo proyecto o filtra por proyectos archivados.", + primary_button: { + text: "Inicia tu primer proyecto", + comic: { + title: "Todo comienza con un proyecto en Plane", + description: + "Un proyecto podría ser la hoja de ruta de un producto, una campaña de marketing o el lanzamiento de un nuevo automóvil.", + }, + }, + }, + no_projects: { + title: "Sin proyecto", + description: + "Para crear elementos de trabajo o gestionar tu trabajo, necesitas crear un proyecto o ser parte de uno.", + primary_button: { + text: "Inicia tu primer proyecto", + comic: { + title: "Todo comienza con un proyecto en Plane", + description: + "Un proyecto podría ser la hoja de ruta de un producto, una campaña de marketing o el lanzamiento de un nuevo automóvil.", + }, + }, + }, + filter: { + title: "No hay proyectos coincidentes", + description: + "No se detectaron proyectos con los criterios coincidentes. \n Crea un nuevo proyecto en su lugar.", + }, + search: { + description: "No se detectaron proyectos con los criterios coincidentes.\nCrea un nuevo proyecto en su lugar", + }, + }, + }, + workspace_views: { + add_view: "Agregar vista", + empty_state: { + "all-issues": { + title: "No hay elementos de trabajo en el proyecto", + description: + "¡Primer proyecto completado! Ahora, divide tu trabajo en piezas rastreables con elementos de trabajo. ¡Vamos!", + primary_button: { + text: "Crear nuevo elemento de trabajo", + }, + }, + assigned: { + title: "No hay elementos de trabajo aún", + description: "Los elementos de trabajo asignados a ti se pueden rastrear desde aquí.", + primary_button: { + text: "Crear nuevo elemento de trabajo", + }, + }, + created: { + title: "No hay elementos de trabajo aún", + description: "Todos los elementos de trabajo creados por ti vienen aquí, rastréalos aquí directamente.", + primary_button: { + text: "Crear nuevo elemento de trabajo", + }, + }, + subscribed: { + title: "No hay elementos de trabajo aún", + description: "Suscríbete a los elementos de trabajo que te interesan, rastréalos todos aquí.", + }, + "custom-view": { + title: "No hay elementos de trabajo aún", + description: "Elementos de trabajo que aplican a los filtros, rastréalos todos aquí.", + }, + }, + }, + workspace_settings: { + label: "Configuración del espacio de trabajo", + page_label: "{workspace} - Configuración general", + key_created: "Clave creada", + copy_key: + "Copia y guarda esta clave secreta en Plane Pages. No podrás ver esta clave después de hacer clic en Cerrar. Se ha descargado un archivo CSV que contiene la clave.", + token_copied: "Token copiado al portapapeles.", + settings: { + general: { + title: "General", + upload_logo: "Subir logo", + edit_logo: "Editar logo", + name: "Nombre del espacio de trabajo", + company_size: "Tamaño de la empresa", + url: "URL del espacio de trabajo", + update_workspace: "Actualizar espacio de trabajo", + delete_workspace: "Eliminar este espacio de trabajo", + delete_workspace_description: + "Al eliminar un espacio de trabajo, todos los datos y recursos dentro de ese espacio se eliminarán permanentemente y no podrán recuperarse.", + delete_btn: "Eliminar este espacio de trabajo", + delete_modal: { + title: "¿Está seguro de que desea eliminar este espacio de trabajo?", + description: + "Tiene una prueba activa de uno de nuestros planes de pago. Por favor, cancelela primero para continuar.", + dismiss: "Descartar", + cancel: "Cancelar prueba", + success_title: "Espacio de trabajo eliminado.", + success_message: "Pronto irá a su página de perfil.", + error_title: "Eso no funcionó.", + error_message: "Por favor, inténtelo de nuevo.", + }, + errors: { + name: { + required: "El nombre es obligatorio", + max_length: "El nombre del espacio de trabajo no debe exceder los 80 caracteres", + }, + company_size: { + required: "El tamaño de la empresa es obligatorio", + select_a_range: "Seleccionar tamaño de la organización", + }, + }, + }, + members: { + title: "Miembros", + add_member: "Agregar miembro", + pending_invites: "Invitaciones pendientes", + invitations_sent_successfully: "Invitaciones enviadas exitosamente", + leave_confirmation: + "¿Estás seguro de que quieres abandonar el espacio de trabajo? Ya no tendrás acceso a este espacio de trabajo. Esta acción no se puede deshacer.", + details: { + full_name: "Nombre completo", + display_name: "Nombre para mostrar", + email_address: "Dirección de correo electrónico", + account_type: "Tipo de cuenta", + authentication: "Autenticación", + joining_date: "Fecha de incorporación", + }, + modal: { + title: "Invitar personas a colaborar", + description: "Invita personas a colaborar en tu espacio de trabajo.", + button: "Enviar invitaciones", + button_loading: "Enviando invitaciones", + placeholder: "nombre@empresa.com", + errors: { + required: "Necesitamos una dirección de correo electrónico para invitarlos.", + invalid: "El correo electrónico no es válido", + }, + }, + }, + billing_and_plans: { + title: "Facturación y Planes", + current_plan: "Plan actual", + free_plan: "Actualmente estás usando el plan gratuito", + view_plans: "Ver planes", + }, + exports: { + title: "Exportaciones", + exporting: "Exportando", + previous_exports: "Exportaciones anteriores", + export_separate_files: "Exportar los datos en archivos separados", + modal: { + title: "Exportar a", + toasts: { + success: { + title: "Exportación exitosa", + message: "Podrás descargar el {entity} exportado desde la exportación anterior.", + }, + error: { + title: "Exportación fallida", + message: "La exportación no tuvo éxito. Por favor, inténtalo de nuevo.", + }, + }, + }, + }, + webhooks: { + title: "Webhooks", + add_webhook: "Agregar webhook", + modal: { + title: "Crear webhook", + details: "Detalles del webhook", + payload: "URL del payload", + question: "¿Qué eventos te gustaría que activaran este webhook?", + error: "La URL es obligatoria", + }, + secret_key: { + title: "Clave secreta", + message: "Genera un token para iniciar sesión en el payload del webhook", + }, + options: { + all: "Envíame todo", + individual: "Seleccionar eventos individuales", + }, + toasts: { + created: { + title: "Webhook creado", + message: "El webhook se ha creado exitosamente", + }, + not_created: { + title: "Webhook no creado", + message: "No se pudo crear el webhook", + }, + updated: { + title: "Webhook actualizado", + message: "El webhook se ha actualizado exitosamente", + }, + not_updated: { + title: "Webhook no actualizado", + message: "No se pudo actualizar el webhook", + }, + removed: { + title: "Webhook eliminado", + message: "El webhook se ha eliminado exitosamente", + }, + not_removed: { + title: "Webhook no eliminado", + message: "No se pudo eliminar el webhook", + }, + secret_key_copied: { + message: "Clave secreta copiada al portapapeles.", + }, + secret_key_not_copied: { + message: "Ocurrió un error al copiar la clave secreta.", + }, + }, + }, + api_tokens: { + title: "Tokens de API", + add_token: "Agregar token de API", + create_token: "Crear token", + never_expires: "Nunca expira", + generate_token: "Generar token", + generating: "Generando", + delete: { + title: "Eliminar token de API", + description: + "Cualquier aplicación que use este token ya no tendrá acceso a los datos de Plane. Esta acción no se puede deshacer.", + success: { + title: "¡Éxito!", + message: "El token de API se ha eliminado exitosamente", + }, + error: { + title: "¡Error!", + message: "No se pudo eliminar el token de API", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "No se han creado tokens de API", + description: + "Las APIs de Plane se pueden usar para integrar tus datos en Plane con cualquier sistema externo. Crea un token para comenzar.", + }, + webhooks: { + title: "No se han agregado webhooks", + description: "Crea webhooks para recibir actualizaciones en tiempo real y automatizar acciones.", + }, + exports: { + title: "No hay exportaciones aún", + description: "Cada vez que exportes, también tendrás una copia aquí para referencia.", + }, + imports: { + title: "No hay importaciones aún", + description: "Encuentra todas tus importaciones anteriores aquí y descárgalas.", + }, + }, + }, + profile: { + label: "Perfil", + page_label: "Tu trabajo", + work: "Trabajo", + details: { + joined_on: "Se unió el", + time_zone: "Zona horaria", + }, + stats: { + workload: "Carga de trabajo", + overview: "Resumen", + created: "Elementos de trabajo creados", + assigned: "Elementos de trabajo asignados", + subscribed: "Elementos de trabajo suscritos", + state_distribution: { + title: "Elementos de trabajo por estado", + empty: "Crea elementos de trabajo para verlos por estados en el gráfico para un mejor análisis.", + }, + priority_distribution: { + title: "Elementos de trabajo por Prioridad", + empty: "Crea elementos de trabajo para verlos por prioridad en el gráfico para un mejor análisis.", + }, + recent_activity: { + title: "Actividad reciente", + empty: "No pudimos encontrar datos. Por favor revisa tus entradas", + button: "Descargar actividad de hoy", + button_loading: "Descargando", + }, + }, + actions: { + profile: "Perfil", + security: "Seguridad", + activity: "Actividad", + appearance: "Apariencia", + notifications: "Notificaciones", + }, + tabs: { + summary: "Resumen", + assigned: "Asignado", + created: "Creado", + subscribed: "Suscrito", + activity: "Actividad", + }, + empty_state: { + activity: { + title: "Aún no hay actividades", + description: + "¡Comienza creando un nuevo elemento de trabajo! Agrégale detalles y propiedades. Explora más en Plane para ver tu actividad.", + }, + assigned: { + title: "No hay elementos de trabajo asignados a ti", + description: "Los elementos de trabajo asignados a ti se pueden rastrear desde aquí.", + }, + created: { + title: "Aún no hay elementos de trabajo", + description: "Todos los elementos de trabajo creados por ti aparecen aquí, rastréalos directamente aquí.", + }, + subscribed: { + title: "Aún no hay elementos de trabajo", + description: "Suscríbete a los elementos de trabajo que te interesen, rastréalos todos aquí.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Ingresa el ID del proyecto", + please_select_a_timezone: "Por favor selecciona una zona horaria", + archive_project: { + title: "Archivar proyecto", + description: + "Archivar un proyecto lo eliminará de tu navegación lateral aunque aún podrás acceder a él desde tu página de proyectos. Puedes restaurar el proyecto o eliminarlo cuando quieras.", + button: "Archivar proyecto", + }, + delete_project: { + title: "Eliminar proyecto", + description: + "Al eliminar un proyecto, todos los datos y recursos dentro de ese proyecto se eliminarán permanentemente y no podrán recuperarse.", + button: "Eliminar mi proyecto", + }, + toast: { + success: "Proyecto actualizado exitosamente", + error: "No se pudo actualizar el proyecto. Por favor intenta de nuevo.", + }, + }, + members: { + label: "Miembros", + project_lead: "Líder del proyecto", + default_assignee: "Asignado por defecto", + guest_super_permissions: { + title: "Otorgar acceso de visualización a todos los elementos de trabajo para usuarios invitados:", + sub_heading: + "Esto permitirá a los invitados tener acceso de visualización a todos los elementos de trabajo del proyecto.", + }, + invite_members: { + title: "Invitar miembros", + sub_heading: "Invita miembros para trabajar en tu proyecto.", + select_co_worker: "Seleccionar compañero de trabajo", + }, + }, + states: { + describe_this_state_for_your_members: "Describe este estado para tus miembros.", + empty_state: { + title: "No estados disponibles para el grupo {groupKey}", + description: "Por favor, crea un nuevo estado", + }, + }, + labels: { + label_title: "Título de la etiqueta", + label_title_is_required: "El título de la etiqueta es requerido", + label_max_char: "El nombre de la etiqueta no debe exceder 255 caracteres", + toast: { + error: "Error al actualizar la etiqueta", + }, + }, + estimates: { + label: "Estimaciones", + title: "Activar estimaciones para mi proyecto", + description: "Te ayudan a comunicar la complejidad y la carga de trabajo del equipo.", + no_estimate: "Sin estimación", + new: "Nuevo sistema de estimación", + create: { + custom: "Personalizado", + start_from_scratch: "Comenzar desde cero", + choose_template: "Elegir una plantilla", + choose_estimate_system: "Elegir un sistema de estimación", + enter_estimate_point: "Ingresar estimación", + step: "Paso {step} de {total}", + label: "Crear estimación", + }, + toasts: { + created: { + success: { + title: "Estimación creada", + message: "La estimación se ha creado correctamente", + }, + error: { + title: "Error al crear la estimación", + message: "No pudimos crear la nueva estimación, por favor inténtalo de nuevo.", + }, + }, + updated: { + success: { + title: "Estimación modificada", + message: "La estimación se ha actualizado en tu proyecto.", + }, + error: { + title: "Error al modificar la estimación", + message: "No pudimos modificar la estimación, por favor inténtalo de nuevo", + }, + }, + enabled: { + success: { + title: "¡Éxito!", + message: "Las estimaciones han sido activadas.", + }, + }, + disabled: { + success: { + title: "¡Éxito!", + message: "Las estimaciones han sido desactivadas.", + }, + error: { + title: "¡Error!", + message: "No se pudo desactivar la estimación. Por favor inténtalo de nuevo", + }, + }, + }, + validation: { + min_length: "La estimación debe ser mayor que 0.", + unable_to_process: "No podemos procesar tu solicitud, por favor inténtalo de nuevo.", + numeric: "La estimación debe ser un valor numérico.", + character: "La estimación debe ser un valor de carácter.", + empty: "El valor de la estimación no puede estar vacío.", + already_exists: "El valor de la estimación ya existe.", + unsaved_changes: "Tienes cambios sin guardar. Por favor guárdalos antes de hacer clic en Hecho", + remove_empty: + "La estimación no puede estar vacía. Ingresa un valor en cada campo o elimina aquellos para los que no tienes valores.", + }, + systems: { + points: { + label: "Puntos", + fibonacci: "Fibonacci", + linear: "Lineal", + squares: "Cuadrados", + custom: "Personalizado", + }, + categories: { + label: "Categorías", + t_shirt_sizes: "Tallas de camiseta", + easy_to_hard: "Fácil a difícil", + custom: "Personalizado", + }, + time: { + label: "Tiempo", + hours: "Horas", + }, + }, + }, + automations: { + label: "Automatizaciones", + "auto-archive": { + title: "Archivar automáticamente elementos de trabajo cerrados", + description: + "Plane archivará automáticamente los elementos de trabajo que hayan sido completados o cancelados.", + duration: "Archivar automáticamente elementos de trabajo cerrados durante", + }, + "auto-close": { + title: "Cerrar automáticamente elementos de trabajo", + description: + "Plane cerrará automáticamente los elementos de trabajo que no hayan sido completados o cancelados.", + duration: "Cerrar automáticamente elementos de trabajo inactivos durante", + auto_close_status: "Estado de cierre automático", + }, + }, + empty_state: { + labels: { + title: "Aún no hay etiquetas", + description: "Crea etiquetas para organizar y filtrar elementos de trabajo en tu proyecto.", + }, + estimates: { + title: "Aún no hay sistemas de estimación", + description: "Crea un conjunto de estimaciones para comunicar el volumen de trabajo por elemento de trabajo.", + primary_button: "Agregar sistema de estimación", + }, + }, + }, + project_cycles: { + add_cycle: "Agregar ciclo", + more_details: "Más detalles", + cycle: "Ciclo", + update_cycle: "Actualizar ciclo", + create_cycle: "Crear ciclo", + no_matching_cycles: "No hay ciclos coincidentes", + remove_filters_to_see_all_cycles: "Elimina los filtros para ver todos los ciclos", + remove_search_criteria_to_see_all_cycles: "Elimina los criterios de búsqueda para ver todos los ciclos", + only_completed_cycles_can_be_archived: "Solo los ciclos completados pueden ser archivados", + start_date: "Fecha de inicio", + end_date: "Fecha de finalización", + in_your_timezone: "En tu zona horaria", + transfer_work_items: "Transferir {count} elementos de trabajo", + date_range: "Rango de fechas", + add_date: "Agregar fecha", + active_cycle: { + label: "Ciclo activo", + progress: "Progreso", + chart: "Gráfico de avance", + priority_issue: "Elementos de trabajo prioritarios", + assignees: "Asignados", + issue_burndown: "Avance de elementos de trabajo", + ideal: "Ideal", + current: "Actual", + labels: "Etiquetas", + }, + upcoming_cycle: { + label: "Ciclo próximo", + }, + completed_cycle: { + label: "Ciclo completado", + }, + status: { + days_left: "Días restantes", + completed: "Completado", + yet_to_start: "Por comenzar", + in_progress: "En progreso", + draft: "Borrador", + }, + action: { + restore: { + title: "Restaurar ciclo", + success: { + title: "Ciclo restaurado", + description: "El ciclo ha sido restaurado.", + }, + failed: { + title: "Falló la restauración del ciclo", + description: "No se pudo restaurar el ciclo. Por favor intenta de nuevo.", + }, + }, + favorite: { + loading: "Agregando ciclo a favoritos", + success: { + description: "Ciclo agregado a favoritos.", + title: "¡Éxito!", + }, + failed: { + description: "No se pudo agregar el ciclo a favoritos. Por favor intenta de nuevo.", + title: "¡Error!", + }, + }, + unfavorite: { + loading: "Eliminando ciclo de favoritos", + success: { + description: "Ciclo eliminado de favoritos.", + title: "¡Éxito!", + }, + failed: { + description: "No se pudo eliminar el ciclo de favoritos. Por favor intenta de nuevo.", + title: "¡Error!", + }, + }, + update: { + loading: "Actualizando ciclo", + success: { + description: "Ciclo actualizado exitosamente.", + title: "¡Éxito!", + }, + failed: { + description: "Error al actualizar el ciclo. Por favor intenta de nuevo.", + title: "¡Error!", + }, + error: { + already_exists: + "Ya tienes un ciclo en las fechas dadas, si quieres crear un ciclo en borrador, puedes hacerlo eliminando ambas fechas.", + }, + }, + }, + empty_state: { + general: { + title: "Agrupa y delimita tu trabajo en Ciclos.", + description: + "Divide el trabajo en bloques de tiempo, trabaja hacia atrás desde la fecha límite de tu proyecto para establecer fechas, y haz un progreso tangible como equipo.", + primary_button: { + text: "Establece tu primer ciclo", + comic: { + title: "Los ciclos son bloques de tiempo repetitivos.", + description: + "Un sprint, una iteración, o cualquier otro término que uses para el seguimiento semanal o quincenal del trabajo es un ciclo.", + }, + }, + }, + no_issues: { + title: "No hay elementos de trabajo agregados al ciclo", + description: "Agrega o crea elementos de trabajo que desees delimitar y entregar dentro de este ciclo", + primary_button: { + text: "Crear nuevo elemento de trabajo", + }, + secondary_button: { + text: "Agregar elemento de trabajo existente", + }, + }, + completed_no_issues: { + title: "No hay elementos de trabajo en el ciclo", + description: + "No hay elementos de trabajo en el ciclo. Los elementos de trabajo están transferidos u ocultos. Para ver elementos de trabajo ocultos si los hay, actualiza tus propiedades de visualización según corresponda.", + }, + active: { + title: "No hay ciclo activo", + description: + "Un ciclo activo incluye cualquier período que abarque la fecha de hoy dentro de su rango. Encuentra el progreso y los detalles del ciclo activo aquí.", + }, + archived: { + title: "Aún no hay ciclos archivados", + description: + "Para mantener ordenado tu proyecto, archiva los ciclos completados. Encuéntralos aquí una vez archivados.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Crea un elemento de trabajo y asígnalo a alguien, incluso a ti mismo", + description: + "Piensa en los elementos de trabajo como trabajos, tareas, trabajo o JTBD. Los cuales nos gustan. Un elemento de trabajo y sus sub-elementos de trabajo son generalmente acciones basadas en tiempo asignadas a miembros de tu equipo. Tu equipo crea, asigna y completa elementos de trabajo para mover tu proyecto hacia su objetivo.", + primary_button: { + text: "Crea tu primer elemento de trabajo", + comic: { + title: "Los elementos de trabajo son bloques de construcción en Plane.", + description: + "Rediseñar la interfaz de Plane, Cambiar la marca de la empresa o Lanzar el nuevo sistema de inyección de combustible son ejemplos de elementos de trabajo que probablemente tienen sub-elementos de trabajo.", + }, + }, + }, + no_archived_issues: { + title: "Aún no hay elementos de trabajo archivados", + description: + "Manualmente o a través de automatización, puedes archivar elementos de trabajo que estén completados o cancelados. Encuéntralos aquí una vez archivados.", + primary_button: { + text: "Establecer automatización", + }, + }, + issues_empty_filter: { + title: "No se encontraron elementos de trabajo que coincidan con los filtros aplicados", + secondary_button: { + text: "Limpiar todos los filtros", + }, + }, + }, + }, + project_module: { + add_module: "Agregar Módulo", + update_module: "Actualizar Módulo", + create_module: "Crear Módulo", + archive_module: "Archivar Módulo", + restore_module: "Restaurar Módulo", + delete_module: "Eliminar módulo", + empty_state: { + general: { + title: "Mapea los hitos de tu proyecto a Módulos y rastrea el trabajo agregado fácilmente.", + description: + "Un grupo de elementos de trabajo que pertenecen a un padre lógico y jerárquico forman un módulo. Piensa en ellos como una forma de rastrear el trabajo por hitos del proyecto. Tienen sus propios períodos y fechas límite, así como análisis para ayudarte a ver qué tan cerca o lejos estás de un hito.", + primary_button: { + text: "Construye tu primer módulo", + comic: { + title: "Los módulos ayudan a agrupar el trabajo por jerarquía.", + description: + "Un módulo de carrito, un módulo de chasis y un módulo de almacén son buenos ejemplos de esta agrupación.", + }, + }, + }, + no_issues: { + title: "No hay elementos de trabajo en el módulo", + description: "Crea o agrega elementos de trabajo que quieras lograr como parte de este módulo", + primary_button: { + text: "Crear nuevos elementos de trabajo", + }, + secondary_button: { + text: "Agregar un elemento de trabajo existente", + }, + }, + archived: { + title: "Aún no hay Módulos archivados", + description: + "Para mantener ordenado tu proyecto, archiva los módulos completados o cancelados. Encuéntralos aquí una vez archivados.", + }, + sidebar: { + in_active: "Este módulo aún no está activo.", + invalid_date: "Fecha inválida. Por favor ingresa una fecha válida.", + }, + }, + quick_actions: { + archive_module: "Archivar módulo", + archive_module_description: "Solo los módulos completados o\ncancelados pueden ser archivados.", + delete_module: "Eliminar módulo", + }, + toast: { + copy: { + success: "Enlace del módulo copiado al portapapeles", + }, + delete: { + success: "Módulo eliminado exitosamente", + error: "Error al eliminar el módulo", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Guarda vistas filtradas para tu proyecto. Crea tantas como necesites", + description: + "Las vistas son un conjunto de filtros guardados que usas frecuentemente o a los que quieres tener fácil acceso. Todos tus colegas en un proyecto pueden ver las vistas de todos y elegir la que mejor se adapte a sus necesidades.", + primary_button: { + text: "Crea tu primera vista", + comic: { + title: "Las vistas funcionan sobre las propiedades de los Elementos de trabajo.", + description: + "Puedes crear una vista desde aquí con tantas propiedades como filtros como consideres apropiado.", + }, + }, + }, + filter: { + title: "No hay vistas coincidentes", + description: "Ninguna vista coincide con los criterios de búsqueda. \n Crea una nueva vista en su lugar.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Escribe una nota, un documento o una base de conocimiento completa. Obtén ayuda de Galileo, el asistente de IA de Plane, para comenzar", + description: + "Las páginas son espacios para pensamientos en Plane. Toma notas de reuniones, fórmalas fácilmente, integra elementos de trabajo, organízalas usando una biblioteca de componentes y mantenlas todas en el contexto de tu proyecto. Para hacer cualquier documento rápidamente, invoca a Galileo, la IA de Plane, con un atajo o haciendo clic en un botón.", + primary_button: { + text: "Crea tu primera página", + }, + }, + private: { + title: "Aún no hay páginas privadas", + description: + "Mantén tus pensamientos privados aquí. Cuando estés listo para compartir, el equipo está a solo un clic de distancia.", + primary_button: { + text: "Crea tu primera página", + }, + }, + public: { + title: "Aún no hay páginas públicas", + description: "Ve las páginas compartidas con todos en tu proyecto aquí mismo.", + primary_button: { + text: "Crea tu primera página", + }, + }, + archived: { + title: "Aún no hay páginas archivadas", + description: "Archiva las páginas que no estén en tu radar. Accede a ellas aquí cuando las necesites.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "No se encontraron resultados", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "No se encontraron elementos de trabajo coincidentes", + }, + no_issues: { + title: "No se encontraron elementos de trabajo", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Aún no hay comentarios", + description: + "Los comentarios pueden usarse como un espacio de discusión y seguimiento para los elementos de trabajo", + }, + }, + }, + notification: { + label: "Bandeja de entrada", + page_label: "{workspace} - Bandeja de entrada", + options: { + mark_all_as_read: "Marcar todo como leído", + mark_read: "Marcar como leído", + mark_unread: "Marcar como no leído", + refresh: "Actualizar", + filters: "Filtros de bandeja de entrada", + show_unread: "Mostrar no leídos", + show_snoozed: "Mostrar pospuestos", + show_archived: "Mostrar archivados", + mark_archive: "Archivar", + mark_unarchive: "Desarchivar", + mark_snooze: "Posponer", + mark_unsnooze: "Quitar posposición", + }, + toasts: { + read: "Notificación marcada como leída", + unread: "Notificación marcada como no leída", + archived: "Notificación marcada como archivada", + unarchived: "Notificación marcada como no archivada", + snoozed: "Notificación pospuesta", + unsnoozed: "Notificación posposición cancelada", + }, + empty_state: { + detail: { + title: "Selecciona para ver detalles.", + }, + all: { + title: "No hay elementos de trabajo asignados", + description: "Las actualizaciones de elementos de trabajo asignados a ti se pueden \n ver aquí", + }, + mentions: { + title: "No hay elementos de trabajo asignados", + description: "Las actualizaciones de elementos de trabajo asignados a ti se pueden \n ver aquí", + }, + }, + tabs: { + all: "Todo", + mentions: "Menciones", + }, + filter: { + assigned: "Asignado a mí", + created: "Creado por mí", + subscribed: "Suscrito por mí", + }, + snooze: { + "1_day": "1 día", + "3_days": "3 días", + "5_days": "5 días", + "1_week": "1 semana", + "2_weeks": "2 semanas", + custom: "Personalizado", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Agrega elementos de trabajo al ciclo para ver su progreso", + }, + chart: { + title: "Agrega elementos de trabajo al ciclo para ver el gráfico de avance.", + }, + priority_issue: { + title: "Observa los elementos de trabajo de alta prioridad abordados en el ciclo de un vistazo.", + }, + assignee: { + title: "Agrega asignados a los elementos de trabajo para ver un desglose del trabajo por asignados.", + }, + label: { + title: "Agrega etiquetas a los elementos de trabajo para ver el desglose del trabajo por etiquetas.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Intake no está habilitado para el proyecto.", + description: + "Intake te ayuda a gestionar las solicitudes entrantes a tu proyecto y agregarlas como elementos de trabajo en tu flujo de trabajo. Habilita Intake desde la configuración del proyecto para gestionar las solicitudes.", + primary_button: { + text: "Gestionar funciones", + }, + }, + cycle: { + title: "Los Ciclos no están habilitados para este proyecto.", + description: + "Divide el trabajo en fragmentos limitados por tiempo, trabaja hacia atrás desde la fecha límite de tu proyecto para establecer fechas y haz un progreso tangible como equipo. Habilita la función de ciclos para tu proyecto para comenzar a usarlos.", + primary_button: { + text: "Gestionar funciones", + }, + }, + module: { + title: "Los Módulos no están habilitados para el proyecto.", + description: + "Los Módulos son los componentes básicos de tu proyecto. Habilita los módulos desde la configuración del proyecto para comenzar a usarlos.", + primary_button: { + text: "Gestionar funciones", + }, + }, + page: { + title: "Las Páginas no están habilitadas para el proyecto.", + description: + "Las Páginas son los componentes básicos de tu proyecto. Habilita las páginas desde la configuración del proyecto para comenzar a usarlas.", + primary_button: { + text: "Gestionar funciones", + }, + }, + view: { + title: "Las Vistas no están habilitadas para el proyecto.", + description: + "Las Vistas son los componentes básicos de tu proyecto. Habilita las vistas desde la configuración del proyecto para comenzar a usarlas.", + primary_button: { + text: "Gestionar funciones", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Borrador de elemento de trabajo", + empty_state: { + title: "Los elementos de trabajo a medio escribir y pronto los comentarios aparecerán aquí.", + description: + "Para probar esto, comienza a agregar un elemento de trabajo y déjalo a medias o crea tu primer borrador a continuación. 😉", + primary_button: { + text: "Crea tu primer borrador", + }, + }, + delete_modal: { + title: "Eliminar borrador", + description: "¿Estás seguro de que quieres eliminar este borrador? Esto no se puede deshacer.", + }, + toasts: { + created: { + success: "Borrador creado", + error: "No se pudo crear el elemento de trabajo. Por favor, inténtalo de nuevo.", + }, + deleted: { + success: "Borrador eliminado", + }, + }, + }, + stickies: { + title: "Tus notas adhesivas", + placeholder: "haz clic para escribir aquí", + all: "Todas las notas adhesivas", + "no-data": + "Anota una idea, captura un momento eureka o registra una inspiración. Agrega una nota adhesiva para comenzar.", + add: "Agregar nota adhesiva", + search_placeholder: "Buscar por título", + delete: "Eliminar nota adhesiva", + delete_confirmation: "¿Estás seguro de que quieres eliminar esta nota adhesiva?", + empty_state: { + simple: + "Anota una idea, captura un momento eureka o registra una inspiración. Agrega una nota adhesiva para comenzar.", + general: { + title: "Las notas adhesivas son notas rápidas y tareas pendientes que anotas al vuelo.", + description: + "Captura tus pensamientos e ideas sin esfuerzo creando notas adhesivas a las que puedes acceder en cualquier momento y desde cualquier lugar.", + primary_button: { + text: "Agregar nota adhesiva", + }, + }, + search: { + title: "Eso no coincide con ninguna de tus notas adhesivas.", + description: "Prueba un término diferente o háznoslo saber\nsi estás seguro de que tu búsqueda es correcta.", + primary_button: { + text: "Agregar nota adhesiva", + }, + }, + }, + toasts: { + errors: { + wrong_name: "El nombre de la nota adhesiva no puede tener más de 100 caracteres.", + already_exists: "Ya existe una nota adhesiva sin descripción", + }, + created: { + title: "Nota adhesiva creada", + message: "La nota adhesiva se ha creado exitosamente", + }, + not_created: { + title: "Nota adhesiva no creada", + message: "No se pudo crear la nota adhesiva", + }, + updated: { + title: "Nota adhesiva actualizada", + message: "La nota adhesiva se ha actualizado exitosamente", + }, + not_updated: { + title: "Nota adhesiva no actualizada", + message: "No se pudo actualizar la nota adhesiva", + }, + removed: { + title: "Nota adhesiva eliminada", + message: "La nota adhesiva se ha eliminado exitosamente", + }, + not_removed: { + title: "Nota adhesiva no eliminada", + message: "No se pudo eliminar la nota adhesiva", + }, + }, + }, + role_details: { + guest: { + title: "Invitado", + description: "Los miembros externos de las organizaciones pueden ser invitados como invitados.", + }, + member: { + title: "Miembro", + description: "Capacidad para leer, escribir, editar y eliminar entidades dentro de proyectos, ciclos y módulos", + }, + admin: { + title: "Administrador", + description: "Todos los permisos establecidos como verdaderos dentro del espacio de trabajo.", + }, + }, + user_roles: { + product_or_project_manager: "Gerente de Producto / Proyecto", + development_or_engineering: "Desarrollo / Ingeniería", + founder_or_executive: "Fundador / Ejecutivo", + freelancer_or_consultant: "Freelancer / Consultor", + marketing_or_growth: "Marketing / Crecimiento", + sales_or_business_development: "Ventas / Desarrollo de Negocios", + support_or_operations: "Soporte / Operaciones", + student_or_professor: "Estudiante / Profesor", + human_resources: "Recursos Humanos", + other: "Otro", + }, + importer: { + github: { + title: "GitHub", + description: "Importa elementos de trabajo desde repositorios de GitHub y sincronízalos.", + }, + jira: { + title: "Jira", + description: "Importa elementos de trabajo y epics desde proyectos y epics de Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Exporta elementos de trabajo a un archivo CSV.", + short_description: "Exportar como csv", + }, + excel: { + title: "Excel", + description: "Exporta elementos de trabajo a un archivo Excel.", + short_description: "Exportar como excel", + }, + xlsx: { + title: "Excel", + description: "Exporta elementos de trabajo a un archivo Excel.", + short_description: "Exportar como excel", + }, + json: { + title: "JSON", + description: "Exporta elementos de trabajo a un archivo JSON.", + short_description: "Exportar como json", + }, + }, + default_global_view: { + all_issues: "Todos los elementos de trabajo", + assigned: "Asignados", + created: "Creados", + subscribed: "Suscritos", + }, + themes: { + theme_options: { + system_preference: { + label: "Preferencia del sistema", + }, + light: { + label: "Claro", + }, + dark: { + label: "Oscuro", + }, + light_contrast: { + label: "Claro de alto contraste", + }, + dark_contrast: { + label: "Oscuro de alto contraste", + }, + custom: { + label: "Tema personalizado", + }, + }, + }, + project_modules: { + status: { + backlog: "Pendientes", + planned: "Planificado", + in_progress: "En progreso", + paused: "Pausado", + completed: "Completado", + cancelled: "Cancelado", + }, + layout: { + list: "Vista de lista", + board: "Vista de galería", + timeline: "Vista de línea de tiempo", + }, + order_by: { + name: "Nombre", + progress: "Progreso", + issues: "Número de elementos de trabajo", + due_date: "Fecha de vencimiento", + created_at: "Fecha de creación", + manual: "Manual", + }, + }, + cycle: { + label: "{count, plural, one {Ciclo} other {Ciclos}}", + no_cycle: "Sin ciclo", + }, + module: { + label: "{count, plural, one {Módulo} other {Módulos}}", + no_module: "Sin módulo", + }, + description_versions: { + last_edited_by: "Última edición por", + previously_edited_by: "Editado anteriormente por", + edited_by: "Editado por", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane no se inició. Esto podría deberse a que uno o más servicios de Plane fallaron al iniciar.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Selecciona View Logs desde setup.sh y los logs de Docker para estar seguro.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Esquema", + empty_state: { + title: "Faltan encabezados", + description: "Añade algunos encabezados a esta página para verlos aquí.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Palabras", + characters: "Caracteres", + paragraphs: "Párrafos", + read_time: "Tiempo de lectura", + }, + actors_info: { + edited_by: "Editado por", + created_by: "Creado por", + }, + version_history: { + label: "Historial de versiones", + current_version: "Versión actual", + }, + }, + assets: { + label: "Recursos", + download_button: "Descargar", + empty_state: { + title: "Faltan imágenes", + description: "Añade imágenes para verlas aquí.", + }, + }, + }, + open_button: "Abrir panel de navegación", + close_button: "Cerrar panel de navegación", + outline_floating_button: "Abrir esquema", + }, +} as const; diff --git a/packages/i18n/src/locales/fr/accessibility.json b/packages/i18n/src/locales/fr/accessibility.json deleted file mode 100644 index 435247c58b..0000000000 --- a/packages/i18n/src/locales/fr/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo de l'espace de travail", - "open_workspace_switcher": "Ouvrir le sélecteur d'espace de travail", - "open_user_menu": "Ouvrir le menu utilisateur", - "open_command_palette": "Ouvrir la palette de commandes", - "open_extended_sidebar": "Ouvrir la barre latérale étendue", - "close_extended_sidebar": "Fermer la barre latérale étendue", - "create_favorites_folder": "Créer un dossier de favoris", - "open_folder": "Ouvrir le dossier", - "close_folder": "Fermer le dossier", - "open_favorites_menu": "Ouvrir le menu des favoris", - "close_favorites_menu": "Fermer le menu des favoris", - "enter_folder_name": "Saisir le nom du dossier", - "create_new_project": "Créer un nouveau projet", - "open_projects_menu": "Ouvrir le menu des projets", - "close_projects_menu": "Fermer le menu des projets", - "toggle_quick_actions_menu": "Basculer le menu d'actions rapides", - "open_project_menu": "Ouvrir le menu du projet", - "close_project_menu": "Fermer le menu du projet", - "collapse_sidebar": "Réduire la barre latérale", - "expand_sidebar": "Étendre la barre latérale", - "edition_badge": "Ouvrir le modal des plans payants" - }, - "auth_forms": { - "clear_email": "Effacer l'e-mail", - "show_password": "Afficher le mot de passe", - "hide_password": "Masquer le mot de passe", - "close_alert": "Fermer l'alerte", - "close_popover": "Fermer la fenêtre contextuelle" - } - } -} diff --git a/packages/i18n/src/locales/fr/accessibility.ts b/packages/i18n/src/locales/fr/accessibility.ts new file mode 100644 index 0000000000..413f0dd7d9 --- /dev/null +++ b/packages/i18n/src/locales/fr/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo de l'espace de travail", + open_workspace_switcher: "Ouvrir le sélecteur d'espace de travail", + open_user_menu: "Ouvrir le menu utilisateur", + open_command_palette: "Ouvrir la palette de commandes", + open_extended_sidebar: "Ouvrir la barre latérale étendue", + close_extended_sidebar: "Fermer la barre latérale étendue", + create_favorites_folder: "Créer un dossier de favoris", + open_folder: "Ouvrir le dossier", + close_folder: "Fermer le dossier", + open_favorites_menu: "Ouvrir le menu des favoris", + close_favorites_menu: "Fermer le menu des favoris", + enter_folder_name: "Saisir le nom du dossier", + create_new_project: "Créer un nouveau projet", + open_projects_menu: "Ouvrir le menu des projets", + close_projects_menu: "Fermer le menu des projets", + toggle_quick_actions_menu: "Basculer le menu d'actions rapides", + open_project_menu: "Ouvrir le menu du projet", + close_project_menu: "Fermer le menu du projet", + collapse_sidebar: "Réduire la barre latérale", + expand_sidebar: "Étendre la barre latérale", + edition_badge: "Ouvrir le modal des plans payants", + }, + auth_forms: { + clear_email: "Effacer l'e-mail", + show_password: "Afficher le mot de passe", + hide_password: "Masquer le mot de passe", + close_alert: "Fermer l'alerte", + close_popover: "Fermer la fenêtre contextuelle", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/fr/editor.json b/packages/i18n/src/locales/fr/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/fr/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/fr/editor.ts b/packages/i18n/src/locales/fr/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/fr/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/fr/translations.json b/packages/i18n/src/locales/fr/translations.json deleted file mode 100644 index cf6fdd87a3..0000000000 --- a/packages/i18n/src/locales/fr/translations.json +++ /dev/null @@ -1,2533 +0,0 @@ -{ - "sidebar": { - "projects": "Projets", - "pages": "Pages", - "new_work_item": "Nouvel élément de travail", - "home": "Accueil", - "your_work": "Votre travail", - "inbox": "Boîte de réception", - "workspace": "Espace de travail", - "views": "Vues", - "analytics": "Analyses", - "work_items": "Éléments de travail", - "cycles": "Cycles", - "modules": "Modules", - "intake": "Intake", - "drafts": "Brouillons", - "favorites": "Favoris", - "pro": "Pro", - "upgrade": "Mettre à niveau" - }, - "auth": { - "common": { - "email": { - "label": "E-mail", - "placeholder": "nom@entreprise.com", - "errors": { - "required": "L'e-mail est requis", - "invalid": "L'e-mail est invalide" - } - }, - "password": { - "label": "Mot de passe", - "set_password": "Définir un mot de passe", - "placeholder": "Entrer le mot de passe", - "confirm_password": { - "label": "Confirmer le mot de passe", - "placeholder": "Confirmer le mot de passe" - }, - "current_password": { - "label": "Mot de passe actuel" - }, - "new_password": { - "label": "Nouveau mot de passe", - "placeholder": "Entrer le nouveau mot de passe" - }, - "change_password": { - "label": { - "default": "Changer le mot de passe", - "submitting": "Changement du mot de passe" - } - }, - "errors": { - "match": "Les mots de passe ne correspondent pas", - "empty": "Veuillez entrer votre mot de passe", - "length": "Le mot de passe doit contenir plus de 8 caractères", - "strength": { - "weak": "Le mot de passe est faible", - "strong": "Le mot de passe est fort" - } - }, - "submit": "Définir le mot de passe", - "toast": { - "change_password": { - "success": { - "title": "Succès !", - "message": "Mot de passe changé avec succès." - }, - "error": { - "title": "Erreur !", - "message": "Une erreur s'est produite. Veuillez réessayer." - } - } - } - }, - "unique_code": { - "label": "Code unique", - "placeholder": "obtient-définit-vole", - "paste_code": "Collez le code envoyé à votre e-mail", - "requesting_new_code": "Demande d'un nouveau code", - "sending_code": "Envoi du code" - }, - "already_have_an_account": "Vous avez déjà un compte ?", - "login": "Se connecter", - "create_account": "Créer un compte", - "new_to_plane": "Nouveau sur Plane ?", - "back_to_sign_in": "Retour à la connexion", - "resend_in": "Renvoyer dans {seconds} secondes", - "sign_in_with_unique_code": "Se connecter avec un code unique", - "forgot_password": "Mot de passe oublié ?" - }, - "sign_up": { - "header": { - "label": "Créez un compte pour commencer à gérer le travail avec votre équipe.", - "step": { - "email": { - "header": "S'inscrire", - "sub_header": "" - }, - "password": { - "header": "S'inscrire", - "sub_header": "Inscrivez-vous en utilisant une combinaison e-mail-mot de passe." - }, - "unique_code": { - "header": "S'inscrire", - "sub_header": "Inscrivez-vous en utilisant un code unique envoyé à l'adresse e-mail ci-dessus." - } - } - }, - "errors": { - "password": { - "strength": "Essayez de définir un mot de passe fort pour continuer" - } - } - }, - "sign_in": { - "header": { - "label": "Connectez-vous pour commencer à gérer le travail avec votre équipe.", - "step": { - "email": { - "header": "Se connecter ou s'inscrire", - "sub_header": "" - }, - "password": { - "header": "Se connecter ou s'inscrire", - "sub_header": "Utilisez votre combinaison e-mail-mot de passe pour vous connecter." - }, - "unique_code": { - "header": "Se connecter ou s'inscrire", - "sub_header": "Connectez-vous en utilisant un code unique envoyé à l'adresse e-mail ci-dessus." - } - } - } - }, - "forgot_password": { - "title": "Réinitialiser votre mot de passe", - "description": "Entrez l'adresse e-mail vérifiée de votre compte utilisateur et nous vous enverrons un lien de réinitialisation du mot de passe.", - "email_sent": "Nous avons envoyé le lien de réinitialisation à votre adresse e-mail", - "send_reset_link": "Envoyer le lien de réinitialisation", - "errors": { - "smtp_not_enabled": "Nous constatons que votre administrateur n'a pas activé SMTP, nous ne pourrons pas envoyer de lien de réinitialisation du mot de passe" - }, - "toast": { - "success": { - "title": "E-mail envoyé", - "message": "Vérifiez votre boîte de réception pour un lien de réinitialisation de votre mot de passe. S'il n'apparaît pas dans quelques minutes, vérifiez votre dossier spam." - }, - "error": { - "title": "Erreur !", - "message": "Une erreur s'est produite. Veuillez réessayer." - } - } - }, - "reset_password": { - "title": "Définir un nouveau mot de passe", - "description": "Sécurisez votre compte avec un mot de passe fort" - }, - "set_password": { - "title": "Sécurisez votre compte", - "description": "La définition d'un mot de passe vous permet de vous connecter en toute sécurité" - }, - "sign_out": { - "toast": { - "error": { - "title": "Erreur !", - "message": "Échec de la déconnexion. Veuillez réessayer." - } - } - } - }, - "submit": "Soumettre", - "cancel": "Annuler", - "loading": "Chargement", - "error": "Erreur", - "success": "Succès", - "warning": "Avertissement", - "info": "Info", - "close": "Fermer", - "yes": "Oui", - "no": "Non", - "ok": "OK", - "name": "Nom", - "description": "Description", - "search": "Rechercher", - "add_member": "Ajouter un membre", - "adding_members": "Ajout de membres", - "remove_member": "Supprimer le membre", - "add_members": "Ajouter des membres", - "adding_member": "Ajout de membres", - "remove_members": "Supprimer des membres", - "add": "Ajouter", - "adding": "Ajout", - "remove": "Supprimer", - "add_new": "Ajouter nouveau", - "remove_selected": "Supprimer la sélection", - "first_name": "Prénom", - "last_name": "Nom", - "email": "E-mail", - "display_name": "Nom d'affichage", - "role": "Rôle", - "timezone": "Fuseau horaire", - "avatar": "Avatar", - "cover_image": "Image de couverture", - "password": "Mot de passe", - "change_cover": "Changer la couverture", - "language": "Langue", - "saving": "Enregistrement", - "save_changes": "Enregistrer les modifications", - "deactivate_account": "Désactiver le compte", - "deactivate_account_description": "Lors de la désactivation d'un compte, toutes les données et ressources de ce compte seront définitivement supprimées et ne pourront pas être récupérées.", - "profile_settings": "Paramètres du profil", - "your_account": "Votre compte", - "security": "Sécurité", - "activity": "Activité", - "appearance": "Apparence", - "notifications": "Notifications", - "workspaces": "Espaces de travail", - "create_workspace": "Créer un espace de travail", - "invitations": "Invitations", - "summary": "Résumé", - "assigned": "Assigné", - "created": "Créé", - "subscribed": "Abonné", - "you_do_not_have_the_permission_to_access_this_page": "Vous n'avez pas la permission d'accéder à cette page.", - "something_went_wrong_please_try_again": "Une erreur s'est produite. Veuillez réessayer.", - "load_more": "Charger plus", - "select_or_customize_your_interface_color_scheme": "Sélectionnez ou personnalisez votre schéma de couleurs d'interface.", - "theme": "Thème", - "system_preference": "Préférence système", - "light": "Clair", - "dark": "Sombre", - "light_contrast": "Contraste élevé clair", - "dark_contrast": "Contraste élevé sombre", - "custom": "Thème personnalisé", - "select_your_theme": "Sélectionnez votre thème", - "customize_your_theme": "Personnalisez votre thème", - "background_color": "Couleur de fond", - "text_color": "Couleur du texte", - "primary_color": "Couleur principale (Thème)", - "sidebar_background_color": "Couleur de fond de la barre latérale", - "sidebar_text_color": "Couleur du texte de la barre latérale", - "set_theme": "Définir le thème", - "enter_a_valid_hex_code_of_6_characters": "Entrez un code hexadécimal valide de 6 caractères", - "background_color_is_required": "La couleur de fond est requise", - "text_color_is_required": "La couleur du texte est requise", - "primary_color_is_required": "La couleur principale est requise", - "sidebar_background_color_is_required": "La couleur de fond de la barre latérale est requise", - "sidebar_text_color_is_required": "La couleur du texte de la barre latérale est requise", - "updating_theme": "Mise à jour du thème", - "theme_updated_successfully": "Thème mis à jour avec succès", - "failed_to_update_the_theme": "Échec de la mise à jour du thème", - "email_notifications": "Notifications par e-mail", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Restez informé des éléments de travail auxquels vous êtes abonné. Activez ceci pour être notifié.", - "email_notification_setting_updated_successfully": "Paramètre de notification par e-mail mis à jour avec succès", - "failed_to_update_email_notification_setting": "Échec de la mise à jour du paramètre de notification par e-mail", - "notify_me_when": "Me notifier quand", - "property_changes": "Modifications des propriétés", - "property_changes_description": "Me notifier lorsque les propriétés des éléments de travail comme les assignés, la priorité, les estimations ou autre changent.", - "state_change": "Changement d'état", - "state_change_description": "Me notifier lorsque les éléments de travail passent à un état différent", - "issue_completed": "Élément de travail terminé", - "issue_completed_description": "Me notifier uniquement lorsqu'un élément de travail est terminé", - "comments": "Commentaires", - "comments_description": "Me notifier lorsque quelqu'un laisse un commentaire sur l'élément de travail", - "mentions": "Mentions", - "mentions_description": "Me notifier uniquement lorsque quelqu'un me mentionne dans les commentaires ou la description", - "old_password": "Ancien mot de passe", - "general_settings": "Paramètres généraux", - "sign_out": "Se déconnecter", - "signing_out": "Déconnexion", - "active_cycles": "Cycles actifs", - "active_cycles_description": "Surveillez les cycles à travers les projets, suivez les éléments de travail prioritaires et zoomez sur les cycles qui nécessitent de l'attention.", - "on_demand_snapshots_of_all_your_cycles": "Instantanés à la demande de tous vos cycles", - "upgrade": "Mettre à niveau", - "10000_feet_view": "Vue à 10 000 pieds de tous les cycles actifs.", - "10000_feet_view_description": "Dézoomez pour voir les cycles en cours dans tous vos projets en même temps au lieu de passer d'un cycle à l'autre dans chaque projet.", - "get_snapshot_of_each_active_cycle": "Obtenez un aperçu de chaque cycle actif.", - "get_snapshot_of_each_active_cycle_description": "Suivez les métriques de haut niveau pour tous les cycles actifs, voyez leur état d'avancement et obtenez une idée de la portée par rapport aux échéances.", - "compare_burndowns": "Comparez les burndowns.", - "compare_burndowns_description": "Surveillez les performances de chacune de vos équipes en jetant un coup d'œil au rapport burndown de chaque cycle.", - "quickly_see_make_or_break_issues": "Voyez rapidement les éléments de travail critiques.", - "quickly_see_make_or_break_issues_description": "Prévisualisez les éléments de travail hautement prioritaires pour chaque cycle par rapport aux dates d'échéance. Voyez-les tous par cycle en un clic.", - "zoom_into_cycles_that_need_attention": "Zoomez sur les cycles qui nécessitent de l'attention.", - "zoom_into_cycles_that_need_attention_description": "Examinez l'état de tout cycle qui ne correspond pas aux attentes en un clic.", - "stay_ahead_of_blockers": "Anticipez les blocages.", - "stay_ahead_of_blockers_description": "Repérez les défis d'un projet à l'autre et voyez les dépendances inter-cycles qui ne sont pas évidentes depuis une autre vue.", - "analytics": "Analyses", - "workspace_invites": "Invitations à l'espace de travail", - "enter_god_mode": "Entrer en mode dieu", - "workspace_logo": "Logo de l'espace de travail", - "new_issue": "Nouvel élément de travail", - "your_work": "Votre travail", - "drafts": "Brouillons", - "projects": "Projets", - "views": "Vues", - "workspace": "Espace de travail", - "archives": "Archives", - "settings": "Paramètres", - "failed_to_move_favorite": "Échec du déplacement du favori", - "favorites": "Favoris", - "no_favorites_yet": "Pas encore de favoris", - "create_folder": "Créer un dossier", - "new_folder": "Nouveau dossier", - "favorite_updated_successfully": "Favori mis à jour avec succès", - "favorite_created_successfully": "Favori créé avec succès", - "folder_already_exists": "Le dossier existe déjà", - "folder_name_cannot_be_empty": "Le nom du dossier ne peut pas être vide", - "something_went_wrong": "Une erreur s'est produite", - "failed_to_reorder_favorite": "Échec de la réorganisation du favori", - "favorite_removed_successfully": "Favori supprimé avec succès", - "failed_to_create_favorite": "Échec de la création du favori", - "failed_to_rename_favorite": "Échec du renommage du favori", - "project_link_copied_to_clipboard": "Lien du projet copié dans le presse-papiers", - "link_copied": "Lien copié", - "add_project": "Ajouter un projet", - "create_project": "Créer un projet", - "failed_to_remove_project_from_favorites": "Impossible de supprimer le projet des favoris. Veuillez réessayer.", - "project_created_successfully": "Projet créé avec succès", - "project_created_successfully_description": "Projet créé avec succès. Vous pouvez maintenant commencer à ajouter des éléments de travail.", - "project_name_already_taken": "Le nom du projet est déjà pris.", - "project_identifier_already_taken": "L’identifiant du projet est déjà pris.", - "project_cover_image_alt": "Image de couverture du projet", - "name_is_required": "Le nom est requis", - "title_should_be_less_than_255_characters": "Le titre doit faire moins de 255 caractères", - "project_name": "Nom du projet", - "project_id_must_be_at_least_1_character": "L'ID du projet doit comporter au moins 1 caractère", - "project_id_must_be_at_most_5_characters": "L'ID du projet doit comporter au plus 5 caractères", - "project_id": "ID du projet", - "project_id_tooltip_content": "Vous aide à identifier uniquement les éléments de travail dans le projet. Maximum 5 caractères.", - "description_placeholder": "Description", - "only_alphanumeric_non_latin_characters_allowed": "Seuls les caractères alphanumériques et non latins sont autorisés.", - "project_id_is_required": "L'ID du projet est requis", - "project_id_allowed_char": "Seuls les caractères alphanumériques et non latins sont autorisés.", - "project_id_min_char": "L'ID du projet doit comporter au moins 1 caractère", - "project_id_max_char": "L'ID du projet doit comporter au plus 5 caractères", - "project_description_placeholder": "Entrez la description du projet", - "select_network": "Sélectionner le réseau", - "lead": "Responsable", - "date_range": "Plage de dates", - "private": "Privé", - "public": "Public", - "accessible_only_by_invite": "Accessible uniquement sur invitation", - "anyone_in_the_workspace_except_guests_can_join": "Tout le monde dans l'espace de travail sauf les invités peut rejoindre", - "creating": "Création", - "creating_project": "Création du projet", - "adding_project_to_favorites": "Ajout du projet aux favoris", - "project_added_to_favorites": "Projet ajouté aux favoris", - "couldnt_add_the_project_to_favorites": "Impossible d'ajouter le projet aux favoris. Veuillez réessayer.", - "removing_project_from_favorites": "Suppression du projet des favoris", - "project_removed_from_favorites": "Projet supprimé des favoris", - "couldnt_remove_the_project_from_favorites": "Impossible de supprimer le projet des favoris. Veuillez réessayer.", - "add_to_favorites": "Ajouter aux favoris", - "remove_from_favorites": "Supprimer des favoris", - "publish_project": "Publier le projet", - "publish": "Publier", - "copy_link": "Copier le lien", - "leave_project": "Quitter le projet", - "join_the_project_to_rearrange": "Rejoignez le projet pour réorganiser", - "drag_to_rearrange": "Glisser pour réorganiser", - "congrats": "Félicitations !", - "open_project": "Ouvrir le projet", - "issues": "Éléments de travail", - "cycles": "Cycles", - "modules": "Modules", - "pages": "Pages", - "intake": "Intake", - "time_tracking": "Suivi du temps", - "work_management": "Gestion du travail", - "projects_and_issues": "Projets et éléments de travail", - "projects_and_issues_description": "Activez ou désactivez ces éléments pour ce projet.", - "cycles_description": "Planifiez le travail par projet dans un cadre temporel et ajustez la période au besoin. Un cycle peut durer 2 semaines, le suivant 1 semaine.", - "modules_description": "Organisez le travail en sous-projets avec des responsables et des personnes assignées dédiés.", - "views_description": "Enregistrez des tris, filtres et options d'affichage personnalisés ou partagez-les avec votre équipe.", - "pages_description": "Créez et modifiez du contenu libre : notes, documents, tout ce que vous voulez.", - "intake_description": "Permettez aux non-membres de partager des bugs, des retours et des suggestions, sans perturber votre flux de travail.", - "time_tracking_description": "Enregistrez le temps passé sur les éléments de travail et les projets.", - "work_management_description": "Gérez votre travail et vos projets facilement.", - "documentation": "Documentation", - "message_support": "Contacter le support", - "contact_sales": "Contacter les ventes", - "hyper_mode": "Mode Hyper", - "keyboard_shortcuts": "Raccourcis clavier", - "whats_new": "Quoi de neuf ?", - "version": "Version", - "we_are_having_trouble_fetching_the_updates": "Nous avons des difficultés à récupérer les mises à jour.", - "our_changelogs": "nos journaux des modifications", - "for_the_latest_updates": "pour les dernières mises à jour.", - "please_visit": "Veuillez visiter", - "docs": "Documentation", - "full_changelog": "Journal des modifications complet", - "support": "Support", - "discord": "Discord", - "powered_by_plane_pages": "Propulsé par Plane Pages", - "please_select_at_least_one_invitation": "Veuillez sélectionner au moins une invitation.", - "please_select_at_least_one_invitation_description": "Veuillez sélectionner au moins une invitation pour rejoindre l'espace de travail.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Nous voyons que quelqu'un vous a invité à rejoindre un espace de travail", - "join_a_workspace": "Rejoindre un espace de travail", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Nous voyons que quelqu'un vous a invité à rejoindre un espace de travail", - "join_a_workspace_description": "Rejoindre un espace de travail", - "accept_and_join": "Accepter et rejoindre", - "go_home": "Aller à l'accueil", - "no_pending_invites": "Aucune invitation en attente", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Vous pouvez voir ici si quelqu'un vous invite à un espace de travail", - "back_to_home": "Retour à l'accueil", - "workspace_name": "nom-espace-de-travail", - "deactivate_your_account": "Désactiver votre compte", - "deactivate_your_account_description": "Une fois désactivé, vous ne pourrez plus être assigné à des éléments de travail ni être facturé pour votre espace de travail. Pour réactiver votre compte, vous aurez besoin d'une invitation à un espace de travail avec cette adresse e-mail.", - "deactivating": "Désactivation", - "confirm": "Confirmer", - "confirming": "Confirmation", - "draft_created": "Brouillon créé", - "issue_created_successfully": "Élément de travail créé avec succès", - "draft_creation_failed": "Échec de la création du brouillon", - "issue_creation_failed": "Échec de la création de l'élément de travail", - "draft_issue": "Élément de travail en brouillon", - "issue_updated_successfully": "Élément de travail mis à jour avec succès", - "issue_could_not_be_updated": "L'élément de travail n'a pas pu être mis à jour", - "create_a_draft": "Créer un brouillon", - "save_to_drafts": "Enregistrer dans les brouillons", - "save": "Enregistrer", - "update": "Mettre à jour", - "updating": "Mise à jour", - "create_new_issue": "Créer un nouvel élément de travail", - "editor_is_not_ready_to_discard_changes": "L'éditeur n'est pas prêt à annuler les modifications", - "failed_to_move_issue_to_project": "Échec du déplacement de l'élément de travail vers le projet", - "create_more": "Créer plus", - "add_to_project": "Ajouter au projet", - "discard": "Annuler", - "duplicate_issue_found": "Élément de travail en double trouvé", - "duplicate_issues_found": "Éléments de travail en double trouvés", - "no_matching_results": "Aucun résultat correspondant", - "title_is_required": "Le titre est requis", - "title": "Titre", - "state": "État", - "priority": "Priorité", - "none": "Aucun", - "urgent": "Urgent", - "high": "Élevé", - "medium": "Moyen", - "low": "Faible", - "members": "Membres", - "assignee": "Assigné", - "assignees": "Assignés", - "you": "Vous", - "labels": "Étiquettes", - "create_new_label": "Créer une nouvelle étiquette", - "start_date": "Date de début", - "end_date": "Date de fin", - "due_date": "Date d'échéance", - "estimate": "Estimation", - "change_parent_issue": "Changer l'élément de travail parent", - "remove_parent_issue": "Supprimer l'élément de travail parent", - "add_parent": "Ajouter un parent", - "loading_members": "Chargement des membres", - "view_link_copied_to_clipboard": "Lien de la vue copié dans le presse-papiers.", - "required": "Requis", - "optional": "Optionnel", - "Cancel": "Annuler", - "edit": "Modifier", - "archive": "Archiver", - "restore": "Restaurer", - "open_in_new_tab": "Ouvrir dans un nouvel onglet", - "delete": "Supprimer", - "deleting": "Suppression", - "make_a_copy": "Faire une copie", - "move_to_project": "Déplacer vers le projet", - "good": "Bonjour", - "morning": "matin", - "afternoon": "après-midi", - "evening": "soir", - "show_all": "Tout afficher", - "show_less": "Afficher moins", - "no_data_yet": "Pas encore de données", - "syncing": "Synchronisation", - "add_work_item": "Ajouter un élément de travail", - "advanced_description_placeholder": "Appuyez sur '/' pour les commandes", - "create_work_item": "Créer un élément de travail", - "attachments": "Pièces jointes", - "declining": "Refus", - "declined": "Refusé", - "decline": "Refuser", - "unassigned": "Non assigné", - "work_items": "Éléments de travail", - "add_link": "Ajouter un lien", - "points": "Points", - "no_assignee": "Pas d'assigné", - "no_assignees_yet": "Pas encore d'assignés", - "no_labels_yet": "Pas encore d'étiquettes", - "ideal": "Idéal", - "current": "Actuel", - "no_matching_members": "Aucun membre correspondant", - "leaving": "Départ", - "removing": "Suppression", - "leave": "Quitter", - "refresh": "Actualiser", - "refreshing": "Actualisation", - "refresh_status": "Actualiser l'état", - "prev": "Précédent", - "next": "Suivant", - "re_generating": "Régénération", - "re_generate": "Régénérer", - "re_generate_key": "Régénérer la clé", - "export": "Exporter", - "member": "{count, plural, one{# membre} other{# membres}}", - "new_password_must_be_different_from_old_password": "Le nouveau mot de passe doit être différent du mot de passe précédent", - "edited": "Modifié", - "bot": "Bot", - "project_view": { - "sort_by": { - "created_at": "Créé le", - "updated_at": "Mis à jour le", - "name": "Nom" - } - }, - "toast": { - "success": "Succès !", - "error": "Erreur !" - }, - "links": { - "toasts": { - "created": { - "title": "Lien créé", - "message": "Le lien a été créé avec succès" - }, - "not_created": { - "title": "Lien non créé", - "message": "Le lien n'a pas pu être créé" - }, - "updated": { - "title": "Lien mis à jour", - "message": "Le lien a été mis à jour avec succès" - }, - "not_updated": { - "title": "Lien non mis à jour", - "message": "Le lien n'a pas pu être mis à jour" - }, - "removed": { - "title": "Lien supprimé", - "message": "Le lien a été supprimé avec succès" - }, - "not_removed": { - "title": "Lien non supprimé", - "message": "Le lien n'a pas pu être supprimé" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Guide de démarrage rapide", - "not_right_now": "Pas maintenant", - "create_project": { - "title": "Créer un projet", - "description": "La plupart des choses commencent par un projet dans Plane.", - "cta": "Commencer" - }, - "invite_team": { - "title": "Inviter votre équipe", - "description": "Construisez, déployez et gérez avec vos collègues.", - "cta": "Les faire entrer" - }, - "configure_workspace": { - "title": "Configurez votre espace de travail.", - "description": "Activez ou désactivez des fonctionnalités ou allez plus loin.", - "cta": "Configurer cet espace de travail" - }, - "personalize_account": { - "title": "Faites de Plane le vôtre.", - "description": "Choisissez votre photo, vos couleurs et plus encore.", - "cta": "Personnaliser maintenant" - }, - "widgets": { - "title": "C'est calme sans widgets, activez-les", - "description": "Il semble que tous vos widgets soient désactivés. Activez-les\nmaintenant pour améliorer votre expérience !", - "primary_button": { - "text": "Gérer les widgets" - } - } - }, - "quick_links": { - "empty": "Enregistrez des liens vers des éléments de travail que vous souhaitez avoir à portée de main.", - "add": "Ajouter un lien rapide", - "title": "Lien rapide", - "title_plural": "Liens rapides" - }, - "recents": { - "title": "Récents", - "empty": { - "project": "Vos projets récents apparaîtront ici une fois que vous en aurez visité un.", - "page": "Vos pages récentes apparaîtront ici une fois que vous en aurez visité une.", - "issue": "Vos éléments de travail récents apparaîtront ici une fois que vous en aurez visité un.", - "default": "Vous n'avez pas encore d'éléments récents." - }, - "filters": { - "all": "Tous", - "projects": "Projets", - "pages": "Pages", - "issues": "Éléments de travail" - } - }, - "new_at_plane": { - "title": "Nouveau sur Plane" - }, - "quick_tutorial": { - "title": "Tutoriel rapide" - }, - "widget": { - "reordered_successfully": "Widget réorganisé avec succès.", - "reordering_failed": "Une erreur s'est produite lors de la réorganisation du widget." - }, - "manage_widgets": "Gérer les widgets", - "title": "Accueil", - "star_us_on_github": "Donnez-nous une étoile sur GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "L'URL n'est pas valide", - "placeholder": "Tapez ou collez une URL" - }, - "title": { - "text": "Titre d'affichage", - "placeholder": "Comment souhaitez-vous voir ce lien" - } - } - }, - "common": { - "all": "Tout", - "states": "États", - "state": "État", - "state_groups": "Groupes d'états", - "state_group": "Groupe d'état", - "priorities": "Priorités", - "priority": "Priorité", - "team_project": "Projet d'équipe", - "project": "Projet", - "cycle": "Cycle", - "cycles": "Cycles", - "module": "Module", - "modules": "Modules", - "labels": "Étiquettes", - "label": "Étiquette", - "assignees": "Assignés", - "assignee": "Assigné", - "created_by": "Créé par", - "none": "Aucun", - "link": "Lien", - "estimates": "Estimations", - "estimate": "Estimation", - "created_at": "Créé le", - "completed_at": "Terminé le", - "layout": "Disposition", - "filters": "Filtres", - "display": "Affichage", - "load_more": "Charger plus", - "activity": "Activité", - "analytics": "Analyses", - "dates": "Dates", - "success": "Succès !", - "something_went_wrong": "Quelque chose s'est mal passé", - "error": { - "label": "Erreur !", - "message": "Une erreur s'est produite. Veuillez réessayer." - }, - "group_by": "Grouper par", - "epic": "Epic", - "epics": "Epics", - "work_item": "Élément de travail", - "work_items": "Éléments de travail", - "sub_work_item": "Sous-élément de travail", - "add": "Ajouter", - "warning": "Avertissement", - "updating": "Mise à jour", - "adding": "Ajout", - "update": "Mettre à jour", - "creating": "Création", - "create": "Créer", - "cancel": "Annuler", - "description": "Description", - "title": "Titre", - "attachment": "Pièce jointe", - "general": "Général", - "features": "Fonctionnalités", - "automation": "Automatisation", - "project_name": "Nom du projet", - "project_id": "ID du projet", - "project_timezone": "Fuseau horaire du projet", - "created_on": "Créé le", - "update_project": "Mettre à jour le projet", - "identifier_already_exists": "L'identifiant existe déjà", - "add_more": "Ajouter plus", - "defaults": "Par défaut", - "add_label": "Ajouter une étiquette", - "customize_time_range": "Personnaliser la plage de temps", - "loading": "Chargement", - "attachments": "Pièces jointes", - "property": "Propriété", - "properties": "Propriétés", - "parent": "Parent", - "page": "Pâge", - "remove": "Supprimer", - "archiving": "Archivage", - "archive": "Archiver", - "access": { - "public": "Public", - "private": "Privé" - }, - "done": "Terminé", - "sub_work_items": "Sous-éléments de travail", - "comment": "Commentaire", - "workspace_level": "Niveau espace de travail", - "order_by": { - "label": "Trier par", - "manual": "Manuel", - "last_created": "Dernier créé", - "last_updated": "Dernière mise à jour", - "start_date": "Date de début", - "due_date": "Date d'échéance", - "asc": "Croissant", - "desc": "Décroissant", - "updated_on": "Mis à jour le" - }, - "sort": { - "asc": "Croissant", - "desc": "Décroissant", - "created_on": "Créé le", - "updated_on": "Mis à jour le" - }, - "comments": "Commentaires", - "updates": "Mises à jour", - "clear_all": "Tout effacer", - "copied": "Copié !", - "link_copied": "Lien copié !", - "link_copied_to_clipboard": "Lien copié dans le presse-papiers", - "copied_to_clipboard": "Lien de l'élément de travail copié dans le presse-papiers", - "is_copied_to_clipboard": "L'élément de travail est copié dans le presse-papiers", - "no_links_added_yet": "Aucun lien ajouté pour l'instant", - "add_link": "Ajouter un lien", - "links": "Liens", - "go_to_workspace": "Aller à l'espace de travail", - "progress": "Progression", - "optional": "Optionnel", - "join": "Rejoindre", - "go_back": "Retour", - "continue": "Continuer", - "resend": "Renvoyer", - "relations": "Relations", - "errors": { - "default": { - "title": "Erreur !", - "message": "Quelque chose s'est mal passé. Veuillez réessayer." - }, - "required": "Ce champ est obligatoire", - "entity_required": "{entity} est requis", - "restricted_entity": "{entity} est restreint" - }, - "update_link": "Mettre à jour le lien", - "attach": "Joindre", - "create_new": "Créer nouveau", - "add_existing": "Ajouter existant", - "type_or_paste_a_url": "Tapez ou collez une URL", - "url_is_invalid": "L'URL n'est pas valide", - "display_title": "Titre d'affichage", - "link_title_placeholder": "Comment souhaitez-vous voir ce lien", - "url": "URL", - "side_peek": "Aperçu latéral", - "modal": "Modal", - "full_screen": "Plein écran", - "close_peek_view": "Fermer l'aperçu", - "toggle_peek_view_layout": "Basculer la disposition de l'aperçu", - "options": "Options", - "duration": "Durée", - "today": "Aujourd'hui", - "week": "Semaine", - "month": "Mois", - "quarter": "Trimestre", - "press_for_commands": "Appuyez sur '/' pour les commandes", - "click_to_add_description": "Cliquez pour ajouter une description", - "search": { - "label": "Rechercher", - "placeholder": "Tapez pour rechercher", - "no_matches_found": "Aucune correspondance trouvée", - "no_matching_results": "Aucun résultat correspondant" - }, - "actions": { - "edit": "Modifier", - "make_a_copy": "Faire une copie", - "open_in_new_tab": "Ouvrir dans un nouvel onglet", - "copy_link": "Copier le lien", - "archive": "Archiver", - "delete": "Supprimer", - "remove_relation": "Supprimer la relation", - "subscribe": "S'abonner", - "unsubscribe": "Se désabonner", - "clear_sorting": "Effacer le tri", - "show_weekends": "Afficher les week-ends", - "enable": "Activer", - "disable": "Désactiver" - }, - "name": "Nom", - "discard": "Abandonner", - "confirm": "Confirmer", - "confirming": "Confirmation", - "read_the_docs": "Lire la documentation", - "default": "Par défaut", - "active": "Actif", - "enabled": "Activé", - "disabled": "Désactivé", - "mandate": "Mandat", - "mandatory": "Obligatoire", - "yes": "Oui", - "no": "Non", - "please_wait": "Veuillez patienter", - "enabling": "Activation", - "disabling": "Désactivation", - "beta": "Bêta", - "or": "ou", - "next": "Suivant", - "back": "Retour", - "cancelling": "Annulation", - "configuring": "Configuration", - "clear": "Effacer", - "import": "Importer", - "connect": "Connecter", - "authorizing": "Autorisation", - "processing": "Traitement", - "no_data_available": "Aucune donnée disponible", - "from": "de {name}", - "authenticated": "Authentifié", - "select": "Sélectionner", - "upgrade": "Mettre à niveau", - "add_seats": "Ajouter des sièges", - "projects": "Projets", - "workspace": "Espace de travail", - "workspaces": "Espaces de travail", - "team": "Équipe", - "teams": "Équipes", - "entity": "Entité", - "entities": "Entités", - "task": "Tâche", - "tasks": "Tâches", - "section": "Section", - "sections": "Sections", - "edit": "Modifier", - "connecting": "Connexion", - "connected": "Connecté", - "disconnect": "Déconnecter", - "disconnecting": "Déconnexion", - "installing": "Installation", - "install": "Installer", - "reset": "Réinitialiser", - "live": "En direct", - "change_history": "Historique des modifications", - "coming_soon": "À venir", - "member": "Membre", - "members": "Membres", - "you": "Vous", - "upgrade_cta": { - "higher_subscription": "Passer à une abonnement plus élevé", - "talk_to_sales": "Parler aux ventes" - }, - "category": "Catégorie", - "categories": "Catégories", - "saving": "Enregistrement", - "save_changes": "Enregistrer les modifications", - "delete": "Supprimer", - "deleting": "Suppression", - "pending": "En attente", - "invite": "Inviter", - "view": "Afficher", - "deactivated_user": "Utilisateur désactivé", - "apply": "Appliquer", - "applying": "Application", - "users": "Utilisateurs", - "admins": "Administrateurs", - "guests": "Invités", - "on_track": "Sur la bonne voie", - "off_track": "Hors de la bonne voie", - "at_risk": "À risque", - "timeline": "Chronologie", - "completion": "Achèvement", - "upcoming": "À venir", - "completed": "Terminé", - "in_progress": "En cours", - "planned": "Planifié", - "paused": "En pause", - "no_of": "Nº de {entity}", - "resolved": "Résolu" - }, - "chart": { - "x_axis": "Axe X", - "y_axis": "Axe Y", - "metric": "Métrique" - }, - "form": { - "title": { - "required": "Le titre est requis", - "max_length": "Le titre doit contenir moins de {length} caractères" - } - }, - "entity": { - "grouping_title": "Regroupement {entity}", - "priority": "Priorité {entity}", - "all": "Tous les {entity}", - "drop_here_to_move": "Déposez ici pour déplacer le {entity}", - "delete": { - "label": "Supprimer {entity}", - "success": "{entity} supprimé avec succès", - "failed": "Échec de la suppression de {entity}" - }, - "update": { - "failed": "Échec de la mise à jour de {entity}", - "success": "{entity} mis à jour avec succès" - }, - "link_copied_to_clipboard": "Lien {entity} copié dans le presse-papiers", - "fetch": { - "failed": "Erreur lors de la récupération de {entity}" - }, - "add": { - "success": "{entity} ajouté avec succès", - "failed": "Erreur lors de l'ajout de {entity}" - }, - "remove": { - "success": "{entity} supprimé avec succès", - "failed": "Erreur lors de la suppression de {entity}" - } - }, - "epic": { - "all": "Tous les Epics", - "label": "{count, plural, one {Epic} other {Epics}}", - "new": "Nouvel Epic", - "adding": "Ajout d'un epic", - "create": { - "success": "Epic créé avec succès" - }, - "add": { - "press_enter": "Appuyez sur 'Entrée' pour ajouter un autre epic", - "label": "Ajouter un Epic" - }, - "title": { - "label": "Titre de l'Epic", - "required": "Le titre de l'Epic est requis." - } - }, - "issue": { - "label": "{count, plural, one {Élément de travail} other {Éléments de travail}}", - "all": "Tous les éléments de travail", - "edit": "Modifier l'élément de travail", - "title": { - "label": "Titre de l'élément de travail", - "required": "Le titre de l'élément de travail est requis." - }, - "add": { - "press_enter": "Appuyez sur 'Entrée' pour ajouter un autre élément de travail", - "label": "Ajouter un élément de travail", - "cycle": { - "failed": "L'élément de travail n'a pas pu être ajouté au cycle. Veuillez réessayer.", - "success": "{count, plural, one {Élément de travail} other {Éléments de travail}} ajouté(s) au cycle avec succès.", - "loading": "Ajout de {count, plural, one {l'élément de travail} other {éléments de travail}} au cycle" - }, - "assignee": "Ajouter des assignés", - "start_date": "Ajouter une date de début", - "due_date": "Ajouter une date d'échéance", - "parent": "Ajouter un élément de travail parent", - "sub_issue": "Ajouter un sous-élément de travail", - "relation": "Ajouter une relation", - "link": "Ajouter un lien", - "existing": "Ajouter un élément de travail existant" - }, - "remove": { - "label": "Supprimer l'élément de travail", - "cycle": { - "loading": "Suppression de l'élément de travail du cycle", - "success": "Élément de travail supprimé du cycle avec succès.", - "failed": "L'élément de travail n'a pas pu être supprimé du cycle. Veuillez réessayer." - }, - "module": { - "loading": "Suppression de l'élément de travail du module", - "success": "Élément de travail supprimé du module avec succès.", - "failed": "L'élément de travail n'a pas pu être supprimé du module. Veuillez réessayer." - }, - "parent": { - "label": "Supprimer l'élément de travail parent" - } - }, - "new": "Nouvel élément de travail", - "adding": "Ajout d'un élément de travail", - "create": { - "success": "Élément de travail créé avec succès" - }, - "priority": { - "urgent": "Urgent", - "high": "Haute", - "medium": "Moyenne", - "low": "Basse" - }, - "display": { - "properties": { - "label": "Propriétés d'affichage", - "id": "ID", - "issue_type": "Type d'élément de travail", - "sub_issue_count": "Nombre de sous-éléments", - "attachment_count": "Nombre de pièces jointes", - "created_on": "Créé le", - "sub_issue": "Sous-élément de travail", - "work_item_count": "Nombre d'éléments de travail" - }, - "extra": { - "show_sub_issues": "Afficher les sous-éléments", - "show_empty_groups": "Afficher les groupes vides" - } - }, - "layouts": { - "ordered_by_label": "Cette disposition est triée par", - "list": "Liste", - "kanban": "Tableau", - "calendar": "Calendrier", - "spreadsheet": "Tableau", - "gantt": "Chronologie", - "title": { - "list": "Disposition en liste", - "kanban": "Disposition en tableau", - "calendar": "Disposition en calendrier", - "spreadsheet": "Disposition en tableau", - "gantt": "Disposition en chronologie" - } - }, - "states": { - "active": "Actif", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Ajouter un commentaire", - "switch": { - "private": "Passer en commentaire privé", - "public": "Passer en commentaire public" - }, - "create": { - "success": "Commentaire créé avec succès", - "error": "Échec de la création du commentaire. Veuillez réessayer plus tard." - }, - "update": { - "success": "Commentaire mis à jour avec succès", - "error": "Échec de la mise à jour du commentaire. Veuillez réessayer plus tard." - }, - "remove": { - "success": "Commentaire supprimé avec succès", - "error": "Échec de la suppression du commentaire. Veuillez réessayer plus tard." - }, - "upload": { - "error": "Échec du téléchargement du fichier. Veuillez réessayer plus tard." - }, - "copy_link": { - "success": "Lien du commentaire copié dans le presse-papiers", - "error": "Erreur lors de la copie du lien du commentaire. Veuillez réessayer plus tard." - } - }, - "empty_state": { - "issue_detail": { - "title": "L'élément de travail n'existe pas", - "description": "L'élément de travail que vous recherchez n'existe pas, a été archivé ou a été supprimé.", - "primary_button": { - "text": "Voir les autres éléments de travail" - } - } - }, - "sibling": { - "label": "Éléments de travail frères" - }, - "archive": { - "description": "Seuls les éléments de travail\nterminés ou annulés peuvent être archivés", - "label": "Archiver l'élément de travail", - "confirm_message": "Êtes-vous sûr de vouloir archiver l'élément de travail ? Tous vos éléments archivés peuvent être restaurés ultérieurement.", - "success": { - "label": "Archivage réussi", - "message": "Vos archives se trouvent dans les archives du projet." - }, - "failed": { - "message": "L'élément de travail n'a pas pu être archivé. Veuillez réessayer." - } - }, - "restore": { - "success": { - "title": "Restauration réussie", - "message": "Votre élément de travail se trouve dans les éléments de travail du projet." - }, - "failed": { - "message": "L'élément de travail n'a pas pu être restauré. Veuillez réessayer." - } - }, - "relation": { - "relates_to": "En relation avec", - "duplicate": "Doublon de", - "blocked_by": "Bloqué par", - "blocking": "Bloque" - }, - "copy_link": "Copier le lien de l'élément de travail", - "delete": { - "label": "Supprimer l'élément de travail", - "error": "Erreur lors de la suppression de l'élément de travail" - }, - "subscription": { - "actions": { - "subscribed": "Abonnement à l'élément de travail réussi", - "unsubscribed": "Désabonnement de l'élément de travail réussi" - } - }, - "select": { - "error": "Veuillez sélectionner au moins un élément de travail", - "empty": "Aucun élément de travail sélectionné", - "add_selected": "Ajouter les éléments de travail sélectionnés", - "select_all": "Sélectionner tout", - "deselect_all": "Tout désélectionner" - }, - "open_in_full_screen": "Ouvrir l'élément de travail en plein écran" - }, - "attachment": { - "error": "Le fichier n'a pas pu être joint. Essayez de le télécharger à nouveau.", - "only_one_file_allowed": "Un seul fichier peut être téléchargé à la fois.", - "file_size_limit": "Le fichier doit faire {size}MB ou moins.", - "drag_and_drop": "Glissez-déposez n'importe où pour télécharger", - "delete": "Supprimer la pièce jointe" - }, - "label": { - "select": "Sélectionner une étiquette", - "create": { - "success": "Étiquette créée avec succès", - "failed": "Échec de la création de l'étiquette", - "already_exists": "L'étiquette existe déjà", - "type": "Tapez pour ajouter une nouvelle étiquette" - } - }, - "sub_work_item": { - "update": { - "success": "Sous-élément de travail mis à jour avec succès", - "error": "Erreur lors de la mise à jour du sous-élément de travail" - }, - "remove": { - "success": "Sous-élément de travail supprimé avec succès", - "error": "Erreur lors de la suppression du sous-élément de travail" - }, - "empty_state": { - "sub_list_filters": { - "title": "Vous n'avez pas de sous-éléments de travail qui correspondent aux filtres que vous avez appliqués.", - "description": "Pour voir tous les sous-éléments de travail, effacer tous les filtres appliqués.", - "action": "Effacer les filtres" - }, - "list_filters": { - "title": "Vous n'avez pas d'éléments de travail qui correspondent aux filtres que vous avez appliqués.", - "description": "Pour voir tous les éléments de travail, effacer tous les filtres appliqués.", - "action": "Effacer les filtres" - } - } - }, - "view": { - "label": "{count, plural, one {Vue} other {Vues}}", - "create": { - "label": "Créer une vue" - }, - "update": { - "label": "Mettre à jour la vue" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "En attente", - "description": "En attente" - }, - "declined": { - "title": "Refusé", - "description": "Refusé" - }, - "snoozed": { - "title": "Reporté", - "description": "{days, plural, one{# jour} other{# jours}} restant(s)" - }, - "accepted": { - "title": "Accepté", - "description": "Accepté" - }, - "duplicate": { - "title": "Doublon", - "description": "Doublon" - } - }, - "modals": { - "decline": { - "title": "Refuser l'élément de travail", - "content": "Êtes-vous sûr de vouloir refuser l'élément de travail {value} ?" - }, - "delete": { - "title": "Supprimer l'élément de travail", - "content": "Êtes-vous sûr de vouloir supprimer l'élément de travail {value} ?", - "success": "Élément de travail supprimé avec succès" - } - }, - "errors": { - "snooze_permission": "Seuls les administrateurs du projet peuvent reporter/annuler le report des éléments de travail", - "accept_permission": "Seuls les administrateurs du projet peuvent accepter les éléments de travail", - "decline_permission": "Seuls les administrateurs du projet peuvent refuser les éléments de travail" - }, - "actions": { - "accept": "Accepter", - "decline": "Refuser", - "snooze": "Reporter", - "unsnooze": "Annuler le report", - "copy": "Copier le lien de l'élément de travail", - "delete": "Supprimer", - "open": "Ouvrir l'élément de travail", - "mark_as_duplicate": "Marquer comme doublon", - "move": "Déplacer {value} vers les éléments de travail du projet" - }, - "source": { - "in-app": "in-app" - }, - "order_by": { - "created_at": "Créé le", - "updated_at": "Mis à jour le", - "id": "ID" - }, - "label": "Intake", - "page_label": "{workspace} - Intake", - "modal": { - "title": "Créer un élément de travail Intake" - }, - "tabs": { - "open": "Ouvert", - "closed": "Fermé" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Aucun élément de travail ouvert", - "description": "Trouvez les éléments de travail ouverts ici. Créez un nouvel élément de travail." - }, - "sidebar_closed_tab": { - "title": "Aucun élément de travail fermé", - "description": "Tous les éléments de travail, qu'ils soient acceptés ou refusés, peuvent être trouvés ici." - }, - "sidebar_filter": { - "title": "Aucun élément de travail correspondant", - "description": "Aucun élément de travail ne correspond au filtre appliqué dans Intake. Créez un nouvel élément de travail." - }, - "detail": { - "title": "Sélectionnez un élément de travail pour voir ses détails." - } - } - }, - "workspace_creation": { - "heading": "Créez votre espace de travail", - "subheading": "Pour commencer à utiliser Plane, vous devez créer ou rejoindre un espace de travail.", - "form": { - "name": { - "label": "Nommez votre espace de travail", - "placeholder": "Quelque chose de familier et reconnaissable est toujours préférable." - }, - "url": { - "label": "Définissez l'URL de votre espace de travail", - "placeholder": "Tapez ou collez une URL", - "edit_slug": "Vous ne pouvez modifier que le slug de l'URL" - }, - "organization_size": { - "label": "Combien de personnes utiliseront cet espace de travail ?", - "placeholder": "Sélectionnez une plage" - } - }, - "errors": { - "creation_disabled": { - "title": "Seul l'administrateur de votre instance peut créer des espaces de travail", - "description": "Si vous connaissez l'adresse e-mail de votre administrateur d'instance, cliquez sur le bouton ci-dessous pour le contacter.", - "request_button": "Contacter l'administrateur d'instance" - }, - "validation": { - "name_alphanumeric": "Les noms d'espaces de travail ne peuvent contenir que (' '), ('-'), ('_') et des caractères alphanumériques.", - "name_length": "Limitez votre nom à 80 caractères.", - "url_alphanumeric": "Les URL ne peuvent contenir que ('-') et des caractères alphanumériques.", - "url_length": "Limitez votre URL à 48 caractères.", - "url_already_taken": "L'URL de l'espace de travail est déjà prise !" - } - }, - "request_email": { - "subject": "Demande d'un nouvel espace de travail", - "body": "Bonjour administrateur(s) d'instance,\n\nVeuillez créer un nouvel espace de travail avec l'URL [/workspace-name] pour [objectif de création de l'espace de travail].\n\nMerci,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Créer l'espace de travail", - "loading": "Création de l'espace de travail" - }, - "toast": { - "success": { - "title": "Succès", - "message": "Espace de travail créé avec succès" - }, - "error": { - "title": "Erreur", - "message": "L'espace de travail n'a pas pu être créé. Veuillez réessayer." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Aperçu de vos projets, activités et métriques", - "description": "Bienvenue sur Plane, nous sommes ravis de vous avoir parmi nous. Créez votre premier projet et suivez vos éléments de travail, et cette page se transformera en un espace qui vous aide à progresser. Les administrateurs verront également les éléments qui aident leur équipe à progresser.", - "primary_button": { - "text": "Construisez votre premier projet", - "comic": { - "title": "Tout commence par un projet dans Plane", - "description": "Un projet peut être la feuille de route d'un produit, une campagne marketing ou le lancement d'une nouvelle voiture." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analytique", - "page_label": "{workspace} - Analytique", - "open_tasks": "Total des tâches ouvertes", - "error": "Une erreur s'est produite lors de la récupération des données.", - "work_items_closed_in": "Éléments de travail fermés dans", - "selected_projects": "Projets sélectionnés", - "total_members": "Total des membres", - "total_cycles": "Total des Cycles", - "total_modules": "Total des Modules", - "pending_work_items": { - "title": "Éléments de travail en attente", - "empty_state": "L'analyse des éléments de travail en attente par collègues apparaît ici." - }, - "work_items_closed_in_a_year": { - "title": "Éléments de travail fermés dans l'année", - "empty_state": "Fermez des éléments de travail pour voir leur analyse sous forme de graphique." - }, - "most_work_items_created": { - "title": "Plus d'éléments de travail créés", - "empty_state": "Les collègues et le nombre d'éléments de travail créés par eux apparaissent ici." - }, - "most_work_items_closed": { - "title": "Plus d'éléments de travail fermés", - "empty_state": "Les collègues et le nombre d'éléments de travail fermés par eux apparaissent ici." - }, - "tabs": { - "scope_and_demand": "Portée et Demande", - "custom": "Analytique Personnalisée" - }, - "empty_state": { - "customized_insights": { - "description": "Les éléments de travail qui vous sont assignés, répartis par état, s'afficheront ici.", - "title": "Pas encore de données" - }, - "created_vs_resolved": { - "description": "Les éléments de travail créés et résolus au fil du temps s'afficheront ici.", - "title": "Pas encore de données" - }, - "project_insights": { - "title": "Pas encore de données", - "description": "Les éléments de travail qui vous sont assignés, répartis par état, s'afficheront ici." - }, - "general": { - "title": "Suivez les progrès, les charges de travail et les allocations. Identifiez les tendances, supprimez les blocages et travaillez plus rapidement", - "description": "Voyez la portée par rapport à la demande, les estimations et l'évolution du périmètre. Obtenez les performances par les membres de l'équipe et les équipes, et assurez-vous que votre projet se déroule dans les temps.", - "primary_button": { - "text": "Commencez votre premier projet", - "comic": { - "title": "L'analytics fonctionne mieux avec les Cycles + Modules", - "description": "D'abord, encadrez vos éléments de travail dans des Cycles et, si possible, regroupez les éléments qui s'étendent sur plus d'un cycle dans des Modules. Consultez les deux dans la navigation de gauche." - } - } - } - }, - "created_vs_resolved": "Créé vs Résolu", - "customized_insights": "Informations personnalisées", - "backlog_work_items": "{entity} en backlog", - "active_projects": "Projets actifs", - "trend_on_charts": "Tendance sur les graphiques", - "all_projects": "Tous les projets", - "summary_of_projects": "Résumé des projets", - "project_insights": "Aperçus du projet", - "started_work_items": "{entity} commencés", - "total_work_items": "Total des {entity}", - "total_projects": "Total des projets", - "total_admins": "Total des administrateurs", - "total_users": "Nombre total d'utilisateurs", - "total_intake": "Revenu total", - "un_started_work_items": "{entity} non commencés", - "total_guests": "Nombre total d'invités", - "completed_work_items": "{entity} terminés", - "total": "Total des {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Projet} other {Projets}}", - "create": { - "label": "Ajouter un Projet" - }, - "network": { - "private": { - "title": "Privé", - "description": "Accessible uniquement sur invitation" - }, - "public": { - "title": "Public", - "description": "Accessible à tous dans l'espace de travail sauf les invités" - } - }, - "error": { - "permission": "Vous n'avez pas la permission d'effectuer cette action.", - "cycle_delete": "Échec de la suppression du cycle", - "module_delete": "Échec de la suppression du module", - "issue_delete": "Échec de la suppression de l'élément de travail" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Non commencé", - "started": "Commencé", - "completed": "Terminé", - "cancelled": "Annulé" - }, - "sort": { - "manual": "Manuel", - "name": "Nom", - "created_at": "Date de création", - "members_length": "Nombre de membres" - }, - "scope": { - "my_projects": "Mes projets", - "archived_projects": "Archivés" - }, - "common": { - "months_count": "{months, plural, one{# mois} other{# mois}}" - }, - "empty_state": { - "general": { - "title": "Aucun projet actif", - "description": "Considérez chaque projet comme le parent d'un travail orienté objectif. Les projets sont l'endroit où vivent les Tâches, les Cycles et les Modules et, avec vos collègues, vous aident à atteindre cet objectif. Créez un nouveau projet ou filtrez les projets archivés.", - "primary_button": { - "text": "Commencez votre premier projet", - "comic": { - "title": "Tout commence par un projet dans Plane", - "description": "Un projet peut être la feuille de route d'un produit, une campagne marketing ou le lancement d'une nouvelle voiture." - } - } - }, - "no_projects": { - "title": "Aucun projet", - "description": "Pour créer des éléments de travail ou gérer votre travail, vous devez créer un projet ou faire partie d'un projet.", - "primary_button": { - "text": "Commencez votre premier projet", - "comic": { - "title": "Tout commence par un projet dans Plane", - "description": "Un projet peut être la feuille de route d'un produit, une campagne marketing ou le lancement d'une nouvelle voiture." - } - } - }, - "filter": { - "title": "Aucun projet correspondant", - "description": "Aucun projet détecté avec les critères correspondants. \n Créez plutôt un nouveau projet." - }, - "search": { - "description": "Aucun projet détecté avec les critères correspondants.\nCréez plutôt un nouveau projet" - } - } - }, - "workspace_views": { - "add_view": "Ajouter une vue", - "empty_state": { - "all-issues": { - "title": "Aucun élément de travail dans le projet", - "description": "Premier projet terminé ! Maintenant, découpez votre travail en morceaux traçables avec des éléments de travail. Allons-y !", - "primary_button": { - "text": "Créer un nouvel élément de travail" - } - }, - "assigned": { - "title": "Aucun élément de travail pour le moment", - "description": "Les éléments de travail qui vous sont assignés peuvent être suivis ici.", - "primary_button": { - "text": "Créer un nouvel élément de travail" - } - }, - "created": { - "title": "Aucun élément de travail pour le moment", - "description": "Tous les éléments de travail que vous créez arrivent ici, suivez-les directement ici.", - "primary_button": { - "text": "Créer un nouvel élément de travail" - } - }, - "subscribed": { - "title": "Aucun élément de travail pour le moment", - "description": "Abonnez-vous aux éléments de travail qui vous intéressent, suivez-les tous ici." - }, - "custom-view": { - "title": "Aucun élément de travail pour le moment", - "description": "Les éléments de travail qui correspondent aux filtres, suivez-les tous ici." - } - } - }, - "workspace_settings": { - "label": "Paramètres de l'espace de travail", - "page_label": "{workspace} - Paramètres généraux", - "key_created": "Clé créée", - "copy_key": "Copiez et sauvegardez cette clé secrète dans Plane Pages. Vous ne pourrez plus voir cette clé après avoir cliqué sur Fermer. Un fichier CSV contenant la clé a été téléchargé.", - "token_copied": "Jeton copié dans le presse-papiers.", - "settings": { - "general": { - "title": "Général", - "upload_logo": "Télécharger le logo", - "edit_logo": "Modifier le logo", - "name": "Nom de l'espace de travail", - "company_size": "Taille de l'entreprise", - "url": "URL de l'espace de travail", - "update_workspace": "Mettre à jour l'espace de travail", - "delete_workspace": "Supprimer cet espace de travail", - "delete_workspace_description": "Lors de la suppression d'un espace de travail, toutes les données et ressources au sein de cet espace seront définitivement supprimées et ne pourront pas être récupérées.", - "delete_btn": "Supprimer cet espace de travail", - "delete_modal": { - "title": "Êtes-vous sûr de vouloir supprimer cet espace de travail ?", - "description": "Vous avez un essai actif sur l'un de nos forfaits payants. Veuillez d'abord l'annuler pour continuer.", - "dismiss": "Fermer", - "cancel": "Annuler l'essai", - "success_title": "Espace de travail supprimé.", - "success_message": "Vous serez bientôt redirigé vers votre page de profil.", - "error_title": "Cela n'a pas fonctionné.", - "error_message": "Veuillez réessayer." - }, - "errors": { - "name": { - "required": "Le nom est requis", - "max_length": "Le nom de l'espace de travail ne doit pas dépasser 80 caractères" - }, - "company_size": { - "required": "La taille de l'entreprise est requise", - "select_a_range": "Sélectionner la taille de l'organisation" - } - } - }, - "members": { - "title": "Membres", - "add_member": "Ajouter un membre", - "pending_invites": "Invitations en attente", - "invitations_sent_successfully": "Invitations envoyées avec succès", - "leave_confirmation": "Êtes-vous sûr de vouloir quitter l'espace de travail ? Vous n'aurez plus accès à cet espace de travail. Cette action ne peut pas être annulée.", - "details": { - "full_name": "Nom complet", - "display_name": "Nom d'affichage", - "email_address": "Adresse e-mail", - "account_type": "Type de compte", - "authentication": "Authentification", - "joining_date": "Date d'adhésion" - }, - "modal": { - "title": "Inviter des personnes à collaborer", - "description": "Invitez des personnes à collaborer sur votre espace de travail.", - "button": "Envoyer les invitations", - "button_loading": "Envoi des invitations", - "placeholder": "nom@entreprise.com", - "errors": { - "required": "Nous avons besoin d'une adresse e-mail pour les inviter.", - "invalid": "L'e-mail est invalide" - } - } - }, - "billing_and_plans": { - "title": "Facturation & Plans", - "current_plan": "Plan actuel", - "free_plan": "Vous utilisez actuellement le plan gratuit", - "view_plans": "Voir les plans" - }, - "exports": { - "title": "Exportations", - "exporting": "Exportation", - "previous_exports": "Exportations précédentes", - "export_separate_files": "Exporter les données dans des fichiers séparés", - "modal": { - "title": "Exporter vers", - "toasts": { - "success": { - "title": "Exportation réussie", - "message": "Vous pourrez télécharger les {entity} exportés depuis l'exportation précédente." - }, - "error": { - "title": "Échec de l'exportation", - "message": "L'exportation a échoué. Veuillez réessayer." - } - } - } - }, - "webhooks": { - "title": "Webhooks", - "add_webhook": "Ajouter un webhook", - "modal": { - "title": "Créer un webhook", - "details": "Détails du webhook", - "payload": "URL de la charge utile", - "question": "Quels événements souhaitez-vous déclencher avec ce webhook ?", - "error": "L'URL est requise" - }, - "secret_key": { - "title": "Clé secrète", - "message": "Générer un jeton pour signer la charge utile du webhook" - }, - "options": { - "all": "Envoyez-moi tout", - "individual": "Sélectionner des événements individuels" - }, - "toasts": { - "created": { - "title": "Webhook créé", - "message": "Le webhook a été créé avec succès" - }, - "not_created": { - "title": "Webhook non créé", - "message": "Le webhook n'a pas pu être créé" - }, - "updated": { - "title": "Webhook mis à jour", - "message": "Le webhook a été mis à jour avec succès" - }, - "not_updated": { - "title": "Webhook non mis à jour", - "message": "Le webhook n'a pas pu être mis à jour" - }, - "removed": { - "title": "Webhook supprimé", - "message": "Le webhook a été supprimé avec succès" - }, - "not_removed": { - "title": "Webhook non supprimé", - "message": "Le webhook n'a pas pu être supprimé" - }, - "secret_key_copied": { - "message": "Clé secrète copiée dans le presse-papiers." - }, - "secret_key_not_copied": { - "message": "Une erreur s'est produite lors de la copie de la clé secrète." - } - } - }, - "api_tokens": { - "title": "Jetons API", - "add_token": "Ajouter un jeton API", - "create_token": "Créer un jeton", - "never_expires": "N'expire jamais", - "generate_token": "Générer un jeton", - "generating": "Génération", - "delete": { - "title": "Supprimer le jeton API", - "description": "Toute application utilisant ce jeton n'aura plus accès aux données de Plane. Cette action ne peut pas être annulée.", - "success": { - "title": "Succès !", - "message": "Le jeton API a été supprimé avec succès" - }, - "error": { - "title": "Erreur !", - "message": "Le jeton API n'a pas pu être supprimé" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Aucun jeton API créé", - "description": "Les API Plane peuvent être utilisées pour intégrer vos données dans Plane avec n'importe quel système externe. Créez un jeton pour commencer." - }, - "webhooks": { - "title": "Aucun webhook ajouté", - "description": "Créez des webhooks pour recevoir des mises à jour en temps réel et automatiser des actions." - }, - "exports": { - "title": "Aucune exportation pour le moment", - "description": "Chaque fois que vous exportez, vous aurez également une copie ici pour référence." - }, - "imports": { - "title": "Aucune importation pour le moment", - "description": "Trouvez toutes vos importations précédentes ici et téléchargez-les." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Votre travail", - "work": "Travail", - "details": { - "joined_on": "Inscrit le", - "time_zone": "Fuseau horaire" - }, - "stats": { - "workload": "Charge de travail", - "overview": "Vue d'ensemble", - "created": "Éléments de travail créés", - "assigned": "Éléments de travail assignés", - "subscribed": "Éléments de travail suivis", - "state_distribution": { - "title": "Éléments de travail par état", - "empty": "Créez des éléments de travail pour les visualiser par état dans le graphique pour une meilleure analyse." - }, - "priority_distribution": { - "title": "Éléments de travail par priorité", - "empty": "Créez des éléments de travail pour les visualiser par priorité dans le graphique pour une meilleure analyse." - }, - "recent_activity": { - "title": "Activité récente", - "empty": "Nous n'avons pas trouvé de données. Veuillez consulter vos contributions", - "button": "Télécharger l'activité du jour", - "button_loading": "Téléchargement" - } - }, - "actions": { - "profile": "Profil", - "security": "Sécurité", - "activity": "Activité", - "appearance": "Apparence", - "notifications": "Notifications" - }, - "tabs": { - "summary": "Résumé", - "assigned": "Assigné", - "created": "Créé", - "subscribed": "Suivi", - "activity": "Activité" - }, - "empty_state": { - "activity": { - "title": "Aucune activité pour le moment", - "description": "Commencez par créer un nouvel élément de travail ! Ajoutez-y des détails et des propriétés. Explorez davantage Plane pour voir votre activité." - }, - "assigned": { - "title": "Aucun élément de travail ne vous est assigné", - "description": "Les éléments de travail qui vous sont assignés peuvent être suivis ici." - }, - "created": { - "title": "Aucun élément de travail pour le moment", - "description": "Tous les éléments de travail que vous créez apparaissent ici, suivez-les directement ici." - }, - "subscribed": { - "title": "Aucun élément de travail pour le moment", - "description": "Abonnez-vous aux éléments de travail qui vous intéressent, suivez-les tous ici." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Saisissez l'ID du projet", - "please_select_a_timezone": "Veuillez sélectionner un fuseau horaire", - "archive_project": { - "title": "Archiver le projet", - "description": "L'archivage d'un projet le retirera de votre navigation latérale, bien que vous pourrez toujours y accéder depuis votre page de projets. Vous pouvez restaurer le projet ou le supprimer quand vous le souhaitez.", - "button": "Archiver le projet" - }, - "delete_project": { - "title": "Supprimer le projet", - "description": "Lors de la suppression d'un projet, toutes les données et ressources de ce projet seront définitivement supprimées et ne pourront pas être récupérées.", - "button": "Supprimer mon projet" - }, - "toast": { - "success": "Projet mis à jour avec succès", - "error": "Le projet n'a pas pu être mis à jour. Veuillez réessayer." - } - }, - "members": { - "label": "Membres", - "project_lead": "Chef de projet", - "default_assignee": "Assigné par défaut", - "guest_super_permissions": { - "title": "Accorder l'accès en lecture à tous les éléments de travail pour les utilisateurs invités :", - "sub_heading": "Cela permettra aux invités d'avoir un accès en lecture à tous les éléments de travail du projet." - }, - "invite_members": { - "title": "Inviter des membres", - "sub_heading": "Invitez des membres à travailler sur votre projet.", - "select_co_worker": "Sélectionner un collaborateur" - } - }, - "states": { - "describe_this_state_for_your_members": "Décrivez cet état pour vos membres.", - "empty_state": { - "title": "Aucun état disponible pour le groupe {groupKey}", - "description": "Veuillez créer un nouvel état" - } - }, - "labels": { - "label_title": "Titre de l'étiquette", - "label_title_is_required": "Le titre de l'étiquette est requis", - "label_max_char": "Le nom de l'étiquette ne doit pas dépasser 255 caractères", - "toast": { - "error": "Erreur lors de la mise à jour de l'étiquette" - } - }, - "estimates": { - "label": "Estimations", - "title": "Activer les estimations pour mon projet", - "description": "Elles vous aident à communiquer la complexité et la charge de travail de l'équipe.", - "no_estimate": "Sans estimation", - "new": "Nouveau système d'estimation", - "create": { - "custom": "Personnalisé", - "start_from_scratch": "Commencer depuis zéro", - "choose_template": "Choisir un modèle", - "choose_estimate_system": "Choisir un système d'estimation", - "enter_estimate_point": "Saisir une estimation", - "step": "Étape {step} de {total}", - "label": "Créer une estimation" - }, - "toasts": { - "created": { - "success": { - "title": "Estimation créée", - "message": "L'estimation a été créée avec succès" - }, - "error": { - "title": "Échec de la création de l'estimation", - "message": "Nous n'avons pas pu créer la nouvelle estimation, veuillez réessayer." - } - }, - "updated": { - "success": { - "title": "Estimation modifiée", - "message": "L'estimation a été mise à jour dans votre projet." - }, - "error": { - "title": "Échec de la modification de l'estimation", - "message": "Nous n'avons pas pu modifier l'estimation, veuillez réessayer" - } - }, - "enabled": { - "success": { - "title": "Succès !", - "message": "Les estimations ont été activées." - } - }, - "disabled": { - "success": { - "title": "Succès !", - "message": "Les estimations ont été désactivées." - }, - "error": { - "title": "Erreur !", - "message": "L'estimation n'a pas pu être désactivée. Veuillez réessayer" - } - } - }, - "validation": { - "min_length": "L'estimation doit être supérieure à 0.", - "unable_to_process": "Nous ne pouvons pas traiter votre demande, veuillez réessayer.", - "numeric": "L'estimation doit être une valeur numérique.", - "character": "L'estimation doit être une valeur de caractère.", - "empty": "La valeur de l'estimation ne peut pas être vide.", - "already_exists": "La valeur de l'estimation existe déjà.", - "unsaved_changes": "Vous avez des modifications non enregistrées. Veuillez les enregistrer avant de cliquer sur Terminé", - "remove_empty": "L'estimation ne peut pas être vide. Saisissez une valeur dans chaque champ ou supprimez ceux pour lesquels vous n'avez pas de valeurs." - }, - "systems": { - "points": { - "label": "Points", - "fibonacci": "Fibonacci", - "linear": "Linéaire", - "squares": "Carrés", - "custom": "Personnalisé" - }, - "categories": { - "label": "Catégories", - "t_shirt_sizes": "Tailles de T-Shirt", - "easy_to_hard": "Facile à difficile", - "custom": "Personnalisé" - }, - "time": { - "label": "Temps", - "hours": "Heures" - } - } - }, - "automations": { - "label": "Automatisations", - "auto-archive": { - "title": "Archiver automatiquement les éléments de travail fermés", - "description": "Plane archivera automatiquement les éléments de travail qui ont été complétés ou annulés.", - "duration": "Archiver automatiquement les éléments de travail fermés depuis" - }, - "auto-close": { - "title": "Fermer automatiquement les éléments de travail", - "description": "Plane fermera automatiquement les éléments de travail qui n'ont pas été complétés ou annulés.", - "duration": "Fermer automatiquement les éléments de travail inactifs depuis", - "auto_close_status": "Statut de fermeture automatique" - } - }, - "empty_state": { - "labels": { - "title": "Pas encore d'étiquettes", - "description": "Créez des étiquettes pour organiser et filtrer les éléments de travail dans votre projet." - }, - "estimates": { - "title": "Pas encore de systèmes d'estimation", - "description": "Créez un ensemble d'estimations pour communiquer le volume de travail par élément de travail.", - "primary_button": "Ajouter un système d'estimation" - } - } - }, - "project_cycles": { - "add_cycle": "Ajouter un cycle", - "more_details": "Plus de détails", - "cycle": "Cycle", - "update_cycle": "Mettre à jour le cycle", - "create_cycle": "Créer un cycle", - "no_matching_cycles": "Aucun cycle correspondant", - "remove_filters_to_see_all_cycles": "Supprimez les filtres pour voir tous les cycles", - "remove_search_criteria_to_see_all_cycles": "Supprimez les critères de recherche pour voir tous les cycles", - "only_completed_cycles_can_be_archived": "Seuls les cycles terminés peuvent être archivés", - "start_date": "Date de début", - "end_date": "Date de fin", - "in_your_timezone": "Dans votre fuseau horaire", - "transfer_work_items": "Transférer {count} éléments de travail", - "date_range": "Plage de dates", - "add_date": "Ajouter une date", - "active_cycle": { - "label": "Cycle actif", - "progress": "Progression", - "chart": "Graphique d'avancement", - "priority_issue": "Éléments de travail prioritaires", - "assignees": "Assignés", - "issue_burndown": "Graphique d'avancement des éléments", - "ideal": "Idéal", - "current": "Actuel", - "labels": "Étiquettes" - }, - "upcoming_cycle": { - "label": "Cycle à venir" - }, - "completed_cycle": { - "label": "Cycle terminé" - }, - "status": { - "days_left": "Jours restants", - "completed": "Terminé", - "yet_to_start": "Pas encore commencé", - "in_progress": "En cours", - "draft": "Brouillon" - }, - "action": { - "restore": { - "title": "Restaurer le cycle", - "success": { - "title": "Cycle restauré", - "description": "Le cycle a été restauré." - }, - "failed": { - "title": "Échec de la restauration du cycle", - "description": "Le cycle n'a pas pu être restauré. Veuillez réessayer." - } - }, - "favorite": { - "loading": "Ajout du cycle aux favoris", - "success": { - "description": "Cycle ajouté aux favoris.", - "title": "Succès !" - }, - "failed": { - "description": "Impossible d'ajouter le cycle aux favoris. Veuillez réessayer.", - "title": "Erreur !" - } - }, - "unfavorite": { - "loading": "Suppression du cycle des favoris", - "success": { - "description": "Cycle retiré des favoris.", - "title": "Succès !" - }, - "failed": { - "description": "Impossible de retirer le cycle des favoris. Veuillez réessayer.", - "title": "Erreur !" - } - }, - "update": { - "loading": "Mise à jour du cycle", - "success": { - "description": "Cycle mis à jour avec succès.", - "title": "Succès !" - }, - "failed": { - "description": "Erreur lors de la mise à jour du cycle. Veuillez réessayer.", - "title": "Erreur !" - }, - "error": { - "already_exists": "Vous avez déjà un cycle aux dates indiquées. Si vous souhaitez créer un cycle en brouillon, vous pouvez le faire en supprimant les deux dates." - } - } - }, - "empty_state": { - "general": { - "title": "Regroupez et planifiez votre travail en Cycles.", - "description": "Découpez le travail en périodes définies, planifiez à rebours depuis la date limite de votre projet pour fixer les dates, et progressez concrètement en équipe.", - "primary_button": { - "text": "Définissez votre premier cycle", - "comic": { - "title": "Les cycles sont des périodes répétitives.", - "description": "Un sprint, une itération, ou tout autre terme que vous utilisez pour le suivi hebdomadaire ou bimensuel du travail est un cycle." - } - } - }, - "no_issues": { - "title": "Aucun élément de travail ajouté au cycle", - "description": "Ajoutez ou créez des éléments de travail que vous souhaitez planifier et livrer dans ce cycle", - "primary_button": { - "text": "Créer un nouvel élément de travail" - }, - "secondary_button": { - "text": "Ajouter un élément existant" - } - }, - "completed_no_issues": { - "title": "Aucun élément de travail dans le cycle", - "description": "Aucun élément de travail dans le cycle. Les éléments sont soit transférés soit masqués. Pour voir les éléments masqués s'il y en a, mettez à jour vos propriétés d'affichage en conséquence." - }, - "active": { - "title": "Aucun cycle actif", - "description": "Un cycle actif inclut toute période qui englobe la date d'aujourd'hui dans sa plage. Trouvez ici la progression et les détails du cycle actif." - }, - "archived": { - "title": "Aucun cycle archivé pour le moment", - "description": "Pour organiser votre projet, archivez les cycles terminés. Retrouvez-les ici une fois archivés." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Créez un élément de travail et assignez-le à quelqu'un, même à vous-même", - "description": "Pensez aux éléments de travail comme des tâches, du travail, ou des JTBD (Jobs To Be Done). Un élément de travail et ses sous-éléments sont généralement des actions temporelles assignées aux membres de votre équipe. Votre équipe crée, assigne et complète des éléments de travail pour faire progresser votre projet vers son objectif.", - "primary_button": { - "text": "Créez votre premier élément de travail", - "comic": { - "title": "Les éléments de travail sont les blocs de construction dans Plane.", - "description": "Refondre l'interface de Plane, Renouveler l'image de marque de l'entreprise, ou Lancer le nouveau système d'injection de carburant sont des exemples d'éléments de travail qui ont probablement des sous-éléments." - } - } - }, - "no_archived_issues": { - "title": "Aucun élément de travail archivé pour le moment", - "description": "Manuellement ou par automatisation, vous pouvez archiver les éléments de travail terminés ou annulés. Retrouvez-les ici une fois archivés.", - "primary_button": { - "text": "Configurer l'automatisation" - } - }, - "issues_empty_filter": { - "title": "Aucun élément de travail trouvé correspondant aux filtres appliqués", - "secondary_button": { - "text": "Effacer tous les filtres" - } - } - } - }, - "project_module": { - "add_module": "Ajouter un module", - "update_module": "Mettre à jour le module", - "create_module": "Créer un module", - "archive_module": "Archiver le module", - "restore_module": "Restaurer le module", - "delete_module": "Supprimer le module", - "empty_state": { - "general": { - "title": "Associez vos jalons de projet aux Modules et suivez facilement le travail agrégé.", - "description": "Un groupe d'éléments de travail qui appartiennent à un parent logique et hiérarchique forme un module. Considérez-les comme un moyen de suivre le travail par jalons de projet. Ils ont leurs propres périodes et délais ainsi que des analyses pour vous aider à voir à quel point vous êtes proche ou loin d'un jalon.", - "primary_button": { - "text": "Construisez votre premier module", - "comic": { - "title": "Les modules aident à regrouper le travail par hiérarchie.", - "description": "Un module panier, un module châssis et un module entrepôt sont tous de bons exemples de ce regroupement." - } - } - }, - "no_issues": { - "title": "Aucun élément de travail dans le module", - "description": "Créez ou ajoutez des éléments de travail que vous souhaitez accomplir dans le cadre de ce module", - "primary_button": { - "text": "Créer de nouveaux éléments de travail" - }, - "secondary_button": { - "text": "Ajouter un élément existant" - } - }, - "archived": { - "title": "Aucun module archivé pour le moment", - "description": "Pour organiser votre projet, archivez les modules terminés ou annulés. Retrouvez-les ici une fois archivés." - }, - "sidebar": { - "in_active": "Ce module n'est pas encore actif.", - "invalid_date": "Date invalide. Veuillez entrer une date valide." - } - }, - "quick_actions": { - "archive_module": "Archiver le module", - "archive_module_description": "Seuls les modules terminés ou\nannulés peuvent être archivés.", - "delete_module": "Supprimer le module" - }, - "toast": { - "copy": { - "success": "Lien du module copié dans le presse-papiers" - }, - "delete": { - "success": "Module supprimé avec succès", - "error": "Échec de la suppression du module" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Enregistrez des vues filtrées pour votre projet. Créez-en autant que nécessaire", - "description": "Les vues sont un ensemble de filtres enregistrés que vous utilisez fréquemment ou auxquels vous souhaitez avoir un accès facile. Tous vos collègues dans un projet peuvent voir les vues de chacun et choisir celle qui convient le mieux à leurs besoins.", - "primary_button": { - "text": "Créez votre première vue", - "comic": { - "title": "Les vues fonctionnent sur les propriétés des éléments de travail.", - "description": "Vous pouvez créer une vue ici avec autant de propriétés comme filtres que vous le jugez approprié." - } - } - }, - "filter": { - "title": "Aucune vue correspondante", - "description": "Aucune vue ne correspond aux critères de recherche. \n Créez plutôt une nouvelle vue." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Rédigez une note, un document ou une base de connaissances complète. Obtenez l'aide de Galileo, l'assistant IA de Plane, pour commencer", - "description": "Les Pages sont un espace de réflexion dans Plane. Prenez des notes de réunion, formatez-les facilement, intégrez des éléments de travail, disposez-les à l'aide d'une bibliothèque de composants, et gardez-les tous dans le contexte de votre projet. Pour faciliter la rédaction de tout document, faites appel à Galileo, l'IA de Plane, avec un raccourci ou un clic sur un bouton.", - "primary_button": { - "text": "Créez votre première page" - } - }, - "private": { - "title": "Pas encore de pages privées", - "description": "Gardez vos pensées privées ici. Quand vous serez prêt à partager, l'équipe n'est qu'à un clic.", - "primary_button": { - "text": "Créez votre première page" - } - }, - "public": { - "title": "Pas encore de pages publiques", - "description": "Consultez ici les pages partagées avec tout le monde dans votre projet.", - "primary_button": { - "text": "Créez votre première page" - } - }, - "archived": { - "title": "Pas encore de pages archivées", - "description": "Archivez les pages qui ne sont pas dans votre radar. Accédez-y ici quand nécessaire." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Aucun résultat trouvé" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Aucun élément de travail correspondant trouvé" - }, - "no_issues": { - "title": "Aucun élément de travail trouvé" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Pas encore de commentaires", - "description": "Les commentaires peuvent être utilisés comme espace de discussion et de suivi pour les éléments de travail" - } - } - }, - "notification": { - "label": "Boîte de réception", - "page_label": "{workspace} - Boîte de réception", - "options": { - "mark_all_as_read": "Tout marquer comme lu", - "mark_read": "Marquer comme lu", - "mark_unread": "Marquer comme non lu", - "refresh": "Actualiser", - "filters": "Filtres de la boîte de réception", - "show_unread": "Afficher les non lus", - "show_snoozed": "Afficher les reportés", - "show_archived": "Afficher les archivés", - "mark_archive": "Archiver", - "mark_unarchive": "Désarchiver", - "mark_snooze": "Reporter", - "mark_unsnooze": "Annuler le report" - }, - "toasts": { - "read": "Notification marquée comme lue", - "unread": "Notification marquée comme non lue", - "archived": "Notification marquée comme archivée", - "unarchived": "Notification marquée comme non archivée", - "snoozed": "Notification reportée", - "unsnoozed": "Report de la notification annulé" - }, - "empty_state": { - "detail": { - "title": "Sélectionnez pour voir les détails." - }, - "all": { - "title": "Aucun élément de travail assigné", - "description": "Les mises à jour des éléments de travail qui vous sont assignés peuvent être \n vues ici" - }, - "mentions": { - "title": "Aucun élément de travail assigné", - "description": "Les mises à jour des éléments de travail qui vous sont assignés peuvent être \n vues ici" - } - }, - "tabs": { - "all": "Tout", - "mentions": "Mentions" - }, - "filter": { - "assigned": "Assigné à moi", - "created": "Créé par moi", - "subscribed": "Suivi par moi" - }, - "snooze": { - "1_day": "1 jour", - "3_days": "3 jours", - "5_days": "5 jours", - "1_week": "1 semaine", - "2_weeks": "2 semaines", - "custom": "Personnalisé" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Ajoutez des éléments de travail au cycle pour voir sa progression" - }, - "chart": { - "title": "Ajoutez des éléments de travail au cycle pour voir le graphique d'avancement." - }, - "priority_issue": { - "title": "Observez en un coup d'œil les éléments de travail prioritaires traités dans le cycle." - }, - "assignee": { - "title": "Ajoutez des assignés aux éléments de travail pour voir une répartition du travail par assigné." - }, - "label": { - "title": "Ajoutez des étiquettes aux éléments de travail pour voir la répartition du travail par étiquette." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "L'Intake n'est pas activé pour le projet.", - "description": "L'Intake vous aide à gérer les demandes entrantes dans votre projet et à les ajouter comme éléments de travail dans votre flux. Activez l'Intake depuis les paramètres du projet pour gérer les demandes.", - "primary_button": { - "text": "Gérer les fonctionnalités" - } - }, - "cycle": { - "title": "Les Cycles ne sont pas activés pour ce projet.", - "description": "Découpez le travail en segments temporels, planifiez à rebours depuis la date limite de votre projet pour définir les dates, et progressez concrètement en équipe. Activez la fonctionnalité Cycles pour votre projet pour commencer à les utiliser.", - "primary_button": { - "text": "Gérer les fonctionnalités" - } - }, - "module": { - "title": "Les Modules ne sont pas activés pour le projet.", - "description": "Les Modules sont les éléments constitutifs de votre projet. Activez les modules depuis les paramètres du projet pour commencer à les utiliser.", - "primary_button": { - "text": "Gérer les fonctionnalités" - } - }, - "page": { - "title": "Les Pages ne sont pas activées pour le projet.", - "description": "Les Pages sont les éléments constitutifs de votre projet. Activez les pages depuis les paramètres du projet pour commencer à les utiliser.", - "primary_button": { - "text": "Gérer les fonctionnalités" - } - }, - "view": { - "title": "Les Vues ne sont pas activées pour le projet.", - "description": "Les Vues sont les éléments constitutifs de votre projet. Activez les vues depuis les paramètres du projet pour commencer à les utiliser.", - "primary_button": { - "text": "Gérer les fonctionnalités" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Créer un brouillon d'élément de travail", - "empty_state": { - "title": "Les éléments de travail partiellement rédigés, et bientôt les commentaires, apparaîtront ici.", - "description": "Pour essayer cela, commencez à ajouter un élément de travail et laissez-le à mi-chemin ou créez votre premier brouillon ci-dessous. 😉", - "primary_button": { - "text": "Créez votre premier brouillon" - } - }, - "delete_modal": { - "title": "Supprimer le brouillon", - "description": "Êtes-vous sûr de vouloir supprimer ce brouillon ? Cette action ne peut pas être annulée." - }, - "toasts": { - "created": { - "success": "Brouillon créé", - "error": "L'élément de travail n'a pas pu être créé. Veuillez réessayer." - }, - "deleted": { - "success": "Brouillon supprimé" - } - } - }, - "stickies": { - "title": "Vos notes adhésives", - "placeholder": "cliquez pour écrire ici", - "all": "Toutes les notes adhésives", - "no-data": "Notez une idée, capturez une révélation ou enregistrez une inspiration. Ajoutez une note adhésive pour commencer.", - "add": "Ajouter une note adhésive", - "search_placeholder": "Rechercher par titre", - "delete": "Supprimer la note adhésive", - "delete_confirmation": "Êtes-vous sûr de vouloir supprimer cette note adhésive ?", - "empty_state": { - "simple": "Notez une idée, capturez une révélation ou enregistrez une inspiration. Ajoutez une note adhésive pour commencer.", - "general": { - "title": "Les notes adhésives sont des notes rapides et des tâches que vous prenez à la volée.", - "description": "Capturez vos pensées et idées facilement en créant des notes adhésives que vous pouvez consulter à tout moment et de n'importe où.", - "primary_button": { - "text": "Ajouter une note adhésive" - } - }, - "search": { - "title": "Cela ne correspond à aucune de vos notes adhésives.", - "description": "Essayez un terme différent ou faites-nous savoir\nsi vous êtes sûr que votre recherche est correcte.", - "primary_button": { - "text": "Ajouter une note adhésive" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Le nom de la note adhésive ne peut pas dépasser 100 caractères.", - "already_exists": "Il existe déjà une note adhésive sans description" - }, - "created": { - "title": "Note adhésive créée", - "message": "La note adhésive a été créée avec succès" - }, - "not_created": { - "title": "Note adhésive non créée", - "message": "La note adhésive n'a pas pu être créée" - }, - "updated": { - "title": "Note adhésive mise à jour", - "message": "La note adhésive a été mise à jour avec succès" - }, - "not_updated": { - "title": "Note adhésive non mise à jour", - "message": "La note adhésive n'a pas pu être mise à jour" - }, - "removed": { - "title": "Note adhésive supprimée", - "message": "La note adhésive a été supprimée avec succès" - }, - "not_removed": { - "title": "Note adhésive non supprimée", - "message": "La note adhésive n'a pas pu être supprimée" - } - } - }, - "role_details": { - "guest": { - "title": "Invité", - "description": "Les membres externes des organisations peuvent être invités en tant qu'invités." - }, - "member": { - "title": "Membre", - "description": "Capacité à lire, écrire, modifier et supprimer des entités dans les projets, cycles et modules" - }, - "admin": { - "title": "Administrateur", - "description": "Toutes les permissions sont activées dans l'espace de travail." - } - }, - "user_roles": { - "product_or_project_manager": "Chef de produit / Chef de projet", - "development_or_engineering": "Développement / Ingénierie", - "founder_or_executive": "Fondateur / Dirigeant", - "freelancer_or_consultant": "Freelance / Consultant", - "marketing_or_growth": "Marketing / Croissance", - "sales_or_business_development": "Ventes / Développement commercial", - "support_or_operations": "Support / Opérations", - "student_or_professor": "Étudiant / Professeur", - "human_resources": "Ressources Humaines", - "other": "Autre" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Importez des éléments de travail depuis les dépôts GitHub et synchronisez-les." - }, - "jira": { - "title": "Jira", - "description": "Importez des éléments de travail et des epics depuis les projets et epics Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Exportez les éléments de travail vers un fichier CSV.", - "short_description": "Exporter en csv" - }, - "excel": { - "title": "Excel", - "description": "Exportez les éléments de travail vers un fichier Excel.", - "short_description": "Exporter en excel" - }, - "xlsx": { - "title": "Excel", - "description": "Exportez les éléments de travail vers un fichier Excel.", - "short_description": "Exporter en excel" - }, - "json": { - "title": "JSON", - "description": "Exportez les éléments de travail vers un fichier JSON.", - "short_description": "Exporter en json" - } - }, - "default_global_view": { - "all_issues": "Tous les éléments de travail", - "assigned": "Assignés", - "created": "Créés", - "subscribed": "Suivis" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Préférence système" - }, - "light": { - "label": "Clair" - }, - "dark": { - "label": "Sombre" - }, - "light_contrast": { - "label": "Contraste clair élevé" - }, - "dark_contrast": { - "label": "Contraste sombre élevé" - }, - "custom": { - "label": "Thème personnalisé" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Planifié", - "in_progress": "En cours", - "paused": "En pause", - "completed": "Terminé", - "cancelled": "Annulé" - }, - "layout": { - "list": "Vue liste", - "board": "Vue galerie", - "timeline": "Vue chronologique" - }, - "order_by": { - "name": "Nom", - "progress": "Progression", - "issues": "Nombre d'éléments de travail", - "due_date": "Date d'échéance", - "created_at": "Date de création", - "manual": "Manuel" - } - }, - "cycle": { - "label": "{count, plural, one {Cycle} other {Cycles}}", - "no_cycle": "Pas de cycle" - }, - "module": { - "label": "{count, plural, one {Module} other {Modules}}", - "no_module": "Pas de module" - }, - "description_versions": { - "last_edited_by": "Dernière modification par", - "previously_edited_by": "Précédemment modifié par", - "edited_by": "Modifié par" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane n'a pas démarré. Cela pourrait être dû au fait qu'un ou plusieurs services Plane ont échoué à démarrer.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Choisissez View Logs depuis setup.sh et les logs Docker pour en être sûr." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Plan", - "empty_state": { - "title": "Titres manquants", - "description": "Ajoutons quelques titres à cette page pour les voir ici." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Mots", - "characters": "Caractères", - "paragraphs": "Paragraphes", - "read_time": "Temps de lecture" - }, - "actors_info": { - "edited_by": "Modifié par", - "created_by": "Créé par" - }, - "version_history": { - "label": "Historique des versions", - "current_version": "Version actuelle" - } - }, - "assets": { - "label": "Ressources", - "download_button": "Télécharger", - "empty_state": { - "title": "Images manquantes", - "description": "Ajoutez des images pour les voir ici." - } - } - }, - "open_button": "Ouvrir le panneau de navigation", - "close_button": "Fermer le panneau de navigation", - "outline_floating_button": "Ouvrir le plan" - } -} diff --git a/packages/i18n/src/locales/fr/translations.ts b/packages/i18n/src/locales/fr/translations.ts new file mode 100644 index 0000000000..73ce767d4d --- /dev/null +++ b/packages/i18n/src/locales/fr/translations.ts @@ -0,0 +1,2617 @@ +export default { + sidebar: { + projects: "Projets", + pages: "Pages", + new_work_item: "Nouvel élément de travail", + home: "Accueil", + your_work: "Votre travail", + inbox: "Boîte de réception", + workspace: "Espace de travail", + views: "Vues", + analytics: "Analyses", + work_items: "Éléments de travail", + cycles: "Cycles", + modules: "Modules", + intake: "Intake", + drafts: "Brouillons", + favorites: "Favoris", + pro: "Pro", + upgrade: "Mettre à niveau", + }, + auth: { + common: { + email: { + label: "E-mail", + placeholder: "nom@entreprise.com", + errors: { + required: "L'e-mail est requis", + invalid: "L'e-mail est invalide", + }, + }, + password: { + label: "Mot de passe", + set_password: "Définir un mot de passe", + placeholder: "Entrer le mot de passe", + confirm_password: { + label: "Confirmer le mot de passe", + placeholder: "Confirmer le mot de passe", + }, + current_password: { + label: "Mot de passe actuel", + }, + new_password: { + label: "Nouveau mot de passe", + placeholder: "Entrer le nouveau mot de passe", + }, + change_password: { + label: { + default: "Changer le mot de passe", + submitting: "Changement du mot de passe", + }, + }, + errors: { + match: "Les mots de passe ne correspondent pas", + empty: "Veuillez entrer votre mot de passe", + length: "Le mot de passe doit contenir plus de 8 caractères", + strength: { + weak: "Le mot de passe est faible", + strong: "Le mot de passe est fort", + }, + }, + submit: "Définir le mot de passe", + toast: { + change_password: { + success: { + title: "Succès !", + message: "Mot de passe changé avec succès.", + }, + error: { + title: "Erreur !", + message: "Une erreur s'est produite. Veuillez réessayer.", + }, + }, + }, + }, + unique_code: { + label: "Code unique", + placeholder: "obtient-définit-vole", + paste_code: "Collez le code envoyé à votre e-mail", + requesting_new_code: "Demande d'un nouveau code", + sending_code: "Envoi du code", + }, + already_have_an_account: "Vous avez déjà un compte ?", + login: "Se connecter", + create_account: "Créer un compte", + new_to_plane: "Nouveau sur Plane ?", + back_to_sign_in: "Retour à la connexion", + resend_in: "Renvoyer dans {seconds} secondes", + sign_in_with_unique_code: "Se connecter avec un code unique", + forgot_password: "Mot de passe oublié ?", + }, + sign_up: { + header: { + label: "Créez un compte pour commencer à gérer le travail avec votre équipe.", + step: { + email: { + header: "S'inscrire", + sub_header: "", + }, + password: { + header: "S'inscrire", + sub_header: "Inscrivez-vous en utilisant une combinaison e-mail-mot de passe.", + }, + unique_code: { + header: "S'inscrire", + sub_header: "Inscrivez-vous en utilisant un code unique envoyé à l'adresse e-mail ci-dessus.", + }, + }, + }, + errors: { + password: { + strength: "Essayez de définir un mot de passe fort pour continuer", + }, + }, + }, + sign_in: { + header: { + label: "Connectez-vous pour commencer à gérer le travail avec votre équipe.", + step: { + email: { + header: "Se connecter ou s'inscrire", + sub_header: "", + }, + password: { + header: "Se connecter ou s'inscrire", + sub_header: "Utilisez votre combinaison e-mail-mot de passe pour vous connecter.", + }, + unique_code: { + header: "Se connecter ou s'inscrire", + sub_header: "Connectez-vous en utilisant un code unique envoyé à l'adresse e-mail ci-dessus.", + }, + }, + }, + }, + forgot_password: { + title: "Réinitialiser votre mot de passe", + description: + "Entrez l'adresse e-mail vérifiée de votre compte utilisateur et nous vous enverrons un lien de réinitialisation du mot de passe.", + email_sent: "Nous avons envoyé le lien de réinitialisation à votre adresse e-mail", + send_reset_link: "Envoyer le lien de réinitialisation", + errors: { + smtp_not_enabled: + "Nous constatons que votre administrateur n'a pas activé SMTP, nous ne pourrons pas envoyer de lien de réinitialisation du mot de passe", + }, + toast: { + success: { + title: "E-mail envoyé", + message: + "Vérifiez votre boîte de réception pour un lien de réinitialisation de votre mot de passe. S'il n'apparaît pas dans quelques minutes, vérifiez votre dossier spam.", + }, + error: { + title: "Erreur !", + message: "Une erreur s'est produite. Veuillez réessayer.", + }, + }, + }, + reset_password: { + title: "Définir un nouveau mot de passe", + description: "Sécurisez votre compte avec un mot de passe fort", + }, + set_password: { + title: "Sécurisez votre compte", + description: "La définition d'un mot de passe vous permet de vous connecter en toute sécurité", + }, + sign_out: { + toast: { + error: { + title: "Erreur !", + message: "Échec de la déconnexion. Veuillez réessayer.", + }, + }, + }, + }, + submit: "Soumettre", + cancel: "Annuler", + loading: "Chargement", + error: "Erreur", + success: "Succès", + warning: "Avertissement", + info: "Info", + close: "Fermer", + yes: "Oui", + no: "Non", + ok: "OK", + name: "Nom", + description: "Description", + search: "Rechercher", + add_member: "Ajouter un membre", + adding_members: "Ajout de membres", + remove_member: "Supprimer le membre", + add_members: "Ajouter des membres", + adding_member: "Ajout de membres", + remove_members: "Supprimer des membres", + add: "Ajouter", + adding: "Ajout", + remove: "Supprimer", + add_new: "Ajouter nouveau", + remove_selected: "Supprimer la sélection", + first_name: "Prénom", + last_name: "Nom", + email: "E-mail", + display_name: "Nom d'affichage", + role: "Rôle", + timezone: "Fuseau horaire", + avatar: "Avatar", + cover_image: "Image de couverture", + password: "Mot de passe", + change_cover: "Changer la couverture", + language: "Langue", + saving: "Enregistrement", + save_changes: "Enregistrer les modifications", + deactivate_account: "Désactiver le compte", + deactivate_account_description: + "Lors de la désactivation d'un compte, toutes les données et ressources de ce compte seront définitivement supprimées et ne pourront pas être récupérées.", + profile_settings: "Paramètres du profil", + your_account: "Votre compte", + security: "Sécurité", + activity: "Activité", + appearance: "Apparence", + notifications: "Notifications", + workspaces: "Espaces de travail", + create_workspace: "Créer un espace de travail", + invitations: "Invitations", + summary: "Résumé", + assigned: "Assigné", + created: "Créé", + subscribed: "Abonné", + you_do_not_have_the_permission_to_access_this_page: "Vous n'avez pas la permission d'accéder à cette page.", + something_went_wrong_please_try_again: "Une erreur s'est produite. Veuillez réessayer.", + load_more: "Charger plus", + select_or_customize_your_interface_color_scheme: + "Sélectionnez ou personnalisez votre schéma de couleurs d'interface.", + theme: "Thème", + system_preference: "Préférence système", + light: "Clair", + dark: "Sombre", + light_contrast: "Contraste élevé clair", + dark_contrast: "Contraste élevé sombre", + custom: "Thème personnalisé", + select_your_theme: "Sélectionnez votre thème", + customize_your_theme: "Personnalisez votre thème", + background_color: "Couleur de fond", + text_color: "Couleur du texte", + primary_color: "Couleur principale (Thème)", + sidebar_background_color: "Couleur de fond de la barre latérale", + sidebar_text_color: "Couleur du texte de la barre latérale", + set_theme: "Définir le thème", + enter_a_valid_hex_code_of_6_characters: "Entrez un code hexadécimal valide de 6 caractères", + background_color_is_required: "La couleur de fond est requise", + text_color_is_required: "La couleur du texte est requise", + primary_color_is_required: "La couleur principale est requise", + sidebar_background_color_is_required: "La couleur de fond de la barre latérale est requise", + sidebar_text_color_is_required: "La couleur du texte de la barre latérale est requise", + updating_theme: "Mise à jour du thème", + theme_updated_successfully: "Thème mis à jour avec succès", + failed_to_update_the_theme: "Échec de la mise à jour du thème", + email_notifications: "Notifications par e-mail", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Restez informé des éléments de travail auxquels vous êtes abonné. Activez ceci pour être notifié.", + email_notification_setting_updated_successfully: "Paramètre de notification par e-mail mis à jour avec succès", + failed_to_update_email_notification_setting: "Échec de la mise à jour du paramètre de notification par e-mail", + notify_me_when: "Me notifier quand", + property_changes: "Modifications des propriétés", + property_changes_description: + "Me notifier lorsque les propriétés des éléments de travail comme les assignés, la priorité, les estimations ou autre changent.", + state_change: "Changement d'état", + state_change_description: "Me notifier lorsque les éléments de travail passent à un état différent", + issue_completed: "Élément de travail terminé", + issue_completed_description: "Me notifier uniquement lorsqu'un élément de travail est terminé", + comments: "Commentaires", + comments_description: "Me notifier lorsque quelqu'un laisse un commentaire sur l'élément de travail", + mentions: "Mentions", + mentions_description: "Me notifier uniquement lorsque quelqu'un me mentionne dans les commentaires ou la description", + old_password: "Ancien mot de passe", + general_settings: "Paramètres généraux", + sign_out: "Se déconnecter", + signing_out: "Déconnexion", + active_cycles: "Cycles actifs", + active_cycles_description: + "Surveillez les cycles à travers les projets, suivez les éléments de travail prioritaires et zoomez sur les cycles qui nécessitent de l'attention.", + on_demand_snapshots_of_all_your_cycles: "Instantanés à la demande de tous vos cycles", + upgrade: "Mettre à niveau", + "10000_feet_view": "Vue à 10 000 pieds de tous les cycles actifs.", + "10000_feet_view_description": + "Dézoomez pour voir les cycles en cours dans tous vos projets en même temps au lieu de passer d'un cycle à l'autre dans chaque projet.", + get_snapshot_of_each_active_cycle: "Obtenez un aperçu de chaque cycle actif.", + get_snapshot_of_each_active_cycle_description: + "Suivez les métriques de haut niveau pour tous les cycles actifs, voyez leur état d'avancement et obtenez une idée de la portée par rapport aux échéances.", + compare_burndowns: "Comparez les burndowns.", + compare_burndowns_description: + "Surveillez les performances de chacune de vos équipes en jetant un coup d'œil au rapport burndown de chaque cycle.", + quickly_see_make_or_break_issues: "Voyez rapidement les éléments de travail critiques.", + quickly_see_make_or_break_issues_description: + "Prévisualisez les éléments de travail hautement prioritaires pour chaque cycle par rapport aux dates d'échéance. Voyez-les tous par cycle en un clic.", + zoom_into_cycles_that_need_attention: "Zoomez sur les cycles qui nécessitent de l'attention.", + zoom_into_cycles_that_need_attention_description: + "Examinez l'état de tout cycle qui ne correspond pas aux attentes en un clic.", + stay_ahead_of_blockers: "Anticipez les blocages.", + stay_ahead_of_blockers_description: + "Repérez les défis d'un projet à l'autre et voyez les dépendances inter-cycles qui ne sont pas évidentes depuis une autre vue.", + analytics: "Analyses", + workspace_invites: "Invitations à l'espace de travail", + enter_god_mode: "Entrer en mode dieu", + workspace_logo: "Logo de l'espace de travail", + new_issue: "Nouvel élément de travail", + your_work: "Votre travail", + drafts: "Brouillons", + projects: "Projets", + views: "Vues", + workspace: "Espace de travail", + archives: "Archives", + settings: "Paramètres", + failed_to_move_favorite: "Échec du déplacement du favori", + favorites: "Favoris", + no_favorites_yet: "Pas encore de favoris", + create_folder: "Créer un dossier", + new_folder: "Nouveau dossier", + favorite_updated_successfully: "Favori mis à jour avec succès", + favorite_created_successfully: "Favori créé avec succès", + folder_already_exists: "Le dossier existe déjà", + folder_name_cannot_be_empty: "Le nom du dossier ne peut pas être vide", + something_went_wrong: "Une erreur s'est produite", + failed_to_reorder_favorite: "Échec de la réorganisation du favori", + favorite_removed_successfully: "Favori supprimé avec succès", + failed_to_create_favorite: "Échec de la création du favori", + failed_to_rename_favorite: "Échec du renommage du favori", + project_link_copied_to_clipboard: "Lien du projet copié dans le presse-papiers", + link_copied: "Lien copié", + add_project: "Ajouter un projet", + create_project: "Créer un projet", + failed_to_remove_project_from_favorites: "Impossible de supprimer le projet des favoris. Veuillez réessayer.", + project_created_successfully: "Projet créé avec succès", + project_created_successfully_description: + "Projet créé avec succès. Vous pouvez maintenant commencer à ajouter des éléments de travail.", + project_name_already_taken: "Le nom du projet est déjà pris.", + project_identifier_already_taken: "L’identifiant du projet est déjà pris.", + project_cover_image_alt: "Image de couverture du projet", + name_is_required: "Le nom est requis", + title_should_be_less_than_255_characters: "Le titre doit faire moins de 255 caractères", + project_name: "Nom du projet", + project_id_must_be_at_least_1_character: "L'ID du projet doit comporter au moins 1 caractère", + project_id_must_be_at_most_5_characters: "L'ID du projet doit comporter au plus 5 caractères", + project_id: "ID du projet", + project_id_tooltip_content: + "Vous aide à identifier uniquement les éléments de travail dans le projet. Maximum 5 caractères.", + description_placeholder: "Description", + only_alphanumeric_non_latin_characters_allowed: "Seuls les caractères alphanumériques et non latins sont autorisés.", + project_id_is_required: "L'ID du projet est requis", + project_id_allowed_char: "Seuls les caractères alphanumériques et non latins sont autorisés.", + project_id_min_char: "L'ID du projet doit comporter au moins 1 caractère", + project_id_max_char: "L'ID du projet doit comporter au plus 5 caractères", + project_description_placeholder: "Entrez la description du projet", + select_network: "Sélectionner le réseau", + lead: "Responsable", + date_range: "Plage de dates", + private: "Privé", + public: "Public", + accessible_only_by_invite: "Accessible uniquement sur invitation", + anyone_in_the_workspace_except_guests_can_join: + "Tout le monde dans l'espace de travail sauf les invités peut rejoindre", + creating: "Création", + creating_project: "Création du projet", + adding_project_to_favorites: "Ajout du projet aux favoris", + project_added_to_favorites: "Projet ajouté aux favoris", + couldnt_add_the_project_to_favorites: "Impossible d'ajouter le projet aux favoris. Veuillez réessayer.", + removing_project_from_favorites: "Suppression du projet des favoris", + project_removed_from_favorites: "Projet supprimé des favoris", + couldnt_remove_the_project_from_favorites: "Impossible de supprimer le projet des favoris. Veuillez réessayer.", + add_to_favorites: "Ajouter aux favoris", + remove_from_favorites: "Supprimer des favoris", + publish_project: "Publier le projet", + publish: "Publier", + copy_link: "Copier le lien", + leave_project: "Quitter le projet", + join_the_project_to_rearrange: "Rejoignez le projet pour réorganiser", + drag_to_rearrange: "Glisser pour réorganiser", + congrats: "Félicitations !", + open_project: "Ouvrir le projet", + issues: "Éléments de travail", + cycles: "Cycles", + modules: "Modules", + pages: "Pages", + intake: "Intake", + time_tracking: "Suivi du temps", + work_management: "Gestion du travail", + projects_and_issues: "Projets et éléments de travail", + projects_and_issues_description: "Activez ou désactivez ces éléments pour ce projet.", + cycles_description: + "Planifiez le travail par projet dans un cadre temporel et ajustez la période au besoin. Un cycle peut durer 2 semaines, le suivant 1 semaine.", + modules_description: "Organisez le travail en sous-projets avec des responsables et des personnes assignées dédiés.", + views_description: + "Enregistrez des tris, filtres et options d'affichage personnalisés ou partagez-les avec votre équipe.", + pages_description: "Créez et modifiez du contenu libre : notes, documents, tout ce que vous voulez.", + intake_description: + "Permettez aux non-membres de partager des bugs, des retours et des suggestions, sans perturber votre flux de travail.", + time_tracking_description: "Enregistrez le temps passé sur les éléments de travail et les projets.", + work_management_description: "Gérez votre travail et vos projets facilement.", + documentation: "Documentation", + message_support: "Contacter le support", + contact_sales: "Contacter les ventes", + hyper_mode: "Mode Hyper", + keyboard_shortcuts: "Raccourcis clavier", + whats_new: "Quoi de neuf ?", + version: "Version", + we_are_having_trouble_fetching_the_updates: "Nous avons des difficultés à récupérer les mises à jour.", + our_changelogs: "nos journaux des modifications", + for_the_latest_updates: "pour les dernières mises à jour.", + please_visit: "Veuillez visiter", + docs: "Documentation", + full_changelog: "Journal des modifications complet", + support: "Support", + discord: "Discord", + powered_by_plane_pages: "Propulsé par Plane Pages", + please_select_at_least_one_invitation: "Veuillez sélectionner au moins une invitation.", + please_select_at_least_one_invitation_description: + "Veuillez sélectionner au moins une invitation pour rejoindre l'espace de travail.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Nous voyons que quelqu'un vous a invité à rejoindre un espace de travail", + join_a_workspace: "Rejoindre un espace de travail", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Nous voyons que quelqu'un vous a invité à rejoindre un espace de travail", + join_a_workspace_description: "Rejoindre un espace de travail", + accept_and_join: "Accepter et rejoindre", + go_home: "Aller à l'accueil", + no_pending_invites: "Aucune invitation en attente", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Vous pouvez voir ici si quelqu'un vous invite à un espace de travail", + back_to_home: "Retour à l'accueil", + workspace_name: "nom-espace-de-travail", + deactivate_your_account: "Désactiver votre compte", + deactivate_your_account_description: + "Une fois désactivé, vous ne pourrez plus être assigné à des éléments de travail ni être facturé pour votre espace de travail. Pour réactiver votre compte, vous aurez besoin d'une invitation à un espace de travail avec cette adresse e-mail.", + deactivating: "Désactivation", + confirm: "Confirmer", + confirming: "Confirmation", + draft_created: "Brouillon créé", + issue_created_successfully: "Élément de travail créé avec succès", + draft_creation_failed: "Échec de la création du brouillon", + issue_creation_failed: "Échec de la création de l'élément de travail", + draft_issue: "Élément de travail en brouillon", + issue_updated_successfully: "Élément de travail mis à jour avec succès", + issue_could_not_be_updated: "L'élément de travail n'a pas pu être mis à jour", + create_a_draft: "Créer un brouillon", + save_to_drafts: "Enregistrer dans les brouillons", + save: "Enregistrer", + update: "Mettre à jour", + updating: "Mise à jour", + create_new_issue: "Créer un nouvel élément de travail", + editor_is_not_ready_to_discard_changes: "L'éditeur n'est pas prêt à annuler les modifications", + failed_to_move_issue_to_project: "Échec du déplacement de l'élément de travail vers le projet", + create_more: "Créer plus", + add_to_project: "Ajouter au projet", + discard: "Annuler", + duplicate_issue_found: "Élément de travail en double trouvé", + duplicate_issues_found: "Éléments de travail en double trouvés", + no_matching_results: "Aucun résultat correspondant", + title_is_required: "Le titre est requis", + title: "Titre", + state: "État", + priority: "Priorité", + none: "Aucun", + urgent: "Urgent", + high: "Élevé", + medium: "Moyen", + low: "Faible", + members: "Membres", + assignee: "Assigné", + assignees: "Assignés", + you: "Vous", + labels: "Étiquettes", + create_new_label: "Créer une nouvelle étiquette", + start_date: "Date de début", + end_date: "Date de fin", + due_date: "Date d'échéance", + estimate: "Estimation", + change_parent_issue: "Changer l'élément de travail parent", + remove_parent_issue: "Supprimer l'élément de travail parent", + add_parent: "Ajouter un parent", + loading_members: "Chargement des membres", + view_link_copied_to_clipboard: "Lien de la vue copié dans le presse-papiers.", + required: "Requis", + optional: "Optionnel", + Cancel: "Annuler", + edit: "Modifier", + archive: "Archiver", + restore: "Restaurer", + open_in_new_tab: "Ouvrir dans un nouvel onglet", + delete: "Supprimer", + deleting: "Suppression", + make_a_copy: "Faire une copie", + move_to_project: "Déplacer vers le projet", + good: "Bonjour", + morning: "matin", + afternoon: "après-midi", + evening: "soir", + show_all: "Tout afficher", + show_less: "Afficher moins", + no_data_yet: "Pas encore de données", + syncing: "Synchronisation", + add_work_item: "Ajouter un élément de travail", + advanced_description_placeholder: "Appuyez sur '/' pour les commandes", + create_work_item: "Créer un élément de travail", + attachments: "Pièces jointes", + declining: "Refus", + declined: "Refusé", + decline: "Refuser", + unassigned: "Non assigné", + work_items: "Éléments de travail", + add_link: "Ajouter un lien", + points: "Points", + no_assignee: "Pas d'assigné", + no_assignees_yet: "Pas encore d'assignés", + no_labels_yet: "Pas encore d'étiquettes", + ideal: "Idéal", + current: "Actuel", + no_matching_members: "Aucun membre correspondant", + leaving: "Départ", + removing: "Suppression", + leave: "Quitter", + refresh: "Actualiser", + refreshing: "Actualisation", + refresh_status: "Actualiser l'état", + prev: "Précédent", + next: "Suivant", + re_generating: "Régénération", + re_generate: "Régénérer", + re_generate_key: "Régénérer la clé", + export: "Exporter", + member: "{count, plural, one{# membre} other{# membres}}", + new_password_must_be_different_from_old_password: + "Le nouveau mot de passe doit être différent du mot de passe précédent", + edited: "Modifié", + bot: "Bot", + project_view: { + sort_by: { + created_at: "Créé le", + updated_at: "Mis à jour le", + name: "Nom", + }, + }, + toast: { + success: "Succès !", + error: "Erreur !", + }, + links: { + toasts: { + created: { + title: "Lien créé", + message: "Le lien a été créé avec succès", + }, + not_created: { + title: "Lien non créé", + message: "Le lien n'a pas pu être créé", + }, + updated: { + title: "Lien mis à jour", + message: "Le lien a été mis à jour avec succès", + }, + not_updated: { + title: "Lien non mis à jour", + message: "Le lien n'a pas pu être mis à jour", + }, + removed: { + title: "Lien supprimé", + message: "Le lien a été supprimé avec succès", + }, + not_removed: { + title: "Lien non supprimé", + message: "Le lien n'a pas pu être supprimé", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Guide de démarrage rapide", + not_right_now: "Pas maintenant", + create_project: { + title: "Créer un projet", + description: "La plupart des choses commencent par un projet dans Plane.", + cta: "Commencer", + }, + invite_team: { + title: "Inviter votre équipe", + description: "Construisez, déployez et gérez avec vos collègues.", + cta: "Les faire entrer", + }, + configure_workspace: { + title: "Configurez votre espace de travail.", + description: "Activez ou désactivez des fonctionnalités ou allez plus loin.", + cta: "Configurer cet espace de travail", + }, + personalize_account: { + title: "Faites de Plane le vôtre.", + description: "Choisissez votre photo, vos couleurs et plus encore.", + cta: "Personnaliser maintenant", + }, + widgets: { + title: "C'est calme sans widgets, activez-les", + description: + "Il semble que tous vos widgets soient désactivés. Activez-les\nmaintenant pour améliorer votre expérience !", + primary_button: { + text: "Gérer les widgets", + }, + }, + }, + quick_links: { + empty: "Enregistrez des liens vers des éléments de travail que vous souhaitez avoir à portée de main.", + add: "Ajouter un lien rapide", + title: "Lien rapide", + title_plural: "Liens rapides", + }, + recents: { + title: "Récents", + empty: { + project: "Vos projets récents apparaîtront ici une fois que vous en aurez visité un.", + page: "Vos pages récentes apparaîtront ici une fois que vous en aurez visité une.", + issue: "Vos éléments de travail récents apparaîtront ici une fois que vous en aurez visité un.", + default: "Vous n'avez pas encore d'éléments récents.", + }, + filters: { + all: "Tous", + projects: "Projets", + pages: "Pages", + issues: "Éléments de travail", + }, + }, + new_at_plane: { + title: "Nouveau sur Plane", + }, + quick_tutorial: { + title: "Tutoriel rapide", + }, + widget: { + reordered_successfully: "Widget réorganisé avec succès.", + reordering_failed: "Une erreur s'est produite lors de la réorganisation du widget.", + }, + manage_widgets: "Gérer les widgets", + title: "Accueil", + star_us_on_github: "Donnez-nous une étoile sur GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "L'URL n'est pas valide", + placeholder: "Tapez ou collez une URL", + }, + title: { + text: "Titre d'affichage", + placeholder: "Comment souhaitez-vous voir ce lien", + }, + }, + }, + common: { + all: "Tout", + states: "États", + state: "État", + state_groups: "Groupes d'états", + state_group: "Groupe d'état", + priorities: "Priorités", + priority: "Priorité", + team_project: "Projet d'équipe", + project: "Projet", + cycle: "Cycle", + cycles: "Cycles", + module: "Module", + modules: "Modules", + labels: "Étiquettes", + label: "Étiquette", + assignees: "Assignés", + assignee: "Assigné", + created_by: "Créé par", + none: "Aucun", + link: "Lien", + estimates: "Estimations", + estimate: "Estimation", + created_at: "Créé le", + completed_at: "Terminé le", + layout: "Disposition", + filters: "Filtres", + display: "Affichage", + load_more: "Charger plus", + activity: "Activité", + analytics: "Analyses", + dates: "Dates", + success: "Succès !", + something_went_wrong: "Quelque chose s'est mal passé", + error: { + label: "Erreur !", + message: "Une erreur s'est produite. Veuillez réessayer.", + }, + group_by: "Grouper par", + epic: "Epic", + epics: "Epics", + work_item: "Élément de travail", + work_items: "Éléments de travail", + sub_work_item: "Sous-élément de travail", + add: "Ajouter", + warning: "Avertissement", + updating: "Mise à jour", + adding: "Ajout", + update: "Mettre à jour", + creating: "Création", + create: "Créer", + cancel: "Annuler", + description: "Description", + title: "Titre", + attachment: "Pièce jointe", + general: "Général", + features: "Fonctionnalités", + automation: "Automatisation", + project_name: "Nom du projet", + project_id: "ID du projet", + project_timezone: "Fuseau horaire du projet", + created_on: "Créé le", + update_project: "Mettre à jour le projet", + identifier_already_exists: "L'identifiant existe déjà", + add_more: "Ajouter plus", + defaults: "Par défaut", + add_label: "Ajouter une étiquette", + customize_time_range: "Personnaliser la plage de temps", + loading: "Chargement", + attachments: "Pièces jointes", + property: "Propriété", + properties: "Propriétés", + parent: "Parent", + page: "Pâge", + remove: "Supprimer", + archiving: "Archivage", + archive: "Archiver", + access: { + public: "Public", + private: "Privé", + }, + done: "Terminé", + sub_work_items: "Sous-éléments de travail", + comment: "Commentaire", + workspace_level: "Niveau espace de travail", + order_by: { + label: "Trier par", + manual: "Manuel", + last_created: "Dernier créé", + last_updated: "Dernière mise à jour", + start_date: "Date de début", + due_date: "Date d'échéance", + asc: "Croissant", + desc: "Décroissant", + updated_on: "Mis à jour le", + }, + sort: { + asc: "Croissant", + desc: "Décroissant", + created_on: "Créé le", + updated_on: "Mis à jour le", + }, + comments: "Commentaires", + updates: "Mises à jour", + clear_all: "Tout effacer", + copied: "Copié !", + link_copied: "Lien copié !", + link_copied_to_clipboard: "Lien copié dans le presse-papiers", + copied_to_clipboard: "Lien de l'élément de travail copié dans le presse-papiers", + is_copied_to_clipboard: "L'élément de travail est copié dans le presse-papiers", + no_links_added_yet: "Aucun lien ajouté pour l'instant", + add_link: "Ajouter un lien", + links: "Liens", + go_to_workspace: "Aller à l'espace de travail", + progress: "Progression", + optional: "Optionnel", + join: "Rejoindre", + go_back: "Retour", + continue: "Continuer", + resend: "Renvoyer", + relations: "Relations", + errors: { + default: { + title: "Erreur !", + message: "Quelque chose s'est mal passé. Veuillez réessayer.", + }, + required: "Ce champ est obligatoire", + entity_required: "{entity} est requis", + restricted_entity: "{entity} est restreint", + }, + update_link: "Mettre à jour le lien", + attach: "Joindre", + create_new: "Créer nouveau", + add_existing: "Ajouter existant", + type_or_paste_a_url: "Tapez ou collez une URL", + url_is_invalid: "L'URL n'est pas valide", + display_title: "Titre d'affichage", + link_title_placeholder: "Comment souhaitez-vous voir ce lien", + url: "URL", + side_peek: "Aperçu latéral", + modal: "Modal", + full_screen: "Plein écran", + close_peek_view: "Fermer l'aperçu", + toggle_peek_view_layout: "Basculer la disposition de l'aperçu", + options: "Options", + duration: "Durée", + today: "Aujourd'hui", + week: "Semaine", + month: "Mois", + quarter: "Trimestre", + press_for_commands: "Appuyez sur '/' pour les commandes", + click_to_add_description: "Cliquez pour ajouter une description", + search: { + label: "Rechercher", + placeholder: "Tapez pour rechercher", + no_matches_found: "Aucune correspondance trouvée", + no_matching_results: "Aucun résultat correspondant", + }, + actions: { + edit: "Modifier", + make_a_copy: "Faire une copie", + open_in_new_tab: "Ouvrir dans un nouvel onglet", + copy_link: "Copier le lien", + archive: "Archiver", + delete: "Supprimer", + remove_relation: "Supprimer la relation", + subscribe: "S'abonner", + unsubscribe: "Se désabonner", + clear_sorting: "Effacer le tri", + show_weekends: "Afficher les week-ends", + enable: "Activer", + disable: "Désactiver", + }, + name: "Nom", + discard: "Abandonner", + confirm: "Confirmer", + confirming: "Confirmation", + read_the_docs: "Lire la documentation", + default: "Par défaut", + active: "Actif", + enabled: "Activé", + disabled: "Désactivé", + mandate: "Mandat", + mandatory: "Obligatoire", + yes: "Oui", + no: "Non", + please_wait: "Veuillez patienter", + enabling: "Activation", + disabling: "Désactivation", + beta: "Bêta", + or: "ou", + next: "Suivant", + back: "Retour", + cancelling: "Annulation", + configuring: "Configuration", + clear: "Effacer", + import: "Importer", + connect: "Connecter", + authorizing: "Autorisation", + processing: "Traitement", + no_data_available: "Aucune donnée disponible", + from: "de {name}", + authenticated: "Authentifié", + select: "Sélectionner", + upgrade: "Mettre à niveau", + add_seats: "Ajouter des sièges", + projects: "Projets", + workspace: "Espace de travail", + workspaces: "Espaces de travail", + team: "Équipe", + teams: "Équipes", + entity: "Entité", + entities: "Entités", + task: "Tâche", + tasks: "Tâches", + section: "Section", + sections: "Sections", + edit: "Modifier", + connecting: "Connexion", + connected: "Connecté", + disconnect: "Déconnecter", + disconnecting: "Déconnexion", + installing: "Installation", + install: "Installer", + reset: "Réinitialiser", + live: "En direct", + change_history: "Historique des modifications", + coming_soon: "À venir", + member: "Membre", + members: "Membres", + you: "Vous", + upgrade_cta: { + higher_subscription: "Passer à une abonnement plus élevé", + talk_to_sales: "Parler aux ventes", + }, + category: "Catégorie", + categories: "Catégories", + saving: "Enregistrement", + save_changes: "Enregistrer les modifications", + delete: "Supprimer", + deleting: "Suppression", + pending: "En attente", + invite: "Inviter", + view: "Afficher", + deactivated_user: "Utilisateur désactivé", + apply: "Appliquer", + applying: "Application", + users: "Utilisateurs", + admins: "Administrateurs", + guests: "Invités", + on_track: "Sur la bonne voie", + off_track: "Hors de la bonne voie", + at_risk: "À risque", + timeline: "Chronologie", + completion: "Achèvement", + upcoming: "À venir", + completed: "Terminé", + in_progress: "En cours", + planned: "Planifié", + paused: "En pause", + no_of: "Nº de {entity}", + resolved: "Résolu", + }, + chart: { + x_axis: "Axe X", + y_axis: "Axe Y", + metric: "Métrique", + }, + form: { + title: { + required: "Le titre est requis", + max_length: "Le titre doit contenir moins de {length} caractères", + }, + }, + entity: { + grouping_title: "Regroupement {entity}", + priority: "Priorité {entity}", + all: "Tous les {entity}", + drop_here_to_move: "Déposez ici pour déplacer le {entity}", + delete: { + label: "Supprimer {entity}", + success: "{entity} supprimé avec succès", + failed: "Échec de la suppression de {entity}", + }, + update: { + failed: "Échec de la mise à jour de {entity}", + success: "{entity} mis à jour avec succès", + }, + link_copied_to_clipboard: "Lien {entity} copié dans le presse-papiers", + fetch: { + failed: "Erreur lors de la récupération de {entity}", + }, + add: { + success: "{entity} ajouté avec succès", + failed: "Erreur lors de l'ajout de {entity}", + }, + remove: { + success: "{entity} supprimé avec succès", + failed: "Erreur lors de la suppression de {entity}", + }, + }, + epic: { + all: "Tous les Epics", + label: "{count, plural, one {Epic} other {Epics}}", + new: "Nouvel Epic", + adding: "Ajout d'un epic", + create: { + success: "Epic créé avec succès", + }, + add: { + press_enter: "Appuyez sur 'Entrée' pour ajouter un autre epic", + label: "Ajouter un Epic", + }, + title: { + label: "Titre de l'Epic", + required: "Le titre de l'Epic est requis.", + }, + }, + issue: { + label: "{count, plural, one {Élément de travail} other {Éléments de travail}}", + all: "Tous les éléments de travail", + edit: "Modifier l'élément de travail", + title: { + label: "Titre de l'élément de travail", + required: "Le titre de l'élément de travail est requis.", + }, + add: { + press_enter: "Appuyez sur 'Entrée' pour ajouter un autre élément de travail", + label: "Ajouter un élément de travail", + cycle: { + failed: "L'élément de travail n'a pas pu être ajouté au cycle. Veuillez réessayer.", + success: + "{count, plural, one {Élément de travail} other {Éléments de travail}} ajouté(s) au cycle avec succès.", + loading: "Ajout de {count, plural, one {l'élément de travail} other {éléments de travail}} au cycle", + }, + assignee: "Ajouter des assignés", + start_date: "Ajouter une date de début", + due_date: "Ajouter une date d'échéance", + parent: "Ajouter un élément de travail parent", + sub_issue: "Ajouter un sous-élément de travail", + relation: "Ajouter une relation", + link: "Ajouter un lien", + existing: "Ajouter un élément de travail existant", + }, + remove: { + label: "Supprimer l'élément de travail", + cycle: { + loading: "Suppression de l'élément de travail du cycle", + success: "Élément de travail supprimé du cycle avec succès.", + failed: "L'élément de travail n'a pas pu être supprimé du cycle. Veuillez réessayer.", + }, + module: { + loading: "Suppression de l'élément de travail du module", + success: "Élément de travail supprimé du module avec succès.", + failed: "L'élément de travail n'a pas pu être supprimé du module. Veuillez réessayer.", + }, + parent: { + label: "Supprimer l'élément de travail parent", + }, + }, + new: "Nouvel élément de travail", + adding: "Ajout d'un élément de travail", + create: { + success: "Élément de travail créé avec succès", + }, + priority: { + urgent: "Urgent", + high: "Haute", + medium: "Moyenne", + low: "Basse", + }, + display: { + properties: { + label: "Propriétés d'affichage", + id: "ID", + issue_type: "Type d'élément de travail", + sub_issue_count: "Nombre de sous-éléments", + attachment_count: "Nombre de pièces jointes", + created_on: "Créé le", + sub_issue: "Sous-élément de travail", + work_item_count: "Nombre d'éléments de travail", + }, + extra: { + show_sub_issues: "Afficher les sous-éléments", + show_empty_groups: "Afficher les groupes vides", + }, + }, + layouts: { + ordered_by_label: "Cette disposition est triée par", + list: "Liste", + kanban: "Tableau", + calendar: "Calendrier", + spreadsheet: "Tableau", + gantt: "Chronologie", + title: { + list: "Disposition en liste", + kanban: "Disposition en tableau", + calendar: "Disposition en calendrier", + spreadsheet: "Disposition en tableau", + gantt: "Disposition en chronologie", + }, + }, + states: { + active: "Actif", + backlog: "Backlog", + }, + comments: { + placeholder: "Ajouter un commentaire", + switch: { + private: "Passer en commentaire privé", + public: "Passer en commentaire public", + }, + create: { + success: "Commentaire créé avec succès", + error: "Échec de la création du commentaire. Veuillez réessayer plus tard.", + }, + update: { + success: "Commentaire mis à jour avec succès", + error: "Échec de la mise à jour du commentaire. Veuillez réessayer plus tard.", + }, + remove: { + success: "Commentaire supprimé avec succès", + error: "Échec de la suppression du commentaire. Veuillez réessayer plus tard.", + }, + upload: { + error: "Échec du téléchargement du fichier. Veuillez réessayer plus tard.", + }, + copy_link: { + success: "Lien du commentaire copié dans le presse-papiers", + error: "Erreur lors de la copie du lien du commentaire. Veuillez réessayer plus tard.", + }, + }, + empty_state: { + issue_detail: { + title: "L'élément de travail n'existe pas", + description: "L'élément de travail que vous recherchez n'existe pas, a été archivé ou a été supprimé.", + primary_button: { + text: "Voir les autres éléments de travail", + }, + }, + }, + sibling: { + label: "Éléments de travail frères", + }, + archive: { + description: "Seuls les éléments de travail\nterminés ou annulés peuvent être archivés", + label: "Archiver l'élément de travail", + confirm_message: + "Êtes-vous sûr de vouloir archiver l'élément de travail ? Tous vos éléments archivés peuvent être restaurés ultérieurement.", + success: { + label: "Archivage réussi", + message: "Vos archives se trouvent dans les archives du projet.", + }, + failed: { + message: "L'élément de travail n'a pas pu être archivé. Veuillez réessayer.", + }, + }, + restore: { + success: { + title: "Restauration réussie", + message: "Votre élément de travail se trouve dans les éléments de travail du projet.", + }, + failed: { + message: "L'élément de travail n'a pas pu être restauré. Veuillez réessayer.", + }, + }, + relation: { + relates_to: "En relation avec", + duplicate: "Doublon de", + blocked_by: "Bloqué par", + blocking: "Bloque", + }, + copy_link: "Copier le lien de l'élément de travail", + delete: { + label: "Supprimer l'élément de travail", + error: "Erreur lors de la suppression de l'élément de travail", + }, + subscription: { + actions: { + subscribed: "Abonnement à l'élément de travail réussi", + unsubscribed: "Désabonnement de l'élément de travail réussi", + }, + }, + select: { + error: "Veuillez sélectionner au moins un élément de travail", + empty: "Aucun élément de travail sélectionné", + add_selected: "Ajouter les éléments de travail sélectionnés", + select_all: "Sélectionner tout", + deselect_all: "Tout désélectionner", + }, + open_in_full_screen: "Ouvrir l'élément de travail en plein écran", + }, + attachment: { + error: "Le fichier n'a pas pu être joint. Essayez de le télécharger à nouveau.", + only_one_file_allowed: "Un seul fichier peut être téléchargé à la fois.", + file_size_limit: "Le fichier doit faire {size}MB ou moins.", + drag_and_drop: "Glissez-déposez n'importe où pour télécharger", + delete: "Supprimer la pièce jointe", + }, + label: { + select: "Sélectionner une étiquette", + create: { + success: "Étiquette créée avec succès", + failed: "Échec de la création de l'étiquette", + already_exists: "L'étiquette existe déjà", + type: "Tapez pour ajouter une nouvelle étiquette", + }, + }, + sub_work_item: { + update: { + success: "Sous-élément de travail mis à jour avec succès", + error: "Erreur lors de la mise à jour du sous-élément de travail", + }, + remove: { + success: "Sous-élément de travail supprimé avec succès", + error: "Erreur lors de la suppression du sous-élément de travail", + }, + empty_state: { + sub_list_filters: { + title: "Vous n'avez pas de sous-éléments de travail qui correspondent aux filtres que vous avez appliqués.", + description: "Pour voir tous les sous-éléments de travail, effacer tous les filtres appliqués.", + action: "Effacer les filtres", + }, + list_filters: { + title: "Vous n'avez pas d'éléments de travail qui correspondent aux filtres que vous avez appliqués.", + description: "Pour voir tous les éléments de travail, effacer tous les filtres appliqués.", + action: "Effacer les filtres", + }, + }, + }, + view: { + label: "{count, plural, one {Vue} other {Vues}}", + create: { + label: "Créer une vue", + }, + update: { + label: "Mettre à jour la vue", + }, + }, + inbox_issue: { + status: { + pending: { + title: "En attente", + description: "En attente", + }, + declined: { + title: "Refusé", + description: "Refusé", + }, + snoozed: { + title: "Reporté", + description: "{days, plural, one{# jour} other{# jours}} restant(s)", + }, + accepted: { + title: "Accepté", + description: "Accepté", + }, + duplicate: { + title: "Doublon", + description: "Doublon", + }, + }, + modals: { + decline: { + title: "Refuser l'élément de travail", + content: "Êtes-vous sûr de vouloir refuser l'élément de travail {value} ?", + }, + delete: { + title: "Supprimer l'élément de travail", + content: "Êtes-vous sûr de vouloir supprimer l'élément de travail {value} ?", + success: "Élément de travail supprimé avec succès", + }, + }, + errors: { + snooze_permission: + "Seuls les administrateurs du projet peuvent reporter/annuler le report des éléments de travail", + accept_permission: "Seuls les administrateurs du projet peuvent accepter les éléments de travail", + decline_permission: "Seuls les administrateurs du projet peuvent refuser les éléments de travail", + }, + actions: { + accept: "Accepter", + decline: "Refuser", + snooze: "Reporter", + unsnooze: "Annuler le report", + copy: "Copier le lien de l'élément de travail", + delete: "Supprimer", + open: "Ouvrir l'élément de travail", + mark_as_duplicate: "Marquer comme doublon", + move: "Déplacer {value} vers les éléments de travail du projet", + }, + source: { + "in-app": "in-app", + }, + order_by: { + created_at: "Créé le", + updated_at: "Mis à jour le", + id: "ID", + }, + label: "Intake", + page_label: "{workspace} - Intake", + modal: { + title: "Créer un élément de travail Intake", + }, + tabs: { + open: "Ouvert", + closed: "Fermé", + }, + empty_state: { + sidebar_open_tab: { + title: "Aucun élément de travail ouvert", + description: "Trouvez les éléments de travail ouverts ici. Créez un nouvel élément de travail.", + }, + sidebar_closed_tab: { + title: "Aucun élément de travail fermé", + description: "Tous les éléments de travail, qu'ils soient acceptés ou refusés, peuvent être trouvés ici.", + }, + sidebar_filter: { + title: "Aucun élément de travail correspondant", + description: + "Aucun élément de travail ne correspond au filtre appliqué dans Intake. Créez un nouvel élément de travail.", + }, + detail: { + title: "Sélectionnez un élément de travail pour voir ses détails.", + }, + }, + }, + workspace_creation: { + heading: "Créez votre espace de travail", + subheading: "Pour commencer à utiliser Plane, vous devez créer ou rejoindre un espace de travail.", + form: { + name: { + label: "Nommez votre espace de travail", + placeholder: "Quelque chose de familier et reconnaissable est toujours préférable.", + }, + url: { + label: "Définissez l'URL de votre espace de travail", + placeholder: "Tapez ou collez une URL", + edit_slug: "Vous ne pouvez modifier que le slug de l'URL", + }, + organization_size: { + label: "Combien de personnes utiliseront cet espace de travail ?", + placeholder: "Sélectionnez une plage", + }, + }, + errors: { + creation_disabled: { + title: "Seul l'administrateur de votre instance peut créer des espaces de travail", + description: + "Si vous connaissez l'adresse e-mail de votre administrateur d'instance, cliquez sur le bouton ci-dessous pour le contacter.", + request_button: "Contacter l'administrateur d'instance", + }, + validation: { + name_alphanumeric: + "Les noms d'espaces de travail ne peuvent contenir que (' '), ('-'), ('_') et des caractères alphanumériques.", + name_length: "Limitez votre nom à 80 caractères.", + url_alphanumeric: "Les URL ne peuvent contenir que ('-') et des caractères alphanumériques.", + url_length: "Limitez votre URL à 48 caractères.", + url_already_taken: "L'URL de l'espace de travail est déjà prise !", + }, + }, + request_email: { + subject: "Demande d'un nouvel espace de travail", + body: "Bonjour administrateur(s) d'instance,\n\nVeuillez créer un nouvel espace de travail avec l'URL [/workspace-name] pour [objectif de création de l'espace de travail].\n\nMerci,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Créer l'espace de travail", + loading: "Création de l'espace de travail", + }, + toast: { + success: { + title: "Succès", + message: "Espace de travail créé avec succès", + }, + error: { + title: "Erreur", + message: "L'espace de travail n'a pas pu être créé. Veuillez réessayer.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Aperçu de vos projets, activités et métriques", + description: + "Bienvenue sur Plane, nous sommes ravis de vous avoir parmi nous. Créez votre premier projet et suivez vos éléments de travail, et cette page se transformera en un espace qui vous aide à progresser. Les administrateurs verront également les éléments qui aident leur équipe à progresser.", + primary_button: { + text: "Construisez votre premier projet", + comic: { + title: "Tout commence par un projet dans Plane", + description: + "Un projet peut être la feuille de route d'un produit, une campagne marketing ou le lancement d'une nouvelle voiture.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analytique", + page_label: "{workspace} - Analytique", + open_tasks: "Total des tâches ouvertes", + error: "Une erreur s'est produite lors de la récupération des données.", + work_items_closed_in: "Éléments de travail fermés dans", + selected_projects: "Projets sélectionnés", + total_members: "Total des membres", + total_cycles: "Total des Cycles", + total_modules: "Total des Modules", + pending_work_items: { + title: "Éléments de travail en attente", + empty_state: "L'analyse des éléments de travail en attente par collègues apparaît ici.", + }, + work_items_closed_in_a_year: { + title: "Éléments de travail fermés dans l'année", + empty_state: "Fermez des éléments de travail pour voir leur analyse sous forme de graphique.", + }, + most_work_items_created: { + title: "Plus d'éléments de travail créés", + empty_state: "Les collègues et le nombre d'éléments de travail créés par eux apparaissent ici.", + }, + most_work_items_closed: { + title: "Plus d'éléments de travail fermés", + empty_state: "Les collègues et le nombre d'éléments de travail fermés par eux apparaissent ici.", + }, + tabs: { + scope_and_demand: "Portée et Demande", + custom: "Analytique Personnalisée", + }, + empty_state: { + customized_insights: { + description: "Les éléments de travail qui vous sont assignés, répartis par état, s'afficheront ici.", + title: "Pas encore de données", + }, + created_vs_resolved: { + description: "Les éléments de travail créés et résolus au fil du temps s'afficheront ici.", + title: "Pas encore de données", + }, + project_insights: { + title: "Pas encore de données", + description: "Les éléments de travail qui vous sont assignés, répartis par état, s'afficheront ici.", + }, + general: { + title: + "Suivez les progrès, les charges de travail et les allocations. Identifiez les tendances, supprimez les blocages et travaillez plus rapidement", + description: + "Voyez la portée par rapport à la demande, les estimations et l'évolution du périmètre. Obtenez les performances par les membres de l'équipe et les équipes, et assurez-vous que votre projet se déroule dans les temps.", + primary_button: { + text: "Commencez votre premier projet", + comic: { + title: "L'analytics fonctionne mieux avec les Cycles + Modules", + description: + "D'abord, encadrez vos éléments de travail dans des Cycles et, si possible, regroupez les éléments qui s'étendent sur plus d'un cycle dans des Modules. Consultez les deux dans la navigation de gauche.", + }, + }, + }, + }, + created_vs_resolved: "Créé vs Résolu", + customized_insights: "Informations personnalisées", + backlog_work_items: "{entity} en backlog", + active_projects: "Projets actifs", + trend_on_charts: "Tendance sur les graphiques", + all_projects: "Tous les projets", + summary_of_projects: "Résumé des projets", + project_insights: "Aperçus du projet", + started_work_items: "{entity} commencés", + total_work_items: "Total des {entity}", + total_projects: "Total des projets", + total_admins: "Total des administrateurs", + total_users: "Nombre total d'utilisateurs", + total_intake: "Revenu total", + un_started_work_items: "{entity} non commencés", + total_guests: "Nombre total d'invités", + completed_work_items: "{entity} terminés", + total: "Total des {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Projet} other {Projets}}", + create: { + label: "Ajouter un Projet", + }, + network: { + private: { + title: "Privé", + description: "Accessible uniquement sur invitation", + }, + public: { + title: "Public", + description: "Accessible à tous dans l'espace de travail sauf les invités", + }, + }, + error: { + permission: "Vous n'avez pas la permission d'effectuer cette action.", + cycle_delete: "Échec de la suppression du cycle", + module_delete: "Échec de la suppression du module", + issue_delete: "Échec de la suppression de l'élément de travail", + }, + state: { + backlog: "Backlog", + unstarted: "Non commencé", + started: "Commencé", + completed: "Terminé", + cancelled: "Annulé", + }, + sort: { + manual: "Manuel", + name: "Nom", + created_at: "Date de création", + members_length: "Nombre de membres", + }, + scope: { + my_projects: "Mes projets", + archived_projects: "Archivés", + }, + common: { + months_count: "{months, plural, one{# mois} other{# mois}}", + }, + empty_state: { + general: { + title: "Aucun projet actif", + description: + "Considérez chaque projet comme le parent d'un travail orienté objectif. Les projets sont l'endroit où vivent les Tâches, les Cycles et les Modules et, avec vos collègues, vous aident à atteindre cet objectif. Créez un nouveau projet ou filtrez les projets archivés.", + primary_button: { + text: "Commencez votre premier projet", + comic: { + title: "Tout commence par un projet dans Plane", + description: + "Un projet peut être la feuille de route d'un produit, une campagne marketing ou le lancement d'une nouvelle voiture.", + }, + }, + }, + no_projects: { + title: "Aucun projet", + description: + "Pour créer des éléments de travail ou gérer votre travail, vous devez créer un projet ou faire partie d'un projet.", + primary_button: { + text: "Commencez votre premier projet", + comic: { + title: "Tout commence par un projet dans Plane", + description: + "Un projet peut être la feuille de route d'un produit, une campagne marketing ou le lancement d'une nouvelle voiture.", + }, + }, + }, + filter: { + title: "Aucun projet correspondant", + description: "Aucun projet détecté avec les critères correspondants. \n Créez plutôt un nouveau projet.", + }, + search: { + description: "Aucun projet détecté avec les critères correspondants.\nCréez plutôt un nouveau projet", + }, + }, + }, + workspace_views: { + add_view: "Ajouter une vue", + empty_state: { + "all-issues": { + title: "Aucun élément de travail dans le projet", + description: + "Premier projet terminé ! Maintenant, découpez votre travail en morceaux traçables avec des éléments de travail. Allons-y !", + primary_button: { + text: "Créer un nouvel élément de travail", + }, + }, + assigned: { + title: "Aucun élément de travail pour le moment", + description: "Les éléments de travail qui vous sont assignés peuvent être suivis ici.", + primary_button: { + text: "Créer un nouvel élément de travail", + }, + }, + created: { + title: "Aucun élément de travail pour le moment", + description: "Tous les éléments de travail que vous créez arrivent ici, suivez-les directement ici.", + primary_button: { + text: "Créer un nouvel élément de travail", + }, + }, + subscribed: { + title: "Aucun élément de travail pour le moment", + description: "Abonnez-vous aux éléments de travail qui vous intéressent, suivez-les tous ici.", + }, + "custom-view": { + title: "Aucun élément de travail pour le moment", + description: "Les éléments de travail qui correspondent aux filtres, suivez-les tous ici.", + }, + }, + }, + workspace_settings: { + label: "Paramètres de l'espace de travail", + page_label: "{workspace} - Paramètres généraux", + key_created: "Clé créée", + copy_key: + "Copiez et sauvegardez cette clé secrète dans Plane Pages. Vous ne pourrez plus voir cette clé après avoir cliqué sur Fermer. Un fichier CSV contenant la clé a été téléchargé.", + token_copied: "Jeton copié dans le presse-papiers.", + settings: { + general: { + title: "Général", + upload_logo: "Télécharger le logo", + edit_logo: "Modifier le logo", + name: "Nom de l'espace de travail", + company_size: "Taille de l'entreprise", + url: "URL de l'espace de travail", + update_workspace: "Mettre à jour l'espace de travail", + delete_workspace: "Supprimer cet espace de travail", + delete_workspace_description: + "Lors de la suppression d'un espace de travail, toutes les données et ressources au sein de cet espace seront définitivement supprimées et ne pourront pas être récupérées.", + delete_btn: "Supprimer cet espace de travail", + delete_modal: { + title: "Êtes-vous sûr de vouloir supprimer cet espace de travail ?", + description: + "Vous avez un essai actif sur l'un de nos forfaits payants. Veuillez d'abord l'annuler pour continuer.", + dismiss: "Fermer", + cancel: "Annuler l'essai", + success_title: "Espace de travail supprimé.", + success_message: "Vous serez bientôt redirigé vers votre page de profil.", + error_title: "Cela n'a pas fonctionné.", + error_message: "Veuillez réessayer.", + }, + errors: { + name: { + required: "Le nom est requis", + max_length: "Le nom de l'espace de travail ne doit pas dépasser 80 caractères", + }, + company_size: { + required: "La taille de l'entreprise est requise", + select_a_range: "Sélectionner la taille de l'organisation", + }, + }, + }, + members: { + title: "Membres", + add_member: "Ajouter un membre", + pending_invites: "Invitations en attente", + invitations_sent_successfully: "Invitations envoyées avec succès", + leave_confirmation: + "Êtes-vous sûr de vouloir quitter l'espace de travail ? Vous n'aurez plus accès à cet espace de travail. Cette action ne peut pas être annulée.", + details: { + full_name: "Nom complet", + display_name: "Nom d'affichage", + email_address: "Adresse e-mail", + account_type: "Type de compte", + authentication: "Authentification", + joining_date: "Date d'adhésion", + }, + modal: { + title: "Inviter des personnes à collaborer", + description: "Invitez des personnes à collaborer sur votre espace de travail.", + button: "Envoyer les invitations", + button_loading: "Envoi des invitations", + placeholder: "nom@entreprise.com", + errors: { + required: "Nous avons besoin d'une adresse e-mail pour les inviter.", + invalid: "L'e-mail est invalide", + }, + }, + }, + billing_and_plans: { + title: "Facturation & Plans", + current_plan: "Plan actuel", + free_plan: "Vous utilisez actuellement le plan gratuit", + view_plans: "Voir les plans", + }, + exports: { + title: "Exportations", + exporting: "Exportation", + previous_exports: "Exportations précédentes", + export_separate_files: "Exporter les données dans des fichiers séparés", + modal: { + title: "Exporter vers", + toasts: { + success: { + title: "Exportation réussie", + message: "Vous pourrez télécharger les {entity} exportés depuis l'exportation précédente.", + }, + error: { + title: "Échec de l'exportation", + message: "L'exportation a échoué. Veuillez réessayer.", + }, + }, + }, + }, + webhooks: { + title: "Webhooks", + add_webhook: "Ajouter un webhook", + modal: { + title: "Créer un webhook", + details: "Détails du webhook", + payload: "URL de la charge utile", + question: "Quels événements souhaitez-vous déclencher avec ce webhook ?", + error: "L'URL est requise", + }, + secret_key: { + title: "Clé secrète", + message: "Générer un jeton pour signer la charge utile du webhook", + }, + options: { + all: "Envoyez-moi tout", + individual: "Sélectionner des événements individuels", + }, + toasts: { + created: { + title: "Webhook créé", + message: "Le webhook a été créé avec succès", + }, + not_created: { + title: "Webhook non créé", + message: "Le webhook n'a pas pu être créé", + }, + updated: { + title: "Webhook mis à jour", + message: "Le webhook a été mis à jour avec succès", + }, + not_updated: { + title: "Webhook non mis à jour", + message: "Le webhook n'a pas pu être mis à jour", + }, + removed: { + title: "Webhook supprimé", + message: "Le webhook a été supprimé avec succès", + }, + not_removed: { + title: "Webhook non supprimé", + message: "Le webhook n'a pas pu être supprimé", + }, + secret_key_copied: { + message: "Clé secrète copiée dans le presse-papiers.", + }, + secret_key_not_copied: { + message: "Une erreur s'est produite lors de la copie de la clé secrète.", + }, + }, + }, + api_tokens: { + title: "Jetons API", + add_token: "Ajouter un jeton API", + create_token: "Créer un jeton", + never_expires: "N'expire jamais", + generate_token: "Générer un jeton", + generating: "Génération", + delete: { + title: "Supprimer le jeton API", + description: + "Toute application utilisant ce jeton n'aura plus accès aux données de Plane. Cette action ne peut pas être annulée.", + success: { + title: "Succès !", + message: "Le jeton API a été supprimé avec succès", + }, + error: { + title: "Erreur !", + message: "Le jeton API n'a pas pu être supprimé", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Aucun jeton API créé", + description: + "Les API Plane peuvent être utilisées pour intégrer vos données dans Plane avec n'importe quel système externe. Créez un jeton pour commencer.", + }, + webhooks: { + title: "Aucun webhook ajouté", + description: "Créez des webhooks pour recevoir des mises à jour en temps réel et automatiser des actions.", + }, + exports: { + title: "Aucune exportation pour le moment", + description: "Chaque fois que vous exportez, vous aurez également une copie ici pour référence.", + }, + imports: { + title: "Aucune importation pour le moment", + description: "Trouvez toutes vos importations précédentes ici et téléchargez-les.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Votre travail", + work: "Travail", + details: { + joined_on: "Inscrit le", + time_zone: "Fuseau horaire", + }, + stats: { + workload: "Charge de travail", + overview: "Vue d'ensemble", + created: "Éléments de travail créés", + assigned: "Éléments de travail assignés", + subscribed: "Éléments de travail suivis", + state_distribution: { + title: "Éléments de travail par état", + empty: + "Créez des éléments de travail pour les visualiser par état dans le graphique pour une meilleure analyse.", + }, + priority_distribution: { + title: "Éléments de travail par priorité", + empty: + "Créez des éléments de travail pour les visualiser par priorité dans le graphique pour une meilleure analyse.", + }, + recent_activity: { + title: "Activité récente", + empty: "Nous n'avons pas trouvé de données. Veuillez consulter vos contributions", + button: "Télécharger l'activité du jour", + button_loading: "Téléchargement", + }, + }, + actions: { + profile: "Profil", + security: "Sécurité", + activity: "Activité", + appearance: "Apparence", + notifications: "Notifications", + }, + tabs: { + summary: "Résumé", + assigned: "Assigné", + created: "Créé", + subscribed: "Suivi", + activity: "Activité", + }, + empty_state: { + activity: { + title: "Aucune activité pour le moment", + description: + "Commencez par créer un nouvel élément de travail ! Ajoutez-y des détails et des propriétés. Explorez davantage Plane pour voir votre activité.", + }, + assigned: { + title: "Aucun élément de travail ne vous est assigné", + description: "Les éléments de travail qui vous sont assignés peuvent être suivis ici.", + }, + created: { + title: "Aucun élément de travail pour le moment", + description: "Tous les éléments de travail que vous créez apparaissent ici, suivez-les directement ici.", + }, + subscribed: { + title: "Aucun élément de travail pour le moment", + description: "Abonnez-vous aux éléments de travail qui vous intéressent, suivez-les tous ici.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Saisissez l'ID du projet", + please_select_a_timezone: "Veuillez sélectionner un fuseau horaire", + archive_project: { + title: "Archiver le projet", + description: + "L'archivage d'un projet le retirera de votre navigation latérale, bien que vous pourrez toujours y accéder depuis votre page de projets. Vous pouvez restaurer le projet ou le supprimer quand vous le souhaitez.", + button: "Archiver le projet", + }, + delete_project: { + title: "Supprimer le projet", + description: + "Lors de la suppression d'un projet, toutes les données et ressources de ce projet seront définitivement supprimées et ne pourront pas être récupérées.", + button: "Supprimer mon projet", + }, + toast: { + success: "Projet mis à jour avec succès", + error: "Le projet n'a pas pu être mis à jour. Veuillez réessayer.", + }, + }, + members: { + label: "Membres", + project_lead: "Chef de projet", + default_assignee: "Assigné par défaut", + guest_super_permissions: { + title: "Accorder l'accès en lecture à tous les éléments de travail pour les utilisateurs invités :", + sub_heading: "Cela permettra aux invités d'avoir un accès en lecture à tous les éléments de travail du projet.", + }, + invite_members: { + title: "Inviter des membres", + sub_heading: "Invitez des membres à travailler sur votre projet.", + select_co_worker: "Sélectionner un collaborateur", + }, + }, + states: { + describe_this_state_for_your_members: "Décrivez cet état pour vos membres.", + empty_state: { + title: "Aucun état disponible pour le groupe {groupKey}", + description: "Veuillez créer un nouvel état", + }, + }, + labels: { + label_title: "Titre de l'étiquette", + label_title_is_required: "Le titre de l'étiquette est requis", + label_max_char: "Le nom de l'étiquette ne doit pas dépasser 255 caractères", + toast: { + error: "Erreur lors de la mise à jour de l'étiquette", + }, + }, + estimates: { + label: "Estimations", + title: "Activer les estimations pour mon projet", + description: "Elles vous aident à communiquer la complexité et la charge de travail de l'équipe.", + no_estimate: "Sans estimation", + new: "Nouveau système d'estimation", + create: { + custom: "Personnalisé", + start_from_scratch: "Commencer depuis zéro", + choose_template: "Choisir un modèle", + choose_estimate_system: "Choisir un système d'estimation", + enter_estimate_point: "Saisir une estimation", + step: "Étape {step} de {total}", + label: "Créer une estimation", + }, + toasts: { + created: { + success: { + title: "Estimation créée", + message: "L'estimation a été créée avec succès", + }, + error: { + title: "Échec de la création de l'estimation", + message: "Nous n'avons pas pu créer la nouvelle estimation, veuillez réessayer.", + }, + }, + updated: { + success: { + title: "Estimation modifiée", + message: "L'estimation a été mise à jour dans votre projet.", + }, + error: { + title: "Échec de la modification de l'estimation", + message: "Nous n'avons pas pu modifier l'estimation, veuillez réessayer", + }, + }, + enabled: { + success: { + title: "Succès !", + message: "Les estimations ont été activées.", + }, + }, + disabled: { + success: { + title: "Succès !", + message: "Les estimations ont été désactivées.", + }, + error: { + title: "Erreur !", + message: "L'estimation n'a pas pu être désactivée. Veuillez réessayer", + }, + }, + }, + validation: { + min_length: "L'estimation doit être supérieure à 0.", + unable_to_process: "Nous ne pouvons pas traiter votre demande, veuillez réessayer.", + numeric: "L'estimation doit être une valeur numérique.", + character: "L'estimation doit être une valeur de caractère.", + empty: "La valeur de l'estimation ne peut pas être vide.", + already_exists: "La valeur de l'estimation existe déjà.", + unsaved_changes: + "Vous avez des modifications non enregistrées. Veuillez les enregistrer avant de cliquer sur Terminé", + remove_empty: + "L'estimation ne peut pas être vide. Saisissez une valeur dans chaque champ ou supprimez ceux pour lesquels vous n'avez pas de valeurs.", + }, + systems: { + points: { + label: "Points", + fibonacci: "Fibonacci", + linear: "Linéaire", + squares: "Carrés", + custom: "Personnalisé", + }, + categories: { + label: "Catégories", + t_shirt_sizes: "Tailles de T-Shirt", + easy_to_hard: "Facile à difficile", + custom: "Personnalisé", + }, + time: { + label: "Temps", + hours: "Heures", + }, + }, + }, + automations: { + label: "Automatisations", + "auto-archive": { + title: "Archiver automatiquement les éléments de travail fermés", + description: "Plane archivera automatiquement les éléments de travail qui ont été complétés ou annulés.", + duration: "Archiver automatiquement les éléments de travail fermés depuis", + }, + "auto-close": { + title: "Fermer automatiquement les éléments de travail", + description: "Plane fermera automatiquement les éléments de travail qui n'ont pas été complétés ou annulés.", + duration: "Fermer automatiquement les éléments de travail inactifs depuis", + auto_close_status: "Statut de fermeture automatique", + }, + }, + empty_state: { + labels: { + title: "Pas encore d'étiquettes", + description: "Créez des étiquettes pour organiser et filtrer les éléments de travail dans votre projet.", + }, + estimates: { + title: "Pas encore de systèmes d'estimation", + description: "Créez un ensemble d'estimations pour communiquer le volume de travail par élément de travail.", + primary_button: "Ajouter un système d'estimation", + }, + }, + }, + project_cycles: { + add_cycle: "Ajouter un cycle", + more_details: "Plus de détails", + cycle: "Cycle", + update_cycle: "Mettre à jour le cycle", + create_cycle: "Créer un cycle", + no_matching_cycles: "Aucun cycle correspondant", + remove_filters_to_see_all_cycles: "Supprimez les filtres pour voir tous les cycles", + remove_search_criteria_to_see_all_cycles: "Supprimez les critères de recherche pour voir tous les cycles", + only_completed_cycles_can_be_archived: "Seuls les cycles terminés peuvent être archivés", + start_date: "Date de début", + end_date: "Date de fin", + in_your_timezone: "Dans votre fuseau horaire", + transfer_work_items: "Transférer {count} éléments de travail", + date_range: "Plage de dates", + add_date: "Ajouter une date", + active_cycle: { + label: "Cycle actif", + progress: "Progression", + chart: "Graphique d'avancement", + priority_issue: "Éléments de travail prioritaires", + assignees: "Assignés", + issue_burndown: "Graphique d'avancement des éléments", + ideal: "Idéal", + current: "Actuel", + labels: "Étiquettes", + }, + upcoming_cycle: { + label: "Cycle à venir", + }, + completed_cycle: { + label: "Cycle terminé", + }, + status: { + days_left: "Jours restants", + completed: "Terminé", + yet_to_start: "Pas encore commencé", + in_progress: "En cours", + draft: "Brouillon", + }, + action: { + restore: { + title: "Restaurer le cycle", + success: { + title: "Cycle restauré", + description: "Le cycle a été restauré.", + }, + failed: { + title: "Échec de la restauration du cycle", + description: "Le cycle n'a pas pu être restauré. Veuillez réessayer.", + }, + }, + favorite: { + loading: "Ajout du cycle aux favoris", + success: { + description: "Cycle ajouté aux favoris.", + title: "Succès !", + }, + failed: { + description: "Impossible d'ajouter le cycle aux favoris. Veuillez réessayer.", + title: "Erreur !", + }, + }, + unfavorite: { + loading: "Suppression du cycle des favoris", + success: { + description: "Cycle retiré des favoris.", + title: "Succès !", + }, + failed: { + description: "Impossible de retirer le cycle des favoris. Veuillez réessayer.", + title: "Erreur !", + }, + }, + update: { + loading: "Mise à jour du cycle", + success: { + description: "Cycle mis à jour avec succès.", + title: "Succès !", + }, + failed: { + description: "Erreur lors de la mise à jour du cycle. Veuillez réessayer.", + title: "Erreur !", + }, + error: { + already_exists: + "Vous avez déjà un cycle aux dates indiquées. Si vous souhaitez créer un cycle en brouillon, vous pouvez le faire en supprimant les deux dates.", + }, + }, + }, + empty_state: { + general: { + title: "Regroupez et planifiez votre travail en Cycles.", + description: + "Découpez le travail en périodes définies, planifiez à rebours depuis la date limite de votre projet pour fixer les dates, et progressez concrètement en équipe.", + primary_button: { + text: "Définissez votre premier cycle", + comic: { + title: "Les cycles sont des périodes répétitives.", + description: + "Un sprint, une itération, ou tout autre terme que vous utilisez pour le suivi hebdomadaire ou bimensuel du travail est un cycle.", + }, + }, + }, + no_issues: { + title: "Aucun élément de travail ajouté au cycle", + description: "Ajoutez ou créez des éléments de travail que vous souhaitez planifier et livrer dans ce cycle", + primary_button: { + text: "Créer un nouvel élément de travail", + }, + secondary_button: { + text: "Ajouter un élément existant", + }, + }, + completed_no_issues: { + title: "Aucun élément de travail dans le cycle", + description: + "Aucun élément de travail dans le cycle. Les éléments sont soit transférés soit masqués. Pour voir les éléments masqués s'il y en a, mettez à jour vos propriétés d'affichage en conséquence.", + }, + active: { + title: "Aucun cycle actif", + description: + "Un cycle actif inclut toute période qui englobe la date d'aujourd'hui dans sa plage. Trouvez ici la progression et les détails du cycle actif.", + }, + archived: { + title: "Aucun cycle archivé pour le moment", + description: "Pour organiser votre projet, archivez les cycles terminés. Retrouvez-les ici une fois archivés.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Créez un élément de travail et assignez-le à quelqu'un, même à vous-même", + description: + "Pensez aux éléments de travail comme des tâches, du travail, ou des JTBD (Jobs To Be Done). Un élément de travail et ses sous-éléments sont généralement des actions temporelles assignées aux membres de votre équipe. Votre équipe crée, assigne et complète des éléments de travail pour faire progresser votre projet vers son objectif.", + primary_button: { + text: "Créez votre premier élément de travail", + comic: { + title: "Les éléments de travail sont les blocs de construction dans Plane.", + description: + "Refondre l'interface de Plane, Renouveler l'image de marque de l'entreprise, ou Lancer le nouveau système d'injection de carburant sont des exemples d'éléments de travail qui ont probablement des sous-éléments.", + }, + }, + }, + no_archived_issues: { + title: "Aucun élément de travail archivé pour le moment", + description: + "Manuellement ou par automatisation, vous pouvez archiver les éléments de travail terminés ou annulés. Retrouvez-les ici une fois archivés.", + primary_button: { + text: "Configurer l'automatisation", + }, + }, + issues_empty_filter: { + title: "Aucun élément de travail trouvé correspondant aux filtres appliqués", + secondary_button: { + text: "Effacer tous les filtres", + }, + }, + }, + }, + project_module: { + add_module: "Ajouter un module", + update_module: "Mettre à jour le module", + create_module: "Créer un module", + archive_module: "Archiver le module", + restore_module: "Restaurer le module", + delete_module: "Supprimer le module", + empty_state: { + general: { + title: "Associez vos jalons de projet aux Modules et suivez facilement le travail agrégé.", + description: + "Un groupe d'éléments de travail qui appartiennent à un parent logique et hiérarchique forme un module. Considérez-les comme un moyen de suivre le travail par jalons de projet. Ils ont leurs propres périodes et délais ainsi que des analyses pour vous aider à voir à quel point vous êtes proche ou loin d'un jalon.", + primary_button: { + text: "Construisez votre premier module", + comic: { + title: "Les modules aident à regrouper le travail par hiérarchie.", + description: + "Un module panier, un module châssis et un module entrepôt sont tous de bons exemples de ce regroupement.", + }, + }, + }, + no_issues: { + title: "Aucun élément de travail dans le module", + description: "Créez ou ajoutez des éléments de travail que vous souhaitez accomplir dans le cadre de ce module", + primary_button: { + text: "Créer de nouveaux éléments de travail", + }, + secondary_button: { + text: "Ajouter un élément existant", + }, + }, + archived: { + title: "Aucun module archivé pour le moment", + description: + "Pour organiser votre projet, archivez les modules terminés ou annulés. Retrouvez-les ici une fois archivés.", + }, + sidebar: { + in_active: "Ce module n'est pas encore actif.", + invalid_date: "Date invalide. Veuillez entrer une date valide.", + }, + }, + quick_actions: { + archive_module: "Archiver le module", + archive_module_description: "Seuls les modules terminés ou\nannulés peuvent être archivés.", + delete_module: "Supprimer le module", + }, + toast: { + copy: { + success: "Lien du module copié dans le presse-papiers", + }, + delete: { + success: "Module supprimé avec succès", + error: "Échec de la suppression du module", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Enregistrez des vues filtrées pour votre projet. Créez-en autant que nécessaire", + description: + "Les vues sont un ensemble de filtres enregistrés que vous utilisez fréquemment ou auxquels vous souhaitez avoir un accès facile. Tous vos collègues dans un projet peuvent voir les vues de chacun et choisir celle qui convient le mieux à leurs besoins.", + primary_button: { + text: "Créez votre première vue", + comic: { + title: "Les vues fonctionnent sur les propriétés des éléments de travail.", + description: + "Vous pouvez créer une vue ici avec autant de propriétés comme filtres que vous le jugez approprié.", + }, + }, + }, + filter: { + title: "Aucune vue correspondante", + description: "Aucune vue ne correspond aux critères de recherche. \n Créez plutôt une nouvelle vue.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Rédigez une note, un document ou une base de connaissances complète. Obtenez l'aide de Galileo, l'assistant IA de Plane, pour commencer", + description: + "Les Pages sont un espace de réflexion dans Plane. Prenez des notes de réunion, formatez-les facilement, intégrez des éléments de travail, disposez-les à l'aide d'une bibliothèque de composants, et gardez-les tous dans le contexte de votre projet. Pour faciliter la rédaction de tout document, faites appel à Galileo, l'IA de Plane, avec un raccourci ou un clic sur un bouton.", + primary_button: { + text: "Créez votre première page", + }, + }, + private: { + title: "Pas encore de pages privées", + description: "Gardez vos pensées privées ici. Quand vous serez prêt à partager, l'équipe n'est qu'à un clic.", + primary_button: { + text: "Créez votre première page", + }, + }, + public: { + title: "Pas encore de pages publiques", + description: "Consultez ici les pages partagées avec tout le monde dans votre projet.", + primary_button: { + text: "Créez votre première page", + }, + }, + archived: { + title: "Pas encore de pages archivées", + description: "Archivez les pages qui ne sont pas dans votre radar. Accédez-y ici quand nécessaire.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Aucun résultat trouvé", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Aucun élément de travail correspondant trouvé", + }, + no_issues: { + title: "Aucun élément de travail trouvé", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Pas encore de commentaires", + description: + "Les commentaires peuvent être utilisés comme espace de discussion et de suivi pour les éléments de travail", + }, + }, + }, + notification: { + label: "Boîte de réception", + page_label: "{workspace} - Boîte de réception", + options: { + mark_all_as_read: "Tout marquer comme lu", + mark_read: "Marquer comme lu", + mark_unread: "Marquer comme non lu", + refresh: "Actualiser", + filters: "Filtres de la boîte de réception", + show_unread: "Afficher les non lus", + show_snoozed: "Afficher les reportés", + show_archived: "Afficher les archivés", + mark_archive: "Archiver", + mark_unarchive: "Désarchiver", + mark_snooze: "Reporter", + mark_unsnooze: "Annuler le report", + }, + toasts: { + read: "Notification marquée comme lue", + unread: "Notification marquée comme non lue", + archived: "Notification marquée comme archivée", + unarchived: "Notification marquée comme non archivée", + snoozed: "Notification reportée", + unsnoozed: "Report de la notification annulé", + }, + empty_state: { + detail: { + title: "Sélectionnez pour voir les détails.", + }, + all: { + title: "Aucun élément de travail assigné", + description: "Les mises à jour des éléments de travail qui vous sont assignés peuvent être \n vues ici", + }, + mentions: { + title: "Aucun élément de travail assigné", + description: "Les mises à jour des éléments de travail qui vous sont assignés peuvent être \n vues ici", + }, + }, + tabs: { + all: "Tout", + mentions: "Mentions", + }, + filter: { + assigned: "Assigné à moi", + created: "Créé par moi", + subscribed: "Suivi par moi", + }, + snooze: { + "1_day": "1 jour", + "3_days": "3 jours", + "5_days": "5 jours", + "1_week": "1 semaine", + "2_weeks": "2 semaines", + custom: "Personnalisé", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Ajoutez des éléments de travail au cycle pour voir sa progression", + }, + chart: { + title: "Ajoutez des éléments de travail au cycle pour voir le graphique d'avancement.", + }, + priority_issue: { + title: "Observez en un coup d'œil les éléments de travail prioritaires traités dans le cycle.", + }, + assignee: { + title: "Ajoutez des assignés aux éléments de travail pour voir une répartition du travail par assigné.", + }, + label: { + title: "Ajoutez des étiquettes aux éléments de travail pour voir la répartition du travail par étiquette.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "L'Intake n'est pas activé pour le projet.", + description: + "L'Intake vous aide à gérer les demandes entrantes dans votre projet et à les ajouter comme éléments de travail dans votre flux. Activez l'Intake depuis les paramètres du projet pour gérer les demandes.", + primary_button: { + text: "Gérer les fonctionnalités", + }, + }, + cycle: { + title: "Les Cycles ne sont pas activés pour ce projet.", + description: + "Découpez le travail en segments temporels, planifiez à rebours depuis la date limite de votre projet pour définir les dates, et progressez concrètement en équipe. Activez la fonctionnalité Cycles pour votre projet pour commencer à les utiliser.", + primary_button: { + text: "Gérer les fonctionnalités", + }, + }, + module: { + title: "Les Modules ne sont pas activés pour le projet.", + description: + "Les Modules sont les éléments constitutifs de votre projet. Activez les modules depuis les paramètres du projet pour commencer à les utiliser.", + primary_button: { + text: "Gérer les fonctionnalités", + }, + }, + page: { + title: "Les Pages ne sont pas activées pour le projet.", + description: + "Les Pages sont les éléments constitutifs de votre projet. Activez les pages depuis les paramètres du projet pour commencer à les utiliser.", + primary_button: { + text: "Gérer les fonctionnalités", + }, + }, + view: { + title: "Les Vues ne sont pas activées pour le projet.", + description: + "Les Vues sont les éléments constitutifs de votre projet. Activez les vues depuis les paramètres du projet pour commencer à les utiliser.", + primary_button: { + text: "Gérer les fonctionnalités", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Créer un brouillon d'élément de travail", + empty_state: { + title: "Les éléments de travail partiellement rédigés, et bientôt les commentaires, apparaîtront ici.", + description: + "Pour essayer cela, commencez à ajouter un élément de travail et laissez-le à mi-chemin ou créez votre premier brouillon ci-dessous. 😉", + primary_button: { + text: "Créez votre premier brouillon", + }, + }, + delete_modal: { + title: "Supprimer le brouillon", + description: "Êtes-vous sûr de vouloir supprimer ce brouillon ? Cette action ne peut pas être annulée.", + }, + toasts: { + created: { + success: "Brouillon créé", + error: "L'élément de travail n'a pas pu être créé. Veuillez réessayer.", + }, + deleted: { + success: "Brouillon supprimé", + }, + }, + }, + stickies: { + title: "Vos notes adhésives", + placeholder: "cliquez pour écrire ici", + all: "Toutes les notes adhésives", + "no-data": + "Notez une idée, capturez une révélation ou enregistrez une inspiration. Ajoutez une note adhésive pour commencer.", + add: "Ajouter une note adhésive", + search_placeholder: "Rechercher par titre", + delete: "Supprimer la note adhésive", + delete_confirmation: "Êtes-vous sûr de vouloir supprimer cette note adhésive ?", + empty_state: { + simple: + "Notez une idée, capturez une révélation ou enregistrez une inspiration. Ajoutez une note adhésive pour commencer.", + general: { + title: "Les notes adhésives sont des notes rapides et des tâches que vous prenez à la volée.", + description: + "Capturez vos pensées et idées facilement en créant des notes adhésives que vous pouvez consulter à tout moment et de n'importe où.", + primary_button: { + text: "Ajouter une note adhésive", + }, + }, + search: { + title: "Cela ne correspond à aucune de vos notes adhésives.", + description: + "Essayez un terme différent ou faites-nous savoir\nsi vous êtes sûr que votre recherche est correcte.", + primary_button: { + text: "Ajouter une note adhésive", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Le nom de la note adhésive ne peut pas dépasser 100 caractères.", + already_exists: "Il existe déjà une note adhésive sans description", + }, + created: { + title: "Note adhésive créée", + message: "La note adhésive a été créée avec succès", + }, + not_created: { + title: "Note adhésive non créée", + message: "La note adhésive n'a pas pu être créée", + }, + updated: { + title: "Note adhésive mise à jour", + message: "La note adhésive a été mise à jour avec succès", + }, + not_updated: { + title: "Note adhésive non mise à jour", + message: "La note adhésive n'a pas pu être mise à jour", + }, + removed: { + title: "Note adhésive supprimée", + message: "La note adhésive a été supprimée avec succès", + }, + not_removed: { + title: "Note adhésive non supprimée", + message: "La note adhésive n'a pas pu être supprimée", + }, + }, + }, + role_details: { + guest: { + title: "Invité", + description: "Les membres externes des organisations peuvent être invités en tant qu'invités.", + }, + member: { + title: "Membre", + description: "Capacité à lire, écrire, modifier et supprimer des entités dans les projets, cycles et modules", + }, + admin: { + title: "Administrateur", + description: "Toutes les permissions sont activées dans l'espace de travail.", + }, + }, + user_roles: { + product_or_project_manager: "Chef de produit / Chef de projet", + development_or_engineering: "Développement / Ingénierie", + founder_or_executive: "Fondateur / Dirigeant", + freelancer_or_consultant: "Freelance / Consultant", + marketing_or_growth: "Marketing / Croissance", + sales_or_business_development: "Ventes / Développement commercial", + support_or_operations: "Support / Opérations", + student_or_professor: "Étudiant / Professeur", + human_resources: "Ressources Humaines", + other: "Autre", + }, + importer: { + github: { + title: "GitHub", + description: "Importez des éléments de travail depuis les dépôts GitHub et synchronisez-les.", + }, + jira: { + title: "Jira", + description: "Importez des éléments de travail et des epics depuis les projets et epics Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Exportez les éléments de travail vers un fichier CSV.", + short_description: "Exporter en csv", + }, + excel: { + title: "Excel", + description: "Exportez les éléments de travail vers un fichier Excel.", + short_description: "Exporter en excel", + }, + xlsx: { + title: "Excel", + description: "Exportez les éléments de travail vers un fichier Excel.", + short_description: "Exporter en excel", + }, + json: { + title: "JSON", + description: "Exportez les éléments de travail vers un fichier JSON.", + short_description: "Exporter en json", + }, + }, + default_global_view: { + all_issues: "Tous les éléments de travail", + assigned: "Assignés", + created: "Créés", + subscribed: "Suivis", + }, + themes: { + theme_options: { + system_preference: { + label: "Préférence système", + }, + light: { + label: "Clair", + }, + dark: { + label: "Sombre", + }, + light_contrast: { + label: "Contraste clair élevé", + }, + dark_contrast: { + label: "Contraste sombre élevé", + }, + custom: { + label: "Thème personnalisé", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Planifié", + in_progress: "En cours", + paused: "En pause", + completed: "Terminé", + cancelled: "Annulé", + }, + layout: { + list: "Vue liste", + board: "Vue galerie", + timeline: "Vue chronologique", + }, + order_by: { + name: "Nom", + progress: "Progression", + issues: "Nombre d'éléments de travail", + due_date: "Date d'échéance", + created_at: "Date de création", + manual: "Manuel", + }, + }, + cycle: { + label: "{count, plural, one {Cycle} other {Cycles}}", + no_cycle: "Pas de cycle", + }, + module: { + label: "{count, plural, one {Module} other {Modules}}", + no_module: "Pas de module", + }, + description_versions: { + last_edited_by: "Dernière modification par", + previously_edited_by: "Précédemment modifié par", + edited_by: "Modifié par", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane n'a pas démarré. Cela pourrait être dû au fait qu'un ou plusieurs services Plane ont échoué à démarrer.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Choisissez View Logs depuis setup.sh et les logs Docker pour en être sûr.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Plan", + empty_state: { + title: "Titres manquants", + description: "Ajoutons quelques titres à cette page pour les voir ici.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Mots", + characters: "Caractères", + paragraphs: "Paragraphes", + read_time: "Temps de lecture", + }, + actors_info: { + edited_by: "Modifié par", + created_by: "Créé par", + }, + version_history: { + label: "Historique des versions", + current_version: "Version actuelle", + }, + }, + assets: { + label: "Ressources", + download_button: "Télécharger", + empty_state: { + title: "Images manquantes", + description: "Ajoutez des images pour les voir ici.", + }, + }, + }, + open_button: "Ouvrir le panneau de navigation", + close_button: "Fermer le panneau de navigation", + outline_floating_button: "Ouvrir le plan", + }, +} as const; diff --git a/packages/i18n/src/locales/id/accessibility.json b/packages/i18n/src/locales/id/accessibility.json deleted file mode 100644 index 7320734015..0000000000 --- a/packages/i18n/src/locales/id/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo ruang kerja", - "open_workspace_switcher": "Buka penukar ruang kerja", - "open_user_menu": "Buka menu pengguna", - "open_command_palette": "Buka palet perintah", - "open_extended_sidebar": "Buka sidebar diperluas", - "close_extended_sidebar": "Tutup sidebar diperluas", - "create_favorites_folder": "Buat folder favorit", - "open_folder": "Buka folder", - "close_folder": "Tutup folder", - "open_favorites_menu": "Buka menu favorit", - "close_favorites_menu": "Tutup menu favorit", - "enter_folder_name": "Masukkan nama folder", - "create_new_project": "Buat proyek baru", - "open_projects_menu": "Buka menu proyek", - "close_projects_menu": "Tutup menu proyek", - "toggle_quick_actions_menu": "Alihkan menu tindakan cepat", - "open_project_menu": "Buka menu proyek", - "close_project_menu": "Tutup menu proyek", - "collapse_sidebar": "Tutup sidebar", - "expand_sidebar": "Perluas sidebar", - "edition_badge": "Buka modal paket berbayar" - }, - "auth_forms": { - "clear_email": "Hapus email", - "show_password": "Tampilkan kata sandi", - "hide_password": "Sembunyikan kata sandi", - "close_alert": "Tutup peringatan", - "close_popover": "Tutup popover" - } - } -} diff --git a/packages/i18n/src/locales/id/accessibility.ts b/packages/i18n/src/locales/id/accessibility.ts new file mode 100644 index 0000000000..2e9c800a7a --- /dev/null +++ b/packages/i18n/src/locales/id/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo ruang kerja", + open_workspace_switcher: "Buka penukar ruang kerja", + open_user_menu: "Buka menu pengguna", + open_command_palette: "Buka palet perintah", + open_extended_sidebar: "Buka sidebar diperluas", + close_extended_sidebar: "Tutup sidebar diperluas", + create_favorites_folder: "Buat folder favorit", + open_folder: "Buka folder", + close_folder: "Tutup folder", + open_favorites_menu: "Buka menu favorit", + close_favorites_menu: "Tutup menu favorit", + enter_folder_name: "Masukkan nama folder", + create_new_project: "Buat proyek baru", + open_projects_menu: "Buka menu proyek", + close_projects_menu: "Tutup menu proyek", + toggle_quick_actions_menu: "Alihkan menu tindakan cepat", + open_project_menu: "Buka menu proyek", + close_project_menu: "Tutup menu proyek", + collapse_sidebar: "Tutup sidebar", + expand_sidebar: "Perluas sidebar", + edition_badge: "Buka modal paket berbayar", + }, + auth_forms: { + clear_email: "Hapus email", + show_password: "Tampilkan kata sandi", + hide_password: "Sembunyikan kata sandi", + close_alert: "Tutup peringatan", + close_popover: "Tutup popover", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/id/editor.json b/packages/i18n/src/locales/id/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/id/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/id/editor.ts b/packages/i18n/src/locales/id/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/id/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/id/translations.json b/packages/i18n/src/locales/id/translations.json deleted file mode 100644 index 9fd407bdeb..0000000000 --- a/packages/i18n/src/locales/id/translations.json +++ /dev/null @@ -1,2528 +0,0 @@ -{ - "sidebar": { - "projects": "Projek", - "pages": "Halaman", - "new_work_item": "Item kerja baru", - "home": "Beranda", - "your_work": "Pekerjaan anda", - "inbox": "Inbox", - "workspace": "Workspace", - "views": "Views", - "analytics": "Analitik", - "work_items": "Item kerja", - "cycles": "Siklus", - "modules": "Modul", - "intake": "Intake", - "drafts": "Draft", - "favorites": "Favorit", - "pro": "Pro", - "upgrade": "Upgrade" - }, - "auth": { - "common": { - "email": { - "label": "Email", - "placeholder": "nama@perusahaan.com", - "errors": { - "required": "Email wajib diisi", - "invalid": "Email tidak valid" - } - }, - "password": { - "label": "Password", - "set_password": "Atur password", - "placeholder": "Masukkan password", - "confirm_password": { - "label": "Konfirmasi password", - "placeholder": "Konfirmasi password" - }, - "current_password": { - "label": "Password saat ini" - }, - "new_password": { - "label": "Password baru", - "placeholder": "Masukkan password baru" - }, - "change_password": { - "label": { - "default": "Ubah password", - "submitting": "Mengubah password" - } - }, - "errors": { - "match": "Password tidak cocok", - "empty": "Silakan masukkan password anda", - "length": "Panjang password harus lebih dari 8 karakter", - "strength": { - "weak": "Password lemah", - "strong": "Password kuat" - } - }, - "submit": "Atur password", - "toast": { - "change_password": { - "success": { - "title": "Berhasil!", - "message": "Password berhasil diubah." - }, - "error": { - "title": "Error!", - "message": "Terjadi kesalahan. Silakan coba lagi." - } - } - } - }, - "unique_code": { - "label": "Kode unik", - "placeholder": "gets-sets-flys", - "paste_code": "Tempelkan kode yang dikirim ke email anda", - "requesting_new_code": "Meminta kode baru", - "sending_code": "Mengirim kode" - }, - "already_have_an_account": "Sudah punya akun?", - "login": "Masuk", - "create_account": "Buat akun", - "new_to_plane": "Baru di Plane?", - "back_to_sign_in": "Kembali ke halaman masuk", - "resend_in": "Kirim ulang dalam {seconds} detik", - "sign_in_with_unique_code": "Masuk dengan kode unik", - "forgot_password": "Lupa password?" - }, - "sign_up": { - "header": { - "label": "Buat akun untuk mulai mengelola pekerjaan dengan tim anda.", - "step": { - "email": { - "header": "Daftar", - "sub_header": "" - }, - "password": { - "header": "Daftar", - "sub_header": "Daftar menggunakan kombinasi email-password." - }, - "unique_code": { - "header": "Daftar", - "sub_header": "Daftar menggunakan kode unik yang dikirim ke alamat email di atas." - } - } - }, - "errors": { - "password": { - "strength": "Coba atur password yang lebih kuat untuk melanjutkan" - } - } - }, - "sign_in": { - "header": { - "label": "Masuk untuk mulai mengelola pekerjaan dengan tim anda.", - "step": { - "email": { - "header": "Masuk atau daftar", - "sub_header": "" - }, - "password": { - "header": "Masuk atau daftar", - "sub_header": "Gunakan kombinasi email-password anda untuk masuk." - }, - "unique_code": { - "header": "Masuk atau daftar", - "sub_header": "Masuk menggunakan kode unik yang dikirim ke alamat email di atas." - } - } - } - }, - "forgot_password": { - "title": "Reset password anda", - "description": "Masukkan alamat email akun anda yang telah diverifikasi dan kami akan mengirimkan link reset password.", - "email_sent": "Kami telah mengirim link reset ke alamat email anda", - "send_reset_link": "Kirim link reset", - "errors": { - "smtp_not_enabled": "Kami melihat bahwa admin anda belum mengaktifkan SMTP, kami tidak dapat mengirimkan link reset password" - }, - "toast": { - "success": { - "title": "Email terkirim", - "message": "Periksa inbox anda untuk link reset password. Jika tidak muncul dalam beberapa menit, periksa folder spam." - }, - "error": { - "title": "Error!", - "message": "Terjadi kesalahan. Silakan coba lagi." - } - } - }, - "reset_password": { - "title": "Atur password baru", - "description": "Amankan akun anda dengan password yang kuat" - }, - "set_password": { - "title": "Amankan akun anda", - "description": "Mengatur password membantu anda masuk dengan aman" - }, - "sign_out": { - "toast": { - "error": { - "title": "Error!", - "message": "Gagal keluar. Silakan coba lagi." - } - } - } - }, - "submit": "Kirim", - "cancel": "Batal", - "loading": "Memuat", - "error": "Kesalahan", - "success": "Sukses", - "warning": "Peringatan", - "info": "Info", - "close": "Tutup", - "yes": "Ya", - "no": "Tidak", - "ok": "OK", - "name": "Nama", - "description": "Deskripsi", - "search": "Cari", - "add_member": "Tambah anggota", - "adding_members": "Menambah anggota", - "remove_member": "Hapus anggota", - "add_members": "Tambah anggota", - "adding_member": "Menambah anggota", - "remove_members": "Hapus anggota", - "add": "Tambah", - "adding": "Menambah", - "remove": "Hapus", - "add_new": "Tambah baru", - "remove_selected": "Hapus yang dipilih", - "first_name": "Nama depan", - "last_name": "Nama belakang", - "email": "Email", - "display_name": "Nama tampilan", - "role": "Peran", - "timezone": "Zona waktu", - "avatar": "Avatar", - "cover_image": "Gambar sampul", - "password": "Kata sandi", - "change_cover": "Ganti sampul", - "language": "Bahasa", - "saving": "Menyimpan", - "save_changes": "Simpan perubahan", - "deactivate_account": "Nonaktifkan akun", - "deactivate_account_description": "Saat menonaktifkan akun, semua data dan sumber daya dalam akun tersebut akan dihapus secara permanen dan tidak dapat dipulihkan.", - "profile_settings": "Pengaturan profil", - "your_account": "Akun Anda", - "security": "Keamanan", - "activity": "Aktivitas", - "appearance": "Tampilan", - "notifications": "Notifikasi", - "workspaces": "Ruang kerja", - "create_workspace": "Buat ruang kerja", - "invitations": "Undangan", - "summary": "Ringkasan", - "assigned": "Ditetapkan", - "created": "Dibuat", - "subscribed": "Berlangganan", - "you_do_not_have_the_permission_to_access_this_page": "Anda tidak memiliki izin untuk mengakses halaman ini.", - "something_went_wrong_please_try_again": "Terjadi kesalahan. Silakan coba lagi.", - "load_more": "Muat lebih banyak", - "select_or_customize_your_interface_color_scheme": "Pilih atau sesuaikan skema warna antarmuka Anda.", - "theme": "Tema", - "system_preference": "Preferensi sistem", - "light": "Terang", - "dark": "Gelap", - "light_contrast": "Kontras tinggi terang", - "dark_contrast": "Kontras tinggi gelap", - "custom": "Tema kustom", - "select_your_theme": "Pilih tema Anda", - "customize_your_theme": "Sesuaikan tema Anda", - "background_color": "Warna latar belakang", - "text_color": "Warna teks", - "primary_color": "Warna utama (Tema)", - "sidebar_background_color": "Warna latar belakang sidebar", - "sidebar_text_color": "Warna teks sidebar", - "set_theme": "Atur tema", - "enter_a_valid_hex_code_of_6_characters": "Masukkan kode hex yang valid dari 6 karakter", - "background_color_is_required": "Warna latar belakang diperlukan", - "text_color_is_required": "Warna teks diperlukan", - "primary_color_is_required": "Warna utama diperlukan", - "sidebar_background_color_is_required": "Warna latar belakang sidebar diperlukan", - "sidebar_text_color_is_required": "Warna teks sidebar diperlukan", - "updating_theme": "Memperbarui tema", - "theme_updated_successfully": "Tema berhasil diperbarui", - "failed_to_update_the_theme": "Gagal memperbarui tema", - "email_notifications": "Notifikasi email", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Tetap terupdate tentang item kerja yang Anda langgani. Aktifkan ini untuk mendapatkan notifikasi.", - "email_notification_setting_updated_successfully": "Pengaturan notifikasi email berhasil diperbarui", - "failed_to_update_email_notification_setting": "Gagal memperbarui pengaturan notifikasi email", - "notify_me_when": "Beri tahu saya ketika", - "property_changes": "Perubahan properti", - "property_changes_description": "Beri tahu saya ketika properti item kerja seperti penugasannya, prioritas, estimasi, atau hal lainnya berubah.", - "state_change": "Perubahan status", - "state_change_description": "Beri tahu saya ketika item kerja berpindah ke status yang berbeda", - "issue_completed": "Item kerja selesai", - "issue_completed_description": "Beri tahu saya hanya ketika item kerja selesai", - "comments": "Komentar", - "comments_description": "Beri tahu saya ketika seseorang meninggalkan komentar pada item kerja", - "mentions": "Sebutkan", - "mentions_description": "Beri tahu saya hanya ketika seseorang menyebut saya dalam komentar atau deskripsi", - "old_password": "Kata sandi lama", - "general_settings": "Pengaturan umum", - "sign_out": "Keluar", - "signing_out": "Keluar", - "active_cycles": "Siklus aktif", - "active_cycles_description": "Pantau siklus di seluruh proyek, lacak item kerja prioritas tinggi, dan fokus pada siklus yang membutuhkan perhatian.", - "on_demand_snapshots_of_all_your_cycles": "Snapshot sesuai permintaan dari semua siklus Anda", - "upgrade": "Tingkatkan", - "10000_feet_view": "Tampilan 10.000 kaki dari semua siklus aktif.", - "10000_feet_view_description": "Perbesar untuk melihat siklus yang berjalan di seluruh proyek Anda sekaligus, bukan berpindah dari Siklus ke Siklus di setiap proyek.", - "get_snapshot_of_each_active_cycle": "Dapatkan snapshot dari setiap siklus aktif.", - "get_snapshot_of_each_active_cycle_description": "Lacak metrik tingkat tinggi untuk semua siklus aktif, lihat kemajuan mereka, dan dapatkan gambaran tentang ruang lingkup terhadap tenggat waktu.", - "compare_burndowns": "Bandingkan burndown.", - "compare_burndowns_description": "Pantau bagaimana kinerja setiap tim Anda dengan melihat laporan burndown masing-masing siklus.", - "quickly_see_make_or_break_issues": "Lihat dengan cepat item kerja yang krusial.", - "quickly_see_make_or_break_issues_description": "Prabaca item kerja prioritas tinggi untuk setiap siklus terhadap tanggal jatuh tempo. Lihat semuanya per siklus hanya dengan satu klik.", - "zoom_into_cycles_that_need_attention": "Perbesar siklus yang membutuhkan perhatian.", - "zoom_into_cycles_that_need_attention_description": "Selidiki status siklus mana pun yang tidak sesuai dengan harapan dengan satu klik.", - "stay_ahead_of_blockers": "Tetap di depan penghambat.", - "stay_ahead_of_blockers_description": "Identifikasi tantangan dari satu proyek ke proyek lainnya dan lihat ketergantungan antar siklus yang tidak terlihat dari tampilan lain mana pun.", - "analytics": "Analitik", - "workspace_invites": "Undangan ruang kerja", - "enter_god_mode": "Masuk ke mode dewa", - "workspace_logo": "Logo ruang kerja", - "new_issue": "Item kerja baru", - "your_work": "Pekerjaan Anda", - "drafts": "Draf", - "projects": "Proyek", - "views": "Tampilan", - "workspace": "Ruang kerja", - "archives": "Arsip", - "settings": "Pengaturan", - "failed_to_move_favorite": "Gagal memindahkan favorit", - "favorites": "Favorit", - "no_favorites_yet": "Belum ada favorit", - "create_folder": "Buat folder", - "new_folder": "Folder baru", - "favorite_updated_successfully": "Favorit berhasil diperbarui", - "favorite_created_successfully": "Favorit berhasil dibuat", - "folder_already_exists": "Folder sudah ada", - "folder_name_cannot_be_empty": "Nama folder tidak boleh kosong", - "something_went_wrong": "Terjadi kesalahan", - "failed_to_reorder_favorite": "Gagal mengatur ulang favorit", - "favorite_removed_successfully": "Favorit berhasil dihapus", - "failed_to_create_favorite": "Gagal membuat favorit", - "failed_to_rename_favorite": "Gagal mengganti nama favorit", - "project_link_copied_to_clipboard": "Tautan proyek disalin ke clipboard", - "link_copied": "Tautan disalin", - "add_project": "Tambah proyek", - "create_project": "Buat proyek", - "failed_to_remove_project_from_favorites": "Tidak dapat menghapus proyek dari favorit. Silakan coba lagi.", - "project_created_successfully": "Proyek berhasil dibuat", - "project_created_successfully_description": "Proyek berhasil dibuat. Anda sekarang dapat mulai menambahkan item kerja ke dalamnya.", - "project_name_already_taken": "Nama proyek sudah digunakan", - "project_identifier_already_taken": "ID proyek sudah digunakan", - "project_cover_image_alt": "Gambar sampul proyek", - "name_is_required": "Nama diperlukan", - "title_should_be_less_than_255_characters": "Judul harus kurang dari 255 karakter", - "project_name": "Nama proyek", - "project_id_must_be_at_least_1_character": "ID proyek harus minimal 1 karakter", - "project_id_must_be_at_most_5_characters": "ID proyek maksimal 5 karakter", - "project_id": "ID proyek", - "project_id_tooltip_content": "Membantu Anda mengidentifikasi item kerja dalam proyek secara unik. Maksimal 5 karakter.", - "description_placeholder": "Deskripsi", - "only_alphanumeric_non_latin_characters_allowed": "Hanya karakter alfanumerik & Non-latin yang diizinkan.", - "project_id_is_required": "ID proyek diperlukan", - "project_id_allowed_char": "Hanya karakter alfanumerik & Non-latin yang diizinkan.", - "project_id_min_char": "ID proyek harus minimal 1 karakter", - "project_id_max_char": "ID proyek maksimal 5 karakter", - "project_description_placeholder": "Masukkan deskripsi proyek", - "select_network": "Pilih jaringan", - "lead": "Pemimpin", - "date_range": "Rentang tanggal", - "private": "Pribadi", - "public": "Umum", - "accessible_only_by_invite": "Diakses hanya dengan undangan", - "anyone_in_the_workspace_except_guests_can_join": "Siapa saja di ruang kerja kecuali Tamu dapat bergabung", - "creating": "Membuat", - "creating_project": "Membuat proyek", - "adding_project_to_favorites": "Menambahkan proyek ke favorit", - "project_added_to_favorites": "Proyek ditambahkan ke favorit", - "couldnt_add_the_project_to_favorites": "Tidak dapat menambahkan proyek ke favorit. Silakan coba lagi.", - "removing_project_from_favorites": "Menghapus proyek dari favorit", - "project_removed_from_favorites": "Proyek dihapus dari favorit", - "couldnt_remove_the_project_from_favorites": "Tidak dapat menghapus proyek dari favorit. Silakan coba lagi.", - "add_to_favorites": "Tambah ke favorit", - "remove_from_favorites": "Hapus dari favorit", - "publish_project": "Publikasikan proyek", - "publish": "Publikasikan", - "copy_link": "Salin tautan", - "leave_project": "Tinggalkan proyek", - "join_the_project_to_rearrange": "Bergabunglah dengan proyek untuk menyusun ulang", - "drag_to_rearrange": "Seret untuk menyusun ulang", - "congrats": "Selamat!", - "open_project": "Buka proyek", - "issues": "Item kerja", - "cycles": "Siklus", - "modules": "Modul", - "pages": "Halaman", - "intake": "Penerimaan", - "time_tracking": "Pelacakan waktu", - "work_management": "Manajemen kerja", - "projects_and_issues": "Proyek dan item kerja", - "projects_and_issues_description": "Aktifkan atau nonaktifkan ini untuk proyek ini.", - "cycles_description": "Tetapkan batas waktu kerja per proyek dan sesuaikan periode waktunya sesuai kebutuhan. Satu siklus bisa 2 minggu, berikutnya 1 minggu.", - "modules_description": "Atur pekerjaan ke dalam sub-proyek dengan pemimpin dan penanggung jawab khusus.", - "views_description": "Simpan pengurutan, filter, dan opsi tampilan khusus atau bagikan dengan tim Anda.", - "pages_description": "Buat dan edit konten bebas bentuk: catatan, dokumen, apa saja.", - "intake_description": "Izinkan non-anggota membagikan bug, masukan, dan saran tanpa mengganggu alur kerja Anda.", - "time_tracking_description": "Catat waktu yang dihabiskan untuk item kerja dan proyek.", - "work_management_description": "Kelola pekerjaan dan proyek Anda dengan mudah.", - "documentation": "Dokumentasi", - "message_support": "Pesan dukungan", - "contact_sales": "Hubungi penjualan", - "hyper_mode": "Mode Hyper", - "keyboard_shortcuts": "Pintasan keyboard", - "whats_new": "Apa yang baru?", - "version": "Versi", - "we_are_having_trouble_fetching_the_updates": "Kami mengalami kesulitan mengambil pembaruan.", - "our_changelogs": "changelog kami", - "for_the_latest_updates": "untuk pembaruan terbaru.", - "please_visit": "Silakan kunjungi", - "docs": "Dokumen", - "full_changelog": "Changelog lengkap", - "support": "Dukungan", - "discord": "Discord", - "powered_by_plane_pages": "Ditenagai oleh Plane Pages", - "please_select_at_least_one_invitation": "Silakan pilih setidaknya satu undangan.", - "please_select_at_least_one_invitation_description": "Silakan pilih setidaknya satu undangan untuk bergabung dengan ruang kerja.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Kami melihat bahwa seseorang telah mengundang Anda untuk bergabung dengan ruang kerja", - "join_a_workspace": "Bergabunglah dengan ruang kerja", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Kami melihat bahwa seseorang telah mengundang Anda untuk bergabung dengan ruang kerja", - "join_a_workspace_description": "Bergabunglah dengan ruang kerja", - "accept_and_join": "Terima & Bergabung", - "go_home": "Kembali ke Beranda", - "no_pending_invites": "Tidak ada undangan yang tertunda", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Anda dapat melihat di sini jika seseorang mengundang Anda untuk bergabung dengan ruang kerja", - "back_to_home": "Kembali ke beranda", - "workspace_name": "nama-ruang-kerja", - "deactivate_your_account": "Nonaktifkan akun Anda", - "deactivate_your_account_description": "Setelah dinonaktifkan, Anda tidak akan dapat ditugaskan item kerja dan ditagih untuk ruang kerja Anda. Untuk mengaktifkan kembali akun Anda, Anda akan memerlukan undangan ke ruang kerja di alamat email ini.", - "deactivating": "Menonaktifkan", - "confirm": "Konfirmasi", - "confirming": "Mengonfirmasi", - "draft_created": "Draf dibuat", - "issue_created_successfully": "Item kerja berhasil dibuat", - "draft_creation_failed": "Pembuatan draf gagal", - "issue_creation_failed": "Pembuatan item kerja gagal", - "draft_issue": "Draf item kerja", - "issue_updated_successfully": "Item kerja berhasil diperbarui", - "issue_could_not_be_updated": "Item kerja tidak dapat diperbarui", - "create_a_draft": "Buat draf", - "save_to_drafts": "Simpan ke Draf", - "save": "Simpan", - "update": "Perbarui", - "updating": "Memperbarui", - "create_new_issue": "Buat item kerja baru", - "editor_is_not_ready_to_discard_changes": "Editor belum siap untuk membuang perubahan", - "failed_to_move_issue_to_project": "Gagal memindahkan item kerja ke proyek", - "create_more": "Buat lebih banyak", - "add_to_project": "Tambahkan ke proyek", - "discard": "Buang", - "duplicate_issue_found": "Item kerja duplikat ditemukan", - "duplicate_issues_found": "Item kerja duplikat ditemukan", - "no_matching_results": "Tidak ada hasil yang cocok", - "title_is_required": "Judul diperlukan", - "title": "Judul", - "state": "Negara", - "priority": "Prioritas", - "none": "Tidak ada", - "urgent": "Penting", - "high": "Tinggi", - "medium": "Sedang", - "low": "Rendah", - "members": "Anggota", - "assignee": "Penugas", - "assignees": "Penugas", - "you": "Anda", - "labels": "Label", - "create_new_label": "Buat label baru", - "start_date": "Tanggal mulai", - "end_date": "Tanggal akhir", - "due_date": "Tanggal jatuh tempo", - "estimate": "Perkiraan", - "change_parent_issue": "Ubah item kerja induk", - "remove_parent_issue": "Hapus item kerja induk", - "add_parent": "Tambahkan induk", - "loading_members": "Memuat anggota", - "view_link_copied_to_clipboard": "Tautan tampilan disalin ke clipboard.", - "required": "Diperlukan", - "optional": "Opsional", - "Cancel": "Batal", - "edit": "Sunting", - "archive": "Arsip", - "restore": "Pulihkan", - "open_in_new_tab": "Buka di tab baru", - "delete": "Hapus", - "deleting": "Menghapus", - "make_a_copy": "Buat salinan", - "move_to_project": "Pindahkan ke proyek", - "good": "Bagus", - "morning": "pagi", - "afternoon": "siang", - "evening": "malam", - "show_all": "Tampilkan semua", - "show_less": "Tampilkan lebih sedikit", - "no_data_yet": "Belum ada data", - "syncing": "Menyinkronkan", - "add_work_item": "Tambahkan item kerja", - "advanced_description_placeholder": "Tekan '/' untuk perintah", - "create_work_item": "Buat item kerja", - "attachments": "Lampiran", - "declining": "Menolak", - "declined": "Ditolak", - "decline": "Tolak", - "unassigned": "Belum ditugaskan", - "work_items": "Item kerja", - "add_link": "Tambahkan tautan", - "points": "Poin", - "no_assignee": "Tidak ada penugas", - "no_assignees_yet": "Belum ada penugas", - "no_labels_yet": "Belum ada label", - "ideal": "Ideal", - "current": "Saat ini", - "no_matching_members": "Tidak ada anggota yang cocok", - "leaving": "Meninggalkan", - "removing": "Menghapus", - "leave": "Tinggalkan", - "refresh": "Segarkan", - "refreshing": "Menyegarkan", - "refresh_status": "Status segar", - "prev": "Sebelumnya", - "next": "Selanjutnya", - "re_generating": "Menghasilkan kembali", - "re_generate": "Hasilkan kembali", - "re_generate_key": "Hasilkan kembali kunci", - "export": "Ekspor", - "member": "{count, plural, one{# anggota} other{# anggota}}", - "new_password_must_be_different_from_old_password": "Kata sandi baru harus berbeda dari kata sandi lama", - "project_view": { - "sort_by": { - "created_at": "Dibuat pada", - "updated_at": "Diperbarui pada", - "name": "Nama" - } - }, - "toast": { - "success": "Sukses!", - "error": "Kesalahan!" - }, - "links": { - "toasts": { - "created": { - "title": "Tautan dibuat", - "message": "Tautan telah berhasil dibuat" - }, - "not_created": { - "title": "Tautan tidak dibuat", - "message": "Tautan tidak dapat dibuat" - }, - "updated": { - "title": "Tautan diperbarui", - "message": "Tautan telah berhasil diperbarui" - }, - "not_updated": { - "title": "Tautan tidak diperbarui", - "message": "Tautan tidak dapat diperbarui" - }, - "removed": { - "title": "Tautan dihapus", - "message": "Tautan telah berhasil dihapus" - }, - "not_removed": { - "title": "Tautan tidak dihapus", - "message": "Tautan tidak dapat dihapus" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Panduan pemula Anda", - "not_right_now": "Tidak sekarang", - "create_project": { - "title": "Buat proyek", - "description": "Sebagian besar hal dimulai dengan proyek di Plane.", - "cta": "Mulai sekarang" - }, - "invite_team": { - "title": "Undang tim Anda", - "description": "Bangun, kirim, dan kelola dengan rekan kerja.", - "cta": "Ajak mereka" - }, - "configure_workspace": { - "title": "Atur ruang kerja Anda.", - "description": "Hidupkan atau matikan fitur atau lebih dari itu.", - "cta": "Konfigurasi ruang kerja ini" - }, - "personalize_account": { - "title": "Jadikan Plane milik Anda.", - "description": "Pilih gambar Anda, warna, dan lainnya.", - "cta": "Personalisasi sekarang" - }, - "widgets": { - "title": "Sepi Tanpa Widget, Nyalakan Mereka", - "description": "Sepertinya semua widget Anda dimatikan. Aktifkan sekarang untuk meningkatkan pengalaman Anda!", - "primary_button": { - "text": "Kelola widget" - } - } - }, - "quick_links": { - "empty": "Simpan tautan ke hal-hal kerja yang ingin Anda miliki.", - "add": "Tambahkan Tautan Cepat", - "title": "Tautan Cepat", - "title_plural": "Tautan Cepat" - }, - "recents": { - "title": "Terbaru", - "empty": { - "project": "Proyek terbaru Anda akan muncul di sini setelah Anda mengunjunginya.", - "page": "Halaman terbaru Anda akan muncul di sini setelah Anda mengunjunginya.", - "issue": "Item kerja terbaru Anda akan muncul di sini setelah Anda mengunjunginya.", - "default": "Anda belum memiliki yang terbaru." - }, - "filters": { - "all": "Semua", - "projects": "Proyek", - "pages": "Halaman", - "issues": "Item kerja" - } - }, - "new_at_plane": { - "title": "Baru di Plane" - }, - "quick_tutorial": { - "title": "Tutorial cepat" - }, - "widget": { - "reordered_successfully": "Widget berhasil diurutkan ulang.", - "reordering_failed": "Kesalahan terjadi saat mengurutkan ulang widget." - }, - "manage_widgets": "Kelola widget", - "title": "Beranda", - "star_us_on_github": "Bintang kami di GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL tidak valid", - "placeholder": "Ketik atau tempel URL" - }, - "title": { - "text": "Judul tampilan", - "placeholder": "Apa yang ingin Anda lihat sebagai tautan ini" - } - } - }, - "common": { - "all": "Semua", - "states": "Negara-negara", - "state": "Negara", - "state_groups": "Kelompok negara", - "state_group": "Kelompok negara", - "priorities": "Prioritas", - "priority": "Prioritas", - "team_project": "Proyek tim", - "project": "Proyek", - "cycle": "Siklus", - "cycles": "Siklus", - "module": "Modul", - "modules": "Modul", - "labels": "Label", - "label": "Label", - "assignees": "Penugas", - "assignee": "Penugas", - "created_by": "Dibuat oleh", - "none": "Tidak ada", - "link": "Tautan", - "estimates": "Perkiraan", - "estimate": "Perkiraan", - "created_at": "Dibuat pada", - "completed_at": "Selesai pada", - "layout": "Tata letak", - "filters": "Filter", - "display": "Tampilan", - "load_more": "Muat lebih banyak", - "activity": "Aktivitas", - "analytics": "Analitik", - "dates": "Tanggal", - "success": "Sukses!", - "something_went_wrong": "Ada yang salah", - "error": { - "label": "Kesalahan!", - "message": "Terjadi kesalahan. Silakan coba lagi." - }, - "group_by": "Kelompok berdasarkan", - "epic": "Epik", - "epics": "Epik", - "work_item": "Item kerja", - "work_items": "Item kerja", - "sub_work_item": "Sub-item kerja", - "add": "Tambah", - "warning": "Peringatan", - "updating": "Memperbarui", - "adding": "Menambahkan", - "update": "Perbarui", - "creating": "Membuat", - "create": "Buat", - "cancel": "Batalkan", - "description": "Deskripsi", - "title": "Judul", - "attachment": "Lampiran", - "general": "Umum", - "features": "Fitur", - "automation": "Otomatisasi", - "project_name": "Nama proyek", - "project_id": "ID proyek", - "project_timezone": "Zona waktu proyek", - "created_on": "Dibuat pada", - "update_project": "Perbarui proyek", - "identifier_already_exists": "Pengidentifikasi sudah ada", - "add_more": "Tambah lebih banyak", - "defaults": "Pola dasar", - "add_label": "Tambah label", - "customize_time_range": "Sesuaikan rentang waktu", - "loading": "Memuat", - "attachments": "Lampiran", - "property": "Properti", - "properties": "Properti", - "parent": "Induk", - "page": "Halaman", - "remove": "Hapus", - "archiving": "Mengarsipkan", - "archive": "Arsip", - "access": { - "public": "Publik", - "private": "Pribadi" - }, - "done": "Selesai", - "sub_work_items": "Sub-item kerja", - "comment": "Komentar", - "workspace_level": "Tingkat ruang kerja", - "order_by": { - "label": "Urutkan berdasarkan", - "manual": "Manual", - "last_created": "Terakhir dibuat", - "last_updated": "Terakhir diperbarui", - "start_date": "Tanggal mulai", - "due_date": "Tanggal jatuh tempo", - "asc": "Menaik", - "desc": "Menurun", - "updated_on": "Diperbarui pada" - }, - "sort": { - "asc": "Menaik", - "desc": "Menurun", - "created_on": "Dibuat pada", - "updated_on": "Diperbarui pada" - }, - "comments": "Komentar", - "updates": "Pembaruan", - "clear_all": "Hapus semua", - "copied": "Disalin!", - "link_copied": "Tautan disalin!", - "link_copied_to_clipboard": "Tautan disalin ke clipboard", - "copied_to_clipboard": "Tautan item kerja disalin ke clipboard", - "is_copied_to_clipboard": "Item kerja disalin ke clipboard", - "no_links_added_yet": "Belum ada tautan yang ditambahkan", - "add_link": "Tambah tautan", - "links": "Tautan", - "go_to_workspace": "Pergi ke ruang kerja", - "progress": "Kemajuan", - "optional": "Opsional", - "join": "Bergabung", - "go_back": "Kembali", - "continue": "Lanjutkan", - "resend": "Kirim ulang", - "relations": "Hubungan", - "errors": { - "default": { - "title": "Kesalahan!", - "message": "Sesuatu telah salah. Silakan coba lagi." - }, - "required": "Bidang ini diperlukan", - "entity_required": "{entity} diperlukan", - "restricted_entity": "{entity} dibatasi" - }, - "update_link": "Perbarui tautan", - "attach": "Lampirkan", - "create_new": "Buat baru", - "add_existing": "Tambah yang ada", - "type_or_paste_a_url": "Ketik atau tempel URL", - "url_is_invalid": "URL tidak valid", - "display_title": "Judul tampilan", - "link_title_placeholder": "Apa yang ingin Anda lihat pada tautan ini", - "url": "URL", - "side_peek": "Tampilan samping", - "modal": "Modal", - "full_screen": "Layar penuh", - "close_peek_view": "Tutup tampilan peek", - "toggle_peek_view_layout": "Alihkan tata letak tampilan peek", - "options": "Opsi", - "duration": "Durasi", - "today": "Hari ini", - "week": "Minggu", - "month": "Bulan", - "quarter": "Kuartal", - "press_for_commands": "Tekan '/' untuk perintah", - "click_to_add_description": "Klik untuk menambahkan deskripsi", - "search": { - "label": "Pencarian", - "placeholder": "Ketik untuk mencari", - "no_matches_found": "Tidak ada kecocokan ditemukan", - "no_matching_results": "Tidak ada hasil yang cocok" - }, - "actions": { - "edit": "Edit", - "make_a_copy": "Buat salinan", - "open_in_new_tab": "Buka di tab baru", - "copy_link": "Salin tautan", - "archive": "Arsip", - "restore": "Pulihkan", - "delete": "Hapus", - "remove_relation": "Hapus hubungan", - "subscribe": "Berlangganan", - "unsubscribe": "Berhenti berlangganan", - "clear_sorting": "Hapus pengurutan", - "show_weekends": "Tampilkan akhir pekan", - "enable": "Aktifkan", - "disable": "Nonaktifkan" - }, - "name": "Nama", - "discard": "Buang", - "confirm": "Konfirmasi", - "confirming": "Mengonfirmasi", - "read_the_docs": "Baca dokumen", - "default": "Bawaan", - "active": "Aktif", - "enabled": "Diaktifkan", - "disabled": "Dinonaktifkan", - "mandate": "Mandat", - "mandatory": "Wajib", - "yes": "Ya", - "no": "Tidak", - "please_wait": "Silakan tunggu", - "enabling": "Mengaktifkan", - "disabling": "Menonaktifkan", - "beta": "Beta", - "or": "atau", - "next": "Selanjutnya", - "back": "Kembali", - "cancelling": "Membatalkan", - "configuring": "Mengkonfigurasi", - "clear": "Bersihkan", - "import": "Impor", - "connect": "Sambungkan", - "authorizing": "Mengautentikasi", - "processing": "Memproses", - "no_data_available": "Tidak ada data tersedia", - "from": "dari {name}", - "authenticated": "Terautentikasi", - "select": "Pilih", - "upgrade": "Tingkatkan", - "add_seats": "Tambahkan Kursi", - "projects": "Proyek", - "workspace": "Ruang kerja", - "workspaces": "Ruang kerja", - "team": "Tim", - "teams": "Tim", - "entity": "Entitas", - "entities": "Entitas", - "task": "Tugas", - "tasks": "Tugas", - "section": "Bagian", - "sections": "Bagian", - "edit": "Edit", - "connecting": "Menghubungkan", - "connected": "Terhubung", - "disconnect": "Putuskan", - "disconnecting": "Memutuskan", - "installing": "Menginstal", - "install": "Instal", - "reset": "Atur ulang", - "live": "Langsung", - "change_history": "Riwayat Perubahan", - "coming_soon": "Segera hadir", - "member": "Anggota", - "members": "Anggota", - "you": "Anda", - "upgrade_cta": { - "higher_subscription": "Tingkatkan ke langganan yang lebih tinggi", - "talk_to_sales": "Bicaralah dengan Penjualan" - }, - "category": "Kategori", - "categories": "Kategori", - "saving": "Menyimpan", - "save_changes": "Simpan perubahan", - "delete": "Hapus", - "deleting": "Menghapus", - "pending": "Tertunda", - "invite": "Undang", - "view": "Lihat", - "deactivated_user": "Pengguna dinonaktifkan", - "apply": "Terapkan", - "applying": "Terapkan", - "users": "Pengguna", - "admins": "Admin", - "guests": "Tamu", - "on_track": "Sesuai Jalur", - "off_track": "Menyimpang", - "at_risk": "Dalam risiko", - "timeline": "Linimasa", - "completion": "Penyelesaian", - "upcoming": "Mendatang", - "completed": "Selesai", - "in_progress": "Sedang berlangsung", - "planned": "Direncanakan", - "paused": "Dijedaikan", - "no_of": "Jumlah {entity}", - "resolved": "Terselesaikan" - }, - "chart": { - "x_axis": "Sumbu-X", - "y_axis": "Sumbu-Y", - "metric": "Metrik" - }, - "form": { - "title": { - "required": "Judul wajib diisi", - "max_length": "Judul harus kurang dari {length} karakter" - } - }, - "entity": { - "grouping_title": "Pengelompokan {entity}", - "priority": "Prioritas {entity}", - "all": "Semua {entity}", - "drop_here_to_move": "Letakkan di sini untuk memindahkan {entity}", - "delete": { - "label": "Hapus {entity}", - "success": "{entity} berhasil dihapus", - "failed": "Gagal menghapus {entity}" - }, - "update": { - "failed": "Gagal memperbarui {entity}", - "success": "{entity} berhasil diperbarui" - }, - "link_copied_to_clipboard": "Tautan {entity} disalin ke papan klip", - "fetch": { - "failed": "Terjadi kesalahan saat mengambil {entity}" - }, - "add": { - "success": "{entity} berhasil ditambahkan", - "failed": "Terjadi kesalahan saat menambahkan {entity}" - }, - "remove": { - "success": "{entity} berhasil dihapus", - "failed": "Terjadi kesalahan saat menghapus {entity}" - } - }, - "epic": { - "all": "Semua Epik", - "label": "{count, plural, one {Epik} other {Epik}}", - "new": "Epik Baru", - "adding": "Menambahkan epik", - "create": { - "success": "Epik berhasil dibuat" - }, - "add": { - "press_enter": "Tekan 'Enter' untuk menambahkan epik lain", - "label": "Tambahkan Epik" - }, - "title": { - "label": "Judul Epik", - "required": "Judul epik wajib diisi." - } - }, - "issue": { - "label": "{count, plural, one {Item Kerja} other {Item Kerja}}", - "all": "Semua Item Kerja", - "edit": "Edit item kerja", - "title": { - "label": "Judul item kerja", - "required": "Judul item kerja diperlukan." - }, - "add": { - "press_enter": "Tekan 'Enter' untuk menambahkan item kerja lainnya", - "label": "Tambah item kerja", - "cycle": { - "failed": "Item kerja tidak dapat ditambahkan ke siklus. Silakan coba lagi.", - "success": "{count, plural, one {Item Kerja} other {Item Kerja}} berhasil ditambahkan ke siklus.", - "loading": "Menambahkan {count, plural, one {item kerja} other {item kerja}} ke siklus" - }, - "assignee": "Tambah penugasan", - "start_date": "Tambah tanggal mulai", - "due_date": "Tambah tanggal jatuh tempo", - "parent": "Tambah item kerja induk", - "sub_issue": "Tambah sub-item kerja", - "relation": "Tambah hubungan", - "link": "Tambah tautan", - "existing": "Tambah item kerja yang ada" - }, - "remove": { - "label": "Hapus item kerja", - "cycle": { - "loading": "Menghapus item kerja dari siklus", - "success": "Item kerja berhasil dihapus dari siklus.", - "failed": "Item kerja tidak dapat dihapus dari siklus. Silakan coba lagi." - }, - "module": { - "loading": "Menghapus item kerja dari modul", - "success": "Item kerja berhasil dihapus dari modul.", - "failed": "Item kerja tidak dapat dihapus dari modul. Silakan coba lagi." - }, - "parent": { - "label": "Hapus item kerja induk" - } - }, - "new": "Item Kerja Baru", - "adding": "Menambahkan item kerja", - "create": { - "success": "Item kerja berhasil dibuat" - }, - "priority": { - "urgent": "Mendesak", - "high": "Tinggi", - "medium": "Sedang", - "low": "Rendah" - }, - "display": { - "properties": { - "label": "Tampilkan Properti", - "id": "ID", - "issue_type": "Tipe item kerja", - "sub_issue_count": "Jumlah sub-item kerja", - "attachment_count": "Jumlah lampiran", - "created_on": "Dibuat pada", - "sub_issue": "Sub-item kerja", - "work_item_count": "Jumlah item kerja" - }, - "extra": { - "show_sub_issues": "Tampilkan sub-item kerja", - "show_empty_groups": "Tampilkan grup kosong" - } - }, - "layouts": { - "ordered_by_label": "Tata letak ini diurutkan berdasarkan", - "list": "Daftar", - "kanban": "Papan", - "calendar": "Kalender", - "spreadsheet": "Tabel", - "gantt": "Garis Waktu", - "title": { - "list": "Tata Letak Daftar", - "kanban": "Tata Letak Papan", - "calendar": "Tata Letak Kalender", - "spreadsheet": "Tata Letak Tabel", - "gantt": "Tata Letak Garis Waktu" - } - }, - "states": { - "active": "Aktif", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Tambah komentar", - "switch": { - "private": "Beralih ke komentar pribadi", - "public": "Beralih ke komentar publik" - }, - "create": { - "success": "Komentar berhasil dibuat", - "error": "Gagal membuat komentar. Silakan coba lagi nanti." - }, - "update": { - "success": "Komentar berhasil diperbarui", - "error": "Gagal memperbarui komentar. Silakan coba lagi nanti." - }, - "remove": { - "success": "Komentar berhasil dihapus", - "error": "Gagal menghapus komentar. Silakan coba lagi nanti." - }, - "upload": { - "error": "Gagal mengunggah aset. Silakan coba lagi nanti." - }, - "copy_link": { - "success": "Tautan komentar berhasil disalin ke clipboard", - "error": "Gagal menyalin tautan komentar. Silakan coba lagi nanti." - } - }, - "empty_state": { - "issue_detail": { - "title": "Item kerja tidak ada", - "description": "Item kerja yang Anda cari tidak ada, telah diarsipkan, atau telah dihapus.", - "primary_button": { - "text": "Lihat item kerja lainnya" - } - } - }, - "sibling": { - "label": "Item kerja sejawat" - }, - "archive": { - "description": "Hanya item kerja yang selesai atau dibatalkan\n yang dapat diarsipkan", - "label": "Arsip Item kerja", - "confirm_message": "Apakah Anda yakin ingin mengarsipkan item kerja ini? Semua item kerja yang diarsipkan dapat dipulihkan nanti.", - "success": { - "label": "Sukses mengarsipkan", - "message": "Arsip Anda dapat ditemukan di arsip proyek." - }, - "failed": { - "message": "Item kerja tidak dapat diarsipkan. Silakan coba lagi." - } - }, - "restore": { - "success": { - "title": "Sukses memulihkan", - "message": "Item kerja Anda dapat ditemukan di item kerja proyek." - }, - "failed": { - "message": "Item kerja tidak dapat dipulihkan. Silakan coba lagi." - } - }, - "relation": { - "relates_to": "Berhubungan dengan", - "duplicate": "Duplikat dari", - "blocked_by": "Diblokir oleh", - "blocking": "Memblokir" - }, - "copy_link": "Salin tautan item kerja", - "delete": { - "label": "Hapus item kerja", - "error": "Kesalahan saat menghapus item kerja" - }, - "subscription": { - "actions": { - "subscribed": "Item kerja telah berhasil disubscribe", - "unsubscribed": "Item kerja telah berhasil dibatalkan subscribe" - } - }, - "select": { - "error": "Silakan pilih setidaknya satu item kerja", - "empty": "Tidak ada item kerja yang dipilih", - "add_selected": "Tambah item kerja yang dipilih", - "select_all": "Pilih semua item kerja", - "deselect_all": "Batalkan pilihan semua item kerja" - }, - "open_in_full_screen": "Buka item kerja dalam layar penuh" - }, - "attachment": { - "error": "File tidak dapat dilampirkan. Coba unggah lagi.", - "only_one_file_allowed": "Hanya satu file yang dapat diunggah pada satu waktu.", - "file_size_limit": "File harus berukuran {size}MB atau lebih kecil.", - "drag_and_drop": "Seret dan jatuhkan di mana saja untuk mengunggah", - "delete": "Hapus lampiran" - }, - "label": { - "select": "Pilih label", - "create": { - "success": "Label berhasil dibuat", - "failed": "Gagal membuat label", - "already_exists": "Label sudah ada", - "type": "Ketik untuk menambah label baru" - } - }, - "sub_work_item": { - "update": { - "success": "Sub-item kerja berhasil diperbarui", - "error": "Kesalahan saat memperbarui sub-item kerja" - }, - "remove": { - "success": "Sub-item kerja berhasil dihapus", - "error": "Kesalahan saat menghapus sub-item kerja" - }, - "empty_state": { - "sub_list_filters": { - "title": "Anda tidak memiliki sub-item kerja yang cocok dengan filter yang Anda terapkan.", - "description": "Untuk melihat semua sub-item kerja, hapus semua filter yang diterapkan.", - "action": "Hapus filter" - }, - "list_filters": { - "title": "Anda tidak memiliki item kerja yang cocok dengan filter yang Anda terapkan.", - "description": "Untuk melihat semua item kerja, hapus semua filter yang diterapkan.", - "action": "Hapus filter" - } - } - }, - "view": { - "label": "{count, plural, one {Tampilan} other {Tampilan}}", - "create": { - "label": "Buat Tampilan" - }, - "update": { - "label": "Perbarui Tampilan" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Menunggu", - "description": "Menunggu" - }, - "declined": { - "title": "Ditolak", - "description": "Ditolak" - }, - "snoozed": { - "title": "Ditunda", - "description": "{days, plural, one{# hari} other{# hari}} tersisa" - }, - "accepted": { - "title": "Diterima", - "description": "Diterima" - }, - "duplicate": { - "title": "Duplikat", - "description": "Duplikat" - } - }, - "modals": { - "decline": { - "title": "Tolak item kerja", - "content": "Apakah Anda yakin ingin menolak item kerja {value}?" - }, - "delete": { - "title": "Hapus item kerja", - "content": "Apakah Anda yakin ingin menghapus item kerja {value}?", - "success": "Item kerja berhasil dihapus" - } - }, - "errors": { - "snooze_permission": "Hanya admin proyek yang bisa menunda/menghapus penundaan item kerja", - "accept_permission": "Hanya admin proyek yang bisa menerima item kerja", - "decline_permission": "Hanya admin proyek yang bisa menolak item kerja" - }, - "actions": { - "accept": "Terima", - "decline": "Tolak", - "snooze": "Tunda", - "unsnooze": "Hapus penundaan", - "copy": "Salin tautan item kerja", - "delete": "Hapus", - "open": "Buka item kerja", - "mark_as_duplicate": "Tandai sebagai duplikat", - "move": "Pindahkan {value} ke item kerja proyek" - }, - "source": { - "in-app": "dalam aplikasi" - }, - "order_by": { - "created_at": "Dibuat pada", - "updated_at": "Diperbarui pada", - "id": "ID" - }, - "label": "Pendapat", - "page_label": "{workspace} - Pendapat", - "modal": { - "title": "Buat item kerja pendapat" - }, - "tabs": { - "open": "Terbuka", - "closed": "Tutup" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Tidak ada item kerja terbuka", - "description": "Temukan item kerja terbuka di sini. Buat item kerja baru." - }, - "sidebar_closed_tab": { - "title": "Tidak ada item kerja tertutup", - "description": "Semua item kerja yang diterima atau ditolak dapat ditemukan di sini." - }, - "sidebar_filter": { - "title": "Tidak ada item kerja yang cocok", - "description": "Tidak ada item kerja yang cocok dengan filter yang diterapkan dalam pendapat. Buat item kerja baru." - }, - "detail": { - "title": "Pilih item kerja untuk melihat detailnya." - } - } - }, - "workspace_creation": { - "heading": "Buat ruang kerja Anda", - "subheading": "Untuk mulai menggunakan Plane, Anda perlu membuat atau bergabung dengan ruang kerja.", - "form": { - "name": { - "label": "Nama ruang kerja Anda", - "placeholder": "Sesuatu yang familiar dan dapat dikenali selalu lebih baik." - }, - "url": { - "label": "Atur URL ruang kerja Anda", - "placeholder": "Ketik atau tempel URL", - "edit_slug": "Anda hanya dapat mengedit slug URL" - }, - "organization_size": { - "label": "Berapa banyak orang yang akan menggunakan ruang kerja ini?", - "placeholder": "Pilih rentang" - } - }, - "errors": { - "creation_disabled": { - "title": "Hanya admin instansi Anda yang dapat membuat ruang kerja", - "description": "Jika Anda tahu alamat email admin instansi Anda, klik tombol di bawah ini untuk menghubungi mereka.", - "request_button": "Minta admin instansi" - }, - "validation": { - "name_alphanumeric": "Nama ruang kerja hanya boleh berisi (' '), ('-'), ('_') dan karakter alfanumerik.", - "name_length": "Batasi nama Anda hingga 80 karakter.", - "url_alphanumeric": "URL hanya boleh berisi ('-') dan karakter alfanumerik.", - "url_length": "Batasi URL Anda hingga 48 karakter.", - "url_already_taken": "URL ruang kerja sudah diambil!" - } - }, - "request_email": { - "subject": "Meminta ruang kerja baru", - "body": "Hai admin instansi,\n\nTolong buat ruang kerja baru dengan URL [/workspace-name] untuk [tujuan pembuatan ruang kerja].\n\nTerima kasih,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Buat ruang kerja", - "loading": "Membuat ruang kerja" - }, - "toast": { - "success": { - "title": "Sukses", - "message": "Ruang kerja berhasil dibuat" - }, - "error": { - "title": "Kesalahan", - "message": "Ruang kerja tidak dapat dibuat. Silakan coba lagi." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Ikhtisar proyek, aktivitas, dan metrik Anda", - "description": "Selamat datang di Plane, kami sangat senang memiliki Anda di sini. Buat proyek pertama Anda dan lacak item kerja Anda, dan halaman ini akan berubah menjadi ruang yang membantu Anda berkembang. Admin juga akan melihat item yang membantu tim mereka berkembang.", - "primary_button": { - "text": "Bangun proyek pertama Anda", - "comic": { - "title": "Segalanya dimulai dengan proyek di Plane", - "description": "Sebuah proyek bisa menjadi roadmap produk, kampanye pemasaran, atau meluncurkan mobil baru." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analitik", - "page_label": "{workspace} - Analitik", - "open_tasks": "Jumlah tugas terbuka", - "error": "Terjadi kesalahan dalam mengambil data.", - "work_items_closed_in": "Item kerja yang ditutup dalam", - "selected_projects": "Proyek yang dipilih", - "total_members": "Jumlah anggota total", - "total_cycles": "Jumlah siklus total", - "total_modules": "Jumlah modul total", - "pending_work_items": { - "title": "Item kerja yang menunggu", - "empty_state": "Analisis item kerja yang menunggu oleh rekan kerja muncul di sini." - }, - "work_items_closed_in_a_year": { - "title": "Item kerja yang ditutup dalam setahun", - "empty_state": "Tutup item kerja untuk melihat analisis dari item kerja tersebut dalam bentuk grafik." - }, - "most_work_items_created": { - "title": "Paling banyak item kerja yang dibuat", - "empty_state": "Rekan kerja dan jumlah item kerja yang mereka buat muncul di sini." - }, - "most_work_items_closed": { - "title": "Paling banyak item kerja yang ditutup", - "empty_state": "Rekan kerja dan jumlah item kerja yang mereka tutup muncul di sini." - }, - "tabs": { - "scope_and_demand": "Lingkup dan Permintaan", - "custom": "Analitik Kustom" - }, - "empty_state": { - "customized_insights": { - "description": "Item pekerjaan yang ditugaskan kepada Anda, dipecah berdasarkan status, akan muncul di sini.", - "title": "Belum ada data" - }, - "created_vs_resolved": { - "description": "Item pekerjaan yang dibuat dan diselesaikan dari waktu ke waktu akan muncul di sini.", - "title": "Belum ada data" - }, - "project_insights": { - "title": "Belum ada data", - "description": "Item pekerjaan yang ditugaskan kepada Anda, dipecah berdasarkan status, akan muncul di sini." - }, - "general": { - "title": "Lacak kemajuan, beban kerja, dan alokasi. Temukan tren, hapus hambatan, dan percepat pekerjaan", - "description": "Lihat lingkup versus permintaan, perkiraan, dan perluasan lingkup. Dapatkan kinerja berdasarkan anggota tim dan tim, dan pastikan proyek Anda berjalan tepat waktu.", - "primary_button": { - "text": "Mulai proyek pertama Anda", - "comic": { - "title": "Analitik bekerja paling baik dengan Siklus + Modul", - "description": "Pertama, batasi waktu masalah Anda ke dalam Siklus dan, jika Anda bisa, kelompokkan masalah yang lebih dari satu siklus ke dalam Modul. Lihat keduanya di navigasi kiri." - } - } - } - }, - "created_vs_resolved": "Dibuat vs Diselesaikan", - "customized_insights": "Wawasan yang Disesuaikan", - "backlog_work_items": "{entity} backlog", - "active_projects": "Proyek Aktif", - "trend_on_charts": "Tren pada grafik", - "all_projects": "Semua Proyek", - "summary_of_projects": "Ringkasan Proyek", - "project_insights": "Wawasan Proyek", - "started_work_items": "{entity} yang telah dimulai", - "total_work_items": "Total {entity}", - "total_projects": "Total Proyek", - "total_admins": "Total Admin", - "total_users": "Total Pengguna", - "total_intake": "Total Pemasukan", - "un_started_work_items": "{entity} yang belum dimulai", - "total_guests": "Total Tamu", - "completed_work_items": "{entity} yang telah selesai", - "total": "Total {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Proyek} other {Proyek}}", - "create": { - "label": "Tambah Proyek" - }, - "network": { - "label": "Jaringan", - "private": { - "title": "Pribadi", - "description": "Dapat diakses hanya dengan undangan" - }, - "public": { - "title": "Umum", - "description": "Siapa pun di ruang kerja kecuali Tamu dapat bergabung" - } - }, - "error": { - "permission": "Anda tidak memiliki izin untuk melakukan tindakan ini.", - "cycle_delete": "Gagal menghapus siklus", - "module_delete": "Gagal menghapus modul", - "issue_delete": "Gagal menghapus item kerja" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Belum dimulai", - "started": "Dimulai", - "completed": "Selesai", - "cancelled": "Dibatalkan" - }, - "sort": { - "manual": "Manual", - "name": "Nama", - "created_at": "Tanggal dibuat", - "members_length": "Jumlah anggota" - }, - "scope": { - "my_projects": "Proyek saya", - "archived_projects": "Diarsipkan" - }, - "common": { - "months_count": "{months, plural, one{# bulan} other{# bulan}}" - }, - "empty_state": { - "general": { - "title": "Tidak ada proyek aktif", - "description": "Anggap setiap proyek sebagai induk untuk pekerjaan yang terarah pada tujuan. Proyek adalah tempat di mana Pekerjaan, Siklus, dan Modul tinggal dan, bersama rekan-rekan Anda, membantu Anda mencapai tujuan tersebut. Buat proyek baru atau filter untuk proyek yang diarsipkan.", - "primary_button": { - "text": "Mulai proyek pertama Anda", - "comic": { - "title": "Segalanya dimulai dengan proyek di Plane", - "description": "Sebuah proyek bisa menjadi roadmap produk, kampanye pemasaran, atau meluncurkan mobil baru." - } - } - }, - "no_projects": { - "title": "Tidak ada proyek", - "description": "Untuk membuat item kerja atau mengelola pekerjaan Anda, Anda perlu membuat proyek atau menjadi bagian dari salah satunya.", - "primary_button": { - "text": "Mulai proyek pertama Anda", - "comic": { - "title": "Segalanya dimulai dengan proyek di Plane", - "description": "Sebuah proyek bisa menjadi roadmap produk, kampanye pemasaran, atau meluncurkan mobil baru." - } - } - }, - "filter": { - "title": "Tidak ada proyek yang cocok", - "description": "Tidak ada proyek yang terdeteksi dengan kriteria yang cocok. \n Buat proyek baru sebagai gantinya." - }, - "search": { - "description": "Tidak ada proyek yang terdeteksi dengan kriteria yang cocok.\nBuat proyek baru sebagai gantinya" - } - } - }, - "workspace_views": { - "add_view": "Tambah tampilan", - "empty_state": { - "all-issues": { - "title": "Tidak ada item kerja dalam proyek", - "description": "Proyek pertama sudah selesai! Sekarang, bagi pekerjaan Anda menjadi bagian yang dapat dilacak dengan item kerja. Mari kita mulai!", - "primary_button": { - "text": "Buat item kerja baru" - } - }, - "assigned": { - "title": "Belum ada item kerja", - "description": "Item kerja yang ditugaskan kepada Anda dapat dilacak dari sini.", - "primary_button": { - "text": "Buat item kerja baru" - } - }, - "created": { - "title": "Belum ada item kerja", - "description": "Semua item kerja yang dibuat oleh Anda akan muncul di sini, lacak mereka langsung di sini.", - "primary_button": { - "text": "Buat item kerja baru" - } - }, - "subscribed": { - "title": "Belum ada item kerja", - "description": "Langgan item kerja yang Anda minati, lacak semuanya di sini." - }, - "custom-view": { - "title": "Belum ada item kerja", - "description": "Item kerja yang menerapkan filter ini, lacak semuanya di sini." - } - } - }, - "workspace_settings": { - "label": "Pengaturan ruang kerja", - "page_label": "{workspace} - Pengaturan Umum", - "key_created": "Kunci dibuat", - "copy_key": "Salin dan simpan kunci rahasia ini di Halaman Plane. Anda tidak dapat melihat kunci ini setelah Anda menekan Tutup. File CSV yang berisi kunci telah diunduh.", - "token_copied": "Token disalin ke clipboard.", - "settings": { - "general": { - "title": "Umum", - "upload_logo": "Unggah logo", - "edit_logo": "Edit logo", - "name": "Nama ruang kerja", - "company_size": "Ukuran perusahaan", - "url": "URL ruang kerja", - "update_workspace": "Perbarui ruang kerja", - "delete_workspace": "Hapus ruang kerja ini", - "delete_workspace_description": "Ketika menghapus ruang kerja, semua data dan sumber daya di dalam ruang kerja tersebut akan dihapus secara permanen dan tidak dapat dipulihkan.", - "delete_btn": "Hapus ruang kerja ini", - "delete_modal": { - "title": "Apakah Anda yakin ingin menghapus ruang kerja ini?", - "description": "Anda memiliki percobaan aktif untuk salah satu rencana berbayar kami. Silakan batalkan terlebih dahulu untuk melanjutkan.", - "dismiss": "Tutup", - "cancel": "Batalkan percobaan", - "success_title": "Ruang kerja dihapus.", - "success_message": "Anda akan segera diarahkan ke halaman profil Anda.", - "error_title": "Itu tidak berhasil.", - "error_message": "Silakan coba lagi." - }, - "errors": { - "name": { - "required": "Nama diperlukan", - "max_length": "Nama ruang kerja tidak boleh lebih dari 80 karakter" - }, - "company_size": { - "required": "Ukuran perusahaan diperlukan", - "select_a_range": "Pilih ukuran organisasi" - } - } - }, - "members": { - "title": "Anggota", - "add_member": "Tambah anggota", - "pending_invites": "Undangan yang tertunda", - "invitations_sent_successfully": "Undangan berhasil dikirim", - "leave_confirmation": "Apakah Anda yakin ingin meninggalkan ruang kerja? Anda tidak akan lagi memiliki akses ke ruang kerja ini. Tindakan ini tidak dapat dibatalkan.", - "details": { - "full_name": "Nama lengkap", - "display_name": "Nama tampilan", - "email_address": "Alamat email", - "account_type": "Tipe akun", - "authentication": "Autentikasi", - "joining_date": "Tanggal bergabung" - }, - "modal": { - "title": "Undang orang untuk berkolaborasi", - "description": "Undang orang untuk berkolaborasi di ruang kerja Anda.", - "button": "Kirim undangan", - "button_loading": "Mengirim undangan", - "placeholder": "name@company.com", - "errors": { - "required": "Kami perlu alamat email untuk mengundang mereka.", - "invalid": "Email tidak valid" - } - } - }, - "billing_and_plans": { - "title": "Penagihan & Rencana", - "current_plan": "Rencana saat ini", - "free_plan": "Anda saat ini menggunakan rencana gratis", - "view_plans": "Lihat rencana" - }, - "exports": { - "title": "Ekspor", - "exporting": "Mengeskpor", - "previous_exports": "Ekspor sebelumnya", - "export_separate_files": "Ekspor data ke file terpisah", - "modal": { - "title": "Ekspor ke", - "toasts": { - "success": { - "title": "Ekspor berhasil", - "message": "Anda akan dapat mengunduh {entity} yang diekspor dari ekspor sebelumnya." - }, - "error": { - "title": "Ekspor gagal", - "message": "Ekspor tidak berhasil. Silakan coba lagi." - } - } - } - }, - "webhooks": { - "title": "Webhook", - "add_webhook": "Tambah webhook", - "modal": { - "title": "Buat webhook", - "details": "Detail webhook", - "payload": "Payload URL", - "question": "Peristiwa apa yang ingin Anda picu untuk webhook ini?", - "error": "URL diperlukan" - }, - "secret_key": { - "title": "Kunci rahasia", - "message": "Hasilkan token untuk masuk ke payload webhook" - }, - "options": { - "all": "Kirim saya semuanya", - "individual": "Pilih peristiwa individu" - }, - "toasts": { - "created": { - "title": "Webhook dibuat", - "message": "Webhook telah berhasil dibuat" - }, - "not_created": { - "title": "Webhook tidak dibuat", - "message": "Webhook tidak dapat dibuat" - }, - "updated": { - "title": "Webhook diperbarui", - "message": "Webhook telah berhasil diperbarui" - }, - "not_updated": { - "title": "Webhook tidak diperbarui", - "message": "Webhook tidak dapat diperbarui" - }, - "removed": { - "title": "Webhook dihapus", - "message": "Webhook telah berhasil dihapus" - }, - "not_removed": { - "title": "Webhook tidak dihapus", - "message": "Webhook tidak dapat dihapus" - }, - "secret_key_copied": { - "message": "Kunci rahasia disalin ke clipboard." - }, - "secret_key_not_copied": { - "message": "Terjadi kesalahan saat menyalin kunci rahasia." - } - } - }, - "api_tokens": { - "title": "Token API", - "add_token": "Tambah token API", - "create_token": "Buat token", - "never_expires": "Tidak pernah kedaluwarsa", - "generate_token": "Hasilkan token", - "generating": "Menghasilkan", - "delete": { - "title": "Hapus token API", - "description": "Setiap aplikasi yang menggunakan token ini tidak akan memiliki akses ke data Plane. Tindakan ini tidak dapat dibatalkan.", - "success": { - "title": "Sukses!", - "message": "Token API telah berhasil dihapus" - }, - "error": { - "title": "Kesalahan!", - "message": "Token API tidak dapat dihapus" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Belum ada token API yang dibuat", - "description": "API Plane dapat digunakan untuk mengintegrasikan data Anda di Plane dengan sistem eksternal mana pun. Buat token untuk memulai." - }, - "webhooks": { - "title": "Belum ada webhook yang ditambahkan", - "description": "Buat webhook untuk menerima pembaruan waktu nyata dan mengotomatiskan tindakan." - }, - "exports": { - "title": "Belum ada ekspor", - "description": "Setiap kali Anda mengekspor, Anda juga akan memiliki salinan di sini untuk referensi." - }, - "imports": { - "title": "Belum ada impor", - "description": "Temukan semua impor Anda sebelumnya di sini dan unduh." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Pekerjaan Anda", - "work": "Pekerjaan", - "details": { - "joined_on": "Bergabung pada", - "time_zone": "Zona waktu" - }, - "stats": { - "workload": "Beban kerja", - "overview": "Ikhtisar", - "created": "Item kerja yang dibuat", - "assigned": "Item kerja yang ditugaskan", - "subscribed": "Item kerja yang disubscribe", - "state_distribution": { - "title": "Item kerja berdasarkan status", - "empty": "Buat item kerja untuk melihatnya berdasarkan status dalam grafik untuk analisis yang lebih baik." - }, - "priority_distribution": { - "title": "Item kerja berdasarkan Prioritas", - "empty": "Buat item kerja untuk melihatnya berdasarkan prioritas dalam grafik untuk analisis yang lebih baik." - }, - "recent_activity": { - "title": "Aktivitas terkini", - "empty": "Kami tidak dapat menemukan data. Silakan lihat input Anda", - "button": "Unduh aktivitas hari ini", - "button_loading": "Mengunduh" - } - }, - "actions": { - "profile": "Profil", - "security": "Keamanan", - "activity": "Aktivitas", - "appearance": "Tampilan", - "notifications": "Notifikasi" - }, - "tabs": { - "summary": "Ringkasan", - "assigned": "Ditugaskan", - "created": "Dibuat", - "subscribed": "Disubscribe", - "activity": "Aktivitas" - }, - "empty_state": { - "activity": { - "title": "Belum ada aktivitas", - "description": "Mulai dengan membuat item kerja baru! Tambahkan detail dan properti. Jelajahi lebih lanjut di Plane untuk melihat aktivitas Anda." - }, - "assigned": { - "title": "Tidak ada item kerja yang ditugaskan kepada Anda", - "description": "Item kerja yang ditugaskan kepada Anda dapat dilacak dari sini." - }, - "created": { - "title": "Belum ada item kerja", - "description": "Semua item kerja yang dibuat oleh Anda hadir di sini, dan lacak langsung di sini." - }, - "subscribed": { - "title": "Belum ada item kerja", - "description": "Langganan item kerja yang Anda minati, lacak semuanya di sini." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Masukkan ID proyek", - "please_select_a_timezone": "Silakan pilih zona waktu", - "archive_project": { - "title": "Arsipkan proyek", - "description": "Mengarsipkan proyek akan menghapus proyek Anda dari navigasi samping meskipun Anda masih dapat mengaksesnya dari halaman proyek Anda. Anda dapat memulihkan proyek tersebut atau menghapusnya kapan saja.", - "button": "Arsipkan proyek" - }, - "delete_project": { - "title": "Hapus proyek", - "description": "Ketika menghapus proyek, semua data dan sumber daya di dalam proyek tersebut akan dihapus secara permanen dan tidak dapat dipulihkan.", - "button": "Hapus proyek saya" - }, - "toast": { - "success": "Proyek berhasil diperbarui", - "error": "Proyek tidak dapat diperbarui. Silakan coba lagi." - } - }, - "members": { - "label": "Anggota", - "project_lead": "Pemimpin proyek", - "default_assignee": "Penugas default", - "guest_super_permissions": { - "title": "Beri akses tampilan untuk semua item kerja untuk pengguna tamu:", - "sub_heading": "Ini akan memungkinkan tamu untuk memiliki akses tampilan ke semua item kerja proyek." - }, - "invite_members": { - "title": "Undang anggota", - "sub_heading": "Undang anggota untuk bekerja di proyek Anda.", - "select_co_worker": "Pilih rekan kerja" - } - }, - "states": { - "describe_this_state_for_your_members": "Jelaskan status ini untuk anggota Anda.", - "empty_state": { - "title": "Tidak ada status yang tersedia untuk grup {groupKey}", - "description": "Silakan buat status baru" - } - }, - "labels": { - "label_title": "Judul label", - "label_title_is_required": "Judul label diperlukan", - "label_max_char": "Nama label tidak boleh lebih dari 255 karakter", - "toast": { - "error": "Kesalahan saat memperbarui label" - } - }, - "estimates": { - "label": "Perkiraan", - "title": "Aktifkan perkiraan untuk proyek saya", - "description": "Ini membantu Anda dalam mengkomunikasikan kompleksitas dan beban kerja tim.", - "no_estimate": "Tidak ada perkiraan", - "new": "Sistem perkiraan baru", - "create": { - "custom": "Kustom", - "start_from_scratch": "Mulai dari awal", - "choose_template": "Pilih template", - "choose_estimate_system": "Pilih sistem perkiraan", - "enter_estimate_point": "Masukkan perkiraan", - "step": "Langkah {step} dari {total}", - "label": "Buat perkiraan" - }, - "toasts": { - "created": { - "success": { - "title": "Perkiraan dibuat", - "message": "Perkiraan telah berhasil dibuat" - }, - "error": { - "title": "Pembuatan perkiraan gagal", - "message": "Kami tidak dapat membuat perkiraan baru, silakan coba lagi." - } - }, - "updated": { - "success": { - "title": "Perkiraan dimodifikasi", - "message": "Perkiraan telah diperbarui dalam proyek Anda." - }, - "error": { - "title": "Modifikasi perkiraan gagal", - "message": "Kami tidak dapat memodifikasi perkiraan, silakan coba lagi" - } - }, - "enabled": { - "success": { - "title": "Berhasil!", - "message": "Perkiraan telah diaktifkan." - } - }, - "disabled": { - "success": { - "title": "Berhasil!", - "message": "Perkiraan telah dinonaktifkan." - }, - "error": { - "title": "Kesalahan!", - "message": "Perkiraan tidak dapat dinonaktifkan. Silakan coba lagi" - } - } - }, - "validation": { - "min_length": "Perkiraan harus lebih besar dari 0.", - "unable_to_process": "Kami tidak dapat memproses permintaan Anda, silakan coba lagi.", - "numeric": "Perkiraan harus berupa nilai numerik.", - "character": "Perkiraan harus berupa nilai karakter.", - "empty": "Nilai perkiraan tidak boleh kosong.", - "already_exists": "Nilai perkiraan sudah ada.", - "unsaved_changes": "Anda memiliki beberapa perubahan yang belum disimpan, Harap simpan sebelum mengklik selesai", - "remove_empty": "Perkiraan tidak boleh kosong. Masukkan nilai di setiap bidang atau hapus yang tidak memiliki nilai." - }, - "systems": { - "points": { - "label": "Poin", - "fibonacci": "Fibonacci", - "linear": "Linear", - "squares": "Kuadrat", - "custom": "Kustom" - }, - "categories": { - "label": "Kategori", - "t_shirt_sizes": "Ukuran Baju", - "easy_to_hard": "Mudah ke sulit", - "custom": "Kustom" - }, - "time": { - "label": "Waktu", - "hours": "Jam" - } - } - }, - "automations": { - "label": "Otomatisasi", - "auto-archive": { - "title": "Arsip otomatis item kerja yang ditutup", - "description": "Plane akan mengarsipkan secara otomatis item kerja yang telah selesai atau dibatalkan.", - "duration": "Arsip otomatis item kerja yang ditutup selama" - }, - "auto-close": { - "title": "Tutup otomatis item kerja", - "description": "Plane akan menutup secara otomatis item kerja yang belum selesai atau dibatalkan.", - "duration": "Tutup otomatis item kerja yang tidak aktif selama", - "auto_close_status": "Status penutupan otomatis" - } - }, - "empty_state": { - "labels": { - "title": "Belum ada label", - "description": "Buat label untuk membantu mengatur dan memfilter item kerja dalam proyek Anda." - }, - "estimates": { - "title": "Belum ada sistem perkiraan", - "description": "Buat serangkaian perkiraan untuk mengkomunikasikan jumlah pekerjaan per item kerja.", - "primary_button": "Tambah sistem perkiraan" - } - } - }, - "project_cycles": { - "add_cycle": "Tambah siklus", - "more_details": "Detail lebih lanjut", - "cycle": "Siklus", - "update_cycle": "Perbarui siklus", - "create_cycle": "Buat siklus", - "no_matching_cycles": "Tidak ada siklus yang cocok", - "remove_filters_to_see_all_cycles": "Hapus filter untuk melihat semua siklus", - "remove_search_criteria_to_see_all_cycles": "Hapus kriteria pencarian untuk melihat semua siklus", - "only_completed_cycles_can_be_archived": "Hanya siklus yang diselesaikan yang dapat diarsipkan", - "active_cycle": { - "label": "Siklus aktif", - "progress": "Kemajuan", - "chart": "Grafik burndown", - "priority_issue": "Item kerja prioritas", - "assignees": "Penugasan", - "issue_burndown": "Burndown item kerja", - "ideal": "Ideal", - "current": "Sekarang", - "labels": "Label" - }, - "upcoming_cycle": { - "label": "Siklus mendatang" - }, - "completed_cycle": { - "label": "Siklus selesai" - }, - "status": { - "days_left": "Hari tersisa", - "completed": "Selesai", - "yet_to_start": "Belum dimulai", - "in_progress": "Sedang berlangsung", - "draft": "Draf" - }, - "action": { - "restore": { - "title": "Pulihkan siklus", - "success": { - "title": "Siklus dipulihkan", - "description": "Siklus telah dipulihkan." - }, - "failed": { - "title": "Pemulihan siklus gagal", - "description": "Siklus tidak dapat dipulihkan. Silakan coba lagi." - } - }, - "favorite": { - "loading": "Menambahkan siklus ke favorit", - "success": { - "description": "Siklus ditambahkan ke favorit.", - "title": "Sukses!" - }, - "failed": { - "description": "Gagal menambahkan siklus ke favorit. Silakan coba lagi.", - "title": "Kesalahan!" - } - }, - "unfavorite": { - "loading": "Menghapus siklus dari favorit", - "success": { - "description": "Siklus dihapus dari favorit.", - "title": "Sukses!" - }, - "failed": { - "description": "Gagal menghapus siklus dari favorit. Silakan coba lagi.", - "title": "Kesalahan!" - } - }, - "update": { - "loading": "Memperbarui siklus", - "success": { - "description": "Siklus berhasil diperbarui.", - "title": "Sukses!" - }, - "failed": { - "description": "Kesalahan saat memperbarui siklus. Silakan coba lagi.", - "title": "Kesalahan!" - }, - "error": { - "already_exists": "Anda sudah memiliki siklus pada tanggal yang diberikan, jika Anda ingin membuat siklus draf, Anda dapat melakukannya dengan menghapus kedua tanggal tersebut." - } - } - }, - "empty_state": { - "general": { - "title": "Kelompokkan dan bagi pekerjaan Anda dalam Siklus.", - "description": "Pecah pekerjaan menjadi bagian yang dibatasi waktu, kerjakan mundur dari tenggat waktu proyek Anda untuk menetapkan tanggal, dan buat kemajuan nyata sebagai tim.", - "primary_button": { - "text": "Tetapkan siklus pertama Anda", - "comic": { - "title": "Siklus adalah batas waktu berulang.", - "description": "Sprint, iterasi, dan istilah lain apa pun yang Anda gunakan untuk pelacakan pekerjaan mingguan atau dua mingguan adalah siklus." - } - } - }, - "no_issues": { - "title": "Tidak ada item kerja yang ditambahkan ke siklus", - "description": "Tambahkan atau buat item kerja yang ingin Anda batasi waktu dan kirim dalam siklus ini", - "primary_button": { - "text": "Buat item kerja baru" - }, - "secondary_button": { - "text": "Tambah item kerja yang ada" - } - }, - "completed_no_issues": { - "title": "Tidak ada item kerja dalam siklus", - "description": "Tidak ada item kerja dalam siklus. Item kerja baik ditransfer atau disembunyikan. Untuk melihat item kerja yang disembunyikan jika ada, perbarui properti tampilan Anda sesuai." - }, - "active": { - "title": "Tidak ada siklus aktif", - "description": "Siklus aktif mencakup periode apa pun yang mencakup tanggal hari ini dalam rentangnya. Temukan kemajuan dan detail siklus aktif di sini." - }, - "archived": { - "title": "Belum ada siklus yang diarsipkan", - "description": "Untuk membersihkan proyek Anda, arsipkan siklus yang telah diselesaikan. Temukan di sini setelah diarsipkan." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Buat item kerja dan tugaskan kepada seseorang, bahkan kepada diri Anda sendiri", - "description": "Anggap item kerja sebagai pekerjaan, tugas, atau JTBD. Yang kami suka. Item kerja dan sub-item kerjanya biasanya merupakan tindakan berbasis waktu yang ditugaskan kepada anggota tim Anda. Tim Anda membuat, menetapkan, dan menyelesaikan item kerja untuk memindahkan proyek Anda menuju tujuannya.", - "primary_button": { - "text": "Buat item kerja pertama Anda", - "comic": { - "title": "Item kerja adalah blok bangunan di Plane.", - "description": "Mendesain ulang UI Plane, Mengganti merek perusahaan, atau Meluncurkan sistem injeksi bahan bakar baru adalah contoh item kerja yang kemungkinan besar memiliki sub-item kerja." - } - } - }, - "no_archived_issues": { - "title": "Belum ada item kerja yang diarsipkan", - "description": "Secara manual atau melalui otomatisasi, Anda dapat mengarsipkan item kerja yang telah selesai atau dibatalkan. Temukan di sini setelah diarsipkan.", - "primary_button": { - "text": "Tetapkan otomatisasi" - } - }, - "issues_empty_filter": { - "title": "Tidak ada item kerja ditemukan yang cocok dengan filter yang diterapkan", - "secondary_button": { - "text": "Bersihkan semua filter" - } - } - } - }, - "project_module": { - "add_module": "Tambah Modul", - "update_module": "Perbarui Modul", - "create_module": "Buat Modul", - "archive_module": "Arsipkan Modul", - "restore_module": "Pulihkan Modul", - "delete_module": "Hapus modul", - "empty_state": { - "general": { - "title": "Peta tonggak proyek Anda ke Modul dan lacak pekerjaan terakumulasi dengan mudah.", - "description": "Sekelompok item kerja yang tergolong dalam induk yang logis dan hierarkis membentuk satu modul. Anggap saja mereka sebagai cara untuk melacak pekerjaan berdasarkan tonggak proyek. Mereka memiliki periode dan tenggat waktu sendiri serta analitik untuk membantu Anda melihat seberapa dekat atau jauh Anda dari tonggak tersebut.", - "primary_button": { - "text": "Buat modul pertama Anda", - "comic": { - "title": "Modul membantu mengelompokkan pekerjaan menurut hierarki.", - "description": "Modul kereta, modul sasis, dan modul gudang adalah contoh bagus dari pengelompokan ini." - } - } - }, - "no_issues": { - "title": "Tidak ada item kerja dalam modul", - "description": "Buat atau tambahkan item kerja yang ingin Anda capai sebagai bagian dari modul ini", - "primary_button": { - "text": "Buat item kerja baru" - }, - "secondary_button": { - "text": "Tambahkan item kerja yang ada" - } - }, - "archived": { - "title": "Belum ada Modul yang diarsipkan", - "description": "Untuk membersihkan proyek Anda, arsipkan modul yang telah selesai atau dibatalkan. Temukan di sini setelah diarsipkan." - }, - "sidebar": { - "in_active": "Modul ini belum aktif.", - "invalid_date": "Tanggal tidak valid. Silakan masukkan tanggal yang valid." - } - }, - "quick_actions": { - "archive_module": "Arsipkan modul", - "archive_module_description": "Hanya modul yang telah diselesaikan atau dibatalkan\n yang dapat diarsipkan.", - "delete_module": "Hapus modul" - }, - "toast": { - "copy": { - "success": "Tautan modul disalin ke clipboard" - }, - "delete": { - "success": "Modul berhasil dihapus", - "error": "Gagal menghapus modul" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Simpan tampilan yang difilter untuk proyek Anda. Buat sebanyak yang Anda perlukan", - "description": "Tampilan adalah sekumpulan filter yang disimpan yang Anda gunakan secara sering atau ingin akses mudah. Semua rekan Anda dalam proyek dapat melihat tampilan semua orang dan memilih yang paling sesuai dengan kebutuhan mereka.", - "primary_button": { - "text": "Buat tampilan pertama Anda", - "comic": { - "title": "Tampilan bekerja berdasarkan properti item kerja.", - "description": "Anda dapat membuat tampilan dari sini dengan sebanyak mungkin properti sebagai filter yang Anda anggap sesuai." - } - } - }, - "filter": { - "title": "Tidak ada tampilan yang cocok", - "description": "Tidak ada tampilan yang cocok dengan kriteria pencarian. \n Buat tampilan baru sebagai gantinya." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Tulis catatan, dokumen, atau seluruh basis pengetahuan. Dapatkan Galileo, asisten AI Plane, untuk membantu Anda memulai", - "description": "Halaman adalah ruang pemikiran di Plane. Catat notul rapat, format dengan mudah, sertakan item kerja, tata letak menggunakan perpustakaan komponen, dan simpan semua di dalam konteks proyek Anda. Untuk menyelesaikan dokumen dengan cepat, panggil Galileo, AI Plane, dengan pintasan atau dengan mengklik tombol.", - "primary_button": { - "text": "Buat halaman pertama Anda" - } - }, - "private": { - "title": "Belum ada halaman pribadi", - "description": "Simpan pemikiran pribadi Anda di sini. Ketika Anda sudah siap untuk berbagi, tim hanya seklik jarak.", - "primary_button": { - "text": "Buat halaman pertama Anda" - } - }, - "public": { - "title": "Belum ada halaman publik", - "description": "Lihat halaman yang dibagikan dengan semua orang di proyek Anda tepat di sini.", - "primary_button": { - "text": "Buat halaman pertama Anda" - } - }, - "archived": { - "title": "Belum ada halaman yang diarsipkan", - "description": "Arsipkan halaman yang tidak ada dalam radar Anda. Akses di sini saat diperlukan." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Tidak ada hasil ditemukan" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Tidak ada item kerja yang cocok ditemukan" - }, - "no_issues": { - "title": "Tidak ada item kerja ditemukan" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Belum ada komentar", - "description": "Komentar dapat digunakan sebagai ruang diskusi dan tindak lanjut untuk item kerja" - } - } - }, - "notification": { - "label": "Kotak Masuk", - "page_label": "{workspace} - Kotak Masuk", - "options": { - "mark_all_as_read": "Tandai semua sebagai dibaca", - "mark_read": "Tandai sebagai dibaca", - "mark_unread": "Tandai sebagai tidak dibaca", - "refresh": "Segarkan", - "filters": "Filter Kotak Masuk", - "show_unread": "Tampilkan yang belum dibaca", - "show_snoozed": "Tampilkan yang ditunda", - "show_archived": "Tampilkan yang diarsipkan", - "mark_archive": "Arsipkan", - "mark_unarchive": "Hapus arsip", - "mark_snooze": "Tunda", - "mark_unsnooze": "Hapus tunda" - }, - "toasts": { - "read": "Notifikasi ditandai sebagai dibaca", - "unread": "Notifikasi ditandai sebagai tidak dibaca", - "archived": "Notifikasi ditandai sebagai diarsipkan", - "unarchived": "Notifikasi ditandai sebagai dihapus arsip", - "snoozed": "Notifikasi ditunda", - "unsnoozed": "Notifikasi dihapus tunda" - }, - "empty_state": { - "detail": { - "title": "Pilih untuk melihat detail." - }, - "all": { - "title": "Tidak ada item kerja yang ditugaskan", - "description": "Pembaruan untuk item kerja yang ditugaskan kepada Anda dapat dilihat di sini" - }, - "mentions": { - "title": "Tidak ada item kerja yang ditugaskan", - "description": "Pembaruan untuk item kerja yang ditugaskan kepada Anda dapat dilihat di sini" - } - }, - "tabs": { - "all": "Semua", - "mentions": "Sebut" - }, - "filter": { - "assigned": "Ditugaskan untuk saya", - "created": "Dibuat oleh saya", - "subscribed": "Disubscribe oleh saya" - }, - "snooze": { - "1_day": "1 hari", - "3_days": "3 hari", - "5_days": "5 hari", - "1_week": "1 minggu", - "2_weeks": "2 minggu", - "custom": "Kustom" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Tambahkan item kerja ke siklus untuk melihat kemajuannya" - }, - "chart": { - "title": "Tambahkan item kerja ke siklus untuk melihat grafik burndown." - }, - "priority_issue": { - "title": "Amati item kerja prioritas yang ditangani dalam siklus pada pandangan pertama." - }, - "assignee": { - "title": "Tambahkan penugasan ke item kerja untuk melihat pembagian kerja berdasarkan penugasan." - }, - "label": { - "title": "Tambahkan label ke item kerja untuk melihat pembagian kerja berdasarkan label." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Intake tidak diaktifkan untuk proyek ini.", - "description": "Intake membantu Anda mengelola permintaan yang masuk ke proyek Anda dan menambahkannya sebagai item kerja dalam alur kerja Anda. Aktifkan intake dari pengaturan proyek untuk mengelola permintaan.", - "primary_button": { - "text": "Kelola fitur" - } - }, - "cycle": { - "title": "Siklus tidak diaktifkan untuk proyek ini.", - "description": "Pecah pekerjaan menjadi bagian yang dibatasi waktu, kerjakan mundur dari tenggat waktu proyek Anda untuk menetapkan tanggal, dan buat kemajuan nyata sebagai tim. Aktifkan fitur siklus untuk proyek Anda agar dapat mulai menggunakannya.", - "primary_button": { - "text": "Kelola fitur" - } - }, - "module": { - "title": "Modul tidak diaktifkan untuk proyek ini.", - "description": "Modul adalah blok bangunan dari proyek Anda. Aktifkan modul dari pengaturan proyek untuk mulai menggunakannya.", - "primary_button": { - "text": "Kelola fitur" - } - }, - "page": { - "title": "Halaman tidak diaktifkan untuk proyek ini.", - "description": "Halaman adalah blok bangunan dari proyek Anda. Aktifkan halaman dari pengaturan proyek untuk mulai menggunakannya.", - "primary_button": { - "text": "Kelola fitur" - } - }, - "view": { - "title": "Tampilan tidak diaktifkan untuk proyek ini.", - "description": "Tampilan adalah blok bangunan dari proyek Anda. Aktifkan tampilan dari pengaturan proyek untuk mulai menggunakannya.", - "primary_button": { - "text": "Kelola fitur" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Draf item kerja", - "empty_state": { - "title": "Item kerja setengah jadi, dan segera, komentar akan muncul di sini.", - "description": "Untuk mencoba ini, mulai dengan menambahkan item kerja dan tinggalkan di tengah jalan atau buat draf pertama Anda di bawah ini. 😉", - "primary_button": { - "text": "Buat draf pertama Anda" - } - }, - "delete_modal": { - "title": "Hapus draf", - "description": "Apakah Anda yakin ingin menghapus draf ini? Tindakan ini tidak dapat dibatalkan." - }, - "toasts": { - "created": { - "success": "Draf berhasil dibuat", - "error": "Item kerja tidak dapat dibuat. Silakan coba lagi." - }, - "deleted": { - "success": "Draf berhasil dihapus" - } - } - }, - "stickies": { - "title": "Catatan tempel Anda", - "placeholder": "klik untuk mengetik di sini", - "all": "Semua catatan tempel", - "no-data": "Tuliskan sebuah ide, tangkap momen aha, atau catat pemikiran brilian. Tambahkan catatan tempel untuk memulai.", - "add": "Tambah catatan tempel", - "search_placeholder": "Cari berdasarkan judul", - "delete": "Hapus catatan tempel", - "delete_confirmation": "Apakah Anda yakin ingin menghapus catatan tempel ini?", - "empty_state": { - "simple": "Tuliskan sebuah ide, tangkap momen aha, atau catat pemikiran brilian. Tambahkan catatan tempel untuk memulai.", - "general": { - "title": "Catatan tempel adalah catatan cepat dan tugas yang Anda buat secara langsung.", - "description": "Tangkap pemikiran dan ide Anda dengan mudah dengan membuat catatan tempel yang dapat Anda akses kapan saja dan dari mana saja.", - "primary_button": { - "text": "Tambah catatan tempel" - } - }, - "search": { - "title": "Itu tidak cocok dengan salah satu catatan tempel Anda.", - "description": "Coba istilah yang berbeda atau beri tahu kami\njika Anda yakin pencarian Anda benar. ", - "primary_button": { - "text": "Tambah catatan tempel" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Nama catatan tempel tidak boleh lebih dari 100 karakter.", - "already_exists": "Sudah ada catatan tempel dengan tidak ada deskripsi" - }, - "created": { - "title": "Catatan tempel berhasil dibuat", - "message": "Catatan tempel telah berhasil dibuat" - }, - "not_created": { - "title": "Catatan tempel tidak dibuat", - "message": "Catatan tempel tidak dapat dibuat" - }, - "updated": { - "title": "Catatan tempel diperbarui", - "message": "Catatan tempel telah berhasil diperbarui" - }, - "not_updated": { - "title": "Catatan tempel tidak diperbarui", - "message": "Catatan tempel tidak dapat diperbarui" - }, - "removed": { - "title": "Catatan tempel dihapus", - "message": "Catatan tempel telah berhasil dihapus" - }, - "not_removed": { - "title": "Catatan tempel tidak dihapus", - "message": "Catatan tempel tidak dapat dihapus" - } - } - }, - "role_details": { - "guest": { - "title": "Tamu", - "description": "Anggota eksternal organisasi dapat diundang sebagai tamu." - }, - "member": { - "title": "Anggota", - "description": "Kemampuan untuk membaca, menulis, mengedit, dan menghapus entitas di dalam proyek, siklus, dan modul" - }, - "admin": { - "title": "Admin", - "description": "Semua izin diatur ke true dalam ruang kerja." - } - }, - "user_roles": { - "product_or_project_manager": "Manajer Produk / Proyek", - "development_or_engineering": "Pengembangan / Rekayasa", - "founder_or_executive": "Pendiri / Eksekutif", - "freelancer_or_consultant": "Freelancer / Konsultan", - "marketing_or_growth": "Pemasaran / Pertumbuhan", - "sales_or_business_development": "Penjualan / Pengembangan Bisnis", - "support_or_operations": "Dukungan / Operasi", - "student_or_professor": "Mahasiswa / Profesor", - "human_resources": "Sumber Daya Manusia", - "other": "Lainnya" - }, - "importer": { - "github": { - "title": "Github", - "description": "Impor item kerja dari repositori GitHub dan sinkronkan." - }, - "jira": { - "title": "Jira", - "description": "Impor item kerja dan epik dari proyek dan epik Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Ekspor item kerja ke file CSV.", - "short_description": "Ekspor sebagai csv" - }, - "excel": { - "title": "Excel", - "description": "Ekspor item kerja ke file Excel.", - "short_description": "Ekspor sebagai excel" - }, - "xlsx": { - "title": "Excel", - "description": "Ekspor item kerja ke file Excel.", - "short_description": "Ekspor sebagai excel" - }, - "json": { - "title": "JSON", - "description": "Ekspor item kerja ke file JSON.", - "short_description": "Ekspor sebagai json" - } - }, - "default_global_view": { - "all_issues": "Semua item kerja", - "assigned": "Ditugaskan", - "created": "Dibuat", - "subscribed": "Disubscribe" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Preferensi sistem" - }, - "light": { - "label": "Cerah" - }, - "dark": { - "label": "Gelap" - }, - "light_contrast": { - "label": "Cerah kontras tinggi" - }, - "dark_contrast": { - "label": "Gelap kontras tinggi" - }, - "custom": { - "label": "Tema kustom" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Direncanakan", - "in_progress": "Dalam Proses", - "paused": "Dijeda", - "completed": "Selesai", - "cancelled": "Dibatalkan" - }, - "layout": { - "list": "Tata letak daftar", - "board": "Tata letak galeri", - "timeline": "Tata letak garis waktu" - }, - "order_by": { - "name": "Nama", - "progress": "Kemajuan", - "issues": "Jumlah item kerja", - "due_date": "Tanggal jatuh tempo", - "created_at": "Tanggal dibuat", - "manual": "Manual" - } - }, - "cycle": { - "label": "{count, plural, one {Siklus} other {Siklus}}", - "no_cycle": "Tidak ada siklus" - }, - "module": { - "label": "{count, plural, one {Modul} other {Modul}}", - "no_module": "Tidak ada modul" - }, - "description_versions": { - "last_edited_by": "Terakhir disunting oleh", - "previously_edited_by": "Sebelumnya disunting oleh", - "edited_by": "Disunting oleh" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane tidak berhasil dimulai. Ini bisa karena satu atau lebih layanan Plane gagal untuk dimulai.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Pilih View Logs dari setup.sh dan log Docker untuk memastikan." - }, - "no_of": "Jumlah {entity}", - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Garis Besar", - "empty_state": { - "title": "Judul hilang", - "description": "Mari tambahkan beberapa judul di halaman ini untuk melihatnya di sini." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Kata", - "characters": "Karakter", - "paragraphs": "Paragraf", - "read_time": "Waktu baca" - }, - "actors_info": { - "edited_by": "Disunting oleh", - "created_by": "Dibuat oleh" - }, - "version_history": { - "label": "Riwayat versi", - "current_version": "Versi saat ini" - } - }, - "assets": { - "label": "Aset", - "download_button": "Unduh", - "empty_state": { - "title": "Gambar hilang", - "description": "Tambahkan gambar untuk melihatnya di sini." - } - } - }, - "open_button": "Buka panel navigasi", - "close_button": "Tutup panel navigasi", - "outline_floating_button": "Buka garis besar" - } -} diff --git a/packages/i18n/src/locales/id/translations.ts b/packages/i18n/src/locales/id/translations.ts new file mode 100644 index 0000000000..47905d0d38 --- /dev/null +++ b/packages/i18n/src/locales/id/translations.ts @@ -0,0 +1,2597 @@ +export default { + sidebar: { + projects: "Projek", + pages: "Halaman", + new_work_item: "Item kerja baru", + home: "Beranda", + your_work: "Pekerjaan anda", + inbox: "Inbox", + workspace: "Workspace", + views: "Views", + analytics: "Analitik", + work_items: "Item kerja", + cycles: "Siklus", + modules: "Modul", + intake: "Intake", + drafts: "Draft", + favorites: "Favorit", + pro: "Pro", + upgrade: "Upgrade", + }, + auth: { + common: { + email: { + label: "Email", + placeholder: "nama@perusahaan.com", + errors: { + required: "Email wajib diisi", + invalid: "Email tidak valid", + }, + }, + password: { + label: "Password", + set_password: "Atur password", + placeholder: "Masukkan password", + confirm_password: { + label: "Konfirmasi password", + placeholder: "Konfirmasi password", + }, + current_password: { + label: "Password saat ini", + }, + new_password: { + label: "Password baru", + placeholder: "Masukkan password baru", + }, + change_password: { + label: { + default: "Ubah password", + submitting: "Mengubah password", + }, + }, + errors: { + match: "Password tidak cocok", + empty: "Silakan masukkan password anda", + length: "Panjang password harus lebih dari 8 karakter", + strength: { + weak: "Password lemah", + strong: "Password kuat", + }, + }, + submit: "Atur password", + toast: { + change_password: { + success: { + title: "Berhasil!", + message: "Password berhasil diubah.", + }, + error: { + title: "Error!", + message: "Terjadi kesalahan. Silakan coba lagi.", + }, + }, + }, + }, + unique_code: { + label: "Kode unik", + placeholder: "gets-sets-flys", + paste_code: "Tempelkan kode yang dikirim ke email anda", + requesting_new_code: "Meminta kode baru", + sending_code: "Mengirim kode", + }, + already_have_an_account: "Sudah punya akun?", + login: "Masuk", + create_account: "Buat akun", + new_to_plane: "Baru di Plane?", + back_to_sign_in: "Kembali ke halaman masuk", + resend_in: "Kirim ulang dalam {seconds} detik", + sign_in_with_unique_code: "Masuk dengan kode unik", + forgot_password: "Lupa password?", + }, + sign_up: { + header: { + label: "Buat akun untuk mulai mengelola pekerjaan dengan tim anda.", + step: { + email: { + header: "Daftar", + sub_header: "", + }, + password: { + header: "Daftar", + sub_header: "Daftar menggunakan kombinasi email-password.", + }, + unique_code: { + header: "Daftar", + sub_header: "Daftar menggunakan kode unik yang dikirim ke alamat email di atas.", + }, + }, + }, + errors: { + password: { + strength: "Coba atur password yang lebih kuat untuk melanjutkan", + }, + }, + }, + sign_in: { + header: { + label: "Masuk untuk mulai mengelola pekerjaan dengan tim anda.", + step: { + email: { + header: "Masuk atau daftar", + sub_header: "", + }, + password: { + header: "Masuk atau daftar", + sub_header: "Gunakan kombinasi email-password anda untuk masuk.", + }, + unique_code: { + header: "Masuk atau daftar", + sub_header: "Masuk menggunakan kode unik yang dikirim ke alamat email di atas.", + }, + }, + }, + }, + forgot_password: { + title: "Reset password anda", + description: + "Masukkan alamat email akun anda yang telah diverifikasi dan kami akan mengirimkan link reset password.", + email_sent: "Kami telah mengirim link reset ke alamat email anda", + send_reset_link: "Kirim link reset", + errors: { + smtp_not_enabled: + "Kami melihat bahwa admin anda belum mengaktifkan SMTP, kami tidak dapat mengirimkan link reset password", + }, + toast: { + success: { + title: "Email terkirim", + message: + "Periksa inbox anda untuk link reset password. Jika tidak muncul dalam beberapa menit, periksa folder spam.", + }, + error: { + title: "Error!", + message: "Terjadi kesalahan. Silakan coba lagi.", + }, + }, + }, + reset_password: { + title: "Atur password baru", + description: "Amankan akun anda dengan password yang kuat", + }, + set_password: { + title: "Amankan akun anda", + description: "Mengatur password membantu anda masuk dengan aman", + }, + sign_out: { + toast: { + error: { + title: "Error!", + message: "Gagal keluar. Silakan coba lagi.", + }, + }, + }, + }, + submit: "Kirim", + cancel: "Batal", + loading: "Memuat", + error: "Kesalahan", + success: "Sukses", + warning: "Peringatan", + info: "Info", + close: "Tutup", + yes: "Ya", + no: "Tidak", + ok: "OK", + name: "Nama", + description: "Deskripsi", + search: "Cari", + add_member: "Tambah anggota", + adding_members: "Menambah anggota", + remove_member: "Hapus anggota", + add_members: "Tambah anggota", + adding_member: "Menambah anggota", + remove_members: "Hapus anggota", + add: "Tambah", + adding: "Menambah", + remove: "Hapus", + add_new: "Tambah baru", + remove_selected: "Hapus yang dipilih", + first_name: "Nama depan", + last_name: "Nama belakang", + email: "Email", + display_name: "Nama tampilan", + role: "Peran", + timezone: "Zona waktu", + avatar: "Avatar", + cover_image: "Gambar sampul", + password: "Kata sandi", + change_cover: "Ganti sampul", + language: "Bahasa", + saving: "Menyimpan", + save_changes: "Simpan perubahan", + deactivate_account: "Nonaktifkan akun", + deactivate_account_description: + "Saat menonaktifkan akun, semua data dan sumber daya dalam akun tersebut akan dihapus secara permanen dan tidak dapat dipulihkan.", + profile_settings: "Pengaturan profil", + your_account: "Akun Anda", + security: "Keamanan", + activity: "Aktivitas", + appearance: "Tampilan", + notifications: "Notifikasi", + workspaces: "Ruang kerja", + create_workspace: "Buat ruang kerja", + invitations: "Undangan", + summary: "Ringkasan", + assigned: "Ditetapkan", + created: "Dibuat", + subscribed: "Berlangganan", + you_do_not_have_the_permission_to_access_this_page: "Anda tidak memiliki izin untuk mengakses halaman ini.", + something_went_wrong_please_try_again: "Terjadi kesalahan. Silakan coba lagi.", + load_more: "Muat lebih banyak", + select_or_customize_your_interface_color_scheme: "Pilih atau sesuaikan skema warna antarmuka Anda.", + theme: "Tema", + system_preference: "Preferensi sistem", + light: "Terang", + dark: "Gelap", + light_contrast: "Kontras tinggi terang", + dark_contrast: "Kontras tinggi gelap", + custom: "Tema kustom", + select_your_theme: "Pilih tema Anda", + customize_your_theme: "Sesuaikan tema Anda", + background_color: "Warna latar belakang", + text_color: "Warna teks", + primary_color: "Warna utama (Tema)", + sidebar_background_color: "Warna latar belakang sidebar", + sidebar_text_color: "Warna teks sidebar", + set_theme: "Atur tema", + enter_a_valid_hex_code_of_6_characters: "Masukkan kode hex yang valid dari 6 karakter", + background_color_is_required: "Warna latar belakang diperlukan", + text_color_is_required: "Warna teks diperlukan", + primary_color_is_required: "Warna utama diperlukan", + sidebar_background_color_is_required: "Warna latar belakang sidebar diperlukan", + sidebar_text_color_is_required: "Warna teks sidebar diperlukan", + updating_theme: "Memperbarui tema", + theme_updated_successfully: "Tema berhasil diperbarui", + failed_to_update_the_theme: "Gagal memperbarui tema", + email_notifications: "Notifikasi email", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Tetap terupdate tentang item kerja yang Anda langgani. Aktifkan ini untuk mendapatkan notifikasi.", + email_notification_setting_updated_successfully: "Pengaturan notifikasi email berhasil diperbarui", + failed_to_update_email_notification_setting: "Gagal memperbarui pengaturan notifikasi email", + notify_me_when: "Beri tahu saya ketika", + property_changes: "Perubahan properti", + property_changes_description: + "Beri tahu saya ketika properti item kerja seperti penugasannya, prioritas, estimasi, atau hal lainnya berubah.", + state_change: "Perubahan status", + state_change_description: "Beri tahu saya ketika item kerja berpindah ke status yang berbeda", + issue_completed: "Item kerja selesai", + issue_completed_description: "Beri tahu saya hanya ketika item kerja selesai", + comments: "Komentar", + comments_description: "Beri tahu saya ketika seseorang meninggalkan komentar pada item kerja", + mentions: "Sebutkan", + mentions_description: "Beri tahu saya hanya ketika seseorang menyebut saya dalam komentar atau deskripsi", + old_password: "Kata sandi lama", + general_settings: "Pengaturan umum", + sign_out: "Keluar", + signing_out: "Keluar", + active_cycles: "Siklus aktif", + active_cycles_description: + "Pantau siklus di seluruh proyek, lacak item kerja prioritas tinggi, dan fokus pada siklus yang membutuhkan perhatian.", + on_demand_snapshots_of_all_your_cycles: "Snapshot sesuai permintaan dari semua siklus Anda", + upgrade: "Tingkatkan", + "10000_feet_view": "Tampilan 10.000 kaki dari semua siklus aktif.", + "10000_feet_view_description": + "Perbesar untuk melihat siklus yang berjalan di seluruh proyek Anda sekaligus, bukan berpindah dari Siklus ke Siklus di setiap proyek.", + get_snapshot_of_each_active_cycle: "Dapatkan snapshot dari setiap siklus aktif.", + get_snapshot_of_each_active_cycle_description: + "Lacak metrik tingkat tinggi untuk semua siklus aktif, lihat kemajuan mereka, dan dapatkan gambaran tentang ruang lingkup terhadap tenggat waktu.", + compare_burndowns: "Bandingkan burndown.", + compare_burndowns_description: + "Pantau bagaimana kinerja setiap tim Anda dengan melihat laporan burndown masing-masing siklus.", + quickly_see_make_or_break_issues: "Lihat dengan cepat item kerja yang krusial.", + quickly_see_make_or_break_issues_description: + "Prabaca item kerja prioritas tinggi untuk setiap siklus terhadap tanggal jatuh tempo. Lihat semuanya per siklus hanya dengan satu klik.", + zoom_into_cycles_that_need_attention: "Perbesar siklus yang membutuhkan perhatian.", + zoom_into_cycles_that_need_attention_description: + "Selidiki status siklus mana pun yang tidak sesuai dengan harapan dengan satu klik.", + stay_ahead_of_blockers: "Tetap di depan penghambat.", + stay_ahead_of_blockers_description: + "Identifikasi tantangan dari satu proyek ke proyek lainnya dan lihat ketergantungan antar siklus yang tidak terlihat dari tampilan lain mana pun.", + analytics: "Analitik", + workspace_invites: "Undangan ruang kerja", + enter_god_mode: "Masuk ke mode dewa", + workspace_logo: "Logo ruang kerja", + new_issue: "Item kerja baru", + your_work: "Pekerjaan Anda", + drafts: "Draf", + projects: "Proyek", + views: "Tampilan", + workspace: "Ruang kerja", + archives: "Arsip", + settings: "Pengaturan", + failed_to_move_favorite: "Gagal memindahkan favorit", + favorites: "Favorit", + no_favorites_yet: "Belum ada favorit", + create_folder: "Buat folder", + new_folder: "Folder baru", + favorite_updated_successfully: "Favorit berhasil diperbarui", + favorite_created_successfully: "Favorit berhasil dibuat", + folder_already_exists: "Folder sudah ada", + folder_name_cannot_be_empty: "Nama folder tidak boleh kosong", + something_went_wrong: "Terjadi kesalahan", + failed_to_reorder_favorite: "Gagal mengatur ulang favorit", + favorite_removed_successfully: "Favorit berhasil dihapus", + failed_to_create_favorite: "Gagal membuat favorit", + failed_to_rename_favorite: "Gagal mengganti nama favorit", + project_link_copied_to_clipboard: "Tautan proyek disalin ke clipboard", + link_copied: "Tautan disalin", + add_project: "Tambah proyek", + create_project: "Buat proyek", + failed_to_remove_project_from_favorites: "Tidak dapat menghapus proyek dari favorit. Silakan coba lagi.", + project_created_successfully: "Proyek berhasil dibuat", + project_created_successfully_description: + "Proyek berhasil dibuat. Anda sekarang dapat mulai menambahkan item kerja ke dalamnya.", + project_name_already_taken: "Nama proyek sudah digunakan", + project_identifier_already_taken: "ID proyek sudah digunakan", + project_cover_image_alt: "Gambar sampul proyek", + name_is_required: "Nama diperlukan", + title_should_be_less_than_255_characters: "Judul harus kurang dari 255 karakter", + project_name: "Nama proyek", + project_id_must_be_at_least_1_character: "ID proyek harus minimal 1 karakter", + project_id_must_be_at_most_5_characters: "ID proyek maksimal 5 karakter", + project_id: "ID proyek", + project_id_tooltip_content: + "Membantu Anda mengidentifikasi item kerja dalam proyek secara unik. Maksimal 5 karakter.", + description_placeholder: "Deskripsi", + only_alphanumeric_non_latin_characters_allowed: "Hanya karakter alfanumerik & Non-latin yang diizinkan.", + project_id_is_required: "ID proyek diperlukan", + project_id_allowed_char: "Hanya karakter alfanumerik & Non-latin yang diizinkan.", + project_id_min_char: "ID proyek harus minimal 1 karakter", + project_id_max_char: "ID proyek maksimal 5 karakter", + project_description_placeholder: "Masukkan deskripsi proyek", + select_network: "Pilih jaringan", + lead: "Pemimpin", + date_range: "Rentang tanggal", + private: "Pribadi", + public: "Umum", + accessible_only_by_invite: "Diakses hanya dengan undangan", + anyone_in_the_workspace_except_guests_can_join: "Siapa saja di ruang kerja kecuali Tamu dapat bergabung", + creating: "Membuat", + creating_project: "Membuat proyek", + adding_project_to_favorites: "Menambahkan proyek ke favorit", + project_added_to_favorites: "Proyek ditambahkan ke favorit", + couldnt_add_the_project_to_favorites: "Tidak dapat menambahkan proyek ke favorit. Silakan coba lagi.", + removing_project_from_favorites: "Menghapus proyek dari favorit", + project_removed_from_favorites: "Proyek dihapus dari favorit", + couldnt_remove_the_project_from_favorites: "Tidak dapat menghapus proyek dari favorit. Silakan coba lagi.", + add_to_favorites: "Tambah ke favorit", + remove_from_favorites: "Hapus dari favorit", + publish_project: "Publikasikan proyek", + publish: "Publikasikan", + copy_link: "Salin tautan", + leave_project: "Tinggalkan proyek", + join_the_project_to_rearrange: "Bergabunglah dengan proyek untuk menyusun ulang", + drag_to_rearrange: "Seret untuk menyusun ulang", + congrats: "Selamat!", + open_project: "Buka proyek", + issues: "Item kerja", + cycles: "Siklus", + modules: "Modul", + pages: "Halaman", + intake: "Penerimaan", + time_tracking: "Pelacakan waktu", + work_management: "Manajemen kerja", + projects_and_issues: "Proyek dan item kerja", + projects_and_issues_description: "Aktifkan atau nonaktifkan ini untuk proyek ini.", + cycles_description: + "Tetapkan batas waktu kerja per proyek dan sesuaikan periode waktunya sesuai kebutuhan. Satu siklus bisa 2 minggu, berikutnya 1 minggu.", + modules_description: "Atur pekerjaan ke dalam sub-proyek dengan pemimpin dan penanggung jawab khusus.", + views_description: "Simpan pengurutan, filter, dan opsi tampilan khusus atau bagikan dengan tim Anda.", + pages_description: "Buat dan edit konten bebas bentuk: catatan, dokumen, apa saja.", + intake_description: "Izinkan non-anggota membagikan bug, masukan, dan saran tanpa mengganggu alur kerja Anda.", + time_tracking_description: "Catat waktu yang dihabiskan untuk item kerja dan proyek.", + work_management_description: "Kelola pekerjaan dan proyek Anda dengan mudah.", + documentation: "Dokumentasi", + message_support: "Pesan dukungan", + contact_sales: "Hubungi penjualan", + hyper_mode: "Mode Hyper", + keyboard_shortcuts: "Pintasan keyboard", + whats_new: "Apa yang baru?", + version: "Versi", + we_are_having_trouble_fetching_the_updates: "Kami mengalami kesulitan mengambil pembaruan.", + our_changelogs: "changelog kami", + for_the_latest_updates: "untuk pembaruan terbaru.", + please_visit: "Silakan kunjungi", + docs: "Dokumen", + full_changelog: "Changelog lengkap", + support: "Dukungan", + discord: "Discord", + powered_by_plane_pages: "Ditenagai oleh Plane Pages", + please_select_at_least_one_invitation: "Silakan pilih setidaknya satu undangan.", + please_select_at_least_one_invitation_description: + "Silakan pilih setidaknya satu undangan untuk bergabung dengan ruang kerja.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Kami melihat bahwa seseorang telah mengundang Anda untuk bergabung dengan ruang kerja", + join_a_workspace: "Bergabunglah dengan ruang kerja", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Kami melihat bahwa seseorang telah mengundang Anda untuk bergabung dengan ruang kerja", + join_a_workspace_description: "Bergabunglah dengan ruang kerja", + accept_and_join: "Terima & Bergabung", + go_home: "Kembali ke Beranda", + no_pending_invites: "Tidak ada undangan yang tertunda", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Anda dapat melihat di sini jika seseorang mengundang Anda untuk bergabung dengan ruang kerja", + back_to_home: "Kembali ke beranda", + workspace_name: "nama-ruang-kerja", + deactivate_your_account: "Nonaktifkan akun Anda", + deactivate_your_account_description: + "Setelah dinonaktifkan, Anda tidak akan dapat ditugaskan item kerja dan ditagih untuk ruang kerja Anda. Untuk mengaktifkan kembali akun Anda, Anda akan memerlukan undangan ke ruang kerja di alamat email ini.", + deactivating: "Menonaktifkan", + confirm: "Konfirmasi", + confirming: "Mengonfirmasi", + draft_created: "Draf dibuat", + issue_created_successfully: "Item kerja berhasil dibuat", + draft_creation_failed: "Pembuatan draf gagal", + issue_creation_failed: "Pembuatan item kerja gagal", + draft_issue: "Draf item kerja", + issue_updated_successfully: "Item kerja berhasil diperbarui", + issue_could_not_be_updated: "Item kerja tidak dapat diperbarui", + create_a_draft: "Buat draf", + save_to_drafts: "Simpan ke Draf", + save: "Simpan", + update: "Perbarui", + updating: "Memperbarui", + create_new_issue: "Buat item kerja baru", + editor_is_not_ready_to_discard_changes: "Editor belum siap untuk membuang perubahan", + failed_to_move_issue_to_project: "Gagal memindahkan item kerja ke proyek", + create_more: "Buat lebih banyak", + add_to_project: "Tambahkan ke proyek", + discard: "Buang", + duplicate_issue_found: "Item kerja duplikat ditemukan", + duplicate_issues_found: "Item kerja duplikat ditemukan", + no_matching_results: "Tidak ada hasil yang cocok", + title_is_required: "Judul diperlukan", + title: "Judul", + state: "Negara", + priority: "Prioritas", + none: "Tidak ada", + urgent: "Penting", + high: "Tinggi", + medium: "Sedang", + low: "Rendah", + members: "Anggota", + assignee: "Penugas", + assignees: "Penugas", + you: "Anda", + labels: "Label", + create_new_label: "Buat label baru", + start_date: "Tanggal mulai", + end_date: "Tanggal akhir", + due_date: "Tanggal jatuh tempo", + estimate: "Perkiraan", + change_parent_issue: "Ubah item kerja induk", + remove_parent_issue: "Hapus item kerja induk", + add_parent: "Tambahkan induk", + loading_members: "Memuat anggota", + view_link_copied_to_clipboard: "Tautan tampilan disalin ke clipboard.", + required: "Diperlukan", + optional: "Opsional", + Cancel: "Batal", + edit: "Sunting", + archive: "Arsip", + restore: "Pulihkan", + open_in_new_tab: "Buka di tab baru", + delete: "Hapus", + deleting: "Menghapus", + make_a_copy: "Buat salinan", + move_to_project: "Pindahkan ke proyek", + good: "Bagus", + morning: "pagi", + afternoon: "siang", + evening: "malam", + show_all: "Tampilkan semua", + show_less: "Tampilkan lebih sedikit", + no_data_yet: "Belum ada data", + syncing: "Menyinkronkan", + add_work_item: "Tambahkan item kerja", + advanced_description_placeholder: "Tekan '/' untuk perintah", + create_work_item: "Buat item kerja", + attachments: "Lampiran", + declining: "Menolak", + declined: "Ditolak", + decline: "Tolak", + unassigned: "Belum ditugaskan", + work_items: "Item kerja", + add_link: "Tambahkan tautan", + points: "Poin", + no_assignee: "Tidak ada penugas", + no_assignees_yet: "Belum ada penugas", + no_labels_yet: "Belum ada label", + ideal: "Ideal", + current: "Saat ini", + no_matching_members: "Tidak ada anggota yang cocok", + leaving: "Meninggalkan", + removing: "Menghapus", + leave: "Tinggalkan", + refresh: "Segarkan", + refreshing: "Menyegarkan", + refresh_status: "Status segar", + prev: "Sebelumnya", + next: "Selanjutnya", + re_generating: "Menghasilkan kembali", + re_generate: "Hasilkan kembali", + re_generate_key: "Hasilkan kembali kunci", + export: "Ekspor", + member: "{count, plural, one{# anggota} other{# anggota}}", + new_password_must_be_different_from_old_password: "Kata sandi baru harus berbeda dari kata sandi lama", + project_view: { + sort_by: { + created_at: "Dibuat pada", + updated_at: "Diperbarui pada", + name: "Nama", + }, + }, + toast: { + success: "Sukses!", + error: "Kesalahan!", + }, + links: { + toasts: { + created: { + title: "Tautan dibuat", + message: "Tautan telah berhasil dibuat", + }, + not_created: { + title: "Tautan tidak dibuat", + message: "Tautan tidak dapat dibuat", + }, + updated: { + title: "Tautan diperbarui", + message: "Tautan telah berhasil diperbarui", + }, + not_updated: { + title: "Tautan tidak diperbarui", + message: "Tautan tidak dapat diperbarui", + }, + removed: { + title: "Tautan dihapus", + message: "Tautan telah berhasil dihapus", + }, + not_removed: { + title: "Tautan tidak dihapus", + message: "Tautan tidak dapat dihapus", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Panduan pemula Anda", + not_right_now: "Tidak sekarang", + create_project: { + title: "Buat proyek", + description: "Sebagian besar hal dimulai dengan proyek di Plane.", + cta: "Mulai sekarang", + }, + invite_team: { + title: "Undang tim Anda", + description: "Bangun, kirim, dan kelola dengan rekan kerja.", + cta: "Ajak mereka", + }, + configure_workspace: { + title: "Atur ruang kerja Anda.", + description: "Hidupkan atau matikan fitur atau lebih dari itu.", + cta: "Konfigurasi ruang kerja ini", + }, + personalize_account: { + title: "Jadikan Plane milik Anda.", + description: "Pilih gambar Anda, warna, dan lainnya.", + cta: "Personalisasi sekarang", + }, + widgets: { + title: "Sepi Tanpa Widget, Nyalakan Mereka", + description: "Sepertinya semua widget Anda dimatikan. Aktifkan sekarang untuk meningkatkan pengalaman Anda!", + primary_button: { + text: "Kelola widget", + }, + }, + }, + quick_links: { + empty: "Simpan tautan ke hal-hal kerja yang ingin Anda miliki.", + add: "Tambahkan Tautan Cepat", + title: "Tautan Cepat", + title_plural: "Tautan Cepat", + }, + recents: { + title: "Terbaru", + empty: { + project: "Proyek terbaru Anda akan muncul di sini setelah Anda mengunjunginya.", + page: "Halaman terbaru Anda akan muncul di sini setelah Anda mengunjunginya.", + issue: "Item kerja terbaru Anda akan muncul di sini setelah Anda mengunjunginya.", + default: "Anda belum memiliki yang terbaru.", + }, + filters: { + all: "Semua", + projects: "Proyek", + pages: "Halaman", + issues: "Item kerja", + }, + }, + new_at_plane: { + title: "Baru di Plane", + }, + quick_tutorial: { + title: "Tutorial cepat", + }, + widget: { + reordered_successfully: "Widget berhasil diurutkan ulang.", + reordering_failed: "Kesalahan terjadi saat mengurutkan ulang widget.", + }, + manage_widgets: "Kelola widget", + title: "Beranda", + star_us_on_github: "Bintang kami di GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL tidak valid", + placeholder: "Ketik atau tempel URL", + }, + title: { + text: "Judul tampilan", + placeholder: "Apa yang ingin Anda lihat sebagai tautan ini", + }, + }, + }, + common: { + all: "Semua", + states: "Negara-negara", + state: "Negara", + state_groups: "Kelompok negara", + state_group: "Kelompok negara", + priorities: "Prioritas", + priority: "Prioritas", + team_project: "Proyek tim", + project: "Proyek", + cycle: "Siklus", + cycles: "Siklus", + module: "Modul", + modules: "Modul", + labels: "Label", + label: "Label", + assignees: "Penugas", + assignee: "Penugas", + created_by: "Dibuat oleh", + none: "Tidak ada", + link: "Tautan", + estimates: "Perkiraan", + estimate: "Perkiraan", + created_at: "Dibuat pada", + completed_at: "Selesai pada", + layout: "Tata letak", + filters: "Filter", + display: "Tampilan", + load_more: "Muat lebih banyak", + activity: "Aktivitas", + analytics: "Analitik", + dates: "Tanggal", + success: "Sukses!", + something_went_wrong: "Ada yang salah", + error: { + label: "Kesalahan!", + message: "Terjadi kesalahan. Silakan coba lagi.", + }, + group_by: "Kelompok berdasarkan", + epic: "Epik", + epics: "Epik", + work_item: "Item kerja", + work_items: "Item kerja", + sub_work_item: "Sub-item kerja", + add: "Tambah", + warning: "Peringatan", + updating: "Memperbarui", + adding: "Menambahkan", + update: "Perbarui", + creating: "Membuat", + create: "Buat", + cancel: "Batalkan", + description: "Deskripsi", + title: "Judul", + attachment: "Lampiran", + general: "Umum", + features: "Fitur", + automation: "Otomatisasi", + project_name: "Nama proyek", + project_id: "ID proyek", + project_timezone: "Zona waktu proyek", + created_on: "Dibuat pada", + update_project: "Perbarui proyek", + identifier_already_exists: "Pengidentifikasi sudah ada", + add_more: "Tambah lebih banyak", + defaults: "Pola dasar", + add_label: "Tambah label", + customize_time_range: "Sesuaikan rentang waktu", + loading: "Memuat", + attachments: "Lampiran", + property: "Properti", + properties: "Properti", + parent: "Induk", + page: "Halaman", + remove: "Hapus", + archiving: "Mengarsipkan", + archive: "Arsip", + access: { + public: "Publik", + private: "Pribadi", + }, + done: "Selesai", + sub_work_items: "Sub-item kerja", + comment: "Komentar", + workspace_level: "Tingkat ruang kerja", + order_by: { + label: "Urutkan berdasarkan", + manual: "Manual", + last_created: "Terakhir dibuat", + last_updated: "Terakhir diperbarui", + start_date: "Tanggal mulai", + due_date: "Tanggal jatuh tempo", + asc: "Menaik", + desc: "Menurun", + updated_on: "Diperbarui pada", + }, + sort: { + asc: "Menaik", + desc: "Menurun", + created_on: "Dibuat pada", + updated_on: "Diperbarui pada", + }, + comments: "Komentar", + updates: "Pembaruan", + clear_all: "Hapus semua", + copied: "Disalin!", + link_copied: "Tautan disalin!", + link_copied_to_clipboard: "Tautan disalin ke clipboard", + copied_to_clipboard: "Tautan item kerja disalin ke clipboard", + is_copied_to_clipboard: "Item kerja disalin ke clipboard", + no_links_added_yet: "Belum ada tautan yang ditambahkan", + add_link: "Tambah tautan", + links: "Tautan", + go_to_workspace: "Pergi ke ruang kerja", + progress: "Kemajuan", + optional: "Opsional", + join: "Bergabung", + go_back: "Kembali", + continue: "Lanjutkan", + resend: "Kirim ulang", + relations: "Hubungan", + errors: { + default: { + title: "Kesalahan!", + message: "Sesuatu telah salah. Silakan coba lagi.", + }, + required: "Bidang ini diperlukan", + entity_required: "{entity} diperlukan", + restricted_entity: "{entity} dibatasi", + }, + update_link: "Perbarui tautan", + attach: "Lampirkan", + create_new: "Buat baru", + add_existing: "Tambah yang ada", + type_or_paste_a_url: "Ketik atau tempel URL", + url_is_invalid: "URL tidak valid", + display_title: "Judul tampilan", + link_title_placeholder: "Apa yang ingin Anda lihat pada tautan ini", + url: "URL", + side_peek: "Tampilan samping", + modal: "Modal", + full_screen: "Layar penuh", + close_peek_view: "Tutup tampilan peek", + toggle_peek_view_layout: "Alihkan tata letak tampilan peek", + options: "Opsi", + duration: "Durasi", + today: "Hari ini", + week: "Minggu", + month: "Bulan", + quarter: "Kuartal", + press_for_commands: "Tekan '/' untuk perintah", + click_to_add_description: "Klik untuk menambahkan deskripsi", + search: { + label: "Pencarian", + placeholder: "Ketik untuk mencari", + no_matches_found: "Tidak ada kecocokan ditemukan", + no_matching_results: "Tidak ada hasil yang cocok", + }, + actions: { + edit: "Edit", + make_a_copy: "Buat salinan", + open_in_new_tab: "Buka di tab baru", + copy_link: "Salin tautan", + archive: "Arsip", + restore: "Pulihkan", + delete: "Hapus", + remove_relation: "Hapus hubungan", + subscribe: "Berlangganan", + unsubscribe: "Berhenti berlangganan", + clear_sorting: "Hapus pengurutan", + show_weekends: "Tampilkan akhir pekan", + enable: "Aktifkan", + disable: "Nonaktifkan", + }, + name: "Nama", + discard: "Buang", + confirm: "Konfirmasi", + confirming: "Mengonfirmasi", + read_the_docs: "Baca dokumen", + default: "Bawaan", + active: "Aktif", + enabled: "Diaktifkan", + disabled: "Dinonaktifkan", + mandate: "Mandat", + mandatory: "Wajib", + yes: "Ya", + no: "Tidak", + please_wait: "Silakan tunggu", + enabling: "Mengaktifkan", + disabling: "Menonaktifkan", + beta: "Beta", + or: "atau", + next: "Selanjutnya", + back: "Kembali", + cancelling: "Membatalkan", + configuring: "Mengkonfigurasi", + clear: "Bersihkan", + import: "Impor", + connect: "Sambungkan", + authorizing: "Mengautentikasi", + processing: "Memproses", + no_data_available: "Tidak ada data tersedia", + from: "dari {name}", + authenticated: "Terautentikasi", + select: "Pilih", + upgrade: "Tingkatkan", + add_seats: "Tambahkan Kursi", + projects: "Proyek", + workspace: "Ruang kerja", + workspaces: "Ruang kerja", + team: "Tim", + teams: "Tim", + entity: "Entitas", + entities: "Entitas", + task: "Tugas", + tasks: "Tugas", + section: "Bagian", + sections: "Bagian", + edit: "Edit", + connecting: "Menghubungkan", + connected: "Terhubung", + disconnect: "Putuskan", + disconnecting: "Memutuskan", + installing: "Menginstal", + install: "Instal", + reset: "Atur ulang", + live: "Langsung", + change_history: "Riwayat Perubahan", + coming_soon: "Segera hadir", + member: "Anggota", + members: "Anggota", + you: "Anda", + upgrade_cta: { + higher_subscription: "Tingkatkan ke langganan yang lebih tinggi", + talk_to_sales: "Bicaralah dengan Penjualan", + }, + category: "Kategori", + categories: "Kategori", + saving: "Menyimpan", + save_changes: "Simpan perubahan", + delete: "Hapus", + deleting: "Menghapus", + pending: "Tertunda", + invite: "Undang", + view: "Lihat", + deactivated_user: "Pengguna dinonaktifkan", + apply: "Terapkan", + applying: "Terapkan", + users: "Pengguna", + admins: "Admin", + guests: "Tamu", + on_track: "Sesuai Jalur", + off_track: "Menyimpang", + at_risk: "Dalam risiko", + timeline: "Linimasa", + completion: "Penyelesaian", + upcoming: "Mendatang", + completed: "Selesai", + in_progress: "Sedang berlangsung", + planned: "Direncanakan", + paused: "Dijedaikan", + no_of: "Jumlah {entity}", + resolved: "Terselesaikan", + }, + chart: { + x_axis: "Sumbu-X", + y_axis: "Sumbu-Y", + metric: "Metrik", + }, + form: { + title: { + required: "Judul wajib diisi", + max_length: "Judul harus kurang dari {length} karakter", + }, + }, + entity: { + grouping_title: "Pengelompokan {entity}", + priority: "Prioritas {entity}", + all: "Semua {entity}", + drop_here_to_move: "Letakkan di sini untuk memindahkan {entity}", + delete: { + label: "Hapus {entity}", + success: "{entity} berhasil dihapus", + failed: "Gagal menghapus {entity}", + }, + update: { + failed: "Gagal memperbarui {entity}", + success: "{entity} berhasil diperbarui", + }, + link_copied_to_clipboard: "Tautan {entity} disalin ke papan klip", + fetch: { + failed: "Terjadi kesalahan saat mengambil {entity}", + }, + add: { + success: "{entity} berhasil ditambahkan", + failed: "Terjadi kesalahan saat menambahkan {entity}", + }, + remove: { + success: "{entity} berhasil dihapus", + failed: "Terjadi kesalahan saat menghapus {entity}", + }, + }, + epic: { + all: "Semua Epik", + label: "{count, plural, one {Epik} other {Epik}}", + new: "Epik Baru", + adding: "Menambahkan epik", + create: { + success: "Epik berhasil dibuat", + }, + add: { + press_enter: "Tekan 'Enter' untuk menambahkan epik lain", + label: "Tambahkan Epik", + }, + title: { + label: "Judul Epik", + required: "Judul epik wajib diisi.", + }, + }, + issue: { + label: "{count, plural, one {Item Kerja} other {Item Kerja}}", + all: "Semua Item Kerja", + edit: "Edit item kerja", + title: { + label: "Judul item kerja", + required: "Judul item kerja diperlukan.", + }, + add: { + press_enter: "Tekan 'Enter' untuk menambahkan item kerja lainnya", + label: "Tambah item kerja", + cycle: { + failed: "Item kerja tidak dapat ditambahkan ke siklus. Silakan coba lagi.", + success: "{count, plural, one {Item Kerja} other {Item Kerja}} berhasil ditambahkan ke siklus.", + loading: "Menambahkan {count, plural, one {item kerja} other {item kerja}} ke siklus", + }, + assignee: "Tambah penugasan", + start_date: "Tambah tanggal mulai", + due_date: "Tambah tanggal jatuh tempo", + parent: "Tambah item kerja induk", + sub_issue: "Tambah sub-item kerja", + relation: "Tambah hubungan", + link: "Tambah tautan", + existing: "Tambah item kerja yang ada", + }, + remove: { + label: "Hapus item kerja", + cycle: { + loading: "Menghapus item kerja dari siklus", + success: "Item kerja berhasil dihapus dari siklus.", + failed: "Item kerja tidak dapat dihapus dari siklus. Silakan coba lagi.", + }, + module: { + loading: "Menghapus item kerja dari modul", + success: "Item kerja berhasil dihapus dari modul.", + failed: "Item kerja tidak dapat dihapus dari modul. Silakan coba lagi.", + }, + parent: { + label: "Hapus item kerja induk", + }, + }, + new: "Item Kerja Baru", + adding: "Menambahkan item kerja", + create: { + success: "Item kerja berhasil dibuat", + }, + priority: { + urgent: "Mendesak", + high: "Tinggi", + medium: "Sedang", + low: "Rendah", + }, + display: { + properties: { + label: "Tampilkan Properti", + id: "ID", + issue_type: "Tipe item kerja", + sub_issue_count: "Jumlah sub-item kerja", + attachment_count: "Jumlah lampiran", + created_on: "Dibuat pada", + sub_issue: "Sub-item kerja", + work_item_count: "Jumlah item kerja", + }, + extra: { + show_sub_issues: "Tampilkan sub-item kerja", + show_empty_groups: "Tampilkan grup kosong", + }, + }, + layouts: { + ordered_by_label: "Tata letak ini diurutkan berdasarkan", + list: "Daftar", + kanban: "Papan", + calendar: "Kalender", + spreadsheet: "Tabel", + gantt: "Garis Waktu", + title: { + list: "Tata Letak Daftar", + kanban: "Tata Letak Papan", + calendar: "Tata Letak Kalender", + spreadsheet: "Tata Letak Tabel", + gantt: "Tata Letak Garis Waktu", + }, + }, + states: { + active: "Aktif", + backlog: "Backlog", + }, + comments: { + placeholder: "Tambah komentar", + switch: { + private: "Beralih ke komentar pribadi", + public: "Beralih ke komentar publik", + }, + create: { + success: "Komentar berhasil dibuat", + error: "Gagal membuat komentar. Silakan coba lagi nanti.", + }, + update: { + success: "Komentar berhasil diperbarui", + error: "Gagal memperbarui komentar. Silakan coba lagi nanti.", + }, + remove: { + success: "Komentar berhasil dihapus", + error: "Gagal menghapus komentar. Silakan coba lagi nanti.", + }, + upload: { + error: "Gagal mengunggah aset. Silakan coba lagi nanti.", + }, + copy_link: { + success: "Tautan komentar berhasil disalin ke clipboard", + error: "Gagal menyalin tautan komentar. Silakan coba lagi nanti.", + }, + }, + empty_state: { + issue_detail: { + title: "Item kerja tidak ada", + description: "Item kerja yang Anda cari tidak ada, telah diarsipkan, atau telah dihapus.", + primary_button: { + text: "Lihat item kerja lainnya", + }, + }, + }, + sibling: { + label: "Item kerja sejawat", + }, + archive: { + description: "Hanya item kerja yang selesai atau dibatalkan\n yang dapat diarsipkan", + label: "Arsip Item kerja", + confirm_message: + "Apakah Anda yakin ingin mengarsipkan item kerja ini? Semua item kerja yang diarsipkan dapat dipulihkan nanti.", + success: { + label: "Sukses mengarsipkan", + message: "Arsip Anda dapat ditemukan di arsip proyek.", + }, + failed: { + message: "Item kerja tidak dapat diarsipkan. Silakan coba lagi.", + }, + }, + restore: { + success: { + title: "Sukses memulihkan", + message: "Item kerja Anda dapat ditemukan di item kerja proyek.", + }, + failed: { + message: "Item kerja tidak dapat dipulihkan. Silakan coba lagi.", + }, + }, + relation: { + relates_to: "Berhubungan dengan", + duplicate: "Duplikat dari", + blocked_by: "Diblokir oleh", + blocking: "Memblokir", + }, + copy_link: "Salin tautan item kerja", + delete: { + label: "Hapus item kerja", + error: "Kesalahan saat menghapus item kerja", + }, + subscription: { + actions: { + subscribed: "Item kerja telah berhasil disubscribe", + unsubscribed: "Item kerja telah berhasil dibatalkan subscribe", + }, + }, + select: { + error: "Silakan pilih setidaknya satu item kerja", + empty: "Tidak ada item kerja yang dipilih", + add_selected: "Tambah item kerja yang dipilih", + select_all: "Pilih semua item kerja", + deselect_all: "Batalkan pilihan semua item kerja", + }, + open_in_full_screen: "Buka item kerja dalam layar penuh", + }, + attachment: { + error: "File tidak dapat dilampirkan. Coba unggah lagi.", + only_one_file_allowed: "Hanya satu file yang dapat diunggah pada satu waktu.", + file_size_limit: "File harus berukuran {size}MB atau lebih kecil.", + drag_and_drop: "Seret dan jatuhkan di mana saja untuk mengunggah", + delete: "Hapus lampiran", + }, + label: { + select: "Pilih label", + create: { + success: "Label berhasil dibuat", + failed: "Gagal membuat label", + already_exists: "Label sudah ada", + type: "Ketik untuk menambah label baru", + }, + }, + sub_work_item: { + update: { + success: "Sub-item kerja berhasil diperbarui", + error: "Kesalahan saat memperbarui sub-item kerja", + }, + remove: { + success: "Sub-item kerja berhasil dihapus", + error: "Kesalahan saat menghapus sub-item kerja", + }, + empty_state: { + sub_list_filters: { + title: "Anda tidak memiliki sub-item kerja yang cocok dengan filter yang Anda terapkan.", + description: "Untuk melihat semua sub-item kerja, hapus semua filter yang diterapkan.", + action: "Hapus filter", + }, + list_filters: { + title: "Anda tidak memiliki item kerja yang cocok dengan filter yang Anda terapkan.", + description: "Untuk melihat semua item kerja, hapus semua filter yang diterapkan.", + action: "Hapus filter", + }, + }, + }, + view: { + label: "{count, plural, one {Tampilan} other {Tampilan}}", + create: { + label: "Buat Tampilan", + }, + update: { + label: "Perbarui Tampilan", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Menunggu", + description: "Menunggu", + }, + declined: { + title: "Ditolak", + description: "Ditolak", + }, + snoozed: { + title: "Ditunda", + description: "{days, plural, one{# hari} other{# hari}} tersisa", + }, + accepted: { + title: "Diterima", + description: "Diterima", + }, + duplicate: { + title: "Duplikat", + description: "Duplikat", + }, + }, + modals: { + decline: { + title: "Tolak item kerja", + content: "Apakah Anda yakin ingin menolak item kerja {value}?", + }, + delete: { + title: "Hapus item kerja", + content: "Apakah Anda yakin ingin menghapus item kerja {value}?", + success: "Item kerja berhasil dihapus", + }, + }, + errors: { + snooze_permission: "Hanya admin proyek yang bisa menunda/menghapus penundaan item kerja", + accept_permission: "Hanya admin proyek yang bisa menerima item kerja", + decline_permission: "Hanya admin proyek yang bisa menolak item kerja", + }, + actions: { + accept: "Terima", + decline: "Tolak", + snooze: "Tunda", + unsnooze: "Hapus penundaan", + copy: "Salin tautan item kerja", + delete: "Hapus", + open: "Buka item kerja", + mark_as_duplicate: "Tandai sebagai duplikat", + move: "Pindahkan {value} ke item kerja proyek", + }, + source: { + "in-app": "dalam aplikasi", + }, + order_by: { + created_at: "Dibuat pada", + updated_at: "Diperbarui pada", + id: "ID", + }, + label: "Pendapat", + page_label: "{workspace} - Pendapat", + modal: { + title: "Buat item kerja pendapat", + }, + tabs: { + open: "Terbuka", + closed: "Tutup", + }, + empty_state: { + sidebar_open_tab: { + title: "Tidak ada item kerja terbuka", + description: "Temukan item kerja terbuka di sini. Buat item kerja baru.", + }, + sidebar_closed_tab: { + title: "Tidak ada item kerja tertutup", + description: "Semua item kerja yang diterima atau ditolak dapat ditemukan di sini.", + }, + sidebar_filter: { + title: "Tidak ada item kerja yang cocok", + description: + "Tidak ada item kerja yang cocok dengan filter yang diterapkan dalam pendapat. Buat item kerja baru.", + }, + detail: { + title: "Pilih item kerja untuk melihat detailnya.", + }, + }, + }, + workspace_creation: { + heading: "Buat ruang kerja Anda", + subheading: "Untuk mulai menggunakan Plane, Anda perlu membuat atau bergabung dengan ruang kerja.", + form: { + name: { + label: "Nama ruang kerja Anda", + placeholder: "Sesuatu yang familiar dan dapat dikenali selalu lebih baik.", + }, + url: { + label: "Atur URL ruang kerja Anda", + placeholder: "Ketik atau tempel URL", + edit_slug: "Anda hanya dapat mengedit slug URL", + }, + organization_size: { + label: "Berapa banyak orang yang akan menggunakan ruang kerja ini?", + placeholder: "Pilih rentang", + }, + }, + errors: { + creation_disabled: { + title: "Hanya admin instansi Anda yang dapat membuat ruang kerja", + description: + "Jika Anda tahu alamat email admin instansi Anda, klik tombol di bawah ini untuk menghubungi mereka.", + request_button: "Minta admin instansi", + }, + validation: { + name_alphanumeric: "Nama ruang kerja hanya boleh berisi (' '), ('-'), ('_') dan karakter alfanumerik.", + name_length: "Batasi nama Anda hingga 80 karakter.", + url_alphanumeric: "URL hanya boleh berisi ('-') dan karakter alfanumerik.", + url_length: "Batasi URL Anda hingga 48 karakter.", + url_already_taken: "URL ruang kerja sudah diambil!", + }, + }, + request_email: { + subject: "Meminta ruang kerja baru", + body: "Hai admin instansi,\n\nTolong buat ruang kerja baru dengan URL [/workspace-name] untuk [tujuan pembuatan ruang kerja].\n\nTerima kasih,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Buat ruang kerja", + loading: "Membuat ruang kerja", + }, + toast: { + success: { + title: "Sukses", + message: "Ruang kerja berhasil dibuat", + }, + error: { + title: "Kesalahan", + message: "Ruang kerja tidak dapat dibuat. Silakan coba lagi.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Ikhtisar proyek, aktivitas, dan metrik Anda", + description: + "Selamat datang di Plane, kami sangat senang memiliki Anda di sini. Buat proyek pertama Anda dan lacak item kerja Anda, dan halaman ini akan berubah menjadi ruang yang membantu Anda berkembang. Admin juga akan melihat item yang membantu tim mereka berkembang.", + primary_button: { + text: "Bangun proyek pertama Anda", + comic: { + title: "Segalanya dimulai dengan proyek di Plane", + description: "Sebuah proyek bisa menjadi roadmap produk, kampanye pemasaran, atau meluncurkan mobil baru.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analitik", + page_label: "{workspace} - Analitik", + open_tasks: "Jumlah tugas terbuka", + error: "Terjadi kesalahan dalam mengambil data.", + work_items_closed_in: "Item kerja yang ditutup dalam", + selected_projects: "Proyek yang dipilih", + total_members: "Jumlah anggota total", + total_cycles: "Jumlah siklus total", + total_modules: "Jumlah modul total", + pending_work_items: { + title: "Item kerja yang menunggu", + empty_state: "Analisis item kerja yang menunggu oleh rekan kerja muncul di sini.", + }, + work_items_closed_in_a_year: { + title: "Item kerja yang ditutup dalam setahun", + empty_state: "Tutup item kerja untuk melihat analisis dari item kerja tersebut dalam bentuk grafik.", + }, + most_work_items_created: { + title: "Paling banyak item kerja yang dibuat", + empty_state: "Rekan kerja dan jumlah item kerja yang mereka buat muncul di sini.", + }, + most_work_items_closed: { + title: "Paling banyak item kerja yang ditutup", + empty_state: "Rekan kerja dan jumlah item kerja yang mereka tutup muncul di sini.", + }, + tabs: { + scope_and_demand: "Lingkup dan Permintaan", + custom: "Analitik Kustom", + }, + empty_state: { + customized_insights: { + description: "Item pekerjaan yang ditugaskan kepada Anda, dipecah berdasarkan status, akan muncul di sini.", + title: "Belum ada data", + }, + created_vs_resolved: { + description: "Item pekerjaan yang dibuat dan diselesaikan dari waktu ke waktu akan muncul di sini.", + title: "Belum ada data", + }, + project_insights: { + title: "Belum ada data", + description: "Item pekerjaan yang ditugaskan kepada Anda, dipecah berdasarkan status, akan muncul di sini.", + }, + general: { + title: "Lacak kemajuan, beban kerja, dan alokasi. Temukan tren, hapus hambatan, dan percepat pekerjaan", + description: + "Lihat lingkup versus permintaan, perkiraan, dan perluasan lingkup. Dapatkan kinerja berdasarkan anggota tim dan tim, dan pastikan proyek Anda berjalan tepat waktu.", + primary_button: { + text: "Mulai proyek pertama Anda", + comic: { + title: "Analitik bekerja paling baik dengan Siklus + Modul", + description: + "Pertama, batasi waktu masalah Anda ke dalam Siklus dan, jika Anda bisa, kelompokkan masalah yang lebih dari satu siklus ke dalam Modul. Lihat keduanya di navigasi kiri.", + }, + }, + }, + }, + created_vs_resolved: "Dibuat vs Diselesaikan", + customized_insights: "Wawasan yang Disesuaikan", + backlog_work_items: "{entity} backlog", + active_projects: "Proyek Aktif", + trend_on_charts: "Tren pada grafik", + all_projects: "Semua Proyek", + summary_of_projects: "Ringkasan Proyek", + project_insights: "Wawasan Proyek", + started_work_items: "{entity} yang telah dimulai", + total_work_items: "Total {entity}", + total_projects: "Total Proyek", + total_admins: "Total Admin", + total_users: "Total Pengguna", + total_intake: "Total Pemasukan", + un_started_work_items: "{entity} yang belum dimulai", + total_guests: "Total Tamu", + completed_work_items: "{entity} yang telah selesai", + total: "Total {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Proyek} other {Proyek}}", + create: { + label: "Tambah Proyek", + }, + network: { + label: "Jaringan", + private: { + title: "Pribadi", + description: "Dapat diakses hanya dengan undangan", + }, + public: { + title: "Umum", + description: "Siapa pun di ruang kerja kecuali Tamu dapat bergabung", + }, + }, + error: { + permission: "Anda tidak memiliki izin untuk melakukan tindakan ini.", + cycle_delete: "Gagal menghapus siklus", + module_delete: "Gagal menghapus modul", + issue_delete: "Gagal menghapus item kerja", + }, + state: { + backlog: "Backlog", + unstarted: "Belum dimulai", + started: "Dimulai", + completed: "Selesai", + cancelled: "Dibatalkan", + }, + sort: { + manual: "Manual", + name: "Nama", + created_at: "Tanggal dibuat", + members_length: "Jumlah anggota", + }, + scope: { + my_projects: "Proyek saya", + archived_projects: "Diarsipkan", + }, + common: { + months_count: "{months, plural, one{# bulan} other{# bulan}}", + }, + empty_state: { + general: { + title: "Tidak ada proyek aktif", + description: + "Anggap setiap proyek sebagai induk untuk pekerjaan yang terarah pada tujuan. Proyek adalah tempat di mana Pekerjaan, Siklus, dan Modul tinggal dan, bersama rekan-rekan Anda, membantu Anda mencapai tujuan tersebut. Buat proyek baru atau filter untuk proyek yang diarsipkan.", + primary_button: { + text: "Mulai proyek pertama Anda", + comic: { + title: "Segalanya dimulai dengan proyek di Plane", + description: "Sebuah proyek bisa menjadi roadmap produk, kampanye pemasaran, atau meluncurkan mobil baru.", + }, + }, + }, + no_projects: { + title: "Tidak ada proyek", + description: + "Untuk membuat item kerja atau mengelola pekerjaan Anda, Anda perlu membuat proyek atau menjadi bagian dari salah satunya.", + primary_button: { + text: "Mulai proyek pertama Anda", + comic: { + title: "Segalanya dimulai dengan proyek di Plane", + description: "Sebuah proyek bisa menjadi roadmap produk, kampanye pemasaran, atau meluncurkan mobil baru.", + }, + }, + }, + filter: { + title: "Tidak ada proyek yang cocok", + description: + "Tidak ada proyek yang terdeteksi dengan kriteria yang cocok. \n Buat proyek baru sebagai gantinya.", + }, + search: { + description: "Tidak ada proyek yang terdeteksi dengan kriteria yang cocok.\nBuat proyek baru sebagai gantinya", + }, + }, + }, + workspace_views: { + add_view: "Tambah tampilan", + empty_state: { + "all-issues": { + title: "Tidak ada item kerja dalam proyek", + description: + "Proyek pertama sudah selesai! Sekarang, bagi pekerjaan Anda menjadi bagian yang dapat dilacak dengan item kerja. Mari kita mulai!", + primary_button: { + text: "Buat item kerja baru", + }, + }, + assigned: { + title: "Belum ada item kerja", + description: "Item kerja yang ditugaskan kepada Anda dapat dilacak dari sini.", + primary_button: { + text: "Buat item kerja baru", + }, + }, + created: { + title: "Belum ada item kerja", + description: "Semua item kerja yang dibuat oleh Anda akan muncul di sini, lacak mereka langsung di sini.", + primary_button: { + text: "Buat item kerja baru", + }, + }, + subscribed: { + title: "Belum ada item kerja", + description: "Langgan item kerja yang Anda minati, lacak semuanya di sini.", + }, + "custom-view": { + title: "Belum ada item kerja", + description: "Item kerja yang menerapkan filter ini, lacak semuanya di sini.", + }, + }, + }, + workspace_settings: { + label: "Pengaturan ruang kerja", + page_label: "{workspace} - Pengaturan Umum", + key_created: "Kunci dibuat", + copy_key: + "Salin dan simpan kunci rahasia ini di Halaman Plane. Anda tidak dapat melihat kunci ini setelah Anda menekan Tutup. File CSV yang berisi kunci telah diunduh.", + token_copied: "Token disalin ke clipboard.", + settings: { + general: { + title: "Umum", + upload_logo: "Unggah logo", + edit_logo: "Edit logo", + name: "Nama ruang kerja", + company_size: "Ukuran perusahaan", + url: "URL ruang kerja", + update_workspace: "Perbarui ruang kerja", + delete_workspace: "Hapus ruang kerja ini", + delete_workspace_description: + "Ketika menghapus ruang kerja, semua data dan sumber daya di dalam ruang kerja tersebut akan dihapus secara permanen dan tidak dapat dipulihkan.", + delete_btn: "Hapus ruang kerja ini", + delete_modal: { + title: "Apakah Anda yakin ingin menghapus ruang kerja ini?", + description: + "Anda memiliki percobaan aktif untuk salah satu rencana berbayar kami. Silakan batalkan terlebih dahulu untuk melanjutkan.", + dismiss: "Tutup", + cancel: "Batalkan percobaan", + success_title: "Ruang kerja dihapus.", + success_message: "Anda akan segera diarahkan ke halaman profil Anda.", + error_title: "Itu tidak berhasil.", + error_message: "Silakan coba lagi.", + }, + errors: { + name: { + required: "Nama diperlukan", + max_length: "Nama ruang kerja tidak boleh lebih dari 80 karakter", + }, + company_size: { + required: "Ukuran perusahaan diperlukan", + select_a_range: "Pilih ukuran organisasi", + }, + }, + }, + members: { + title: "Anggota", + add_member: "Tambah anggota", + pending_invites: "Undangan yang tertunda", + invitations_sent_successfully: "Undangan berhasil dikirim", + leave_confirmation: + "Apakah Anda yakin ingin meninggalkan ruang kerja? Anda tidak akan lagi memiliki akses ke ruang kerja ini. Tindakan ini tidak dapat dibatalkan.", + details: { + full_name: "Nama lengkap", + display_name: "Nama tampilan", + email_address: "Alamat email", + account_type: "Tipe akun", + authentication: "Autentikasi", + joining_date: "Tanggal bergabung", + }, + modal: { + title: "Undang orang untuk berkolaborasi", + description: "Undang orang untuk berkolaborasi di ruang kerja Anda.", + button: "Kirim undangan", + button_loading: "Mengirim undangan", + placeholder: "name@company.com", + errors: { + required: "Kami perlu alamat email untuk mengundang mereka.", + invalid: "Email tidak valid", + }, + }, + }, + billing_and_plans: { + title: "Penagihan & Rencana", + current_plan: "Rencana saat ini", + free_plan: "Anda saat ini menggunakan rencana gratis", + view_plans: "Lihat rencana", + }, + exports: { + title: "Ekspor", + exporting: "Mengeskpor", + previous_exports: "Ekspor sebelumnya", + export_separate_files: "Ekspor data ke file terpisah", + modal: { + title: "Ekspor ke", + toasts: { + success: { + title: "Ekspor berhasil", + message: "Anda akan dapat mengunduh {entity} yang diekspor dari ekspor sebelumnya.", + }, + error: { + title: "Ekspor gagal", + message: "Ekspor tidak berhasil. Silakan coba lagi.", + }, + }, + }, + }, + webhooks: { + title: "Webhook", + add_webhook: "Tambah webhook", + modal: { + title: "Buat webhook", + details: "Detail webhook", + payload: "Payload URL", + question: "Peristiwa apa yang ingin Anda picu untuk webhook ini?", + error: "URL diperlukan", + }, + secret_key: { + title: "Kunci rahasia", + message: "Hasilkan token untuk masuk ke payload webhook", + }, + options: { + all: "Kirim saya semuanya", + individual: "Pilih peristiwa individu", + }, + toasts: { + created: { + title: "Webhook dibuat", + message: "Webhook telah berhasil dibuat", + }, + not_created: { + title: "Webhook tidak dibuat", + message: "Webhook tidak dapat dibuat", + }, + updated: { + title: "Webhook diperbarui", + message: "Webhook telah berhasil diperbarui", + }, + not_updated: { + title: "Webhook tidak diperbarui", + message: "Webhook tidak dapat diperbarui", + }, + removed: { + title: "Webhook dihapus", + message: "Webhook telah berhasil dihapus", + }, + not_removed: { + title: "Webhook tidak dihapus", + message: "Webhook tidak dapat dihapus", + }, + secret_key_copied: { + message: "Kunci rahasia disalin ke clipboard.", + }, + secret_key_not_copied: { + message: "Terjadi kesalahan saat menyalin kunci rahasia.", + }, + }, + }, + api_tokens: { + title: "Token API", + add_token: "Tambah token API", + create_token: "Buat token", + never_expires: "Tidak pernah kedaluwarsa", + generate_token: "Hasilkan token", + generating: "Menghasilkan", + delete: { + title: "Hapus token API", + description: + "Setiap aplikasi yang menggunakan token ini tidak akan memiliki akses ke data Plane. Tindakan ini tidak dapat dibatalkan.", + success: { + title: "Sukses!", + message: "Token API telah berhasil dihapus", + }, + error: { + title: "Kesalahan!", + message: "Token API tidak dapat dihapus", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Belum ada token API yang dibuat", + description: + "API Plane dapat digunakan untuk mengintegrasikan data Anda di Plane dengan sistem eksternal mana pun. Buat token untuk memulai.", + }, + webhooks: { + title: "Belum ada webhook yang ditambahkan", + description: "Buat webhook untuk menerima pembaruan waktu nyata dan mengotomatiskan tindakan.", + }, + exports: { + title: "Belum ada ekspor", + description: "Setiap kali Anda mengekspor, Anda juga akan memiliki salinan di sini untuk referensi.", + }, + imports: { + title: "Belum ada impor", + description: "Temukan semua impor Anda sebelumnya di sini dan unduh.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Pekerjaan Anda", + work: "Pekerjaan", + details: { + joined_on: "Bergabung pada", + time_zone: "Zona waktu", + }, + stats: { + workload: "Beban kerja", + overview: "Ikhtisar", + created: "Item kerja yang dibuat", + assigned: "Item kerja yang ditugaskan", + subscribed: "Item kerja yang disubscribe", + state_distribution: { + title: "Item kerja berdasarkan status", + empty: "Buat item kerja untuk melihatnya berdasarkan status dalam grafik untuk analisis yang lebih baik.", + }, + priority_distribution: { + title: "Item kerja berdasarkan Prioritas", + empty: "Buat item kerja untuk melihatnya berdasarkan prioritas dalam grafik untuk analisis yang lebih baik.", + }, + recent_activity: { + title: "Aktivitas terkini", + empty: "Kami tidak dapat menemukan data. Silakan lihat input Anda", + button: "Unduh aktivitas hari ini", + button_loading: "Mengunduh", + }, + }, + actions: { + profile: "Profil", + security: "Keamanan", + activity: "Aktivitas", + appearance: "Tampilan", + notifications: "Notifikasi", + }, + tabs: { + summary: "Ringkasan", + assigned: "Ditugaskan", + created: "Dibuat", + subscribed: "Disubscribe", + activity: "Aktivitas", + }, + empty_state: { + activity: { + title: "Belum ada aktivitas", + description: + "Mulai dengan membuat item kerja baru! Tambahkan detail dan properti. Jelajahi lebih lanjut di Plane untuk melihat aktivitas Anda.", + }, + assigned: { + title: "Tidak ada item kerja yang ditugaskan kepada Anda", + description: "Item kerja yang ditugaskan kepada Anda dapat dilacak dari sini.", + }, + created: { + title: "Belum ada item kerja", + description: "Semua item kerja yang dibuat oleh Anda hadir di sini, dan lacak langsung di sini.", + }, + subscribed: { + title: "Belum ada item kerja", + description: "Langganan item kerja yang Anda minati, lacak semuanya di sini.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Masukkan ID proyek", + please_select_a_timezone: "Silakan pilih zona waktu", + archive_project: { + title: "Arsipkan proyek", + description: + "Mengarsipkan proyek akan menghapus proyek Anda dari navigasi samping meskipun Anda masih dapat mengaksesnya dari halaman proyek Anda. Anda dapat memulihkan proyek tersebut atau menghapusnya kapan saja.", + button: "Arsipkan proyek", + }, + delete_project: { + title: "Hapus proyek", + description: + "Ketika menghapus proyek, semua data dan sumber daya di dalam proyek tersebut akan dihapus secara permanen dan tidak dapat dipulihkan.", + button: "Hapus proyek saya", + }, + toast: { + success: "Proyek berhasil diperbarui", + error: "Proyek tidak dapat diperbarui. Silakan coba lagi.", + }, + }, + members: { + label: "Anggota", + project_lead: "Pemimpin proyek", + default_assignee: "Penugas default", + guest_super_permissions: { + title: "Beri akses tampilan untuk semua item kerja untuk pengguna tamu:", + sub_heading: "Ini akan memungkinkan tamu untuk memiliki akses tampilan ke semua item kerja proyek.", + }, + invite_members: { + title: "Undang anggota", + sub_heading: "Undang anggota untuk bekerja di proyek Anda.", + select_co_worker: "Pilih rekan kerja", + }, + }, + states: { + describe_this_state_for_your_members: "Jelaskan status ini untuk anggota Anda.", + empty_state: { + title: "Tidak ada status yang tersedia untuk grup {groupKey}", + description: "Silakan buat status baru", + }, + }, + labels: { + label_title: "Judul label", + label_title_is_required: "Judul label diperlukan", + label_max_char: "Nama label tidak boleh lebih dari 255 karakter", + toast: { + error: "Kesalahan saat memperbarui label", + }, + }, + estimates: { + label: "Perkiraan", + title: "Aktifkan perkiraan untuk proyek saya", + description: "Ini membantu Anda dalam mengkomunikasikan kompleksitas dan beban kerja tim.", + no_estimate: "Tidak ada perkiraan", + new: "Sistem perkiraan baru", + create: { + custom: "Kustom", + start_from_scratch: "Mulai dari awal", + choose_template: "Pilih template", + choose_estimate_system: "Pilih sistem perkiraan", + enter_estimate_point: "Masukkan perkiraan", + step: "Langkah {step} dari {total}", + label: "Buat perkiraan", + }, + toasts: { + created: { + success: { + title: "Perkiraan dibuat", + message: "Perkiraan telah berhasil dibuat", + }, + error: { + title: "Pembuatan perkiraan gagal", + message: "Kami tidak dapat membuat perkiraan baru, silakan coba lagi.", + }, + }, + updated: { + success: { + title: "Perkiraan dimodifikasi", + message: "Perkiraan telah diperbarui dalam proyek Anda.", + }, + error: { + title: "Modifikasi perkiraan gagal", + message: "Kami tidak dapat memodifikasi perkiraan, silakan coba lagi", + }, + }, + enabled: { + success: { + title: "Berhasil!", + message: "Perkiraan telah diaktifkan.", + }, + }, + disabled: { + success: { + title: "Berhasil!", + message: "Perkiraan telah dinonaktifkan.", + }, + error: { + title: "Kesalahan!", + message: "Perkiraan tidak dapat dinonaktifkan. Silakan coba lagi", + }, + }, + }, + validation: { + min_length: "Perkiraan harus lebih besar dari 0.", + unable_to_process: "Kami tidak dapat memproses permintaan Anda, silakan coba lagi.", + numeric: "Perkiraan harus berupa nilai numerik.", + character: "Perkiraan harus berupa nilai karakter.", + empty: "Nilai perkiraan tidak boleh kosong.", + already_exists: "Nilai perkiraan sudah ada.", + unsaved_changes: "Anda memiliki beberapa perubahan yang belum disimpan, Harap simpan sebelum mengklik selesai", + remove_empty: + "Perkiraan tidak boleh kosong. Masukkan nilai di setiap bidang atau hapus yang tidak memiliki nilai.", + }, + systems: { + points: { + label: "Poin", + fibonacci: "Fibonacci", + linear: "Linear", + squares: "Kuadrat", + custom: "Kustom", + }, + categories: { + label: "Kategori", + t_shirt_sizes: "Ukuran Baju", + easy_to_hard: "Mudah ke sulit", + custom: "Kustom", + }, + time: { + label: "Waktu", + hours: "Jam", + }, + }, + }, + automations: { + label: "Otomatisasi", + "auto-archive": { + title: "Arsip otomatis item kerja yang ditutup", + description: "Plane akan mengarsipkan secara otomatis item kerja yang telah selesai atau dibatalkan.", + duration: "Arsip otomatis item kerja yang ditutup selama", + }, + "auto-close": { + title: "Tutup otomatis item kerja", + description: "Plane akan menutup secara otomatis item kerja yang belum selesai atau dibatalkan.", + duration: "Tutup otomatis item kerja yang tidak aktif selama", + auto_close_status: "Status penutupan otomatis", + }, + }, + empty_state: { + labels: { + title: "Belum ada label", + description: "Buat label untuk membantu mengatur dan memfilter item kerja dalam proyek Anda.", + }, + estimates: { + title: "Belum ada sistem perkiraan", + description: "Buat serangkaian perkiraan untuk mengkomunikasikan jumlah pekerjaan per item kerja.", + primary_button: "Tambah sistem perkiraan", + }, + }, + }, + project_cycles: { + add_cycle: "Tambah siklus", + more_details: "Detail lebih lanjut", + cycle: "Siklus", + update_cycle: "Perbarui siklus", + create_cycle: "Buat siklus", + no_matching_cycles: "Tidak ada siklus yang cocok", + remove_filters_to_see_all_cycles: "Hapus filter untuk melihat semua siklus", + remove_search_criteria_to_see_all_cycles: "Hapus kriteria pencarian untuk melihat semua siklus", + only_completed_cycles_can_be_archived: "Hanya siklus yang diselesaikan yang dapat diarsipkan", + active_cycle: { + label: "Siklus aktif", + progress: "Kemajuan", + chart: "Grafik burndown", + priority_issue: "Item kerja prioritas", + assignees: "Penugasan", + issue_burndown: "Burndown item kerja", + ideal: "Ideal", + current: "Sekarang", + labels: "Label", + }, + upcoming_cycle: { + label: "Siklus mendatang", + }, + completed_cycle: { + label: "Siklus selesai", + }, + status: { + days_left: "Hari tersisa", + completed: "Selesai", + yet_to_start: "Belum dimulai", + in_progress: "Sedang berlangsung", + draft: "Draf", + }, + action: { + restore: { + title: "Pulihkan siklus", + success: { + title: "Siklus dipulihkan", + description: "Siklus telah dipulihkan.", + }, + failed: { + title: "Pemulihan siklus gagal", + description: "Siklus tidak dapat dipulihkan. Silakan coba lagi.", + }, + }, + favorite: { + loading: "Menambahkan siklus ke favorit", + success: { + description: "Siklus ditambahkan ke favorit.", + title: "Sukses!", + }, + failed: { + description: "Gagal menambahkan siklus ke favorit. Silakan coba lagi.", + title: "Kesalahan!", + }, + }, + unfavorite: { + loading: "Menghapus siklus dari favorit", + success: { + description: "Siklus dihapus dari favorit.", + title: "Sukses!", + }, + failed: { + description: "Gagal menghapus siklus dari favorit. Silakan coba lagi.", + title: "Kesalahan!", + }, + }, + update: { + loading: "Memperbarui siklus", + success: { + description: "Siklus berhasil diperbarui.", + title: "Sukses!", + }, + failed: { + description: "Kesalahan saat memperbarui siklus. Silakan coba lagi.", + title: "Kesalahan!", + }, + error: { + already_exists: + "Anda sudah memiliki siklus pada tanggal yang diberikan, jika Anda ingin membuat siklus draf, Anda dapat melakukannya dengan menghapus kedua tanggal tersebut.", + }, + }, + }, + empty_state: { + general: { + title: "Kelompokkan dan bagi pekerjaan Anda dalam Siklus.", + description: + "Pecah pekerjaan menjadi bagian yang dibatasi waktu, kerjakan mundur dari tenggat waktu proyek Anda untuk menetapkan tanggal, dan buat kemajuan nyata sebagai tim.", + primary_button: { + text: "Tetapkan siklus pertama Anda", + comic: { + title: "Siklus adalah batas waktu berulang.", + description: + "Sprint, iterasi, dan istilah lain apa pun yang Anda gunakan untuk pelacakan pekerjaan mingguan atau dua mingguan adalah siklus.", + }, + }, + }, + no_issues: { + title: "Tidak ada item kerja yang ditambahkan ke siklus", + description: "Tambahkan atau buat item kerja yang ingin Anda batasi waktu dan kirim dalam siklus ini", + primary_button: { + text: "Buat item kerja baru", + }, + secondary_button: { + text: "Tambah item kerja yang ada", + }, + }, + completed_no_issues: { + title: "Tidak ada item kerja dalam siklus", + description: + "Tidak ada item kerja dalam siklus. Item kerja baik ditransfer atau disembunyikan. Untuk melihat item kerja yang disembunyikan jika ada, perbarui properti tampilan Anda sesuai.", + }, + active: { + title: "Tidak ada siklus aktif", + description: + "Siklus aktif mencakup periode apa pun yang mencakup tanggal hari ini dalam rentangnya. Temukan kemajuan dan detail siklus aktif di sini.", + }, + archived: { + title: "Belum ada siklus yang diarsipkan", + description: + "Untuk membersihkan proyek Anda, arsipkan siklus yang telah diselesaikan. Temukan di sini setelah diarsipkan.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Buat item kerja dan tugaskan kepada seseorang, bahkan kepada diri Anda sendiri", + description: + "Anggap item kerja sebagai pekerjaan, tugas, atau JTBD. Yang kami suka. Item kerja dan sub-item kerjanya biasanya merupakan tindakan berbasis waktu yang ditugaskan kepada anggota tim Anda. Tim Anda membuat, menetapkan, dan menyelesaikan item kerja untuk memindahkan proyek Anda menuju tujuannya.", + primary_button: { + text: "Buat item kerja pertama Anda", + comic: { + title: "Item kerja adalah blok bangunan di Plane.", + description: + "Mendesain ulang UI Plane, Mengganti merek perusahaan, atau Meluncurkan sistem injeksi bahan bakar baru adalah contoh item kerja yang kemungkinan besar memiliki sub-item kerja.", + }, + }, + }, + no_archived_issues: { + title: "Belum ada item kerja yang diarsipkan", + description: + "Secara manual atau melalui otomatisasi, Anda dapat mengarsipkan item kerja yang telah selesai atau dibatalkan. Temukan di sini setelah diarsipkan.", + primary_button: { + text: "Tetapkan otomatisasi", + }, + }, + issues_empty_filter: { + title: "Tidak ada item kerja ditemukan yang cocok dengan filter yang diterapkan", + secondary_button: { + text: "Bersihkan semua filter", + }, + }, + }, + }, + project_module: { + add_module: "Tambah Modul", + update_module: "Perbarui Modul", + create_module: "Buat Modul", + archive_module: "Arsipkan Modul", + restore_module: "Pulihkan Modul", + delete_module: "Hapus modul", + empty_state: { + general: { + title: "Peta tonggak proyek Anda ke Modul dan lacak pekerjaan terakumulasi dengan mudah.", + description: + "Sekelompok item kerja yang tergolong dalam induk yang logis dan hierarkis membentuk satu modul. Anggap saja mereka sebagai cara untuk melacak pekerjaan berdasarkan tonggak proyek. Mereka memiliki periode dan tenggat waktu sendiri serta analitik untuk membantu Anda melihat seberapa dekat atau jauh Anda dari tonggak tersebut.", + primary_button: { + text: "Buat modul pertama Anda", + comic: { + title: "Modul membantu mengelompokkan pekerjaan menurut hierarki.", + description: "Modul kereta, modul sasis, dan modul gudang adalah contoh bagus dari pengelompokan ini.", + }, + }, + }, + no_issues: { + title: "Tidak ada item kerja dalam modul", + description: "Buat atau tambahkan item kerja yang ingin Anda capai sebagai bagian dari modul ini", + primary_button: { + text: "Buat item kerja baru", + }, + secondary_button: { + text: "Tambahkan item kerja yang ada", + }, + }, + archived: { + title: "Belum ada Modul yang diarsipkan", + description: + "Untuk membersihkan proyek Anda, arsipkan modul yang telah selesai atau dibatalkan. Temukan di sini setelah diarsipkan.", + }, + sidebar: { + in_active: "Modul ini belum aktif.", + invalid_date: "Tanggal tidak valid. Silakan masukkan tanggal yang valid.", + }, + }, + quick_actions: { + archive_module: "Arsipkan modul", + archive_module_description: "Hanya modul yang telah diselesaikan atau dibatalkan\n yang dapat diarsipkan.", + delete_module: "Hapus modul", + }, + toast: { + copy: { + success: "Tautan modul disalin ke clipboard", + }, + delete: { + success: "Modul berhasil dihapus", + error: "Gagal menghapus modul", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Simpan tampilan yang difilter untuk proyek Anda. Buat sebanyak yang Anda perlukan", + description: + "Tampilan adalah sekumpulan filter yang disimpan yang Anda gunakan secara sering atau ingin akses mudah. Semua rekan Anda dalam proyek dapat melihat tampilan semua orang dan memilih yang paling sesuai dengan kebutuhan mereka.", + primary_button: { + text: "Buat tampilan pertama Anda", + comic: { + title: "Tampilan bekerja berdasarkan properti item kerja.", + description: + "Anda dapat membuat tampilan dari sini dengan sebanyak mungkin properti sebagai filter yang Anda anggap sesuai.", + }, + }, + }, + filter: { + title: "Tidak ada tampilan yang cocok", + description: "Tidak ada tampilan yang cocok dengan kriteria pencarian. \n Buat tampilan baru sebagai gantinya.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Tulis catatan, dokumen, atau seluruh basis pengetahuan. Dapatkan Galileo, asisten AI Plane, untuk membantu Anda memulai", + description: + "Halaman adalah ruang pemikiran di Plane. Catat notul rapat, format dengan mudah, sertakan item kerja, tata letak menggunakan perpustakaan komponen, dan simpan semua di dalam konteks proyek Anda. Untuk menyelesaikan dokumen dengan cepat, panggil Galileo, AI Plane, dengan pintasan atau dengan mengklik tombol.", + primary_button: { + text: "Buat halaman pertama Anda", + }, + }, + private: { + title: "Belum ada halaman pribadi", + description: + "Simpan pemikiran pribadi Anda di sini. Ketika Anda sudah siap untuk berbagi, tim hanya seklik jarak.", + primary_button: { + text: "Buat halaman pertama Anda", + }, + }, + public: { + title: "Belum ada halaman publik", + description: "Lihat halaman yang dibagikan dengan semua orang di proyek Anda tepat di sini.", + primary_button: { + text: "Buat halaman pertama Anda", + }, + }, + archived: { + title: "Belum ada halaman yang diarsipkan", + description: "Arsipkan halaman yang tidak ada dalam radar Anda. Akses di sini saat diperlukan.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Tidak ada hasil ditemukan", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Tidak ada item kerja yang cocok ditemukan", + }, + no_issues: { + title: "Tidak ada item kerja ditemukan", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Belum ada komentar", + description: "Komentar dapat digunakan sebagai ruang diskusi dan tindak lanjut untuk item kerja", + }, + }, + }, + notification: { + label: "Kotak Masuk", + page_label: "{workspace} - Kotak Masuk", + options: { + mark_all_as_read: "Tandai semua sebagai dibaca", + mark_read: "Tandai sebagai dibaca", + mark_unread: "Tandai sebagai tidak dibaca", + refresh: "Segarkan", + filters: "Filter Kotak Masuk", + show_unread: "Tampilkan yang belum dibaca", + show_snoozed: "Tampilkan yang ditunda", + show_archived: "Tampilkan yang diarsipkan", + mark_archive: "Arsipkan", + mark_unarchive: "Hapus arsip", + mark_snooze: "Tunda", + mark_unsnooze: "Hapus tunda", + }, + toasts: { + read: "Notifikasi ditandai sebagai dibaca", + unread: "Notifikasi ditandai sebagai tidak dibaca", + archived: "Notifikasi ditandai sebagai diarsipkan", + unarchived: "Notifikasi ditandai sebagai dihapus arsip", + snoozed: "Notifikasi ditunda", + unsnoozed: "Notifikasi dihapus tunda", + }, + empty_state: { + detail: { + title: "Pilih untuk melihat detail.", + }, + all: { + title: "Tidak ada item kerja yang ditugaskan", + description: "Pembaruan untuk item kerja yang ditugaskan kepada Anda dapat dilihat di sini", + }, + mentions: { + title: "Tidak ada item kerja yang ditugaskan", + description: "Pembaruan untuk item kerja yang ditugaskan kepada Anda dapat dilihat di sini", + }, + }, + tabs: { + all: "Semua", + mentions: "Sebut", + }, + filter: { + assigned: "Ditugaskan untuk saya", + created: "Dibuat oleh saya", + subscribed: "Disubscribe oleh saya", + }, + snooze: { + "1_day": "1 hari", + "3_days": "3 hari", + "5_days": "5 hari", + "1_week": "1 minggu", + "2_weeks": "2 minggu", + custom: "Kustom", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Tambahkan item kerja ke siklus untuk melihat kemajuannya", + }, + chart: { + title: "Tambahkan item kerja ke siklus untuk melihat grafik burndown.", + }, + priority_issue: { + title: "Amati item kerja prioritas yang ditangani dalam siklus pada pandangan pertama.", + }, + assignee: { + title: "Tambahkan penugasan ke item kerja untuk melihat pembagian kerja berdasarkan penugasan.", + }, + label: { + title: "Tambahkan label ke item kerja untuk melihat pembagian kerja berdasarkan label.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Intake tidak diaktifkan untuk proyek ini.", + description: + "Intake membantu Anda mengelola permintaan yang masuk ke proyek Anda dan menambahkannya sebagai item kerja dalam alur kerja Anda. Aktifkan intake dari pengaturan proyek untuk mengelola permintaan.", + primary_button: { + text: "Kelola fitur", + }, + }, + cycle: { + title: "Siklus tidak diaktifkan untuk proyek ini.", + description: + "Pecah pekerjaan menjadi bagian yang dibatasi waktu, kerjakan mundur dari tenggat waktu proyek Anda untuk menetapkan tanggal, dan buat kemajuan nyata sebagai tim. Aktifkan fitur siklus untuk proyek Anda agar dapat mulai menggunakannya.", + primary_button: { + text: "Kelola fitur", + }, + }, + module: { + title: "Modul tidak diaktifkan untuk proyek ini.", + description: + "Modul adalah blok bangunan dari proyek Anda. Aktifkan modul dari pengaturan proyek untuk mulai menggunakannya.", + primary_button: { + text: "Kelola fitur", + }, + }, + page: { + title: "Halaman tidak diaktifkan untuk proyek ini.", + description: + "Halaman adalah blok bangunan dari proyek Anda. Aktifkan halaman dari pengaturan proyek untuk mulai menggunakannya.", + primary_button: { + text: "Kelola fitur", + }, + }, + view: { + title: "Tampilan tidak diaktifkan untuk proyek ini.", + description: + "Tampilan adalah blok bangunan dari proyek Anda. Aktifkan tampilan dari pengaturan proyek untuk mulai menggunakannya.", + primary_button: { + text: "Kelola fitur", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Draf item kerja", + empty_state: { + title: "Item kerja setengah jadi, dan segera, komentar akan muncul di sini.", + description: + "Untuk mencoba ini, mulai dengan menambahkan item kerja dan tinggalkan di tengah jalan atau buat draf pertama Anda di bawah ini. 😉", + primary_button: { + text: "Buat draf pertama Anda", + }, + }, + delete_modal: { + title: "Hapus draf", + description: "Apakah Anda yakin ingin menghapus draf ini? Tindakan ini tidak dapat dibatalkan.", + }, + toasts: { + created: { + success: "Draf berhasil dibuat", + error: "Item kerja tidak dapat dibuat. Silakan coba lagi.", + }, + deleted: { + success: "Draf berhasil dihapus", + }, + }, + }, + stickies: { + title: "Catatan tempel Anda", + placeholder: "klik untuk mengetik di sini", + all: "Semua catatan tempel", + "no-data": + "Tuliskan sebuah ide, tangkap momen aha, atau catat pemikiran brilian. Tambahkan catatan tempel untuk memulai.", + add: "Tambah catatan tempel", + search_placeholder: "Cari berdasarkan judul", + delete: "Hapus catatan tempel", + delete_confirmation: "Apakah Anda yakin ingin menghapus catatan tempel ini?", + empty_state: { + simple: + "Tuliskan sebuah ide, tangkap momen aha, atau catat pemikiran brilian. Tambahkan catatan tempel untuk memulai.", + general: { + title: "Catatan tempel adalah catatan cepat dan tugas yang Anda buat secara langsung.", + description: + "Tangkap pemikiran dan ide Anda dengan mudah dengan membuat catatan tempel yang dapat Anda akses kapan saja dan dari mana saja.", + primary_button: { + text: "Tambah catatan tempel", + }, + }, + search: { + title: "Itu tidak cocok dengan salah satu catatan tempel Anda.", + description: "Coba istilah yang berbeda atau beri tahu kami\njika Anda yakin pencarian Anda benar. ", + primary_button: { + text: "Tambah catatan tempel", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Nama catatan tempel tidak boleh lebih dari 100 karakter.", + already_exists: "Sudah ada catatan tempel dengan tidak ada deskripsi", + }, + created: { + title: "Catatan tempel berhasil dibuat", + message: "Catatan tempel telah berhasil dibuat", + }, + not_created: { + title: "Catatan tempel tidak dibuat", + message: "Catatan tempel tidak dapat dibuat", + }, + updated: { + title: "Catatan tempel diperbarui", + message: "Catatan tempel telah berhasil diperbarui", + }, + not_updated: { + title: "Catatan tempel tidak diperbarui", + message: "Catatan tempel tidak dapat diperbarui", + }, + removed: { + title: "Catatan tempel dihapus", + message: "Catatan tempel telah berhasil dihapus", + }, + not_removed: { + title: "Catatan tempel tidak dihapus", + message: "Catatan tempel tidak dapat dihapus", + }, + }, + }, + role_details: { + guest: { + title: "Tamu", + description: "Anggota eksternal organisasi dapat diundang sebagai tamu.", + }, + member: { + title: "Anggota", + description: + "Kemampuan untuk membaca, menulis, mengedit, dan menghapus entitas di dalam proyek, siklus, dan modul", + }, + admin: { + title: "Admin", + description: "Semua izin diatur ke true dalam ruang kerja.", + }, + }, + user_roles: { + product_or_project_manager: "Manajer Produk / Proyek", + development_or_engineering: "Pengembangan / Rekayasa", + founder_or_executive: "Pendiri / Eksekutif", + freelancer_or_consultant: "Freelancer / Konsultan", + marketing_or_growth: "Pemasaran / Pertumbuhan", + sales_or_business_development: "Penjualan / Pengembangan Bisnis", + support_or_operations: "Dukungan / Operasi", + student_or_professor: "Mahasiswa / Profesor", + human_resources: "Sumber Daya Manusia", + other: "Lainnya", + }, + importer: { + github: { + title: "Github", + description: "Impor item kerja dari repositori GitHub dan sinkronkan.", + }, + jira: { + title: "Jira", + description: "Impor item kerja dan epik dari proyek dan epik Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Ekspor item kerja ke file CSV.", + short_description: "Ekspor sebagai csv", + }, + excel: { + title: "Excel", + description: "Ekspor item kerja ke file Excel.", + short_description: "Ekspor sebagai excel", + }, + xlsx: { + title: "Excel", + description: "Ekspor item kerja ke file Excel.", + short_description: "Ekspor sebagai excel", + }, + json: { + title: "JSON", + description: "Ekspor item kerja ke file JSON.", + short_description: "Ekspor sebagai json", + }, + }, + default_global_view: { + all_issues: "Semua item kerja", + assigned: "Ditugaskan", + created: "Dibuat", + subscribed: "Disubscribe", + }, + themes: { + theme_options: { + system_preference: { + label: "Preferensi sistem", + }, + light: { + label: "Cerah", + }, + dark: { + label: "Gelap", + }, + light_contrast: { + label: "Cerah kontras tinggi", + }, + dark_contrast: { + label: "Gelap kontras tinggi", + }, + custom: { + label: "Tema kustom", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Direncanakan", + in_progress: "Dalam Proses", + paused: "Dijeda", + completed: "Selesai", + cancelled: "Dibatalkan", + }, + layout: { + list: "Tata letak daftar", + board: "Tata letak galeri", + timeline: "Tata letak garis waktu", + }, + order_by: { + name: "Nama", + progress: "Kemajuan", + issues: "Jumlah item kerja", + due_date: "Tanggal jatuh tempo", + created_at: "Tanggal dibuat", + manual: "Manual", + }, + }, + cycle: { + label: "{count, plural, one {Siklus} other {Siklus}}", + no_cycle: "Tidak ada siklus", + }, + module: { + label: "{count, plural, one {Modul} other {Modul}}", + no_module: "Tidak ada modul", + }, + description_versions: { + last_edited_by: "Terakhir disunting oleh", + previously_edited_by: "Sebelumnya disunting oleh", + edited_by: "Disunting oleh", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane tidak berhasil dimulai. Ini bisa karena satu atau lebih layanan Plane gagal untuk dimulai.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Pilih View Logs dari setup.sh dan log Docker untuk memastikan.", + }, + no_of: "Jumlah {entity}", + page_navigation_pane: { + tabs: { + outline: { + label: "Garis Besar", + empty_state: { + title: "Judul hilang", + description: "Mari tambahkan beberapa judul di halaman ini untuk melihatnya di sini.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Kata", + characters: "Karakter", + paragraphs: "Paragraf", + read_time: "Waktu baca", + }, + actors_info: { + edited_by: "Disunting oleh", + created_by: "Dibuat oleh", + }, + version_history: { + label: "Riwayat versi", + current_version: "Versi saat ini", + }, + }, + assets: { + label: "Aset", + download_button: "Unduh", + empty_state: { + title: "Gambar hilang", + description: "Tambahkan gambar untuk melihatnya di sini.", + }, + }, + }, + open_button: "Buka panel navigasi", + close_button: "Tutup panel navigasi", + outline_floating_button: "Buka garis besar", + }, +} as const; diff --git a/packages/i18n/src/locales/index.ts b/packages/i18n/src/locales/index.ts index 86ecc6bd5f..0bdf18a64b 100644 --- a/packages/i18n/src/locales/index.ts +++ b/packages/i18n/src/locales/index.ts @@ -1,105 +1,105 @@ // Export all locale files to make them accessible from the package root -export { default as enCore } from "./en/core.json"; -export { default as enTranslations } from "./en/translations.json"; -export { default as enAccessibility } from "./en/accessibility.json"; -export { default as enEditor } from "./en/editor.json"; +export { default as enCore } from "./en/core"; +export { default as enTranslations } from "./en/translations"; +export { default as enAccessibility } from "./en/accessibility"; +export { default as enEditor } from "./en/editor"; // Export locale data for all supported languages export const locales = { en: { - core: () => import("./en/core.json"), - translations: () => import("./en/translations.json"), - accessibility: () => import("./en/accessibility.json"), - editor: () => import("./en/editor.json"), + core: () => import("./en/core"), + translations: () => import("./en/translations"), + accessibility: () => import("./en/accessibility"), + editor: () => import("./en/editor"), }, fr: { - translations: () => import("./fr/translations.json"), - accessibility: () => import("./fr/accessibility.json"), - editor: () => import("./fr/editor.json"), + translations: () => import("./fr/translations"), + accessibility: () => import("./fr/accessibility"), + editor: () => import("./fr/editor"), }, es: { - translations: () => import("./es/translations.json"), - accessibility: () => import("./es/accessibility.json"), - editor: () => import("./es/editor.json"), + translations: () => import("./es/translations"), + accessibility: () => import("./es/accessibility"), + editor: () => import("./es/editor"), }, ja: { - translations: () => import("./ja/translations.json"), - accessibility: () => import("./ja/accessibility.json"), - editor: () => import("./ja/editor.json"), + translations: () => import("./ja/translations"), + accessibility: () => import("./ja/accessibility"), + editor: () => import("./ja/editor"), }, "zh-CN": { - translations: () => import("./zh-CN/translations.json"), - accessibility: () => import("./zh-CN/accessibility.json"), - editor: () => import("./zh-CN/editor.json"), + translations: () => import("./zh-CN/translations"), + accessibility: () => import("./zh-CN/accessibility"), + editor: () => import("./zh-CN/editor"), }, "zh-TW": { - translations: () => import("./zh-TW/translations.json"), - accessibility: () => import("./zh-TW/accessibility.json"), - editor: () => import("./zh-TW/editor.json"), + translations: () => import("./zh-TW/translations"), + accessibility: () => import("./zh-TW/accessibility"), + editor: () => import("./zh-TW/editor"), }, ru: { - translations: () => import("./ru/translations.json"), - accessibility: () => import("./ru/accessibility.json"), - editor: () => import("./ru/editor.json"), + translations: () => import("./ru/translations"), + accessibility: () => import("./ru/accessibility"), + editor: () => import("./ru/editor"), }, it: { - translations: () => import("./it/translations.json"), - accessibility: () => import("./it/accessibility.json"), - editor: () => import("./it/editor.json"), + translations: () => import("./it/translations"), + accessibility: () => import("./it/accessibility"), + editor: () => import("./it/editor"), }, cs: { - translations: () => import("./cs/translations.json"), - accessibility: () => import("./cs/accessibility.json"), - editor: () => import("./cs/editor.json"), + translations: () => import("./cs/translations"), + accessibility: () => import("./cs/accessibility"), + editor: () => import("./cs/editor"), }, sk: { - translations: () => import("./sk/translations.json"), - accessibility: () => import("./sk/accessibility.json"), - editor: () => import("./sk/editor.json"), + translations: () => import("./sk/translations"), + accessibility: () => import("./sk/accessibility"), + editor: () => import("./sk/editor"), }, de: { - translations: () => import("./de/translations.json"), - accessibility: () => import("./de/accessibility.json"), - editor: () => import("./de/editor.json"), + translations: () => import("./de/translations"), + accessibility: () => import("./de/accessibility"), + editor: () => import("./de/editor"), }, ua: { - translations: () => import("./ua/translations.json"), - accessibility: () => import("./ua/accessibility.json"), - editor: () => import("./ua/editor.json"), + translations: () => import("./ua/translations"), + accessibility: () => import("./ua/accessibility"), + editor: () => import("./ua/editor"), }, pl: { - translations: () => import("./pl/translations.json"), - accessibility: () => import("./pl/accessibility.json"), - editor: () => import("./pl/editor.json"), + translations: () => import("./pl/translations"), + accessibility: () => import("./pl/accessibility"), + editor: () => import("./pl/editor"), }, ko: { - translations: () => import("./ko/translations.json"), - accessibility: () => import("./ko/accessibility.json"), - editor: () => import("./ko/editor.json"), + translations: () => import("./ko/translations"), + accessibility: () => import("./ko/accessibility"), + editor: () => import("./ko/editor"), }, "pt-BR": { - translations: () => import("./pt-BR/translations.json"), - accessibility: () => import("./pt-BR/accessibility.json"), - editor: () => import("./pt-BR/editor.json"), + translations: () => import("./pt-BR/translations"), + accessibility: () => import("./pt-BR/accessibility"), + editor: () => import("./pt-BR/editor"), }, id: { - translations: () => import("./id/translations.json"), - accessibility: () => import("./id/accessibility.json"), - editor: () => import("./id/editor.json"), + translations: () => import("./id/translations"), + accessibility: () => import("./id/accessibility"), + editor: () => import("./id/editor"), }, ro: { - translations: () => import("./ro/translations.json"), - accessibility: () => import("./ro/accessibility.json"), - editor: () => import("./ro/editor.json"), + translations: () => import("./ro/translations"), + accessibility: () => import("./ro/accessibility"), + editor: () => import("./ro/editor"), }, "vi-VN": { - translations: () => import("./vi-VN/translations.json"), - accessibility: () => import("./vi-VN/accessibility.json"), - editor: () => import("./vi-VN/editor.json"), + translations: () => import("./vi-VN/translations"), + accessibility: () => import("./vi-VN/accessibility"), + editor: () => import("./vi-VN/editor"), }, "tr-TR": { - translations: () => import("./tr-TR/translations.json"), - accessibility: () => import("./tr-TR/accessibility.json"), - editor: () => import("./tr-TR/editor.json"), + translations: () => import("./tr-TR/translations"), + accessibility: () => import("./tr-TR/accessibility"), + editor: () => import("./tr-TR/editor"), }, }; diff --git a/packages/i18n/src/locales/it/accessibility.json b/packages/i18n/src/locales/it/accessibility.json deleted file mode 100644 index 16d22bcbc1..0000000000 --- a/packages/i18n/src/locales/it/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo dell'area di lavoro", - "open_workspace_switcher": "Apri selettore area di lavoro", - "open_user_menu": "Apri menu utente", - "open_command_palette": "Apri tavolozza comandi", - "open_extended_sidebar": "Apri barra laterale estesa", - "close_extended_sidebar": "Chiudi barra laterale estesa", - "create_favorites_folder": "Crea cartella preferiti", - "open_folder": "Apri cartella", - "close_folder": "Chiudi cartella", - "open_favorites_menu": "Apri menu preferiti", - "close_favorites_menu": "Chiudi menu preferiti", - "enter_folder_name": "Inserisci nome cartella", - "create_new_project": "Crea nuovo progetto", - "open_projects_menu": "Apri menu progetti", - "close_projects_menu": "Chiudi menu progetti", - "toggle_quick_actions_menu": "Attiva/disattiva menu azioni rapide", - "open_project_menu": "Apri menu progetto", - "close_project_menu": "Chiudi menu progetto", - "collapse_sidebar": "Comprimi barra laterale", - "expand_sidebar": "Espandi barra laterale", - "edition_badge": "Apri modal piani a pagamento" - }, - "auth_forms": { - "clear_email": "Cancella email", - "show_password": "Mostra password", - "hide_password": "Nascondi password", - "close_alert": "Chiudi avviso", - "close_popover": "Chiudi popover" - } - } -} diff --git a/packages/i18n/src/locales/it/accessibility.ts b/packages/i18n/src/locales/it/accessibility.ts new file mode 100644 index 0000000000..64e53c6af1 --- /dev/null +++ b/packages/i18n/src/locales/it/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo dell'area di lavoro", + open_workspace_switcher: "Apri selettore area di lavoro", + open_user_menu: "Apri menu utente", + open_command_palette: "Apri tavolozza comandi", + open_extended_sidebar: "Apri barra laterale estesa", + close_extended_sidebar: "Chiudi barra laterale estesa", + create_favorites_folder: "Crea cartella preferiti", + open_folder: "Apri cartella", + close_folder: "Chiudi cartella", + open_favorites_menu: "Apri menu preferiti", + close_favorites_menu: "Chiudi menu preferiti", + enter_folder_name: "Inserisci nome cartella", + create_new_project: "Crea nuovo progetto", + open_projects_menu: "Apri menu progetti", + close_projects_menu: "Chiudi menu progetti", + toggle_quick_actions_menu: "Attiva/disattiva menu azioni rapide", + open_project_menu: "Apri menu progetto", + close_project_menu: "Chiudi menu progetto", + collapse_sidebar: "Comprimi barra laterale", + expand_sidebar: "Espandi barra laterale", + edition_badge: "Apri modal piani a pagamento", + }, + auth_forms: { + clear_email: "Cancella email", + show_password: "Mostra password", + hide_password: "Nascondi password", + close_alert: "Chiudi avviso", + close_popover: "Chiudi popover", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/it/editor.json b/packages/i18n/src/locales/it/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/it/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/it/editor.ts b/packages/i18n/src/locales/it/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/it/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/it/translations.json b/packages/i18n/src/locales/it/translations.json deleted file mode 100644 index a29e0295d3..0000000000 --- a/packages/i18n/src/locales/it/translations.json +++ /dev/null @@ -1,2532 +0,0 @@ -{ - "sidebar": { - "projects": "Progetti", - "pages": "Pagine", - "new_work_item": "Nuovo elemento di lavoro", - "home": "Home", - "your_work": "Il tuo lavoro", - "inbox": "Posta in arrivo", - "workspace": "workspace", - "views": "Visualizzazioni", - "analytics": "Analisi", - "work_items": "Elementi di lavoro", - "cycles": "Cicli", - "modules": "Moduli", - "intake": "Intake", - "drafts": "Bozze", - "favorites": "Preferiti", - "pro": "Pro", - "upgrade": "Aggiorna" - }, - "auth": { - "common": { - "email": { - "label": "Email", - "placeholder": "nome@azienda.com", - "errors": { - "required": "Email è obbligatoria", - "invalid": "Email non valida" - } - }, - "password": { - "label": "Password", - "set_password": "Imposta una password", - "placeholder": "Inserisci la password", - "confirm_password": { - "label": "Conferma password", - "placeholder": "Conferma password" - }, - "current_password": { - "label": "Password attuale" - }, - "new_password": { - "label": "Nuova password", - "placeholder": "Inserisci nuova password" - }, - "change_password": { - "label": { - "default": "Cambia password", - "submitting": "Cambiando password" - } - }, - "errors": { - "match": "Le password non corrispondono", - "empty": "Per favore inserisci la tua password", - "length": "La lunghezza della password deve essere superiore a 8 caratteri", - "strength": { - "weak": "La password è debole", - "strong": "La password è forte" - } - }, - "submit": "Imposta password", - "toast": { - "change_password": { - "success": { - "title": "Successo!", - "message": "Password cambiata con successo." - }, - "error": { - "title": "Errore!", - "message": "Qualcosa è andato storto. Per favore riprova." - } - } - } - }, - "unique_code": { - "label": "Codice unico", - "placeholder": "gets-sets-flys", - "paste_code": "Incolla il codice inviato alla tua email", - "requesting_new_code": "Richiesta di nuovo codice", - "sending_code": "Invio codice" - }, - "already_have_an_account": "Hai già un account?", - "login": "Accedi", - "create_account": "Crea un account", - "new_to_plane": "Nuovo su Plane?", - "back_to_sign_in": "Torna al login", - "resend_in": "Reinvia in {seconds} secondi", - "sign_in_with_unique_code": "Accedi con codice unico", - "forgot_password": "Hai dimenticato la password?" - }, - "sign_up": { - "header": { - "label": "Crea un account per iniziare a gestire il lavoro con il tuo team.", - "step": { - "email": { - "header": "Registrati", - "sub_header": "" - }, - "password": { - "header": "Registrati", - "sub_header": "Registrati utilizzando una combinazione email-password." - }, - "unique_code": { - "header": "Registrati", - "sub_header": "Registrati utilizzando un codice unico inviato all'indirizzo email sopra." - } - } - }, - "errors": { - "password": { - "strength": "Prova a impostare una password forte per procedere" - } - } - }, - "sign_in": { - "header": { - "label": "Accedi per iniziare a gestire il lavoro con il tuo team.", - "step": { - "email": { - "header": "Accedi o registrati", - "sub_header": "" - }, - "password": { - "header": "Accedi o registrati", - "sub_header": "Usa la tua combinazione email-password per accedere." - }, - "unique_code": { - "header": "Accedi o registrati", - "sub_header": "Accedi utilizzando un codice unico inviato all'indirizzo email sopra." - } - } - } - }, - "forgot_password": { - "title": "Reimposta la tua password", - "description": "Inserisci l'indirizzo email verificato del tuo account utente e ti invieremo un link per reimpostare la password.", - "email_sent": "Abbiamo inviato il link di reimpostazione al tuo indirizzo email", - "send_reset_link": "Invia link di reimpostazione", - "errors": { - "smtp_not_enabled": "Vediamo che il tuo amministratore non ha abilitato SMTP, non saremo in grado di inviare un link di reimpostazione della password" - }, - "toast": { - "success": { - "title": "Email inviata", - "message": "Controlla la tua inbox per un link per reimpostare la tua password. Se non appare entro pochi minuti, controlla la tua cartella spam." - }, - "error": { - "title": "Errore!", - "message": "Qualcosa è andato storto. Per favore riprova." - } - } - }, - "reset_password": { - "title": "Imposta nuova password", - "description": "Proteggi il tuo account con una password forte" - }, - "set_password": { - "title": "Proteggi il tuo account", - "description": "Impostare una password ti aiuta a accedere in modo sicuro" - }, - "sign_out": { - "toast": { - "error": { - "title": "Errore!", - "message": "Impossibile disconnettersi. Per favore riprova." - } - } - } - }, - "submit": "Conferma", - "cancel": "Annulla", - "loading": "Caricamento", - "error": "Errore", - "success": "Successo", - "warning": "Avviso", - "info": "Informazioni", - "close": "Chiudi", - "yes": "Sì", - "no": "No", - "ok": "OK", - "name": "Nome", - "description": "Descrizione", - "search": "Cerca", - "add_member": "Aggiungi membro", - "adding_members": "Aggiungendo membri", - "remove_member": "Rimuovi membro", - "add_members": "Aggiungi membri", - "adding_member": "Aggiungendo membro", - "remove_members": "Rimuovi membri", - "add": "Aggiungi", - "adding": "Aggiungendo", - "remove": "Rimuovi", - "add_new": "Aggiungi nuovo", - "remove_selected": "Rimuovi selezionati", - "first_name": "Nome", - "last_name": "Cognome", - "email": "Email", - "display_name": "Nome visualizzato", - "role": "Ruolo", - "timezone": "Fuso orario", - "avatar": "Avatar", - "cover_image": "Immagine di copertina", - "password": "Password", - "change_cover": "Cambia copertina", - "language": "Lingua", - "saving": "Salvataggio in corso", - "save_changes": "Salva modifiche", - "deactivate_account": "Disattiva account", - "deactivate_account_description": "Disattivando un account, tutti i dati e le risorse al suo interno verranno rimossi definitivamente e non potranno essere recuperati.", - "profile_settings": "Impostazioni del profilo", - "your_account": "Il tuo account", - "security": "Sicurezza", - "activity": "Attività", - "appearance": "Aspetto", - "notifications": "Notifiche", - "workspaces": "Spazi di lavoro", - "create_workspace": "Crea spazio di lavoro", - "invitations": "Inviti", - "summary": "Riepilogo", - "assigned": "Assegnato", - "created": "Creato", - "subscribed": "Iscritto", - "you_do_not_have_the_permission_to_access_this_page": "Non hai il permesso di accedere a questa pagina.", - "something_went_wrong_please_try_again": "Qualcosa è andato storto. Per favore, riprova.", - "load_more": "Carica di più", - "select_or_customize_your_interface_color_scheme": "Seleziona o personalizza lo schema dei colori dell'interfaccia.", - "theme": "Tema", - "system_preference": "Preferenza di sistema", - "light": "Chiaro", - "dark": "Scuro", - "light_contrast": "Contrasto elevato chiaro", - "dark_contrast": "Contrasto elevato scuro", - "custom": "Tema personalizzato", - "select_your_theme": "Seleziona il tuo tema", - "customize_your_theme": "Personalizza il tuo tema", - "background_color": "Colore di sfondo", - "text_color": "Colore del testo", - "primary_color": "Colore primario (Tema)", - "sidebar_background_color": "Colore di sfondo della barra laterale", - "sidebar_text_color": "Colore del testo della barra laterale", - "set_theme": "Imposta tema", - "enter_a_valid_hex_code_of_6_characters": "Inserisci un codice esadecimale valido di 6 caratteri", - "background_color_is_required": "Il colore di sfondo è obbligatorio", - "text_color_is_required": "Il colore del testo è obbligatorio", - "primary_color_is_required": "Il colore primario è obbligatorio", - "sidebar_background_color_is_required": "Il colore di sfondo della barra laterale è obbligatorio", - "sidebar_text_color_is_required": "Il colore del testo della barra laterale è obbligatorio", - "updating_theme": "Aggiornamento del tema in corso", - "theme_updated_successfully": "Tema aggiornato con successo", - "failed_to_update_the_theme": "Impossibile aggiornare il tema", - "email_notifications": "Notifiche via email", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Rimani aggiornato sugli elementi di lavoro a cui sei iscritto. Abilita questa opzione per ricevere notifiche.", - "email_notification_setting_updated_successfully": "Impostazioni delle notifiche email aggiornate con successo", - "failed_to_update_email_notification_setting": "Impossibile aggiornare le impostazioni delle notifiche email", - "notify_me_when": "Avvisami quando", - "property_changes": "Modifiche alle proprietà", - "property_changes_description": "Avvisami quando le proprietà degli elementi di lavoro, come assegnatari, priorità, stime o altro, cambiano.", - "state_change": "Cambio di stato", - "state_change_description": "Avvisami quando l'elemento di lavoro passa a uno stato diverso", - "issue_completed": "Elemento di lavoro completato", - "issue_completed_description": "Avvisami solo quando un elemento di lavoro è completato", - "comments": "Commenti", - "comments_description": "Avvisami quando qualcuno lascia un commento sull'elemento di lavoro", - "mentions": "Menzioni", - "mentions_description": "Avvisami solo quando qualcuno mi menziona nei commenti o nella descrizione", - "old_password": "Vecchia password", - "general_settings": "Impostazioni generali", - "sign_out": "Esci", - "signing_out": "Uscita in corso", - "active_cycles": "Cicli attivi", - "active_cycles_description": "Monitora i cicli attraverso i progetti, segui gli elementi di lavoro ad alta priorità e analizza i cicli che necessitano attenzione.", - "on_demand_snapshots_of_all_your_cycles": "Snapshot on-demand di tutti i tuoi cicli", - "upgrade": "Aggiorna", - "10000_feet_view": "Vista panoramica (10.000 piedi) di tutti i cicli attivi.", - "10000_feet_view_description": "Effettua uno zoom indietro per vedere i cicli in esecuzione in tutti i tuoi progetti contemporaneamente, invece di passare da un ciclo all'altro in ogni progetto.", - "get_snapshot_of_each_active_cycle": "Ottieni uno snapshot di ogni ciclo attivo.", - "get_snapshot_of_each_active_cycle_description": "Monitora metriche di alto livello per tutti i cicli attivi, osserva il loro stato di avanzamento e valuta la portata rispetto alle scadenze.", - "compare_burndowns": "Confronta i burndown.", - "compare_burndowns_description": "Monitora le prestazioni di ciascun team con una rapida occhiata al report del burndown di ogni ciclo.", - "quickly_see_make_or_break_issues": "Visualizza rapidamente gli elementi di lavoro critici.", - "quickly_see_make_or_break_issues_description": "Visualizza in anteprima gli elementi di lavoro ad alta priorità per ogni ciclo in base alle scadenze. Vedi tutti con un solo clic.", - "zoom_into_cycles_that_need_attention": "Zoom sui cicli che richiedono attenzione.", - "zoom_into_cycles_that_need_attention_description": "Esamina lo stato di ogni ciclo che non rispetta le aspettative con un clic.", - "stay_ahead_of_blockers": "Anticipa gli ostacoli.", - "stay_ahead_of_blockers_description": "Individua le sfide tra i progetti e visualizza le dipendenze inter-cicliche non evidenti in altre viste.", - "analytics": "Analisi", - "workspace_invites": "Inviti allo spazio di lavoro", - "enter_god_mode": "Entra in modalità dio", - "workspace_logo": "Logo dello spazio di lavoro", - "new_issue": "Nuovo elemento di lavoro", - "your_work": "Il tuo lavoro", - "drafts": "Bozze", - "projects": "Progetti", - "views": "Visualizzazioni", - "workspace": "Spazio di lavoro", - "archives": "Archivi", - "settings": "Impostazioni", - "failed_to_move_favorite": "Impossibile spostare il preferito", - "favorites": "Preferiti", - "no_favorites_yet": "Nessun preferito ancora", - "create_folder": "Crea cartella", - "new_folder": "Nuova cartella", - "favorite_updated_successfully": "Preferito aggiornato con successo", - "favorite_created_successfully": "Preferito creato con successo", - "folder_already_exists": "La cartella esiste già", - "folder_name_cannot_be_empty": "Il nome della cartella non può essere vuoto", - "something_went_wrong": "Qualcosa è andato storto", - "failed_to_reorder_favorite": "Impossibile riordinare il preferito", - "favorite_removed_successfully": "Preferito rimosso con successo", - "failed_to_create_favorite": "Impossibile creare il preferito", - "failed_to_rename_favorite": "Impossibile rinominare il preferito", - "project_link_copied_to_clipboard": "Link del progetto copiato negli appunti", - "link_copied": "Link copiato", - "add_project": "Aggiungi progetto", - "create_project": "Crea progetto", - "failed_to_remove_project_from_favorites": "Impossibile rimuovere il progetto dai preferiti. Per favore, riprova.", - "project_created_successfully": "Progetto creato con successo", - "project_created_successfully_description": "Progetto creato con successo. Ora puoi iniziare ad aggiungere elementi di lavoro.", - "project_name_already_taken": "Il nome del progetto è già stato utilizzato.", - "project_identifier_already_taken": "L'identificatore del progetto è già stato utilizzato.", - "project_cover_image_alt": "Immagine di copertina del progetto", - "name_is_required": "Il nome è obbligatorio", - "title_should_be_less_than_255_characters": "Il titolo deve contenere meno di 255 caratteri", - "project_name": "Nome del progetto", - "project_id_must_be_at_least_1_character": "L'ID del progetto deve contenere almeno 1 carattere", - "project_id_must_be_at_most_5_characters": "L'ID del progetto deve contenere al massimo 5 caratteri", - "project_id": "ID del progetto", - "project_id_tooltip_content": "Ti aiuta a identificare in modo univoco gli elementi di lavoro nel progetto. Massimo 5 caratteri.", - "description_placeholder": "Descrizione", - "only_alphanumeric_non_latin_characters_allowed": "Sono ammessi solo caratteri alfanumerici e non latini.", - "project_id_is_required": "L'ID del progetto è obbligatorio", - "project_id_allowed_char": "Sono ammessi solo caratteri alfanumerici e non latini.", - "project_id_min_char": "L'ID del progetto deve contenere almeno 1 carattere", - "project_id_max_char": "L'ID del progetto deve contenere al massimo 5 caratteri", - "project_description_placeholder": "Inserisci la descrizione del progetto", - "select_network": "Seleziona rete", - "lead": "Responsabile", - "date_range": "Intervallo di date", - "private": "Privato", - "public": "Pubblico", - "accessible_only_by_invite": "Accessibile solo su invito", - "anyone_in_the_workspace_except_guests_can_join": "Chiunque nello spazio di lavoro, tranne gli ospiti, può unirsi", - "creating": "Creazione in corso", - "creating_project": "Creazione del progetto in corso", - "adding_project_to_favorites": "Aggiunta del progetto ai preferiti in corso", - "project_added_to_favorites": "Progetto aggiunto ai preferiti", - "couldnt_add_the_project_to_favorites": "Impossibile aggiungere il progetto ai preferiti. Per favore, riprova.", - "removing_project_from_favorites": "Rimozione del progetto dai preferiti in corso", - "project_removed_from_favorites": "Progetto rimosso dai preferiti", - "couldnt_remove_the_project_from_favorites": "Impossibile rimuovere il progetto dai preferiti. Per favore, riprova.", - "add_to_favorites": "Aggiungi ai preferiti", - "remove_from_favorites": "Rimuovi dai preferiti", - "publish_project": "Pubblica progetto", - "publish": "Pubblica", - "copy_link": "Copia link", - "leave_project": "Lascia progetto", - "join_the_project_to_rearrange": "Unisciti al progetto per riorganizzare", - "drag_to_rearrange": "Trascina per riorganizzare", - "congrats": "Congratulazioni!", - "open_project": "Apri progetto", - "issues": "Elementi di lavoro", - "cycles": "Cicli", - "modules": "Moduli", - "pages": "Pagine", - "intake": "Accoglienza", - "time_tracking": "Tracciamento del tempo", - "work_management": "Gestione del lavoro", - "projects_and_issues": "Progetti ed elementi di lavoro", - "projects_and_issues_description": "Attiva o disattiva queste opzioni per questo progetto.", - "cycles_description": "Definisci il tempo di lavoro per progetto e adatta il periodo secondo necessità. Un ciclo può durare 2 settimane, il successivo 1 settimana.", - "modules_description": "Organizza il lavoro in sotto-progetti con responsabili e assegnatari dedicati.", - "views_description": "Salva ordinamenti, filtri e opzioni di visualizzazione personalizzati o condividili con il tuo team.", - "pages_description": "Crea e modifica contenuti liberi: appunti, documenti, qualsiasi cosa.", - "intake_description": "Consenti ai non membri di segnalare bug, feedback e suggerimenti senza interrompere il tuo flusso di lavoro.", - "time_tracking_description": "Registra il tempo trascorso su elementi di lavoro e progetti.", - "work_management_description": "Gestisci il tuo lavoro e i tuoi progetti con facilità.", - "documentation": "Documentazione", - "message_support": "Contatta il supporto", - "contact_sales": "Contatta le vendite", - "hyper_mode": "Modalità Hyper", - "keyboard_shortcuts": "Scorciatoie da tastiera", - "whats_new": "Novità?", - "version": "Versione", - "we_are_having_trouble_fetching_the_updates": "Stiamo riscontrando problemi nel recuperare gli aggiornamenti.", - "our_changelogs": "i nostri changelog", - "for_the_latest_updates": "per gli ultimi aggiornamenti.", - "please_visit": "Per favore visita", - "docs": "Documentazione", - "full_changelog": "Changelog completo", - "support": "Supporto", - "discord": "Discord", - "powered_by_plane_pages": "Supportato da Plane Pages", - "please_select_at_least_one_invitation": "Seleziona almeno un invito.", - "please_select_at_least_one_invitation_description": "Seleziona almeno un invito per unirti allo spazio di lavoro.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Abbiamo notato che qualcuno ti ha invitato a unirti a uno spazio di lavoro", - "join_a_workspace": "Unisciti a uno spazio di lavoro", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Abbiamo notato che qualcuno ti ha invitato a unirti a uno spazio di lavoro", - "join_a_workspace_description": "Unisciti a uno spazio di lavoro", - "accept_and_join": "Accetta e unisciti", - "go_home": "Vai alla home", - "no_pending_invites": "Nessun invito in sospeso", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Qui puoi vedere se qualcuno ti invita a uno spazio di lavoro", - "back_to_home": "Torna alla home", - "workspace_name": "nome-spazio-di-lavoro", - "deactivate_your_account": "Disattiva il tuo account", - "deactivate_your_account_description": "Una volta disattivato, non potrai più essere assegnato a elementi di lavoro né addebitato per il tuo spazio di lavoro. Per riattivare il tuo account, avrai bisogno di un invito a uno spazio di lavoro associato a questo indirizzo email.", - "deactivating": "Disattivazione in corso", - "confirm": "Conferma", - "confirming": "Conferma in corso", - "draft_created": "Bozza creata", - "issue_created_successfully": "Elemento di lavoro creato con successo", - "draft_creation_failed": "Creazione della bozza fallita", - "issue_creation_failed": "Creazione dell'elemento di lavoro fallita", - "draft_issue": "Bozza di elemento di lavoro", - "issue_updated_successfully": "Elemento di lavoro aggiornato con successo", - "issue_could_not_be_updated": "Impossibile aggiornare l'elemento di lavoro", - "create_a_draft": "Crea una bozza", - "save_to_drafts": "Salva nelle bozze", - "save": "Salva", - "update": "Aggiorna", - "updating": "Aggiornamento in corso", - "create_new_issue": "Crea un nuovo elemento di lavoro", - "editor_is_not_ready_to_discard_changes": "L'editor non è pronto per scartare le modifiche", - "failed_to_move_issue_to_project": "Impossibile spostare l'elemento di lavoro nel progetto", - "create_more": "Crea altri", - "add_to_project": "Aggiungi al progetto", - "discard": "Scarta", - "duplicate_issue_found": "Elemento di lavoro duplicato trovato", - "duplicate_issues_found": "Elementi di lavoro duplicati trovati", - "no_matching_results": "Nessun risultato corrispondente", - "title_is_required": "Il titolo è obbligatorio", - "title": "Titolo", - "state": "Stato", - "priority": "Priorità", - "none": "Nessuna", - "urgent": "Urgente", - "high": "Alta", - "medium": "Media", - "low": "Bassa", - "members": "Membri", - "assignee": "Assegnatario", - "assignees": "Assegnatari", - "you": "Tu", - "labels": "Etichette", - "create_new_label": "Crea nuova etichetta", - "start_date": "Data di inizio", - "end_date": "Data di fine", - "due_date": "Scadenza", - "estimate": "Stima", - "change_parent_issue": "Cambia elemento di lavoro principale", - "remove_parent_issue": "Rimuovi elemento di lavoro principale", - "add_parent": "Aggiungi elemento principale", - "loading_members": "Caricamento membri", - "view_link_copied_to_clipboard": "Link di visualizzazione copiato negli appunti.", - "required": "Obbligatorio", - "optional": "Opzionale", - "Cancel": "Annulla", - "edit": "Modifica", - "archive": "Archivia", - "restore": "Ripristina", - "open_in_new_tab": "Apri in una nuova scheda", - "delete": "Elimina", - "deleting": "Eliminazione in corso", - "make_a_copy": "Crea una copia", - "move_to_project": "Sposta nel progetto", - "good": "Buono", - "morning": "Mattina", - "afternoon": "Pomeriggio", - "evening": "Sera", - "show_all": "Mostra tutto", - "show_less": "Mostra meno", - "no_data_yet": "Nessun dato disponibile", - "syncing": "Sincronizzazione in corso", - "add_work_item": "Aggiungi elemento di lavoro", - "advanced_description_placeholder": "Premi '/' per i comandi", - "create_work_item": "Crea elemento di lavoro", - "attachments": "Allegati", - "declining": "Rifiuto in corso", - "declined": "Rifiutato", - "decline": "Rifiuta", - "unassigned": "Non assegnato", - "work_items": "Elementi di lavoro", - "add_link": "Aggiungi link", - "points": "Punti", - "no_assignee": "Nessun assegnatario", - "no_assignees_yet": "Nessun assegnatario ancora", - "no_labels_yet": "Nessuna etichetta ancora", - "ideal": "Ideale", - "current": "Corrente", - "no_matching_members": "Nessun membro corrispondente", - "leaving": "Uscita in corso", - "removing": "Rimozione in corso", - "leave": "Esci", - "refresh": "Aggiorna", - "refreshing": "Aggiornamento in corso", - "refresh_status": "Stato dell'aggiornamento", - "prev": "Precedente", - "next": "Successivo", - "re_generating": "Rigenerazione in corso", - "re_generate": "Rigenera", - "re_generate_key": "Rigenera chiave", - "export": "Esporta", - "member": "{count, plural, one {# membro} other {# membri}}", - "new_password_must_be_different_from_old_password": "La nuova password deve essere diversa dalla password precedente", - "edited": "Modificato", - "bot": "Bot", - "project_view": { - "sort_by": { - "created_at": "Creato il", - "updated_at": "Aggiornato il", - "name": "Nome" - } - }, - "toast": { - "success": "Successo!", - "error": "Errore!" - }, - "links": { - "toasts": { - "created": { - "title": "Link creato", - "message": "Il link è stato creato con successo" - }, - "not_created": { - "title": "Link non creato", - "message": "Il link non può essere creato" - }, - "updated": { - "title": "Link aggiornato", - "message": "Il link è stato aggiornato con successo" - }, - "not_updated": { - "title": "Link non aggiornato", - "message": "Il link non può essere aggiornato" - }, - "removed": { - "title": "Link rimosso", - "message": "Il link è stato rimosso con successo" - }, - "not_removed": { - "title": "Link non rimosso", - "message": "Il link non può essere rimosso" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "La tua guida rapida", - "not_right_now": "Non ora", - "create_project": { - "title": "Crea un progetto", - "description": "La maggior parte delle cose inizia con un progetto in Plane.", - "cta": "Inizia" - }, - "invite_team": { - "title": "Invita il tuo team", - "description": "Collabora, lancia e gestisci insieme ai colleghi.", - "cta": "Invitali" - }, - "configure_workspace": { - "title": "Configura il tuo spazio di lavoro.", - "description": "Attiva o disattiva le funzionalità o personalizza ulteriormente.", - "cta": "Configura questo spazio" - }, - "personalize_account": { - "title": "Rendi Plane tuo.", - "description": "Scegli la tua immagine, i colori e altro.", - "cta": "Personalizza ora" - }, - "widgets": { - "title": "È silenzioso senza widget, attivali", - "description": "Sembra che tutti i tuoi widget siano disattivati. Attivali ora per migliorare la tua esperienza!", - "primary_button": { - "text": "Gestisci widget" - } - } - }, - "quick_links": { - "empty": "Salva link a elementi di lavoro che ti servono.", - "add": "Aggiungi link rapido", - "title": "Link rapido", - "title_plural": "Link rapidi" - }, - "recents": { - "title": "Recenti", - "empty": { - "project": "I tuoi progetti recenti appariranno qui una volta visitati.", - "page": "Le tue pagine recenti appariranno qui una volta visitate.", - "issue": "I tuoi elementi di lavoro recenti appariranno qui una volta visitati.", - "default": "Non hai ancora elementi recenti." - }, - "filters": { - "all": "Tutti", - "projects": "Progetti", - "pages": "Pagine", - "issues": "Elementi di lavoro" - } - }, - "new_at_plane": { - "title": "Novità su Plane" - }, - "quick_tutorial": { - "title": "Tutorial rapido" - }, - "widget": { - "reordered_successfully": "Widget riordinato con successo.", - "reordering_failed": "Si è verificato un errore durante il riordino del widget." - }, - "manage_widgets": "Gestisci widget", - "title": "Home", - "star_us_on_github": "Metti una stella su GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "L'URL non è valido", - "placeholder": "Digita o incolla un URL" - }, - "title": { - "text": "Titolo di visualizzazione", - "placeholder": "Come vorresti che apparisse questo link" - } - } - }, - "common": { - "all": "Tutti", - "states": "Stati", - "state": "Stato", - "state_groups": "Gruppi di stati", - "priority": "Priorità", - "team_project": "Progetto di squadra", - "project": "Progetto", - "cycle": "Ciclo", - "cycles": "Cicli", - "module": "Modulo", - "modules": "Moduli", - "labels": "Etichette", - "assignees": "Assegnatari", - "assignee": "Assegnatario", - "created_by": "Creato da", - "none": "Nessuno", - "link": "Link", - "estimate": "Stima", - "layout": "Layout", - "filters": "Filtri", - "display": "Visualizza", - "load_more": "Carica di più", - "activity": "Attività", - "analytics": "Analisi", - "dates": "Date", - "success": "Successo!", - "something_went_wrong": "Qualcosa è andato storto", - "error": { - "label": "Errore!", - "message": "Si è verificato un errore. Per favore, riprova." - }, - "group_by": "Raggruppa per", - "epic": "Epic", - "epics": "Epic", - "work_item": "Elemento di lavoro", - "work_items": "Elementi di lavoro", - "sub_work_item": "Sotto-elemento di lavoro", - "add": "Aggiungi", - "warning": "Avviso", - "updating": "Aggiornamento in corso", - "adding": "Aggiunta in corso", - "update": "Aggiorna", - "creating": "Creazione in corso", - "create": "Crea", - "cancel": "Annulla", - "description": "Descrizione", - "title": "Titolo", - "attachment": "Allegato", - "general": "Generale", - "features": "Funzionalità", - "automation": "Automazione", - "project_name": "Nome del progetto", - "project_id": "ID del progetto", - "project_timezone": "Fuso orario del progetto", - "created_on": "Creato il", - "update_project": "Aggiorna progetto", - "identifier_already_exists": "L'identificatore esiste già", - "add_more": "Aggiungi altro", - "defaults": "Predefiniti", - "add_label": "Aggiungi etichetta", - "estimates": "Stime", - "customize_time_range": "Personalizza intervallo di tempo", - "loading": "Caricamento", - "attachments": "Allegati", - "property": "Proprietà", - "properties": "Proprietà", - "parent": "Principale", - "page": "Pagina", - "remove": "Rimuovi", - "archiving": "Archiviazione in corso", - "archive": "Archivia", - "access": { - "public": "Pubblico", - "private": "Privato" - }, - "done": "Fatto", - "sub_work_items": "Sotto-elementi di lavoro", - "comment": "Commento", - "workspace_level": "Livello dello spazio di lavoro", - "order_by": { - "label": "Ordina per", - "manual": "Manuale", - "last_created": "Ultimo creato", - "last_updated": "Ultimo aggiornato", - "start_date": "Data di inizio", - "due_date": "Scadenza", - "asc": "Ascendente", - "desc": "Discendente", - "updated_on": "Aggiornato il" - }, - "sort": { - "asc": "Ascendente", - "desc": "Discendente", - "created_on": "Creato il", - "updated_on": "Aggiornato il" - }, - "comments": "Commenti", - "updates": "Aggiornamenti", - "clear_all": "Pulisci tutto", - "copied": "Copiato!", - "link_copied": "Link copiato!", - "link_copied_to_clipboard": "Link copiato negli appunti", - "copied_to_clipboard": "Link dell'elemento di lavoro copiato negli appunti", - "is_copied_to_clipboard": "Elemento di lavoro copiato negli appunti", - "no_links_added_yet": "Nessun link aggiunto ancora", - "add_link": "Aggiungi link", - "links": "Link", - "go_to_workspace": "Vai allo spazio di lavoro", - "progress": "Progresso", - "optional": "Opzionale", - "join": "Unisciti", - "go_back": "Torna indietro", - "continue": "Continua", - "resend": "Reinvia", - "relations": "Relazioni", - "errors": { - "default": { - "title": "Errore!", - "message": "Qualcosa è andato storto. Per favore, riprova." - }, - "required": "Questo campo è obbligatorio", - "entity_required": "{entity} è obbligatorio", - "restricted_entity": "{entity} è limitato" - }, - "update_link": "Aggiorna link", - "attach": "Allega", - "create_new": "Crea nuovo", - "add_existing": "Aggiungi esistente", - "type_or_paste_a_url": "Digita o incolla un URL", - "url_is_invalid": "L'URL non è valido", - "display_title": "Titolo di visualizzazione", - "link_title_placeholder": "Come vorresti vedere questo link", - "url": "URL", - "side_peek": "Visualizzazione laterale", - "modal": "Modal", - "full_screen": "Schermo intero", - "close_peek_view": "Chiudi la visualizzazione rapida", - "toggle_peek_view_layout": "Alterna layout della visualizzazione rapida", - "options": "Opzioni", - "duration": "Durata", - "today": "Oggi", - "week": "Settimana", - "month": "Mese", - "quarter": "Trimestre", - "press_for_commands": "Premi '/' per i comandi", - "click_to_add_description": "Clicca per aggiungere una descrizione", - "search": { - "label": "Cerca", - "placeholder": "Digita per cercare", - "no_matches_found": "Nessuna corrispondenza trovata", - "no_matching_results": "Nessun risultato corrispondente" - }, - "actions": { - "edit": "Modifica", - "make_a_copy": "Crea una copia", - "open_in_new_tab": "Apri in una nuova scheda", - "copy_link": "Copia link", - "archive": "Archivia", - "restore": "Ripristina", - "delete": "Elimina", - "remove_relation": "Rimuovi relazione", - "subscribe": "Iscriviti", - "unsubscribe": "Annulla iscrizione", - "clear_sorting": "Cancella ordinamento", - "show_weekends": "Mostra weekend", - "enable": "Abilita", - "disable": "Disabilita" - }, - "name": "Nome", - "discard": "Scarta", - "confirm": "Conferma", - "confirming": "Conferma in corso", - "read_the_docs": "Leggi la documentazione", - "default": "Predefinito", - "active": "Attivo", - "enabled": "Abilitato", - "disabled": "Disabilitato", - "mandate": "Obbligo", - "mandatory": "Obbligatorio", - "yes": "Sì", - "no": "No", - "please_wait": "Attendere prego", - "enabling": "Abilitazione in corso", - "disabling": "Disabilitazione in corso", - "beta": "Beta", - "or": "o", - "next": "Successivo", - "back": "Indietro", - "cancelling": "Annullamento in corso", - "configuring": "Configurazione in corso", - "clear": "Pulisci", - "import": "Importa", - "connect": "Connetti", - "authorizing": "Autorizzazione in corso", - "processing": "Elaborazione in corso", - "no_data_available": "Nessun dato disponibile", - "from": "da {name}", - "authenticated": "Autenticato", - "select": "Seleziona", - "upgrade": "Aggiorna", - "add_seats": "Aggiungi postazioni", - "label": "Etichetta", - "priorities": "Priorità", - "projects": "Progetti", - "workspace": "Spazio di lavoro", - "workspaces": "Spazi di lavoro", - "team": "Team", - "teams": "Team", - "entity": "Entità", - "entities": "Entità", - "task": "Attività", - "tasks": "Attività", - "section": "Sezione", - "sections": "Sezioni", - "edit": "Modifica", - "connecting": "Connessione in corso", - "connected": "Connesso", - "disconnect": "Disconnetti", - "disconnecting": "Disconnessione in corso", - "installing": "Installazione in corso", - "install": "Installa", - "reset": "Reimposta", - "live": "Live", - "change_history": "Cronologia modifiche", - "coming_soon": "Prossimamente", - "member": "Membro", - "members": "Membri", - "you": "Tu", - "upgrade_cta": { - "higher_subscription": "Passa a un abbonamento superiore", - "talk_to_sales": "Parla con le vendite" - }, - "category": "Categoria", - "categories": "Categorie", - "saving": "Salvataggio in corso", - "save_changes": "Salva modifiche", - "delete": "Elimina", - "deleting": "Eliminazione in corso", - "pending": "In sospeso", - "invite": "Invita", - "view": "Visualizza", - "deactivated_user": "Utente disattivato", - "apply": "Applica", - "applying": "Applicazione", - "users": "Utenti", - "admins": "Amministratori", - "guests": "Ospiti", - "on_track": "In linea", - "off_track": "Fuori rotta", - "at_risk": "A rischio", - "timeline": "Cronologia", - "completion": "Completamento", - "upcoming": "In arrivo", - "completed": "Completato", - "in_progress": "In corso", - "planned": "Pianificato", - "paused": "In pausa", - "no_of": "N. di {entity}", - "resolved": "Risolto" - }, - "chart": { - "x_axis": "Asse X", - "y_axis": "Asse Y", - "metric": "Metrica" - }, - "form": { - "title": { - "required": "Il titolo è obbligatorio", - "max_length": "Il titolo deve contenere meno di {length} caratteri" - } - }, - "entity": { - "grouping_title": "Raggruppamento di {entity}", - "priority": "Priorità di {entity}", - "all": "Tutti {entity}", - "drop_here_to_move": "Trascina qui per spostare il {entity}", - "delete": { - "label": "Elimina {entity}", - "success": "{entity} eliminato con successo", - "failed": "Eliminazione di {entity} fallita" - }, - "update": { - "failed": "Aggiornamento di {entity} fallito", - "success": "{entity} aggiornato con successo" - }, - "link_copied_to_clipboard": "Link di {entity} copiato negli appunti", - "fetch": { - "failed": "Errore durante il recupero di {entity}" - }, - "add": { - "success": "{entity} aggiunto con successo", - "failed": "Errore nell'aggiunta di {entity}" - }, - "remove": { - "success": "{entity} rimosso con successo", - "failed": "Errore nella rimozione di {entity}" - } - }, - "epic": { - "all": "Tutti gli Epic", - "label": "{count, plural, one {Epic} other {Epic}}", - "new": "Nuovo Epic", - "adding": "Aggiungendo Epic", - "create": { - "success": "Epic creato con successo" - }, - "add": { - "press_enter": "Premi 'Invio' per aggiungere un altro Epic", - "label": "Aggiungi Epic" - }, - "title": { - "label": "Titolo Epic", - "required": "Il titolo dell'Epic è obbligatorio." - } - }, - "issue": { - "label": "{count, plural, one {Elemento di lavoro} other {Elementi di lavoro}}", - "all": "Tutti gli elementi di lavoro", - "edit": "Modifica elemento di lavoro", - "title": { - "label": "Titolo dell'elemento di lavoro", - "required": "Il titolo dell'elemento di lavoro è obbligatorio." - }, - "add": { - "press_enter": "Premi 'Invio' per aggiungere un altro elemento di lavoro", - "label": "Aggiungi elemento di lavoro", - "cycle": { - "failed": "Impossibile aggiungere l'elemento di lavoro al ciclo. Per favore, riprova.", - "success": "{count, plural, one {Elemento di lavoro} other {Elementi di lavoro}} aggiunto al ciclo con successo.", - "loading": "Aggiungendo {count, plural, one {elemento di lavoro} other {elementi di lavoro}} al ciclo" - }, - "assignee": "Aggiungi assegnatari", - "start_date": "Aggiungi data di inizio", - "due_date": "Aggiungi scadenza", - "parent": "Aggiungi elemento di lavoro principale", - "sub_issue": "Aggiungi sotto-elemento di lavoro", - "relation": "Aggiungi relazione", - "link": "Aggiungi link", - "existing": "Aggiungi elemento di lavoro esistente" - }, - "remove": { - "label": "Rimuovi elemento di lavoro", - "cycle": { - "loading": "Rimuovendo l'elemento di lavoro dal ciclo", - "success": "Elemento di lavoro rimosso dal ciclo con successo.", - "failed": "Impossibile rimuovere l'elemento di lavoro dal ciclo. Per favore, riprova." - }, - "module": { - "loading": "Rimuovendo l'elemento di lavoro dal modulo", - "success": "Elemento di lavoro rimosso dal modulo con successo.", - "failed": "Impossibile rimuovere l'elemento di lavoro dal modulo. Per favore, riprova." - }, - "parent": { - "label": "Rimuovi elemento di lavoro principale" - } - }, - "new": "Nuovo elemento di lavoro", - "adding": "Aggiunta dell'elemento di lavoro in corso", - "create": { - "success": "Elemento di lavoro creato con successo" - }, - "priority": { - "urgent": "Urgente", - "high": "Alta", - "medium": "Media", - "low": "Bassa" - }, - "display": { - "properties": { - "label": "Visualizza proprietà", - "id": "ID", - "issue_type": "Tipo di elemento di lavoro", - "sub_issue_count": "Numero di sotto-elementi di lavoro", - "attachment_count": "Numero di allegati", - "created_on": "Creato il", - "sub_issue": "Sotto-elemento di lavoro", - "work_item_count": "Conteggio degli elementi di lavoro" - }, - "extra": { - "show_sub_issues": "Mostra sotto-elementi di lavoro", - "show_empty_groups": "Mostra gruppi vuoti" - } - }, - "layouts": { - "ordered_by_label": "Questo layout è ordinato per", - "list": "Lista", - "kanban": "Schede", - "calendar": "Calendario", - "spreadsheet": "Tabella", - "gantt": "Timeline", - "title": { - "list": "Layout a lista", - "kanban": "Layout a schede", - "calendar": "Layout a calendario", - "spreadsheet": "Layout a tabella", - "gantt": "Layout a timeline" - } - }, - "states": { - "active": "Attivo", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Aggiungi commento", - "switch": { - "private": "Passa a commento privato", - "public": "Passa a commento pubblico" - }, - "create": { - "success": "Commento creato con successo", - "error": "Creazione del commento fallita. Per favore, riprova più tardi." - }, - "update": { - "success": "Commento aggiornato con successo", - "error": "Aggiornamento del commento fallito. Per favore, riprova più tardi." - }, - "remove": { - "success": "Commento rimosso con successo", - "error": "Rimozione del commento fallita. Per favore, riprova più tardi." - }, - "upload": { - "error": "Caricamento dell'asset fallito. Per favore, riprova più tardi." - }, - "copy_link": { - "success": "Link del commento copiato negli appunti", - "error": "Errore durante la copia del link del commento. Riprova più tardi." - } - }, - "empty_state": { - "issue_detail": { - "title": "L'elemento di lavoro non esiste", - "description": "L'elemento di lavoro che stai cercando non esiste, è stato archiviato o eliminato.", - "primary_button": { - "text": "Visualizza altri elementi di lavoro" - } - } - }, - "sibling": { - "label": "Elementi di lavoro correlati" - }, - "archive": { - "description": "Solo gli elementi di lavoro completati o annullati possono essere archiviati", - "label": "Archivia elemento di lavoro", - "confirm_message": "Sei sicuro di voler archiviare l'elemento di lavoro? Tutti gli elementi di lavoro archiviati possono essere ripristinati in seguito.", - "success": { - "label": "Archiviazione riuscita", - "message": "I tuoi archivi sono disponibili negli archivi del progetto." - }, - "failed": { - "message": "Impossibile archiviare l'elemento di lavoro. Per favore, riprova." - } - }, - "restore": { - "success": { - "title": "Ripristino riuscito", - "message": "Il tuo elemento di lavoro è disponibile negli elementi del progetto." - }, - "failed": { - "message": "Impossibile ripristinare l'elemento di lavoro. Per favore, riprova." - } - }, - "relation": { - "relates_to": "Collegato a", - "duplicate": "Duplicato di", - "blocked_by": "Bloccato da", - "blocking": "Blocca" - }, - "copy_link": "Copia link dell'elemento di lavoro", - "delete": { - "label": "Elimina elemento di lavoro", - "error": "Errore nell'eliminazione dell'elemento di lavoro" - }, - "subscription": { - "actions": { - "subscribed": "Iscrizione all'elemento di lavoro avvenuta con successo", - "unsubscribed": "Disiscrizione dall'elemento di lavoro avvenuta con successo" - } - }, - "select": { - "error": "Seleziona almeno un elemento di lavoro", - "empty": "Nessun elemento di lavoro selezionato", - "add_selected": "Aggiungi gli elementi di lavoro selezionati", - "select_all": "Seleziona tutto", - "deselect_all": "Deseleziona tutto" - }, - "open_in_full_screen": "Apri l'elemento di lavoro a schermo intero" - }, - "attachment": { - "error": "Impossibile allegare il file. Riprova a caricarlo.", - "only_one_file_allowed": "È possibile caricare un solo file alla volta.", - "file_size_limit": "Il file deve essere di {size}MB o meno.", - "drag_and_drop": "Trascina e rilascia ovunque per caricare", - "delete": "Elimina allegato" - }, - "label": { - "select": "Seleziona etichetta", - "create": { - "success": "Etichetta creata con successo", - "failed": "Creazione dell'etichetta fallita", - "already_exists": "L'etichetta esiste già", - "type": "Digita per aggiungere una nuova etichetta" - } - }, - "sub_work_item": { - "update": { - "success": "Sotto-elemento di lavoro aggiornato con successo", - "error": "Errore nell'aggiornamento del sotto-elemento di lavoro" - }, - "remove": { - "success": "Sotto-elemento di lavoro rimosso con successo", - "error": "Errore nella rimozione del sotto-elemento di lavoro" - }, - "empty_state": { - "sub_list_filters": { - "title": "Non hai sotto-elementi di lavoro che corrispondono ai filtri che hai applicato.", - "description": "Per vedere tutti i sotto-elementi di lavoro, cancella tutti i filtri applicati.", - "action": "Cancella filtri" - }, - "list_filters": { - "title": "Non hai elementi di lavoro che corrispondono ai filtri che hai applicato.", - "description": "Per vedere tutti gli elementi di lavoro, cancella tutti i filtri applicati.", - "action": "Cancella filtri" - } - } - }, - "view": { - "label": "{count, plural, one {Visualizzazione} other {Visualizzazioni}}", - "create": { - "label": "Crea visualizzazione" - }, - "update": { - "label": "Aggiorna visualizzazione" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "In sospeso", - "description": "In sospeso" - }, - "declined": { - "title": "Rifiutato", - "description": "Rifiutato" - }, - "snoozed": { - "title": "Snoozed", - "description": "{days, plural, one {# giorno} other {# giorni}} rimanenti" - }, - "accepted": { - "title": "Accettato", - "description": "Accettato" - }, - "duplicate": { - "title": "Duplicato", - "description": "Duplicato" - } - }, - "modals": { - "decline": { - "title": "Rifiuta elemento di lavoro", - "content": "Sei sicuro di voler rifiutare l'elemento di lavoro {value}?" - }, - "delete": { - "title": "Elimina elemento di lavoro", - "content": "Sei sicuro di voler eliminare l'elemento di lavoro {value}?", - "success": "Elemento di lavoro eliminato con successo" - } - }, - "errors": { - "snooze_permission": "Solo gli amministratori del progetto possono snoozare/non snoozare gli elementi di lavoro", - "accept_permission": "Solo gli amministratori del progetto possono accettare gli elementi di lavoro", - "decline_permission": "Solo gli amministratori del progetto possono rifiutare gli elementi di lavoro" - }, - "actions": { - "accept": "Accetta", - "decline": "Rifiuta", - "snooze": "Snoozed", - "unsnooze": "Annulla snooze", - "copy": "Copia link dell'elemento di lavoro", - "delete": "Elimina", - "open": "Apri elemento di lavoro", - "mark_as_duplicate": "Segna come duplicato", - "move": "Sposta {value} negli elementi di lavoro del progetto" - }, - "source": { - "in-app": "nell'app" - }, - "order_by": { - "created_at": "Creato il", - "updated_at": "Aggiornato il", - "id": "ID" - }, - "label": "Accoglienza", - "page_label": "{workspace} - Accoglienza", - "modal": { - "title": "Crea elemento di lavoro per l'accoglienza" - }, - "tabs": { - "open": "Aperto", - "closed": "Chiuso" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Nessun elemento di lavoro aperto", - "description": "Trova qui gli elementi di lavoro aperti. Crea un nuovo elemento di lavoro." - }, - "sidebar_closed_tab": { - "title": "Nessun elemento di lavoro chiuso", - "description": "Tutti gli elementi di lavoro, siano essi accettati o rifiutati, possono essere trovati qui." - }, - "sidebar_filter": { - "title": "Nessun elemento di lavoro corrispondente", - "description": "Nessun elemento di lavoro corrisponde al filtro applicato in accoglienza. Crea un nuovo elemento di lavoro." - }, - "detail": { - "title": "Seleziona un elemento di lavoro per visualizzarne i dettagli." - } - } - }, - "workspace_creation": { - "heading": "Crea il tuo spazio di lavoro", - "subheading": "Per iniziare a usare Plane, devi creare o unirti a uno spazio di lavoro.", - "form": { - "name": { - "label": "Dai un nome al tuo spazio di lavoro", - "placeholder": "Qualcosa di familiare e riconoscibile è sempre meglio." - }, - "url": { - "label": "Imposta l'URL del tuo spazio di lavoro", - "placeholder": "Digita o incolla un URL", - "edit_slug": "Puoi modificare solo lo slug dell'URL" - }, - "organization_size": { - "label": "Quante persone utilizzeranno questo spazio di lavoro?", - "placeholder": "Seleziona una fascia" - } - }, - "errors": { - "creation_disabled": { - "title": "Solo l'amministratore dell'istanza può creare spazi di lavoro", - "description": "Se conosci l'indirizzo email dell'amministratore dell'istanza, clicca il pulsante qui sotto per contattarlo.", - "request_button": "Richiedi all'amministratore dell'istanza" - }, - "validation": { - "name_alphanumeric": "I nomi degli spazi di lavoro possono contenere solo (' '), ('-'), ('_') e caratteri alfanumerici.", - "name_length": "Limita il tuo nome a 80 caratteri.", - "url_alphanumeric": "Gli URL possono contenere solo ('-') e caratteri alfanumerici.", - "url_length": "Limita il tuo URL a 48 caratteri.", - "url_already_taken": "L'URL dello spazio di lavoro è già in uso!" - } - }, - "request_email": { - "subject": "Richiesta per un nuovo spazio di lavoro", - "body": "Ciao amministratore dell'istanza,\n\nPer favore, crea un nuovo spazio di lavoro con l'URL [/nome-spazio] per [scopo del nuovo spazio].\n\nGrazie,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Crea spazio di lavoro", - "loading": "Creazione dello spazio di lavoro in corso" - }, - "toast": { - "success": { - "title": "Successo", - "message": "Spazio di lavoro creato con successo" - }, - "error": { - "title": "Errore", - "message": "Impossibile creare lo spazio di lavoro. Per favore, riprova." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Panoramica dei tuoi progetti, attività e metriche", - "description": "Benvenuto in Plane, siamo entusiasti di averti qui. Crea il tuo primo progetto e traccia i tuoi elementi di lavoro, e questa pagina si trasformerà in uno spazio che ti aiuta a progredire. Gli amministratori vedranno anche elementi che aiutano il team a progredire.", - "primary_button": { - "text": "Crea il tuo primo progetto", - "comic": { - "title": "Tutto inizia con un progetto in Plane", - "description": "Un progetto può essere la roadmap di un prodotto, una campagna di marketing o il lancio di una nuova auto." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analisi", - "page_label": "{workspace} - Analisi", - "open_tasks": "Totale attività aperte", - "error": "Si è verificato un errore nel recupero dei dati.", - "work_items_closed_in": "Elementi di lavoro chiusi in", - "selected_projects": "Progetti selezionati", - "total_members": "Totale membri", - "total_cycles": "Totale cicli", - "total_modules": "Totale moduli", - "pending_work_items": { - "title": "Elementi di lavoro in sospeso", - "empty_state": "L'analisi degli elementi di lavoro in sospeso dei colleghi apparirà qui." - }, - "work_items_closed_in_a_year": { - "title": "Elementi di lavoro chiusi in un anno", - "empty_state": "Chiudi gli elementi di lavoro per visualizzare l'analisi sotto forma di grafico." - }, - "most_work_items_created": { - "title": "Maggiori elementi di lavoro creati", - "empty_state": "I colleghi e il numero di elementi di lavoro creati da loro appariranno qui." - }, - "most_work_items_closed": { - "title": "Maggiori elementi di lavoro chiusi", - "empty_state": "I colleghi e il numero di elementi di lavoro chiusi da loro appariranno qui." - }, - "tabs": { - "scope_and_demand": "Ambito e Domanda", - "custom": "Analisi personalizzata" - }, - "empty_state": { - "customized_insights": { - "description": "Gli elementi di lavoro assegnati a te, suddivisi per stato, verranno visualizzati qui.", - "title": "Nessun dato disponibile" - }, - "created_vs_resolved": { - "description": "Gli elementi di lavoro creati e risolti nel tempo verranno visualizzati qui.", - "title": "Nessun dato disponibile" - }, - "project_insights": { - "title": "Nessun dato disponibile", - "description": "Gli elementi di lavoro assegnati a te, suddivisi per stato, verranno visualizzati qui." - }, - "general": { - "title": "Traccia progressi, carichi di lavoro e allocazioni. Individua tendenze, rimuovi blocchi e lavora più velocemente", - "description": "Visualizza ambito vs domanda, stime e scope creep. Ottieni prestazioni per membri del team e squadre, assicurandoti che il tuo progetto si svolga nei tempi previsti.", - "primary_button": { - "text": "Inizia il tuo primo progetto", - "comic": { - "title": "Analytics funziona meglio con Cicli + Moduli", - "description": "Prima, incornicia i tuoi elementi di lavoro in Cicli e, se possibile, raggruppa gli elementi che si estendono oltre un ciclo in Moduli. Controlla entrambi nella navigazione sinistra." - } - } - } - }, - "created_vs_resolved": "Creato vs Risolto", - "customized_insights": "Approfondimenti personalizzati", - "backlog_work_items": "{entity} nel backlog", - "active_projects": "Progetti attivi", - "trend_on_charts": "Tendenza nei grafici", - "all_projects": "Tutti i progetti", - "summary_of_projects": "Riepilogo dei progetti", - "project_insights": "Approfondimenti sul progetto", - "started_work_items": "{entity} iniziati", - "total_work_items": "Totale {entity}", - "total_projects": "Progetti totali", - "total_admins": "Totale amministratori", - "total_users": "Totale utenti", - "total_intake": "Entrate totali", - "un_started_work_items": "{entity} non avviati", - "total_guests": "Totale ospiti", - "completed_work_items": "{entity} completati", - "total": "Totale {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Progetto} other {Progetti}}", - "create": { - "label": "Aggiungi progetto" - }, - "network": { - "label": "Rete", - "private": { - "title": "Privato", - "description": "Accessibile solo su invito" - }, - "public": { - "title": "Pubblico", - "description": "Chiunque nello spazio di lavoro, tranne gli ospiti, può unirsi" - } - }, - "error": { - "permission": "Non hai il permesso di eseguire questa azione.", - "cycle_delete": "Impossibile eliminare il ciclo", - "module_delete": "Impossibile eliminare il modulo", - "issue_delete": "Impossibile eliminare l'elemento di lavoro" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Non iniziato", - "started": "Iniziato", - "completed": "Completato", - "cancelled": "Annullato" - }, - "sort": { - "manual": "Manuale", - "name": "Nome", - "created_at": "Data di creazione", - "members_length": "Numero di membri" - }, - "scope": { - "my_projects": "I miei progetti", - "archived_projects": "Archiviati" - }, - "common": { - "months_count": "{months, plural, one {# mese} other {# mesi}}" - }, - "empty_state": { - "general": { - "title": "Nessun progetto attivo", - "description": "Considera ogni progetto come la base per un lavoro orientato a obiettivi. I progetti sono dove risiedono Jobs, Cicli e Moduli e, insieme ai tuoi colleghi, ti aiutano a raggiungere quell'obiettivo. Crea un nuovo progetto o filtra per progetti archiviati.", - "primary_button": { - "text": "Inizia il tuo primo progetto", - "comic": { - "title": "Tutto inizia con un progetto in Plane", - "description": "Un progetto può essere la roadmap di un prodotto, una campagna di marketing o il lancio di una nuova auto." - } - } - }, - "no_projects": { - "title": "Nessun progetto", - "description": "Per creare elementi di lavoro o gestire il tuo lavoro, devi creare o far parte di un progetto.", - "primary_button": { - "text": "Inizia il tuo primo progetto", - "comic": { - "title": "Tutto inizia con un progetto in Plane", - "description": "Un progetto può essere la roadmap di un prodotto, una campagna di marketing o il lancio di una nuova auto." - } - } - }, - "filter": { - "title": "Nessun progetto corrispondente", - "description": "Nessun progetto rilevato con i criteri di ricerca corrispondenti. \n Crea un nuovo progetto invece." - }, - "search": { - "description": "Nessun progetto rilevato con i criteri di ricerca corrispondenti.\nCrea un nuovo progetto invece" - } - } - }, - "workspace_views": { - "add_view": "Aggiungi visualizzazione", - "empty_state": { - "all-issues": { - "title": "Nessun elemento di lavoro nel progetto", - "description": "Primo progetto fatto! Ora, suddividi il tuo lavoro in parti tracciabili con gli elementi di lavoro. Andiamo!", - "primary_button": { - "text": "Crea un nuovo elemento di lavoro" - } - }, - "assigned": { - "title": "Nessun elemento di lavoro ancora", - "description": "Gli elementi di lavoro assegnati a te possono essere tracciati da qui.", - "primary_button": { - "text": "Crea un nuovo elemento di lavoro" - } - }, - "created": { - "title": "Nessun elemento di lavoro ancora", - "description": "Tutti gli elementi di lavoro creati da te appariranno qui. Tracciali direttamente da qui.", - "primary_button": { - "text": "Crea un nuovo elemento di lavoro" - } - }, - "subscribed": { - "title": "Nessun elemento di lavoro ancora", - "description": "Iscriviti agli elementi di lavoro che ti interessano, tracciali tutti qui." - }, - "custom-view": { - "title": "Nessun elemento di lavoro ancora", - "description": "Gli elementi di lavoro che corrispondono ai filtri, tracciali tutti qui." - } - } - }, - "workspace_settings": { - "label": "Impostazioni dello spazio di lavoro", - "page_label": "{workspace} - Impostazioni generali", - "key_created": "Chiave creata", - "copy_key": "Copia e salva questa chiave segreta in Plane Pages. Non potrai vederla dopo aver cliccato Chiudi. È stato scaricato un file CSV contenente la chiave.", - "token_copied": "Token copiato negli appunti.", - "settings": { - "general": { - "title": "Generale", - "upload_logo": "Carica logo", - "edit_logo": "Modifica logo", - "name": "Nome dello spazio di lavoro", - "company_size": "Dimensione aziendale", - "url": "URL dello spazio di lavoro", - "update_workspace": "Aggiorna spazio di lavoro", - "delete_workspace": "Elimina questo spazio di lavoro", - "delete_workspace_description": "Eliminando uno spazio di lavoro, tutti i dati e le risorse all'interno di esso verranno rimossi definitivamente e non potranno essere recuperati.", - "delete_btn": "Elimina questo spazio di lavoro", - "delete_modal": { - "title": "Sei sicuro di voler eliminare questo spazio di lavoro?", - "description": "Hai un periodo di prova attivo per uno dei nostri piani a pagamento. Per procedere, annulla prima il periodo di prova.", - "dismiss": "Annulla", - "cancel": "Annulla periodo di prova", - "success_title": "Spazio di lavoro eliminato.", - "success_message": "Presto verrai reindirizzato alla tua pagina del profilo.", - "error_title": "Qualcosa non ha funzionato.", - "error_message": "Riprova, per favore." - }, - "errors": { - "name": { - "required": "Il nome è obbligatorio", - "max_length": "Il nome dello spazio di lavoro non deve superare gli 80 caratteri" - }, - "company_size": { - "required": "La dimensione aziendale è obbligatoria", - "select_a_range": "Seleziona la dimensione dell'organizzazione" - } - } - }, - "members": { - "title": "Membri", - "add_member": "Aggiungi membro", - "pending_invites": "Inviti in sospeso", - "invitations_sent_successfully": "Inviti inviati con successo", - "leave_confirmation": "Sei sicuro di voler lasciare lo spazio di lavoro? Non avrai più accesso a questo spazio. Questa azione non può essere annullata.", - "details": { - "full_name": "Nome completo", - "display_name": "Nome visualizzato", - "email_address": "Indirizzo email", - "account_type": "Tipo di account", - "authentication": "Autenticazione", - "joining_date": "Data di ingresso" - }, - "modal": { - "title": "Invita persone a collaborare", - "description": "Invita persone a collaborare nel tuo spazio di lavoro.", - "button": "Invia inviti", - "button_loading": "Invio inviti in corso", - "placeholder": "nome@azienda.com", - "errors": { - "required": "Abbiamo bisogno di un indirizzo email per invitarli.", - "invalid": "L'email non è valida" - } - } - }, - "billing_and_plans": { - "title": "Fatturazione e Piani", - "current_plan": "Piano attuale", - "free_plan": "Stai attualmente utilizzando il piano gratuito", - "view_plans": "Visualizza piani" - }, - "exports": { - "title": "Esportazioni", - "exporting": "Esportazione in corso", - "previous_exports": "Esportazioni precedenti", - "export_separate_files": "Esporta i dati in file separati", - "modal": { - "title": "Esporta in", - "toasts": { - "success": { - "title": "Esportazione riuscita", - "message": "Potrai scaricare gli {entity} esportati dall'esportazione precedente." - }, - "error": { - "title": "Esportazione fallita", - "message": "L'esportazione non è riuscita. Per favore, riprova." - } - } - } - }, - "webhooks": { - "title": "Webhooks", - "add_webhook": "Aggiungi webhook", - "modal": { - "title": "Crea webhook", - "details": "Dettagli del webhook", - "payload": "URL del payload", - "question": "Quali eventi vuoi attivino questo webhook?", - "error": "L'URL è obbligatorio" - }, - "secret_key": { - "title": "Chiave segreta", - "message": "Genera un token per accedere al payload del webhook" - }, - "options": { - "all": "Inviami tutto", - "individual": "Seleziona eventi individuali" - }, - "toasts": { - "created": { - "title": "Webhook creato", - "message": "Il webhook è stato creato con successo" - }, - "not_created": { - "title": "Webhook non creato", - "message": "Il webhook non può essere creato" - }, - "updated": { - "title": "Webhook aggiornato", - "message": "Il webhook è stato aggiornato con successo" - }, - "not_updated": { - "title": "Webhook non aggiornato", - "message": "Il webhook non può essere aggiornato" - }, - "removed": { - "title": "Webhook rimosso", - "message": "Il webhook è stato rimosso con successo" - }, - "not_removed": { - "title": "Webhook non rimosso", - "message": "Il webhook non può essere rimosso" - }, - "secret_key_copied": { - "message": "Chiave segreta copiata negli appunti." - }, - "secret_key_not_copied": { - "message": "Errore durante la copia della chiave segreta." - } - } - }, - "api_tokens": { - "title": "Token API", - "add_token": "Aggiungi token API", - "create_token": "Crea token", - "never_expires": "Non scade mai", - "generate_token": "Genera token", - "generating": "Generazione in corso", - "delete": { - "title": "Elimina token API", - "description": "Qualsiasi applicazione che utilizza questo token non avrà più accesso ai dati di Plane. Questa azione non può essere annullata.", - "success": { - "title": "Successo!", - "message": "Il token API è stato eliminato con successo" - }, - "error": { - "title": "Errore!", - "message": "Il token API non può essere eliminato" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Nessun token API creato", - "description": "Le API di Plane possono essere utilizzate per integrare i tuoi dati in Plane con qualsiasi sistema esterno. Crea un token per iniziare." - }, - "webhooks": { - "title": "Nessun webhook aggiunto", - "description": "Crea webhook per ricevere aggiornamenti in tempo reale e automatizzare azioni." - }, - "exports": { - "title": "Nessuna esportazione ancora", - "description": "Ogni volta che esporti, avrai anche una copia qui per riferimento." - }, - "imports": { - "title": "Nessuna importazione ancora", - "description": "Trova qui tutte le tue importazioni precedenti e scaricale." - } - } - }, - "profile": { - "label": "Profilo", - "page_label": "Il tuo lavoro", - "work": "Lavoro", - "details": { - "joined_on": "Iscritto il", - "time_zone": "Fuso orario" - }, - "stats": { - "workload": "Carico di lavoro", - "overview": "Panoramica", - "created": "Elementi di lavoro creati", - "assigned": "Elementi di lavoro assegnati", - "subscribed": "Elementi di lavoro iscritti", - "state_distribution": { - "title": "Elementi di lavoro per stato", - "empty": "Crea elementi di lavoro per visualizzarli per stato nel grafico per un'analisi migliore." - }, - "priority_distribution": { - "title": "Elementi di lavoro per priorità", - "empty": "Crea elementi di lavoro per visualizzarli per priorità nel grafico per un'analisi migliore." - }, - "recent_activity": { - "title": "Attività recente", - "empty": "Non abbiamo trovato dati. Per favore, controlla i tuoi input", - "button": "Scarica l'attività di oggi", - "button_loading": "Download in corso" - } - }, - "actions": { - "profile": "Profilo", - "security": "Sicurezza", - "activity": "Attività", - "appearance": "Aspetto", - "notifications": "Notifiche" - }, - "tabs": { - "summary": "Riepilogo", - "assigned": "Assegnati", - "created": "Creati", - "subscribed": "Iscritti", - "activity": "Attività" - }, - "empty_state": { - "activity": { - "title": "Nessuna attività ancora", - "description": "Inizia creando un nuovo elemento di lavoro! Aggiungi dettagli e proprietà ad esso. Esplora Plane per vedere la tua attività." - }, - "assigned": { - "title": "Nessun elemento di lavoro assegnato a te", - "description": "Gli elementi di lavoro assegnati a te possono essere tracciati da qui." - }, - "created": { - "title": "Nessun elemento di lavoro ancora", - "description": "Tutti gli elementi di lavoro creati da te appariranno qui. Tracciali direttamente da qui." - }, - "subscribed": { - "title": "Nessun elemento di lavoro ancora", - "description": "Iscriviti agli elementi di lavoro che ti interessano, tracciali tutti qui." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Inserisci l'ID del progetto", - "please_select_a_timezone": "Seleziona un fuso orario", - "archive_project": { - "title": "Archivia progetto", - "description": "Archiviare un progetto lo rimuoverà dal menu di navigazione laterale, anche se potrai sempre accedervi dalla pagina dei progetti. Potrai ripristinare il progetto o eliminarlo quando vuoi.", - "button": "Archivia progetto" - }, - "delete_project": { - "title": "Elimina progetto", - "description": "Eliminando un progetto, tutti i dati e le risorse all'interno di esso verranno rimossi definitivamente e non potranno essere recuperati.", - "button": "Elimina il mio progetto" - }, - "toast": { - "success": "Progetto aggiornato con successo", - "error": "Impossibile aggiornare il progetto. Per favore, riprova." - } - }, - "members": { - "label": "Membri", - "project_lead": "Responsabile del progetto", - "default_assignee": "Assegnatario predefinito", - "guest_super_permissions": { - "title": "Concedi accesso in sola lettura a tutti gli elementi di lavoro per gli utenti ospiti:", - "sub_heading": "Questo permetterà agli ospiti di visualizzare tutti gli elementi di lavoro del progetto." - }, - "invite_members": { - "title": "Invita membri", - "sub_heading": "Invita membri a lavorare sul tuo progetto.", - "select_co_worker": "Seleziona un collega" - } - }, - "states": { - "describe_this_state_for_your_members": "Descrivi questo stato per i tuoi membri.", - "empty_state": { - "title": "Nessuno stato disponibile per il gruppo {groupKey}", - "description": "Crea un nuovo stato" - } - }, - "labels": { - "label_title": "Titolo etichetta", - "label_title_is_required": "Il titolo dell'etichetta è obbligatorio", - "label_max_char": "Il nome dell'etichetta non deve superare i 255 caratteri", - "toast": { - "error": "Errore durante l'aggiornamento dell'etichetta" - } - }, - "estimates": { - "label": "Stime", - "title": "Abilita le stime per il mio progetto", - "description": "Ti aiutano a comunicare la complessità e il carico di lavoro del team.", - "no_estimate": "Nessuna stima", - "new": "Nuovo sistema di stima", - "create": { - "custom": "Personalizzato", - "start_from_scratch": "Inizia da zero", - "choose_template": "Scegli un modello", - "choose_estimate_system": "Scegli un sistema di stima", - "enter_estimate_point": "Inserisci stima", - "step": "Passo {step} di {total}", - "label": "Crea stima" - }, - "toasts": { - "created": { - "success": { - "title": "Stima creata", - "message": "La stima è stata creata con successo" - }, - "error": { - "title": "Creazione stima fallita", - "message": "Non siamo riusciti a creare la nuova stima, riprova." - } - }, - "updated": { - "success": { - "title": "Stima modificata", - "message": "La stima è stata aggiornata nel tuo progetto." - }, - "error": { - "title": "Modifica stima fallita", - "message": "Non siamo riusciti a modificare la stima, riprova" - } - }, - "enabled": { - "success": { - "title": "Successo!", - "message": "Le stime sono state abilitate." - } - }, - "disabled": { - "success": { - "title": "Successo!", - "message": "Le stime sono state disabilitate." - }, - "error": { - "title": "Errore!", - "message": "Impossibile disabilitare la stima. Riprova" - } - } - }, - "validation": { - "min_length": "La stima deve essere maggiore di 0.", - "unable_to_process": "Non possiamo elaborare la tua richiesta, riprova.", - "numeric": "La stima deve essere un valore numerico.", - "character": "La stima deve essere un valore di carattere.", - "empty": "Il valore della stima non può essere vuoto.", - "already_exists": "Il valore della stima esiste già.", - "unsaved_changes": "Hai delle modifiche non salvate. Salva prima di cliccare su Fatto", - "remove_empty": "La stima non può essere vuota. Inserisci un valore in ogni campo o rimuovi quelli per cui non hai valori." - }, - "systems": { - "points": { - "label": "Punti", - "fibonacci": "Fibonacci", - "linear": "Lineare", - "squares": "Quadrati", - "custom": "Personalizzato" - }, - "categories": { - "label": "Categorie", - "t_shirt_sizes": "Taglie T-Shirt", - "easy_to_hard": "Da facile a difficile", - "custom": "Personalizzato" - }, - "time": { - "label": "Tempo", - "hours": "Ore" - } - } - }, - "automations": { - "label": "Automatizzazioni", - "auto-archive": { - "title": "Archivia automaticamente gli elementi di lavoro chiusi", - "description": "Plane archiverà automaticamente gli elementi di lavoro che sono stati completati o annullati.", - "duration": "Archivia automaticamente gli elementi di lavoro chiusi per" - }, - "auto-close": { - "title": "Chiudi automaticamente gli elementi di lavoro", - "description": "Plane chiuderà automaticamente gli elementi di lavoro che non sono stati completati o annullati.", - "duration": "Chiudi automaticamente gli elementi di lavoro inattivi per", - "auto_close_status": "Stato di chiusura automatica" - } - }, - "empty_state": { - "labels": { - "title": "Nessuna etichetta ancora", - "description": "Crea etichette per aiutare a organizzare e filtrare gli elementi di lavoro nel tuo progetto." - }, - "estimates": { - "title": "Nessun sistema di stime ancora", - "description": "Crea un set di stime per comunicare la quantità di lavoro per elemento di lavoro.", - "primary_button": "Aggiungi sistema di stime" - } - } - }, - "project_cycles": { - "add_cycle": "Aggiungi ciclo", - "more_details": "Altri dettagli", - "cycle": "Ciclo", - "update_cycle": "Aggiorna ciclo", - "create_cycle": "Crea ciclo", - "no_matching_cycles": "Nessun ciclo corrispondente", - "remove_filters_to_see_all_cycles": "Rimuovi i filtri per vedere tutti i cicli", - "remove_search_criteria_to_see_all_cycles": "Rimuovi i criteri di ricerca per vedere tutti i cicli", - "only_completed_cycles_can_be_archived": "Solo i cicli completati possono essere archiviati", - "start_date": "Data di inizio", - "end_date": "Data di fine", - "in_your_timezone": "Nel tuo fuso orario", - "transfer_work_items": "Trasferisci {count} elementi di lavoro", - "date_range": "Intervallo di date", - "add_date": "Aggiungi data", - "active_cycle": { - "label": "Ciclo attivo", - "progress": "Avanzamento", - "chart": "Grafico di burndown", - "priority_issue": "Elementi di lavoro ad alta priorità", - "assignees": "Assegnatari", - "issue_burndown": "Burndown degli elementi di lavoro", - "ideal": "Ideale", - "current": "Corrente", - "labels": "Etichette" - }, - "upcoming_cycle": { - "label": "Ciclo in arrivo" - }, - "completed_cycle": { - "label": "Ciclo completato" - }, - "status": { - "days_left": "Giorni rimanenti", - "completed": "Completato", - "yet_to_start": "Non ancora iniziato", - "in_progress": "In corso", - "draft": "Bozza" - }, - "action": { - "restore": { - "title": "Ripristina ciclo", - "success": { - "title": "Ciclo ripristinato", - "description": "Il ciclo è stato ripristinato." - }, - "failed": { - "title": "Ripristino del ciclo fallito", - "description": "Il ciclo non può essere ripristinato. Per favore, riprova." - } - }, - "favorite": { - "loading": "Aggiunta del ciclo ai preferiti in corso", - "success": { - "description": "Ciclo aggiunto ai preferiti.", - "title": "Successo!" - }, - "failed": { - "description": "Impossibile aggiungere il ciclo ai preferiti. Per favore, riprova.", - "title": "Errore!" - } - }, - "unfavorite": { - "loading": "Rimozione del ciclo dai preferiti in corso", - "success": { - "description": "Ciclo rimosso dai preferiti.", - "title": "Successo!" - }, - "failed": { - "description": "Impossibile rimuovere il ciclo dai preferiti. Per favore, riprova.", - "title": "Errore!" - } - }, - "update": { - "loading": "Aggiornamento del ciclo in corso", - "success": { - "description": "Ciclo aggiornato con successo.", - "title": "Successo!" - }, - "failed": { - "description": "Errore durante l'aggiornamento del ciclo. Per favore, riprova.", - "title": "Errore!" - }, - "error": { - "already_exists": "Hai già un ciclo nelle date indicate, se vuoi creare una bozza di ciclo, puoi farlo rimuovendo entrambe le date." - } - } - }, - "empty_state": { - "general": { - "title": "Raggruppa e definisci il tempo per il tuo lavoro in cicli.", - "description": "Suddividi il lavoro in blocchi temporali, lavora a ritroso dalla scadenza del tuo progetto per impostare le date e fai progressi tangibili come team.", - "primary_button": { - "text": "Imposta il tuo primo ciclo", - "comic": { - "title": "I cicli sono intervalli temporali ripetitivi.", - "description": "Uno sprint, un'iterazione o qualsiasi altro termine usato per il tracciamento settimanale o bisettimanale del lavoro è un ciclo." - } - } - }, - "no_issues": { - "title": "Nessun elemento di lavoro aggiunto al ciclo", - "description": "Aggiungi o crea gli elementi di lavoro che desideri includere in questo ciclo", - "primary_button": { - "text": "Crea un nuovo elemento di lavoro" - }, - "secondary_button": { - "text": "Aggiungi un elemento di lavoro esistente" - } - }, - "completed_no_issues": { - "title": "Nessun elemento di lavoro nel ciclo", - "description": "Nessun elemento di lavoro presente nel ciclo. Gli elementi di lavoro sono stati trasferiti o nascosti. Per visualizzare gli elementi nascosti, se presenti, aggiorna le proprietà di visualizzazione di conseguenza." - }, - "active": { - "title": "Nessun ciclo attivo", - "description": "Un ciclo attivo è quello che include la data odierna nel suo intervallo. Visualizza qui i dettagli e l'avanzamento del ciclo attivo." - }, - "archived": { - "title": "Nessun ciclo archiviato ancora", - "description": "Per organizzare il tuo progetto, archivia i cicli completati. Li troverai qui una volta archiviati." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Crea un elemento di lavoro e assegnalo a qualcuno, anche a te stesso", - "description": "Considera gli elementi di lavoro come compiti, attività, lavori o JTBD. Un elemento di lavoro e i suoi sotto-elementi di lavoro sono solitamente attività basate sul tempo assegnate ai membri del team. Il tuo team crea, assegna e completa gli elementi di lavoro per portare il progetto verso il suo obiettivo.", - "primary_button": { - "text": "Crea il tuo primo elemento di lavoro", - "comic": { - "title": "Gli elementi di lavoro sono i mattoni fondamentali in Plane.", - "description": "Ridisegna l'interfaccia di Plane, rebranding dell'azienda o lancia il nuovo sistema di iniezione del carburante sono esempi di elementi di lavoro che probabilmente hanno sotto-elementi." - } - } - }, - "no_archived_issues": { - "title": "Nessun elemento di lavoro archiviato ancora", - "description": "Manualmente o tramite automazione, puoi archiviare gli elementi di lavoro che sono stati completati o annullati. Li troverai qui una volta archiviati.", - "primary_button": { - "text": "Imposta l'automazione" - } - }, - "issues_empty_filter": { - "title": "Nessun elemento di lavoro trovato corrispondente ai filtri applicati", - "secondary_button": { - "text": "Cancella tutti i filtri" - } - } - } - }, - "project_module": { - "add_module": "Aggiungi Modulo", - "update_module": "Aggiorna Modulo", - "create_module": "Crea Modulo", - "archive_module": "Archivia Modulo", - "restore_module": "Ripristina Modulo", - "delete_module": "Elimina modulo", - "empty_state": { - "general": { - "title": "Associa i traguardi del tuo progetto ai Moduli e traccia facilmente il lavoro aggregato.", - "description": "Un gruppo di elementi di lavoro che appartengono a un genitore logico e gerarchico forma un modulo. Considerali come un modo per tracciare il lavoro in base ai traguardi del progetto. Hanno i propri intervalli temporali e scadenze, oltre ad analisi che ti aiutano a vedere quanto sei vicino o lontano da un traguardo.", - "primary_button": { - "text": "Crea il tuo primo modulo", - "comic": { - "title": "I moduli aiutano a raggruppare il lavoro per gerarchia.", - "description": "Un modulo per il carrello, un modulo per il telaio e un modulo per il magazzino sono tutti buoni esempi di questo raggruppamento." - } - } - }, - "no_issues": { - "title": "Nessun elemento di lavoro nel modulo", - "description": "Crea o aggiungi elementi di lavoro che desideri completare come parte di questo modulo", - "primary_button": { - "text": "Crea nuovi elementi di lavoro" - }, - "secondary_button": { - "text": "Aggiungi un elemento di lavoro esistente" - } - }, - "archived": { - "title": "Nessun modulo archiviato ancora", - "description": "Per organizzare il tuo progetto, archivia i moduli completati o annullati. Li troverai qui una volta archiviati." - }, - "sidebar": { - "in_active": "Questo modulo non è ancora attivo.", - "invalid_date": "Data non valida. Inserisci una data valida." - } - }, - "quick_actions": { - "archive_module": "Archivia modulo", - "archive_module_description": "Solo i moduli completati o annullati possono essere archiviati.", - "delete_module": "Elimina modulo" - }, - "toast": { - "copy": { - "success": "Link del modulo copiato negli appunti" - }, - "delete": { - "success": "Modulo eliminato con successo", - "error": "Impossibile eliminare il modulo" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Salva visualizzazioni filtrate per il tuo progetto. Crea quante ne vuoi", - "description": "Le visualizzazioni sono un insieme di filtri salvati che usi frequentemente o a cui vuoi avere accesso rapido. Tutti i tuoi colleghi in un progetto possono vedere tutte le visualizzazioni e scegliere quella che fa per loro.", - "primary_button": { - "text": "Crea la tua prima visualizzazione", - "comic": { - "title": "Le visualizzazioni si basano sulle proprietà degli elementi di lavoro.", - "description": "Puoi creare una visualizzazione da qui con quante proprietà e filtri desideri." - } - } - }, - "filter": { - "title": "Nessuna visualizzazione corrispondente", - "description": "Nessuna visualizzazione corrisponde ai criteri di ricerca. \n Crea una nuova visualizzazione invece." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Scrivi una nota, un documento o una vera e propria base di conoscenza. Fai partire Galileo, l'assistente AI di Plane, per aiutarti a iniziare", - "description": "Le pagine sono spazi per appunti in Plane. Prendi note durante le riunioni, formattale facilmente, inserisci elementi di lavoro, disponili usando una libreria di componenti e tienili tutti nel contesto del tuo progetto. Per velocizzare qualsiasi documento, invoca Galileo, l'IA di Plane, con una scorciatoia o con il clic di un pulsante.", - "primary_button": { - "text": "Crea la tua prima pagina" - } - }, - "private": { - "title": "Nessuna pagina privata ancora", - "description": "Tieni qui i tuoi appunti privati. Quando sarai pronto a condividerli, il team sarà a portata di clic.", - "primary_button": { - "text": "Crea la tua prima pagina" - } - }, - "public": { - "title": "Nessuna pagina pubblica ancora", - "description": "Visualizza qui le pagine condivise con tutti nel tuo progetto.", - "primary_button": { - "text": "Crea la tua prima pagina" - } - }, - "archived": { - "title": "Nessuna pagina archiviata ancora", - "description": "Archivia le pagine che non sono più di tuo interesse. Potrai accedervi quando necessario." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Nessun risultato trovato" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Nessun elemento di lavoro corrispondente trovato" - }, - "no_issues": { - "title": "Nessun elemento di lavoro trovato" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Nessun commento ancora", - "description": "I commenti possono essere usati come spazio per discussioni e follow-up sugli elementi di lavoro" - } - } - }, - "notification": { - "label": "Notifiche", - "page_label": "{workspace} - Notifiche", - "options": { - "mark_all_as_read": "Segna tutto come letto", - "mark_read": "Segna come letto", - "mark_unread": "Segna come non letto", - "refresh": "Aggiorna", - "filters": "Filtri Notifiche", - "show_unread": "Mostra non lette", - "show_snoozed": "Mostra snoozate", - "show_archived": "Mostra archiviate", - "mark_archive": "Archivia", - "mark_unarchive": "Rimuovi da archivio", - "mark_snooze": "Snoozed", - "mark_unsnooze": "Annulla snooze" - }, - "toasts": { - "read": "Notifica segnata come letta", - "unread": "Notifica segnata come non letta", - "archived": "Notifica archiviata", - "unarchived": "Notifica rimossa dall'archivio", - "snoozed": "Notifica snoozata", - "unsnoozed": "Notifica desnoozata" - }, - "empty_state": { - "detail": { - "title": "Seleziona per visualizzare i dettagli." - }, - "all": { - "title": "Nessun elemento di lavoro assegnato", - "description": "Qui puoi vedere gli aggiornamenti degli elementi di lavoro assegnati a te" - }, - "mentions": { - "title": "Nessun elemento di lavoro assegnato", - "description": "Qui puoi vedere gli aggiornamenti degli elementi di lavoro assegnati a te" - } - }, - "tabs": { - "all": "Tutti", - "mentions": "Menzioni" - }, - "filter": { - "assigned": "Assegnati a me", - "created": "Creati da me", - "subscribed": "Iscritti da me" - }, - "snooze": { - "1_day": "1 giorno", - "3_days": "3 giorni", - "5_days": "5 giorni", - "1_week": "1 settimana", - "2_weeks": "2 settimane", - "custom": "Personalizzato" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Aggiungi elementi di lavoro al ciclo per visualizzarne l'avanzamento" - }, - "chart": { - "title": "Aggiungi elementi di lavoro al ciclo per visualizzare il grafico di burndown." - }, - "priority_issue": { - "title": "Visualizza in anteprima gli elementi di lavoro ad alta priorità del ciclo." - }, - "assignee": { - "title": "Aggiungi assegnatari agli elementi di lavoro per vedere la ripartizione per assegnatario." - }, - "label": { - "title": "Aggiungi etichette agli elementi di lavoro per vedere la ripartizione per etichette." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "L'accoglienza non è abilitata per il progetto.", - "description": "L'accoglienza ti aiuta a gestire le richieste in entrata per il tuo progetto e ad aggiungerle come elementi di lavoro nel tuo flusso. Abilita l'accoglienza dalle impostazioni del progetto per gestire le richieste.", - "primary_button": { - "text": "Gestisci funzionalità" - } - }, - "cycle": { - "title": "I cicli non sono abilitati per questo progetto.", - "description": "Suddividi il lavoro in blocchi temporali, lavora a ritroso dalla scadenza del tuo progetto per impostare le date e fai progressi tangibili come team. Abilita la funzionalità dei cicli per il tuo progetto per iniziare a usarli.", - "primary_button": { - "text": "Gestisci funzionalità" - } - }, - "module": { - "title": "I moduli non sono abilitati per il progetto.", - "description": "I moduli sono i blocchi costitutivi del tuo progetto. Abilita i moduli dalle impostazioni del progetto per iniziare a usarli.", - "primary_button": { - "text": "Gestisci funzionalità" - } - }, - "page": { - "title": "Le pagine non sono abilitate per il progetto.", - "description": "Le pagine sono i blocchi costitutivi del tuo progetto. Abilita le pagine dalle impostazioni del progetto per iniziare a usarle.", - "primary_button": { - "text": "Gestisci funzionalità" - } - }, - "view": { - "title": "Le visualizzazioni non sono abilitate per il progetto.", - "description": "Le visualizzazioni sono i blocchi costitutivi del tuo progetto. Abilita le visualizzazioni dalle impostazioni del progetto per iniziare a usarle.", - "primary_button": { - "text": "Gestisci funzionalità" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Bozza di un elemento di lavoro", - "empty_state": { - "title": "Le bozze degli elementi di lavoro e, presto, anche i commenti appariranno qui.", - "description": "Per provarlo, inizia ad aggiungere un elemento di lavoro e lascialo a metà o crea la tua prima bozza qui sotto. 😉", - "primary_button": { - "text": "Crea la tua prima bozza" - } - }, - "delete_modal": { - "title": "Elimina bozza", - "description": "Sei sicuro di voler eliminare questa bozza? Questa azione non può essere annullata." - }, - "toasts": { - "created": { - "success": "Bozza creata", - "error": "Impossibile creare l'elemento di lavoro. Per favore, riprova." - }, - "deleted": { - "success": "Bozza eliminata" - } - } - }, - "stickies": { - "title": "I tuoi stickies", - "placeholder": "clicca per scrivere qui", - "all": "Tutti gli stickies", - "no-data": "Annota un'idea, cattura un aha o registra un lampo di genio. Aggiungi uno sticky per iniziare.", - "add": "Aggiungi sticky", - "search_placeholder": "Cerca per titolo", - "delete": "Elimina sticky", - "delete_confirmation": "Sei sicuro di voler eliminare questo sticky?", - "empty_state": { - "simple": "Annota un'idea, cattura un aha o registra un lampo di genio. Aggiungi uno sticky per iniziare.", - "general": { - "title": "Gli stickies sono note rapide e cose da fare che annoti al volo.", - "description": "Cattura i tuoi pensieri e idee senza sforzo creando stickies a cui puoi accedere in qualsiasi momento e ovunque.", - "primary_button": { - "text": "Aggiungi sticky" - } - }, - "search": { - "title": "Non corrisponde a nessuno dei tuoi stickies.", - "description": "Prova con un termine diverso o facci sapere se sei sicuro che la tua ricerca sia corretta.", - "primary_button": { - "text": "Aggiungi sticky" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Il nome dello sticky non può superare i 100 caratteri.", - "already_exists": "Esiste già uno sticky senza descrizione" - }, - "created": { - "title": "Sticky creato", - "message": "Lo sticky è stato creato con successo" - }, - "not_created": { - "title": "Sticky non creato", - "message": "Lo sticky non può essere creato" - }, - "updated": { - "title": "Sticky aggiornato", - "message": "Lo sticky è stato aggiornato con successo" - }, - "not_updated": { - "title": "Sticky non aggiornato", - "message": "Lo sticky non può essere aggiornato" - }, - "removed": { - "title": "Sticky rimosso", - "message": "Lo sticky è stato rimosso con successo" - }, - "not_removed": { - "title": "Sticky non rimosso", - "message": "Lo sticky non può essere rimosso" - } - } - }, - "role_details": { - "guest": { - "title": "Ospite", - "description": "I membri esterni alle organizzazioni possono essere invitati come ospiti." - }, - "member": { - "title": "Membro", - "description": "Permette di leggere, scrivere, modificare ed eliminare entità all'interno di progetti, cicli e moduli." - }, - "admin": { - "title": "Amministratore", - "description": "Tutti i permessi impostati su true all'interno dello spazio di lavoro." - } - }, - "user_roles": { - "product_or_project_manager": "Product / Project Manager", - "development_or_engineering": "Sviluppo / Ingegneria", - "founder_or_executive": "Fondatore / Dirigente", - "freelancer_or_consultant": "Freelance / Consulente", - "marketing_or_growth": "Marketing / Crescita", - "sales_or_business_development": "Vendite / Sviluppo commerciale", - "support_or_operations": "Supporto / Operazioni", - "student_or_professor": "Studente / Professore", - "human_resources": "Risorse umane", - "other": "Altro" - }, - "importer": { - "github": { - "title": "Github", - "description": "Importa elementi di lavoro dai repository GitHub e sincronizzali." - }, - "jira": { - "title": "Jira", - "description": "Importa elementi di lavoro ed epic dai progetti e dagli epic di Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Esporta elementi di lavoro in un file CSV.", - "short_description": "Esporta come CSV" - }, - "excel": { - "title": "Excel", - "description": "Esporta elementi di lavoro in un file Excel.", - "short_description": "Esporta come Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Esporta elementi di lavoro in un file Excel.", - "short_description": "Esporta come Excel" - }, - "json": { - "title": "JSON", - "description": "Esporta elementi di lavoro in un file JSON.", - "short_description": "Esporta come JSON" - } - }, - "default_global_view": { - "all_issues": "Tutti gli elementi di lavoro", - "assigned": "Assegnati", - "created": "Creati", - "subscribed": "Iscritti" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Preferenza di sistema" - }, - "light": { - "label": "Chiaro" - }, - "dark": { - "label": "Scuro" - }, - "light_contrast": { - "label": "Contrasto elevato chiaro" - }, - "dark_contrast": { - "label": "Contrasto elevato scuro" - }, - "custom": { - "label": "Tema personalizzato" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Pianificato", - "in_progress": "In corso", - "paused": "In pausa", - "completed": "Completato", - "cancelled": "Annullato" - }, - "layout": { - "list": "Layout a lista", - "board": "Layout a galleria", - "timeline": "Layout a timeline" - }, - "order_by": { - "name": "Nome", - "progress": "Avanzamento", - "issues": "Numero di elementi di lavoro", - "due_date": "Scadenza", - "created_at": "Data di creazione", - "manual": "Manuale" - } - }, - "cycle": { - "label": "{count, plural, one {Ciclo} other {Cicli}}", - "no_cycle": "Nessun ciclo" - }, - "module": { - "label": "{count, plural, one {Modulo} other {Moduli}}", - "no_module": "Nessun modulo" - }, - "description_versions": { - "last_edited_by": "Ultima modifica di", - "previously_edited_by": "Precedentemente modificato da", - "edited_by": "Modificato da" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane non si è avviato. Questo potrebbe essere dovuto al fatto che uno o più servizi Plane non sono riusciti ad avviarsi.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Scegli View Logs da setup.sh e dai log Docker per essere sicuro." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Schema", - "empty_state": { - "title": "Intestazioni mancanti", - "description": "Aggiungiamo alcune intestazioni a questa pagina per vederle qui." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Parole", - "characters": "Caratteri", - "paragraphs": "Paragrafi", - "read_time": "Tempo di lettura" - }, - "actors_info": { - "edited_by": "Modificato da", - "created_by": "Creato da" - }, - "version_history": { - "label": "Cronologia versioni", - "current_version": "Versione corrente" - } - }, - "assets": { - "label": "Risorse", - "download_button": "Scarica", - "empty_state": { - "title": "Immagini mancanti", - "description": "Aggiungi immagini per vederle qui." - } - } - }, - "open_button": "Apri pannello di navigazione", - "close_button": "Chiudi pannello di navigazione", - "outline_floating_button": "Apri schema" - } -} diff --git a/packages/i18n/src/locales/it/translations.ts b/packages/i18n/src/locales/it/translations.ts new file mode 100644 index 0000000000..eb04e36bce --- /dev/null +++ b/packages/i18n/src/locales/it/translations.ts @@ -0,0 +1,2605 @@ +export default { + sidebar: { + projects: "Progetti", + pages: "Pagine", + new_work_item: "Nuovo elemento di lavoro", + home: "Home", + your_work: "Il tuo lavoro", + inbox: "Posta in arrivo", + workspace: "workspace", + views: "Visualizzazioni", + analytics: "Analisi", + work_items: "Elementi di lavoro", + cycles: "Cicli", + modules: "Moduli", + intake: "Intake", + drafts: "Bozze", + favorites: "Preferiti", + pro: "Pro", + upgrade: "Aggiorna", + }, + auth: { + common: { + email: { + label: "Email", + placeholder: "nome@azienda.com", + errors: { + required: "Email è obbligatoria", + invalid: "Email non valida", + }, + }, + password: { + label: "Password", + set_password: "Imposta una password", + placeholder: "Inserisci la password", + confirm_password: { + label: "Conferma password", + placeholder: "Conferma password", + }, + current_password: { + label: "Password attuale", + }, + new_password: { + label: "Nuova password", + placeholder: "Inserisci nuova password", + }, + change_password: { + label: { + default: "Cambia password", + submitting: "Cambiando password", + }, + }, + errors: { + match: "Le password non corrispondono", + empty: "Per favore inserisci la tua password", + length: "La lunghezza della password deve essere superiore a 8 caratteri", + strength: { + weak: "La password è debole", + strong: "La password è forte", + }, + }, + submit: "Imposta password", + toast: { + change_password: { + success: { + title: "Successo!", + message: "Password cambiata con successo.", + }, + error: { + title: "Errore!", + message: "Qualcosa è andato storto. Per favore riprova.", + }, + }, + }, + }, + unique_code: { + label: "Codice unico", + placeholder: "gets-sets-flys", + paste_code: "Incolla il codice inviato alla tua email", + requesting_new_code: "Richiesta di nuovo codice", + sending_code: "Invio codice", + }, + already_have_an_account: "Hai già un account?", + login: "Accedi", + create_account: "Crea un account", + new_to_plane: "Nuovo su Plane?", + back_to_sign_in: "Torna al login", + resend_in: "Reinvia in {seconds} secondi", + sign_in_with_unique_code: "Accedi con codice unico", + forgot_password: "Hai dimenticato la password?", + }, + sign_up: { + header: { + label: "Crea un account per iniziare a gestire il lavoro con il tuo team.", + step: { + email: { + header: "Registrati", + sub_header: "", + }, + password: { + header: "Registrati", + sub_header: "Registrati utilizzando una combinazione email-password.", + }, + unique_code: { + header: "Registrati", + sub_header: "Registrati utilizzando un codice unico inviato all'indirizzo email sopra.", + }, + }, + }, + errors: { + password: { + strength: "Prova a impostare una password forte per procedere", + }, + }, + }, + sign_in: { + header: { + label: "Accedi per iniziare a gestire il lavoro con il tuo team.", + step: { + email: { + header: "Accedi o registrati", + sub_header: "", + }, + password: { + header: "Accedi o registrati", + sub_header: "Usa la tua combinazione email-password per accedere.", + }, + unique_code: { + header: "Accedi o registrati", + sub_header: "Accedi utilizzando un codice unico inviato all'indirizzo email sopra.", + }, + }, + }, + }, + forgot_password: { + title: "Reimposta la tua password", + description: + "Inserisci l'indirizzo email verificato del tuo account utente e ti invieremo un link per reimpostare la password.", + email_sent: "Abbiamo inviato il link di reimpostazione al tuo indirizzo email", + send_reset_link: "Invia link di reimpostazione", + errors: { + smtp_not_enabled: + "Vediamo che il tuo amministratore non ha abilitato SMTP, non saremo in grado di inviare un link di reimpostazione della password", + }, + toast: { + success: { + title: "Email inviata", + message: + "Controlla la tua inbox per un link per reimpostare la tua password. Se non appare entro pochi minuti, controlla la tua cartella spam.", + }, + error: { + title: "Errore!", + message: "Qualcosa è andato storto. Per favore riprova.", + }, + }, + }, + reset_password: { + title: "Imposta nuova password", + description: "Proteggi il tuo account con una password forte", + }, + set_password: { + title: "Proteggi il tuo account", + description: "Impostare una password ti aiuta a accedere in modo sicuro", + }, + sign_out: { + toast: { + error: { + title: "Errore!", + message: "Impossibile disconnettersi. Per favore riprova.", + }, + }, + }, + }, + submit: "Conferma", + cancel: "Annulla", + loading: "Caricamento", + error: "Errore", + success: "Successo", + warning: "Avviso", + info: "Informazioni", + close: "Chiudi", + yes: "Sì", + no: "No", + ok: "OK", + name: "Nome", + description: "Descrizione", + search: "Cerca", + add_member: "Aggiungi membro", + adding_members: "Aggiungendo membri", + remove_member: "Rimuovi membro", + add_members: "Aggiungi membri", + adding_member: "Aggiungendo membro", + remove_members: "Rimuovi membri", + add: "Aggiungi", + adding: "Aggiungendo", + remove: "Rimuovi", + add_new: "Aggiungi nuovo", + remove_selected: "Rimuovi selezionati", + first_name: "Nome", + last_name: "Cognome", + email: "Email", + display_name: "Nome visualizzato", + role: "Ruolo", + timezone: "Fuso orario", + avatar: "Avatar", + cover_image: "Immagine di copertina", + password: "Password", + change_cover: "Cambia copertina", + language: "Lingua", + saving: "Salvataggio in corso", + save_changes: "Salva modifiche", + deactivate_account: "Disattiva account", + deactivate_account_description: + "Disattivando un account, tutti i dati e le risorse al suo interno verranno rimossi definitivamente e non potranno essere recuperati.", + profile_settings: "Impostazioni del profilo", + your_account: "Il tuo account", + security: "Sicurezza", + activity: "Attività", + appearance: "Aspetto", + notifications: "Notifiche", + workspaces: "Spazi di lavoro", + create_workspace: "Crea spazio di lavoro", + invitations: "Inviti", + summary: "Riepilogo", + assigned: "Assegnato", + created: "Creato", + subscribed: "Iscritto", + you_do_not_have_the_permission_to_access_this_page: "Non hai il permesso di accedere a questa pagina.", + something_went_wrong_please_try_again: "Qualcosa è andato storto. Per favore, riprova.", + load_more: "Carica di più", + select_or_customize_your_interface_color_scheme: "Seleziona o personalizza lo schema dei colori dell'interfaccia.", + theme: "Tema", + system_preference: "Preferenza di sistema", + light: "Chiaro", + dark: "Scuro", + light_contrast: "Contrasto elevato chiaro", + dark_contrast: "Contrasto elevato scuro", + custom: "Tema personalizzato", + select_your_theme: "Seleziona il tuo tema", + customize_your_theme: "Personalizza il tuo tema", + background_color: "Colore di sfondo", + text_color: "Colore del testo", + primary_color: "Colore primario (Tema)", + sidebar_background_color: "Colore di sfondo della barra laterale", + sidebar_text_color: "Colore del testo della barra laterale", + set_theme: "Imposta tema", + enter_a_valid_hex_code_of_6_characters: "Inserisci un codice esadecimale valido di 6 caratteri", + background_color_is_required: "Il colore di sfondo è obbligatorio", + text_color_is_required: "Il colore del testo è obbligatorio", + primary_color_is_required: "Il colore primario è obbligatorio", + sidebar_background_color_is_required: "Il colore di sfondo della barra laterale è obbligatorio", + sidebar_text_color_is_required: "Il colore del testo della barra laterale è obbligatorio", + updating_theme: "Aggiornamento del tema in corso", + theme_updated_successfully: "Tema aggiornato con successo", + failed_to_update_the_theme: "Impossibile aggiornare il tema", + email_notifications: "Notifiche via email", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Rimani aggiornato sugli elementi di lavoro a cui sei iscritto. Abilita questa opzione per ricevere notifiche.", + email_notification_setting_updated_successfully: "Impostazioni delle notifiche email aggiornate con successo", + failed_to_update_email_notification_setting: "Impossibile aggiornare le impostazioni delle notifiche email", + notify_me_when: "Avvisami quando", + property_changes: "Modifiche alle proprietà", + property_changes_description: + "Avvisami quando le proprietà degli elementi di lavoro, come assegnatari, priorità, stime o altro, cambiano.", + state_change: "Cambio di stato", + state_change_description: "Avvisami quando l'elemento di lavoro passa a uno stato diverso", + issue_completed: "Elemento di lavoro completato", + issue_completed_description: "Avvisami solo quando un elemento di lavoro è completato", + comments: "Commenti", + comments_description: "Avvisami quando qualcuno lascia un commento sull'elemento di lavoro", + mentions: "Menzioni", + mentions_description: "Avvisami solo quando qualcuno mi menziona nei commenti o nella descrizione", + old_password: "Vecchia password", + general_settings: "Impostazioni generali", + sign_out: "Esci", + signing_out: "Uscita in corso", + active_cycles: "Cicli attivi", + active_cycles_description: + "Monitora i cicli attraverso i progetti, segui gli elementi di lavoro ad alta priorità e analizza i cicli che necessitano attenzione.", + on_demand_snapshots_of_all_your_cycles: "Snapshot on-demand di tutti i tuoi cicli", + upgrade: "Aggiorna", + "10000_feet_view": "Vista panoramica (10.000 piedi) di tutti i cicli attivi.", + "10000_feet_view_description": + "Effettua uno zoom indietro per vedere i cicli in esecuzione in tutti i tuoi progetti contemporaneamente, invece di passare da un ciclo all'altro in ogni progetto.", + get_snapshot_of_each_active_cycle: "Ottieni uno snapshot di ogni ciclo attivo.", + get_snapshot_of_each_active_cycle_description: + "Monitora metriche di alto livello per tutti i cicli attivi, osserva il loro stato di avanzamento e valuta la portata rispetto alle scadenze.", + compare_burndowns: "Confronta i burndown.", + compare_burndowns_description: + "Monitora le prestazioni di ciascun team con una rapida occhiata al report del burndown di ogni ciclo.", + quickly_see_make_or_break_issues: "Visualizza rapidamente gli elementi di lavoro critici.", + quickly_see_make_or_break_issues_description: + "Visualizza in anteprima gli elementi di lavoro ad alta priorità per ogni ciclo in base alle scadenze. Vedi tutti con un solo clic.", + zoom_into_cycles_that_need_attention: "Zoom sui cicli che richiedono attenzione.", + zoom_into_cycles_that_need_attention_description: + "Esamina lo stato di ogni ciclo che non rispetta le aspettative con un clic.", + stay_ahead_of_blockers: "Anticipa gli ostacoli.", + stay_ahead_of_blockers_description: + "Individua le sfide tra i progetti e visualizza le dipendenze inter-cicliche non evidenti in altre viste.", + analytics: "Analisi", + workspace_invites: "Inviti allo spazio di lavoro", + enter_god_mode: "Entra in modalità dio", + workspace_logo: "Logo dello spazio di lavoro", + new_issue: "Nuovo elemento di lavoro", + your_work: "Il tuo lavoro", + drafts: "Bozze", + projects: "Progetti", + views: "Visualizzazioni", + workspace: "Spazio di lavoro", + archives: "Archivi", + settings: "Impostazioni", + failed_to_move_favorite: "Impossibile spostare il preferito", + favorites: "Preferiti", + no_favorites_yet: "Nessun preferito ancora", + create_folder: "Crea cartella", + new_folder: "Nuova cartella", + favorite_updated_successfully: "Preferito aggiornato con successo", + favorite_created_successfully: "Preferito creato con successo", + folder_already_exists: "La cartella esiste già", + folder_name_cannot_be_empty: "Il nome della cartella non può essere vuoto", + something_went_wrong: "Qualcosa è andato storto", + failed_to_reorder_favorite: "Impossibile riordinare il preferito", + favorite_removed_successfully: "Preferito rimosso con successo", + failed_to_create_favorite: "Impossibile creare il preferito", + failed_to_rename_favorite: "Impossibile rinominare il preferito", + project_link_copied_to_clipboard: "Link del progetto copiato negli appunti", + link_copied: "Link copiato", + add_project: "Aggiungi progetto", + create_project: "Crea progetto", + failed_to_remove_project_from_favorites: "Impossibile rimuovere il progetto dai preferiti. Per favore, riprova.", + project_created_successfully: "Progetto creato con successo", + project_created_successfully_description: + "Progetto creato con successo. Ora puoi iniziare ad aggiungere elementi di lavoro.", + project_name_already_taken: "Il nome del progetto è già stato utilizzato.", + project_identifier_already_taken: "L'identificatore del progetto è già stato utilizzato.", + project_cover_image_alt: "Immagine di copertina del progetto", + name_is_required: "Il nome è obbligatorio", + title_should_be_less_than_255_characters: "Il titolo deve contenere meno di 255 caratteri", + project_name: "Nome del progetto", + project_id_must_be_at_least_1_character: "L'ID del progetto deve contenere almeno 1 carattere", + project_id_must_be_at_most_5_characters: "L'ID del progetto deve contenere al massimo 5 caratteri", + project_id: "ID del progetto", + project_id_tooltip_content: + "Ti aiuta a identificare in modo univoco gli elementi di lavoro nel progetto. Massimo 5 caratteri.", + description_placeholder: "Descrizione", + only_alphanumeric_non_latin_characters_allowed: "Sono ammessi solo caratteri alfanumerici e non latini.", + project_id_is_required: "L'ID del progetto è obbligatorio", + project_id_allowed_char: "Sono ammessi solo caratteri alfanumerici e non latini.", + project_id_min_char: "L'ID del progetto deve contenere almeno 1 carattere", + project_id_max_char: "L'ID del progetto deve contenere al massimo 5 caratteri", + project_description_placeholder: "Inserisci la descrizione del progetto", + select_network: "Seleziona rete", + lead: "Responsabile", + date_range: "Intervallo di date", + private: "Privato", + public: "Pubblico", + accessible_only_by_invite: "Accessibile solo su invito", + anyone_in_the_workspace_except_guests_can_join: "Chiunque nello spazio di lavoro, tranne gli ospiti, può unirsi", + creating: "Creazione in corso", + creating_project: "Creazione del progetto in corso", + adding_project_to_favorites: "Aggiunta del progetto ai preferiti in corso", + project_added_to_favorites: "Progetto aggiunto ai preferiti", + couldnt_add_the_project_to_favorites: "Impossibile aggiungere il progetto ai preferiti. Per favore, riprova.", + removing_project_from_favorites: "Rimozione del progetto dai preferiti in corso", + project_removed_from_favorites: "Progetto rimosso dai preferiti", + couldnt_remove_the_project_from_favorites: "Impossibile rimuovere il progetto dai preferiti. Per favore, riprova.", + add_to_favorites: "Aggiungi ai preferiti", + remove_from_favorites: "Rimuovi dai preferiti", + publish_project: "Pubblica progetto", + publish: "Pubblica", + copy_link: "Copia link", + leave_project: "Lascia progetto", + join_the_project_to_rearrange: "Unisciti al progetto per riorganizzare", + drag_to_rearrange: "Trascina per riorganizzare", + congrats: "Congratulazioni!", + open_project: "Apri progetto", + issues: "Elementi di lavoro", + cycles: "Cicli", + modules: "Moduli", + pages: "Pagine", + intake: "Accoglienza", + time_tracking: "Tracciamento del tempo", + work_management: "Gestione del lavoro", + projects_and_issues: "Progetti ed elementi di lavoro", + projects_and_issues_description: "Attiva o disattiva queste opzioni per questo progetto.", + cycles_description: + "Definisci il tempo di lavoro per progetto e adatta il periodo secondo necessità. Un ciclo può durare 2 settimane, il successivo 1 settimana.", + modules_description: "Organizza il lavoro in sotto-progetti con responsabili e assegnatari dedicati.", + views_description: + "Salva ordinamenti, filtri e opzioni di visualizzazione personalizzati o condividili con il tuo team.", + pages_description: "Crea e modifica contenuti liberi: appunti, documenti, qualsiasi cosa.", + intake_description: + "Consenti ai non membri di segnalare bug, feedback e suggerimenti senza interrompere il tuo flusso di lavoro.", + time_tracking_description: "Registra il tempo trascorso su elementi di lavoro e progetti.", + work_management_description: "Gestisci il tuo lavoro e i tuoi progetti con facilità.", + documentation: "Documentazione", + message_support: "Contatta il supporto", + contact_sales: "Contatta le vendite", + hyper_mode: "Modalità Hyper", + keyboard_shortcuts: "Scorciatoie da tastiera", + whats_new: "Novità?", + version: "Versione", + we_are_having_trouble_fetching_the_updates: "Stiamo riscontrando problemi nel recuperare gli aggiornamenti.", + our_changelogs: "i nostri changelog", + for_the_latest_updates: "per gli ultimi aggiornamenti.", + please_visit: "Per favore visita", + docs: "Documentazione", + full_changelog: "Changelog completo", + support: "Supporto", + discord: "Discord", + powered_by_plane_pages: "Supportato da Plane Pages", + please_select_at_least_one_invitation: "Seleziona almeno un invito.", + please_select_at_least_one_invitation_description: "Seleziona almeno un invito per unirti allo spazio di lavoro.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Abbiamo notato che qualcuno ti ha invitato a unirti a uno spazio di lavoro", + join_a_workspace: "Unisciti a uno spazio di lavoro", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Abbiamo notato che qualcuno ti ha invitato a unirti a uno spazio di lavoro", + join_a_workspace_description: "Unisciti a uno spazio di lavoro", + accept_and_join: "Accetta e unisciti", + go_home: "Vai alla home", + no_pending_invites: "Nessun invito in sospeso", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Qui puoi vedere se qualcuno ti invita a uno spazio di lavoro", + back_to_home: "Torna alla home", + workspace_name: "nome-spazio-di-lavoro", + deactivate_your_account: "Disattiva il tuo account", + deactivate_your_account_description: + "Una volta disattivato, non potrai più essere assegnato a elementi di lavoro né addebitato per il tuo spazio di lavoro. Per riattivare il tuo account, avrai bisogno di un invito a uno spazio di lavoro associato a questo indirizzo email.", + deactivating: "Disattivazione in corso", + confirm: "Conferma", + confirming: "Conferma in corso", + draft_created: "Bozza creata", + issue_created_successfully: "Elemento di lavoro creato con successo", + draft_creation_failed: "Creazione della bozza fallita", + issue_creation_failed: "Creazione dell'elemento di lavoro fallita", + draft_issue: "Bozza di elemento di lavoro", + issue_updated_successfully: "Elemento di lavoro aggiornato con successo", + issue_could_not_be_updated: "Impossibile aggiornare l'elemento di lavoro", + create_a_draft: "Crea una bozza", + save_to_drafts: "Salva nelle bozze", + save: "Salva", + update: "Aggiorna", + updating: "Aggiornamento in corso", + create_new_issue: "Crea un nuovo elemento di lavoro", + editor_is_not_ready_to_discard_changes: "L'editor non è pronto per scartare le modifiche", + failed_to_move_issue_to_project: "Impossibile spostare l'elemento di lavoro nel progetto", + create_more: "Crea altri", + add_to_project: "Aggiungi al progetto", + discard: "Scarta", + duplicate_issue_found: "Elemento di lavoro duplicato trovato", + duplicate_issues_found: "Elementi di lavoro duplicati trovati", + no_matching_results: "Nessun risultato corrispondente", + title_is_required: "Il titolo è obbligatorio", + title: "Titolo", + state: "Stato", + priority: "Priorità", + none: "Nessuna", + urgent: "Urgente", + high: "Alta", + medium: "Media", + low: "Bassa", + members: "Membri", + assignee: "Assegnatario", + assignees: "Assegnatari", + you: "Tu", + labels: "Etichette", + create_new_label: "Crea nuova etichetta", + start_date: "Data di inizio", + end_date: "Data di fine", + due_date: "Scadenza", + estimate: "Stima", + change_parent_issue: "Cambia elemento di lavoro principale", + remove_parent_issue: "Rimuovi elemento di lavoro principale", + add_parent: "Aggiungi elemento principale", + loading_members: "Caricamento membri", + view_link_copied_to_clipboard: "Link di visualizzazione copiato negli appunti.", + required: "Obbligatorio", + optional: "Opzionale", + Cancel: "Annulla", + edit: "Modifica", + archive: "Archivia", + restore: "Ripristina", + open_in_new_tab: "Apri in una nuova scheda", + delete: "Elimina", + deleting: "Eliminazione in corso", + make_a_copy: "Crea una copia", + move_to_project: "Sposta nel progetto", + good: "Buono", + morning: "Mattina", + afternoon: "Pomeriggio", + evening: "Sera", + show_all: "Mostra tutto", + show_less: "Mostra meno", + no_data_yet: "Nessun dato disponibile", + syncing: "Sincronizzazione in corso", + add_work_item: "Aggiungi elemento di lavoro", + advanced_description_placeholder: "Premi '/' per i comandi", + create_work_item: "Crea elemento di lavoro", + attachments: "Allegati", + declining: "Rifiuto in corso", + declined: "Rifiutato", + decline: "Rifiuta", + unassigned: "Non assegnato", + work_items: "Elementi di lavoro", + add_link: "Aggiungi link", + points: "Punti", + no_assignee: "Nessun assegnatario", + no_assignees_yet: "Nessun assegnatario ancora", + no_labels_yet: "Nessuna etichetta ancora", + ideal: "Ideale", + current: "Corrente", + no_matching_members: "Nessun membro corrispondente", + leaving: "Uscita in corso", + removing: "Rimozione in corso", + leave: "Esci", + refresh: "Aggiorna", + refreshing: "Aggiornamento in corso", + refresh_status: "Stato dell'aggiornamento", + prev: "Precedente", + next: "Successivo", + re_generating: "Rigenerazione in corso", + re_generate: "Rigenera", + re_generate_key: "Rigenera chiave", + export: "Esporta", + member: "{count, plural, one {# membro} other {# membri}}", + new_password_must_be_different_from_old_password: "La nuova password deve essere diversa dalla password precedente", + edited: "Modificato", + bot: "Bot", + project_view: { + sort_by: { + created_at: "Creato il", + updated_at: "Aggiornato il", + name: "Nome", + }, + }, + toast: { + success: "Successo!", + error: "Errore!", + }, + links: { + toasts: { + created: { + title: "Link creato", + message: "Il link è stato creato con successo", + }, + not_created: { + title: "Link non creato", + message: "Il link non può essere creato", + }, + updated: { + title: "Link aggiornato", + message: "Il link è stato aggiornato con successo", + }, + not_updated: { + title: "Link non aggiornato", + message: "Il link non può essere aggiornato", + }, + removed: { + title: "Link rimosso", + message: "Il link è stato rimosso con successo", + }, + not_removed: { + title: "Link non rimosso", + message: "Il link non può essere rimosso", + }, + }, + }, + home: { + empty: { + quickstart_guide: "La tua guida rapida", + not_right_now: "Non ora", + create_project: { + title: "Crea un progetto", + description: "La maggior parte delle cose inizia con un progetto in Plane.", + cta: "Inizia", + }, + invite_team: { + title: "Invita il tuo team", + description: "Collabora, lancia e gestisci insieme ai colleghi.", + cta: "Invitali", + }, + configure_workspace: { + title: "Configura il tuo spazio di lavoro.", + description: "Attiva o disattiva le funzionalità o personalizza ulteriormente.", + cta: "Configura questo spazio", + }, + personalize_account: { + title: "Rendi Plane tuo.", + description: "Scegli la tua immagine, i colori e altro.", + cta: "Personalizza ora", + }, + widgets: { + title: "È silenzioso senza widget, attivali", + description: "Sembra che tutti i tuoi widget siano disattivati. Attivali ora per migliorare la tua esperienza!", + primary_button: { + text: "Gestisci widget", + }, + }, + }, + quick_links: { + empty: "Salva link a elementi di lavoro che ti servono.", + add: "Aggiungi link rapido", + title: "Link rapido", + title_plural: "Link rapidi", + }, + recents: { + title: "Recenti", + empty: { + project: "I tuoi progetti recenti appariranno qui una volta visitati.", + page: "Le tue pagine recenti appariranno qui una volta visitate.", + issue: "I tuoi elementi di lavoro recenti appariranno qui una volta visitati.", + default: "Non hai ancora elementi recenti.", + }, + filters: { + all: "Tutti", + projects: "Progetti", + pages: "Pagine", + issues: "Elementi di lavoro", + }, + }, + new_at_plane: { + title: "Novità su Plane", + }, + quick_tutorial: { + title: "Tutorial rapido", + }, + widget: { + reordered_successfully: "Widget riordinato con successo.", + reordering_failed: "Si è verificato un errore durante il riordino del widget.", + }, + manage_widgets: "Gestisci widget", + title: "Home", + star_us_on_github: "Metti una stella su GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "L'URL non è valido", + placeholder: "Digita o incolla un URL", + }, + title: { + text: "Titolo di visualizzazione", + placeholder: "Come vorresti che apparisse questo link", + }, + }, + }, + common: { + all: "Tutti", + states: "Stati", + state: "Stato", + state_groups: "Gruppi di stati", + priority: "Priorità", + team_project: "Progetto di squadra", + project: "Progetto", + cycle: "Ciclo", + cycles: "Cicli", + module: "Modulo", + modules: "Moduli", + labels: "Etichette", + assignees: "Assegnatari", + assignee: "Assegnatario", + created_by: "Creato da", + none: "Nessuno", + link: "Link", + estimate: "Stima", + layout: "Layout", + filters: "Filtri", + display: "Visualizza", + load_more: "Carica di più", + activity: "Attività", + analytics: "Analisi", + dates: "Date", + success: "Successo!", + something_went_wrong: "Qualcosa è andato storto", + error: { + label: "Errore!", + message: "Si è verificato un errore. Per favore, riprova.", + }, + group_by: "Raggruppa per", + epic: "Epic", + epics: "Epic", + work_item: "Elemento di lavoro", + work_items: "Elementi di lavoro", + sub_work_item: "Sotto-elemento di lavoro", + add: "Aggiungi", + warning: "Avviso", + updating: "Aggiornamento in corso", + adding: "Aggiunta in corso", + update: "Aggiorna", + creating: "Creazione in corso", + create: "Crea", + cancel: "Annulla", + description: "Descrizione", + title: "Titolo", + attachment: "Allegato", + general: "Generale", + features: "Funzionalità", + automation: "Automazione", + project_name: "Nome del progetto", + project_id: "ID del progetto", + project_timezone: "Fuso orario del progetto", + created_on: "Creato il", + update_project: "Aggiorna progetto", + identifier_already_exists: "L'identificatore esiste già", + add_more: "Aggiungi altro", + defaults: "Predefiniti", + add_label: "Aggiungi etichetta", + estimates: "Stime", + customize_time_range: "Personalizza intervallo di tempo", + loading: "Caricamento", + attachments: "Allegati", + property: "Proprietà", + properties: "Proprietà", + parent: "Principale", + page: "Pagina", + remove: "Rimuovi", + archiving: "Archiviazione in corso", + archive: "Archivia", + access: { + public: "Pubblico", + private: "Privato", + }, + done: "Fatto", + sub_work_items: "Sotto-elementi di lavoro", + comment: "Commento", + workspace_level: "Livello dello spazio di lavoro", + order_by: { + label: "Ordina per", + manual: "Manuale", + last_created: "Ultimo creato", + last_updated: "Ultimo aggiornato", + start_date: "Data di inizio", + due_date: "Scadenza", + asc: "Ascendente", + desc: "Discendente", + updated_on: "Aggiornato il", + }, + sort: { + asc: "Ascendente", + desc: "Discendente", + created_on: "Creato il", + updated_on: "Aggiornato il", + }, + comments: "Commenti", + updates: "Aggiornamenti", + clear_all: "Pulisci tutto", + copied: "Copiato!", + link_copied: "Link copiato!", + link_copied_to_clipboard: "Link copiato negli appunti", + copied_to_clipboard: "Link dell'elemento di lavoro copiato negli appunti", + is_copied_to_clipboard: "Elemento di lavoro copiato negli appunti", + no_links_added_yet: "Nessun link aggiunto ancora", + add_link: "Aggiungi link", + links: "Link", + go_to_workspace: "Vai allo spazio di lavoro", + progress: "Progresso", + optional: "Opzionale", + join: "Unisciti", + go_back: "Torna indietro", + continue: "Continua", + resend: "Reinvia", + relations: "Relazioni", + errors: { + default: { + title: "Errore!", + message: "Qualcosa è andato storto. Per favore, riprova.", + }, + required: "Questo campo è obbligatorio", + entity_required: "{entity} è obbligatorio", + restricted_entity: "{entity} è limitato", + }, + update_link: "Aggiorna link", + attach: "Allega", + create_new: "Crea nuovo", + add_existing: "Aggiungi esistente", + type_or_paste_a_url: "Digita o incolla un URL", + url_is_invalid: "L'URL non è valido", + display_title: "Titolo di visualizzazione", + link_title_placeholder: "Come vorresti vedere questo link", + url: "URL", + side_peek: "Visualizzazione laterale", + modal: "Modal", + full_screen: "Schermo intero", + close_peek_view: "Chiudi la visualizzazione rapida", + toggle_peek_view_layout: "Alterna layout della visualizzazione rapida", + options: "Opzioni", + duration: "Durata", + today: "Oggi", + week: "Settimana", + month: "Mese", + quarter: "Trimestre", + press_for_commands: "Premi '/' per i comandi", + click_to_add_description: "Clicca per aggiungere una descrizione", + search: { + label: "Cerca", + placeholder: "Digita per cercare", + no_matches_found: "Nessuna corrispondenza trovata", + no_matching_results: "Nessun risultato corrispondente", + }, + actions: { + edit: "Modifica", + make_a_copy: "Crea una copia", + open_in_new_tab: "Apri in una nuova scheda", + copy_link: "Copia link", + archive: "Archivia", + restore: "Ripristina", + delete: "Elimina", + remove_relation: "Rimuovi relazione", + subscribe: "Iscriviti", + unsubscribe: "Annulla iscrizione", + clear_sorting: "Cancella ordinamento", + show_weekends: "Mostra weekend", + enable: "Abilita", + disable: "Disabilita", + }, + name: "Nome", + discard: "Scarta", + confirm: "Conferma", + confirming: "Conferma in corso", + read_the_docs: "Leggi la documentazione", + default: "Predefinito", + active: "Attivo", + enabled: "Abilitato", + disabled: "Disabilitato", + mandate: "Obbligo", + mandatory: "Obbligatorio", + yes: "Sì", + no: "No", + please_wait: "Attendere prego", + enabling: "Abilitazione in corso", + disabling: "Disabilitazione in corso", + beta: "Beta", + or: "o", + next: "Successivo", + back: "Indietro", + cancelling: "Annullamento in corso", + configuring: "Configurazione in corso", + clear: "Pulisci", + import: "Importa", + connect: "Connetti", + authorizing: "Autorizzazione in corso", + processing: "Elaborazione in corso", + no_data_available: "Nessun dato disponibile", + from: "da {name}", + authenticated: "Autenticato", + select: "Seleziona", + upgrade: "Aggiorna", + add_seats: "Aggiungi postazioni", + label: "Etichetta", + priorities: "Priorità", + projects: "Progetti", + workspace: "Spazio di lavoro", + workspaces: "Spazi di lavoro", + team: "Team", + teams: "Team", + entity: "Entità", + entities: "Entità", + task: "Attività", + tasks: "Attività", + section: "Sezione", + sections: "Sezioni", + edit: "Modifica", + connecting: "Connessione in corso", + connected: "Connesso", + disconnect: "Disconnetti", + disconnecting: "Disconnessione in corso", + installing: "Installazione in corso", + install: "Installa", + reset: "Reimposta", + live: "Live", + change_history: "Cronologia modifiche", + coming_soon: "Prossimamente", + member: "Membro", + members: "Membri", + you: "Tu", + upgrade_cta: { + higher_subscription: "Passa a un abbonamento superiore", + talk_to_sales: "Parla con le vendite", + }, + category: "Categoria", + categories: "Categorie", + saving: "Salvataggio in corso", + save_changes: "Salva modifiche", + delete: "Elimina", + deleting: "Eliminazione in corso", + pending: "In sospeso", + invite: "Invita", + view: "Visualizza", + deactivated_user: "Utente disattivato", + apply: "Applica", + applying: "Applicazione", + users: "Utenti", + admins: "Amministratori", + guests: "Ospiti", + on_track: "In linea", + off_track: "Fuori rotta", + at_risk: "A rischio", + timeline: "Cronologia", + completion: "Completamento", + upcoming: "In arrivo", + completed: "Completato", + in_progress: "In corso", + planned: "Pianificato", + paused: "In pausa", + no_of: "N. di {entity}", + resolved: "Risolto", + }, + chart: { + x_axis: "Asse X", + y_axis: "Asse Y", + metric: "Metrica", + }, + form: { + title: { + required: "Il titolo è obbligatorio", + max_length: "Il titolo deve contenere meno di {length} caratteri", + }, + }, + entity: { + grouping_title: "Raggruppamento di {entity}", + priority: "Priorità di {entity}", + all: "Tutti {entity}", + drop_here_to_move: "Trascina qui per spostare il {entity}", + delete: { + label: "Elimina {entity}", + success: "{entity} eliminato con successo", + failed: "Eliminazione di {entity} fallita", + }, + update: { + failed: "Aggiornamento di {entity} fallito", + success: "{entity} aggiornato con successo", + }, + link_copied_to_clipboard: "Link di {entity} copiato negli appunti", + fetch: { + failed: "Errore durante il recupero di {entity}", + }, + add: { + success: "{entity} aggiunto con successo", + failed: "Errore nell'aggiunta di {entity}", + }, + remove: { + success: "{entity} rimosso con successo", + failed: "Errore nella rimozione di {entity}", + }, + }, + epic: { + all: "Tutti gli Epic", + label: "{count, plural, one {Epic} other {Epic}}", + new: "Nuovo Epic", + adding: "Aggiungendo Epic", + create: { + success: "Epic creato con successo", + }, + add: { + press_enter: "Premi 'Invio' per aggiungere un altro Epic", + label: "Aggiungi Epic", + }, + title: { + label: "Titolo Epic", + required: "Il titolo dell'Epic è obbligatorio.", + }, + }, + issue: { + label: "{count, plural, one {Elemento di lavoro} other {Elementi di lavoro}}", + all: "Tutti gli elementi di lavoro", + edit: "Modifica elemento di lavoro", + title: { + label: "Titolo dell'elemento di lavoro", + required: "Il titolo dell'elemento di lavoro è obbligatorio.", + }, + add: { + press_enter: "Premi 'Invio' per aggiungere un altro elemento di lavoro", + label: "Aggiungi elemento di lavoro", + cycle: { + failed: "Impossibile aggiungere l'elemento di lavoro al ciclo. Per favore, riprova.", + success: "{count, plural, one {Elemento di lavoro} other {Elementi di lavoro}} aggiunto al ciclo con successo.", + loading: "Aggiungendo {count, plural, one {elemento di lavoro} other {elementi di lavoro}} al ciclo", + }, + assignee: "Aggiungi assegnatari", + start_date: "Aggiungi data di inizio", + due_date: "Aggiungi scadenza", + parent: "Aggiungi elemento di lavoro principale", + sub_issue: "Aggiungi sotto-elemento di lavoro", + relation: "Aggiungi relazione", + link: "Aggiungi link", + existing: "Aggiungi elemento di lavoro esistente", + }, + remove: { + label: "Rimuovi elemento di lavoro", + cycle: { + loading: "Rimuovendo l'elemento di lavoro dal ciclo", + success: "Elemento di lavoro rimosso dal ciclo con successo.", + failed: "Impossibile rimuovere l'elemento di lavoro dal ciclo. Per favore, riprova.", + }, + module: { + loading: "Rimuovendo l'elemento di lavoro dal modulo", + success: "Elemento di lavoro rimosso dal modulo con successo.", + failed: "Impossibile rimuovere l'elemento di lavoro dal modulo. Per favore, riprova.", + }, + parent: { + label: "Rimuovi elemento di lavoro principale", + }, + }, + new: "Nuovo elemento di lavoro", + adding: "Aggiunta dell'elemento di lavoro in corso", + create: { + success: "Elemento di lavoro creato con successo", + }, + priority: { + urgent: "Urgente", + high: "Alta", + medium: "Media", + low: "Bassa", + }, + display: { + properties: { + label: "Visualizza proprietà", + id: "ID", + issue_type: "Tipo di elemento di lavoro", + sub_issue_count: "Numero di sotto-elementi di lavoro", + attachment_count: "Numero di allegati", + created_on: "Creato il", + sub_issue: "Sotto-elemento di lavoro", + work_item_count: "Conteggio degli elementi di lavoro", + }, + extra: { + show_sub_issues: "Mostra sotto-elementi di lavoro", + show_empty_groups: "Mostra gruppi vuoti", + }, + }, + layouts: { + ordered_by_label: "Questo layout è ordinato per", + list: "Lista", + kanban: "Schede", + calendar: "Calendario", + spreadsheet: "Tabella", + gantt: "Timeline", + title: { + list: "Layout a lista", + kanban: "Layout a schede", + calendar: "Layout a calendario", + spreadsheet: "Layout a tabella", + gantt: "Layout a timeline", + }, + }, + states: { + active: "Attivo", + backlog: "Backlog", + }, + comments: { + placeholder: "Aggiungi commento", + switch: { + private: "Passa a commento privato", + public: "Passa a commento pubblico", + }, + create: { + success: "Commento creato con successo", + error: "Creazione del commento fallita. Per favore, riprova più tardi.", + }, + update: { + success: "Commento aggiornato con successo", + error: "Aggiornamento del commento fallito. Per favore, riprova più tardi.", + }, + remove: { + success: "Commento rimosso con successo", + error: "Rimozione del commento fallita. Per favore, riprova più tardi.", + }, + upload: { + error: "Caricamento dell'asset fallito. Per favore, riprova più tardi.", + }, + copy_link: { + success: "Link del commento copiato negli appunti", + error: "Errore durante la copia del link del commento. Riprova più tardi.", + }, + }, + empty_state: { + issue_detail: { + title: "L'elemento di lavoro non esiste", + description: "L'elemento di lavoro che stai cercando non esiste, è stato archiviato o eliminato.", + primary_button: { + text: "Visualizza altri elementi di lavoro", + }, + }, + }, + sibling: { + label: "Elementi di lavoro correlati", + }, + archive: { + description: "Solo gli elementi di lavoro completati o annullati possono essere archiviati", + label: "Archivia elemento di lavoro", + confirm_message: + "Sei sicuro di voler archiviare l'elemento di lavoro? Tutti gli elementi di lavoro archiviati possono essere ripristinati in seguito.", + success: { + label: "Archiviazione riuscita", + message: "I tuoi archivi sono disponibili negli archivi del progetto.", + }, + failed: { + message: "Impossibile archiviare l'elemento di lavoro. Per favore, riprova.", + }, + }, + restore: { + success: { + title: "Ripristino riuscito", + message: "Il tuo elemento di lavoro è disponibile negli elementi del progetto.", + }, + failed: { + message: "Impossibile ripristinare l'elemento di lavoro. Per favore, riprova.", + }, + }, + relation: { + relates_to: "Collegato a", + duplicate: "Duplicato di", + blocked_by: "Bloccato da", + blocking: "Blocca", + }, + copy_link: "Copia link dell'elemento di lavoro", + delete: { + label: "Elimina elemento di lavoro", + error: "Errore nell'eliminazione dell'elemento di lavoro", + }, + subscription: { + actions: { + subscribed: "Iscrizione all'elemento di lavoro avvenuta con successo", + unsubscribed: "Disiscrizione dall'elemento di lavoro avvenuta con successo", + }, + }, + select: { + error: "Seleziona almeno un elemento di lavoro", + empty: "Nessun elemento di lavoro selezionato", + add_selected: "Aggiungi gli elementi di lavoro selezionati", + select_all: "Seleziona tutto", + deselect_all: "Deseleziona tutto", + }, + open_in_full_screen: "Apri l'elemento di lavoro a schermo intero", + }, + attachment: { + error: "Impossibile allegare il file. Riprova a caricarlo.", + only_one_file_allowed: "È possibile caricare un solo file alla volta.", + file_size_limit: "Il file deve essere di {size}MB o meno.", + drag_and_drop: "Trascina e rilascia ovunque per caricare", + delete: "Elimina allegato", + }, + label: { + select: "Seleziona etichetta", + create: { + success: "Etichetta creata con successo", + failed: "Creazione dell'etichetta fallita", + already_exists: "L'etichetta esiste già", + type: "Digita per aggiungere una nuova etichetta", + }, + }, + sub_work_item: { + update: { + success: "Sotto-elemento di lavoro aggiornato con successo", + error: "Errore nell'aggiornamento del sotto-elemento di lavoro", + }, + remove: { + success: "Sotto-elemento di lavoro rimosso con successo", + error: "Errore nella rimozione del sotto-elemento di lavoro", + }, + empty_state: { + sub_list_filters: { + title: "Non hai sotto-elementi di lavoro che corrispondono ai filtri che hai applicato.", + description: "Per vedere tutti i sotto-elementi di lavoro, cancella tutti i filtri applicati.", + action: "Cancella filtri", + }, + list_filters: { + title: "Non hai elementi di lavoro che corrispondono ai filtri che hai applicato.", + description: "Per vedere tutti gli elementi di lavoro, cancella tutti i filtri applicati.", + action: "Cancella filtri", + }, + }, + }, + view: { + label: "{count, plural, one {Visualizzazione} other {Visualizzazioni}}", + create: { + label: "Crea visualizzazione", + }, + update: { + label: "Aggiorna visualizzazione", + }, + }, + inbox_issue: { + status: { + pending: { + title: "In sospeso", + description: "In sospeso", + }, + declined: { + title: "Rifiutato", + description: "Rifiutato", + }, + snoozed: { + title: "Snoozed", + description: "{days, plural, one {# giorno} other {# giorni}} rimanenti", + }, + accepted: { + title: "Accettato", + description: "Accettato", + }, + duplicate: { + title: "Duplicato", + description: "Duplicato", + }, + }, + modals: { + decline: { + title: "Rifiuta elemento di lavoro", + content: "Sei sicuro di voler rifiutare l'elemento di lavoro {value}?", + }, + delete: { + title: "Elimina elemento di lavoro", + content: "Sei sicuro di voler eliminare l'elemento di lavoro {value}?", + success: "Elemento di lavoro eliminato con successo", + }, + }, + errors: { + snooze_permission: "Solo gli amministratori del progetto possono snoozare/non snoozare gli elementi di lavoro", + accept_permission: "Solo gli amministratori del progetto possono accettare gli elementi di lavoro", + decline_permission: "Solo gli amministratori del progetto possono rifiutare gli elementi di lavoro", + }, + actions: { + accept: "Accetta", + decline: "Rifiuta", + snooze: "Snoozed", + unsnooze: "Annulla snooze", + copy: "Copia link dell'elemento di lavoro", + delete: "Elimina", + open: "Apri elemento di lavoro", + mark_as_duplicate: "Segna come duplicato", + move: "Sposta {value} negli elementi di lavoro del progetto", + }, + source: { + "in-app": "nell'app", + }, + order_by: { + created_at: "Creato il", + updated_at: "Aggiornato il", + id: "ID", + }, + label: "Accoglienza", + page_label: "{workspace} - Accoglienza", + modal: { + title: "Crea elemento di lavoro per l'accoglienza", + }, + tabs: { + open: "Aperto", + closed: "Chiuso", + }, + empty_state: { + sidebar_open_tab: { + title: "Nessun elemento di lavoro aperto", + description: "Trova qui gli elementi di lavoro aperti. Crea un nuovo elemento di lavoro.", + }, + sidebar_closed_tab: { + title: "Nessun elemento di lavoro chiuso", + description: "Tutti gli elementi di lavoro, siano essi accettati o rifiutati, possono essere trovati qui.", + }, + sidebar_filter: { + title: "Nessun elemento di lavoro corrispondente", + description: + "Nessun elemento di lavoro corrisponde al filtro applicato in accoglienza. Crea un nuovo elemento di lavoro.", + }, + detail: { + title: "Seleziona un elemento di lavoro per visualizzarne i dettagli.", + }, + }, + }, + workspace_creation: { + heading: "Crea il tuo spazio di lavoro", + subheading: "Per iniziare a usare Plane, devi creare o unirti a uno spazio di lavoro.", + form: { + name: { + label: "Dai un nome al tuo spazio di lavoro", + placeholder: "Qualcosa di familiare e riconoscibile è sempre meglio.", + }, + url: { + label: "Imposta l'URL del tuo spazio di lavoro", + placeholder: "Digita o incolla un URL", + edit_slug: "Puoi modificare solo lo slug dell'URL", + }, + organization_size: { + label: "Quante persone utilizzeranno questo spazio di lavoro?", + placeholder: "Seleziona una fascia", + }, + }, + errors: { + creation_disabled: { + title: "Solo l'amministratore dell'istanza può creare spazi di lavoro", + description: + "Se conosci l'indirizzo email dell'amministratore dell'istanza, clicca il pulsante qui sotto per contattarlo.", + request_button: "Richiedi all'amministratore dell'istanza", + }, + validation: { + name_alphanumeric: + "I nomi degli spazi di lavoro possono contenere solo (' '), ('-'), ('_') e caratteri alfanumerici.", + name_length: "Limita il tuo nome a 80 caratteri.", + url_alphanumeric: "Gli URL possono contenere solo ('-') e caratteri alfanumerici.", + url_length: "Limita il tuo URL a 48 caratteri.", + url_already_taken: "L'URL dello spazio di lavoro è già in uso!", + }, + }, + request_email: { + subject: "Richiesta per un nuovo spazio di lavoro", + body: "Ciao amministratore dell'istanza,\n\nPer favore, crea un nuovo spazio di lavoro con l'URL [/nome-spazio] per [scopo del nuovo spazio].\n\nGrazie,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Crea spazio di lavoro", + loading: "Creazione dello spazio di lavoro in corso", + }, + toast: { + success: { + title: "Successo", + message: "Spazio di lavoro creato con successo", + }, + error: { + title: "Errore", + message: "Impossibile creare lo spazio di lavoro. Per favore, riprova.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Panoramica dei tuoi progetti, attività e metriche", + description: + "Benvenuto in Plane, siamo entusiasti di averti qui. Crea il tuo primo progetto e traccia i tuoi elementi di lavoro, e questa pagina si trasformerà in uno spazio che ti aiuta a progredire. Gli amministratori vedranno anche elementi che aiutano il team a progredire.", + primary_button: { + text: "Crea il tuo primo progetto", + comic: { + title: "Tutto inizia con un progetto in Plane", + description: + "Un progetto può essere la roadmap di un prodotto, una campagna di marketing o il lancio di una nuova auto.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analisi", + page_label: "{workspace} - Analisi", + open_tasks: "Totale attività aperte", + error: "Si è verificato un errore nel recupero dei dati.", + work_items_closed_in: "Elementi di lavoro chiusi in", + selected_projects: "Progetti selezionati", + total_members: "Totale membri", + total_cycles: "Totale cicli", + total_modules: "Totale moduli", + pending_work_items: { + title: "Elementi di lavoro in sospeso", + empty_state: "L'analisi degli elementi di lavoro in sospeso dei colleghi apparirà qui.", + }, + work_items_closed_in_a_year: { + title: "Elementi di lavoro chiusi in un anno", + empty_state: "Chiudi gli elementi di lavoro per visualizzare l'analisi sotto forma di grafico.", + }, + most_work_items_created: { + title: "Maggiori elementi di lavoro creati", + empty_state: "I colleghi e il numero di elementi di lavoro creati da loro appariranno qui.", + }, + most_work_items_closed: { + title: "Maggiori elementi di lavoro chiusi", + empty_state: "I colleghi e il numero di elementi di lavoro chiusi da loro appariranno qui.", + }, + tabs: { + scope_and_demand: "Ambito e Domanda", + custom: "Analisi personalizzata", + }, + empty_state: { + customized_insights: { + description: "Gli elementi di lavoro assegnati a te, suddivisi per stato, verranno visualizzati qui.", + title: "Nessun dato disponibile", + }, + created_vs_resolved: { + description: "Gli elementi di lavoro creati e risolti nel tempo verranno visualizzati qui.", + title: "Nessun dato disponibile", + }, + project_insights: { + title: "Nessun dato disponibile", + description: "Gli elementi di lavoro assegnati a te, suddivisi per stato, verranno visualizzati qui.", + }, + general: { + title: + "Traccia progressi, carichi di lavoro e allocazioni. Individua tendenze, rimuovi blocchi e lavora più velocemente", + description: + "Visualizza ambito vs domanda, stime e scope creep. Ottieni prestazioni per membri del team e squadre, assicurandoti che il tuo progetto si svolga nei tempi previsti.", + primary_button: { + text: "Inizia il tuo primo progetto", + comic: { + title: "Analytics funziona meglio con Cicli + Moduli", + description: + "Prima, incornicia i tuoi elementi di lavoro in Cicli e, se possibile, raggruppa gli elementi che si estendono oltre un ciclo in Moduli. Controlla entrambi nella navigazione sinistra.", + }, + }, + }, + }, + created_vs_resolved: "Creato vs Risolto", + customized_insights: "Approfondimenti personalizzati", + backlog_work_items: "{entity} nel backlog", + active_projects: "Progetti attivi", + trend_on_charts: "Tendenza nei grafici", + all_projects: "Tutti i progetti", + summary_of_projects: "Riepilogo dei progetti", + project_insights: "Approfondimenti sul progetto", + started_work_items: "{entity} iniziati", + total_work_items: "Totale {entity}", + total_projects: "Progetti totali", + total_admins: "Totale amministratori", + total_users: "Totale utenti", + total_intake: "Entrate totali", + un_started_work_items: "{entity} non avviati", + total_guests: "Totale ospiti", + completed_work_items: "{entity} completati", + total: "Totale {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Progetto} other {Progetti}}", + create: { + label: "Aggiungi progetto", + }, + network: { + label: "Rete", + private: { + title: "Privato", + description: "Accessibile solo su invito", + }, + public: { + title: "Pubblico", + description: "Chiunque nello spazio di lavoro, tranne gli ospiti, può unirsi", + }, + }, + error: { + permission: "Non hai il permesso di eseguire questa azione.", + cycle_delete: "Impossibile eliminare il ciclo", + module_delete: "Impossibile eliminare il modulo", + issue_delete: "Impossibile eliminare l'elemento di lavoro", + }, + state: { + backlog: "Backlog", + unstarted: "Non iniziato", + started: "Iniziato", + completed: "Completato", + cancelled: "Annullato", + }, + sort: { + manual: "Manuale", + name: "Nome", + created_at: "Data di creazione", + members_length: "Numero di membri", + }, + scope: { + my_projects: "I miei progetti", + archived_projects: "Archiviati", + }, + common: { + months_count: "{months, plural, one {# mese} other {# mesi}}", + }, + empty_state: { + general: { + title: "Nessun progetto attivo", + description: + "Considera ogni progetto come la base per un lavoro orientato a obiettivi. I progetti sono dove risiedono Jobs, Cicli e Moduli e, insieme ai tuoi colleghi, ti aiutano a raggiungere quell'obiettivo. Crea un nuovo progetto o filtra per progetti archiviati.", + primary_button: { + text: "Inizia il tuo primo progetto", + comic: { + title: "Tutto inizia con un progetto in Plane", + description: + "Un progetto può essere la roadmap di un prodotto, una campagna di marketing o il lancio di una nuova auto.", + }, + }, + }, + no_projects: { + title: "Nessun progetto", + description: "Per creare elementi di lavoro o gestire il tuo lavoro, devi creare o far parte di un progetto.", + primary_button: { + text: "Inizia il tuo primo progetto", + comic: { + title: "Tutto inizia con un progetto in Plane", + description: + "Un progetto può essere la roadmap di un prodotto, una campagna di marketing o il lancio di una nuova auto.", + }, + }, + }, + filter: { + title: "Nessun progetto corrispondente", + description: + "Nessun progetto rilevato con i criteri di ricerca corrispondenti. \n Crea un nuovo progetto invece.", + }, + search: { + description: "Nessun progetto rilevato con i criteri di ricerca corrispondenti.\nCrea un nuovo progetto invece", + }, + }, + }, + workspace_views: { + add_view: "Aggiungi visualizzazione", + empty_state: { + "all-issues": { + title: "Nessun elemento di lavoro nel progetto", + description: + "Primo progetto fatto! Ora, suddividi il tuo lavoro in parti tracciabili con gli elementi di lavoro. Andiamo!", + primary_button: { + text: "Crea un nuovo elemento di lavoro", + }, + }, + assigned: { + title: "Nessun elemento di lavoro ancora", + description: "Gli elementi di lavoro assegnati a te possono essere tracciati da qui.", + primary_button: { + text: "Crea un nuovo elemento di lavoro", + }, + }, + created: { + title: "Nessun elemento di lavoro ancora", + description: "Tutti gli elementi di lavoro creati da te appariranno qui. Tracciali direttamente da qui.", + primary_button: { + text: "Crea un nuovo elemento di lavoro", + }, + }, + subscribed: { + title: "Nessun elemento di lavoro ancora", + description: "Iscriviti agli elementi di lavoro che ti interessano, tracciali tutti qui.", + }, + "custom-view": { + title: "Nessun elemento di lavoro ancora", + description: "Gli elementi di lavoro che corrispondono ai filtri, tracciali tutti qui.", + }, + }, + }, + workspace_settings: { + label: "Impostazioni dello spazio di lavoro", + page_label: "{workspace} - Impostazioni generali", + key_created: "Chiave creata", + copy_key: + "Copia e salva questa chiave segreta in Plane Pages. Non potrai vederla dopo aver cliccato Chiudi. È stato scaricato un file CSV contenente la chiave.", + token_copied: "Token copiato negli appunti.", + settings: { + general: { + title: "Generale", + upload_logo: "Carica logo", + edit_logo: "Modifica logo", + name: "Nome dello spazio di lavoro", + company_size: "Dimensione aziendale", + url: "URL dello spazio di lavoro", + update_workspace: "Aggiorna spazio di lavoro", + delete_workspace: "Elimina questo spazio di lavoro", + delete_workspace_description: + "Eliminando uno spazio di lavoro, tutti i dati e le risorse all'interno di esso verranno rimossi definitivamente e non potranno essere recuperati.", + delete_btn: "Elimina questo spazio di lavoro", + delete_modal: { + title: "Sei sicuro di voler eliminare questo spazio di lavoro?", + description: + "Hai un periodo di prova attivo per uno dei nostri piani a pagamento. Per procedere, annulla prima il periodo di prova.", + dismiss: "Annulla", + cancel: "Annulla periodo di prova", + success_title: "Spazio di lavoro eliminato.", + success_message: "Presto verrai reindirizzato alla tua pagina del profilo.", + error_title: "Qualcosa non ha funzionato.", + error_message: "Riprova, per favore.", + }, + errors: { + name: { + required: "Il nome è obbligatorio", + max_length: "Il nome dello spazio di lavoro non deve superare gli 80 caratteri", + }, + company_size: { + required: "La dimensione aziendale è obbligatoria", + select_a_range: "Seleziona la dimensione dell'organizzazione", + }, + }, + }, + members: { + title: "Membri", + add_member: "Aggiungi membro", + pending_invites: "Inviti in sospeso", + invitations_sent_successfully: "Inviti inviati con successo", + leave_confirmation: + "Sei sicuro di voler lasciare lo spazio di lavoro? Non avrai più accesso a questo spazio. Questa azione non può essere annullata.", + details: { + full_name: "Nome completo", + display_name: "Nome visualizzato", + email_address: "Indirizzo email", + account_type: "Tipo di account", + authentication: "Autenticazione", + joining_date: "Data di ingresso", + }, + modal: { + title: "Invita persone a collaborare", + description: "Invita persone a collaborare nel tuo spazio di lavoro.", + button: "Invia inviti", + button_loading: "Invio inviti in corso", + placeholder: "nome@azienda.com", + errors: { + required: "Abbiamo bisogno di un indirizzo email per invitarli.", + invalid: "L'email non è valida", + }, + }, + }, + billing_and_plans: { + title: "Fatturazione e Piani", + current_plan: "Piano attuale", + free_plan: "Stai attualmente utilizzando il piano gratuito", + view_plans: "Visualizza piani", + }, + exports: { + title: "Esportazioni", + exporting: "Esportazione in corso", + previous_exports: "Esportazioni precedenti", + export_separate_files: "Esporta i dati in file separati", + modal: { + title: "Esporta in", + toasts: { + success: { + title: "Esportazione riuscita", + message: "Potrai scaricare gli {entity} esportati dall'esportazione precedente.", + }, + error: { + title: "Esportazione fallita", + message: "L'esportazione non è riuscita. Per favore, riprova.", + }, + }, + }, + }, + webhooks: { + title: "Webhooks", + add_webhook: "Aggiungi webhook", + modal: { + title: "Crea webhook", + details: "Dettagli del webhook", + payload: "URL del payload", + question: "Quali eventi vuoi attivino questo webhook?", + error: "L'URL è obbligatorio", + }, + secret_key: { + title: "Chiave segreta", + message: "Genera un token per accedere al payload del webhook", + }, + options: { + all: "Inviami tutto", + individual: "Seleziona eventi individuali", + }, + toasts: { + created: { + title: "Webhook creato", + message: "Il webhook è stato creato con successo", + }, + not_created: { + title: "Webhook non creato", + message: "Il webhook non può essere creato", + }, + updated: { + title: "Webhook aggiornato", + message: "Il webhook è stato aggiornato con successo", + }, + not_updated: { + title: "Webhook non aggiornato", + message: "Il webhook non può essere aggiornato", + }, + removed: { + title: "Webhook rimosso", + message: "Il webhook è stato rimosso con successo", + }, + not_removed: { + title: "Webhook non rimosso", + message: "Il webhook non può essere rimosso", + }, + secret_key_copied: { + message: "Chiave segreta copiata negli appunti.", + }, + secret_key_not_copied: { + message: "Errore durante la copia della chiave segreta.", + }, + }, + }, + api_tokens: { + title: "Token API", + add_token: "Aggiungi token API", + create_token: "Crea token", + never_expires: "Non scade mai", + generate_token: "Genera token", + generating: "Generazione in corso", + delete: { + title: "Elimina token API", + description: + "Qualsiasi applicazione che utilizza questo token non avrà più accesso ai dati di Plane. Questa azione non può essere annullata.", + success: { + title: "Successo!", + message: "Il token API è stato eliminato con successo", + }, + error: { + title: "Errore!", + message: "Il token API non può essere eliminato", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Nessun token API creato", + description: + "Le API di Plane possono essere utilizzate per integrare i tuoi dati in Plane con qualsiasi sistema esterno. Crea un token per iniziare.", + }, + webhooks: { + title: "Nessun webhook aggiunto", + description: "Crea webhook per ricevere aggiornamenti in tempo reale e automatizzare azioni.", + }, + exports: { + title: "Nessuna esportazione ancora", + description: "Ogni volta che esporti, avrai anche una copia qui per riferimento.", + }, + imports: { + title: "Nessuna importazione ancora", + description: "Trova qui tutte le tue importazioni precedenti e scaricale.", + }, + }, + }, + profile: { + label: "Profilo", + page_label: "Il tuo lavoro", + work: "Lavoro", + details: { + joined_on: "Iscritto il", + time_zone: "Fuso orario", + }, + stats: { + workload: "Carico di lavoro", + overview: "Panoramica", + created: "Elementi di lavoro creati", + assigned: "Elementi di lavoro assegnati", + subscribed: "Elementi di lavoro iscritti", + state_distribution: { + title: "Elementi di lavoro per stato", + empty: "Crea elementi di lavoro per visualizzarli per stato nel grafico per un'analisi migliore.", + }, + priority_distribution: { + title: "Elementi di lavoro per priorità", + empty: "Crea elementi di lavoro per visualizzarli per priorità nel grafico per un'analisi migliore.", + }, + recent_activity: { + title: "Attività recente", + empty: "Non abbiamo trovato dati. Per favore, controlla i tuoi input", + button: "Scarica l'attività di oggi", + button_loading: "Download in corso", + }, + }, + actions: { + profile: "Profilo", + security: "Sicurezza", + activity: "Attività", + appearance: "Aspetto", + notifications: "Notifiche", + }, + tabs: { + summary: "Riepilogo", + assigned: "Assegnati", + created: "Creati", + subscribed: "Iscritti", + activity: "Attività", + }, + empty_state: { + activity: { + title: "Nessuna attività ancora", + description: + "Inizia creando un nuovo elemento di lavoro! Aggiungi dettagli e proprietà ad esso. Esplora Plane per vedere la tua attività.", + }, + assigned: { + title: "Nessun elemento di lavoro assegnato a te", + description: "Gli elementi di lavoro assegnati a te possono essere tracciati da qui.", + }, + created: { + title: "Nessun elemento di lavoro ancora", + description: "Tutti gli elementi di lavoro creati da te appariranno qui. Tracciali direttamente da qui.", + }, + subscribed: { + title: "Nessun elemento di lavoro ancora", + description: "Iscriviti agli elementi di lavoro che ti interessano, tracciali tutti qui.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Inserisci l'ID del progetto", + please_select_a_timezone: "Seleziona un fuso orario", + archive_project: { + title: "Archivia progetto", + description: + "Archiviare un progetto lo rimuoverà dal menu di navigazione laterale, anche se potrai sempre accedervi dalla pagina dei progetti. Potrai ripristinare il progetto o eliminarlo quando vuoi.", + button: "Archivia progetto", + }, + delete_project: { + title: "Elimina progetto", + description: + "Eliminando un progetto, tutti i dati e le risorse all'interno di esso verranno rimossi definitivamente e non potranno essere recuperati.", + button: "Elimina il mio progetto", + }, + toast: { + success: "Progetto aggiornato con successo", + error: "Impossibile aggiornare il progetto. Per favore, riprova.", + }, + }, + members: { + label: "Membri", + project_lead: "Responsabile del progetto", + default_assignee: "Assegnatario predefinito", + guest_super_permissions: { + title: "Concedi accesso in sola lettura a tutti gli elementi di lavoro per gli utenti ospiti:", + sub_heading: "Questo permetterà agli ospiti di visualizzare tutti gli elementi di lavoro del progetto.", + }, + invite_members: { + title: "Invita membri", + sub_heading: "Invita membri a lavorare sul tuo progetto.", + select_co_worker: "Seleziona un collega", + }, + }, + states: { + describe_this_state_for_your_members: "Descrivi questo stato per i tuoi membri.", + empty_state: { + title: "Nessuno stato disponibile per il gruppo {groupKey}", + description: "Crea un nuovo stato", + }, + }, + labels: { + label_title: "Titolo etichetta", + label_title_is_required: "Il titolo dell'etichetta è obbligatorio", + label_max_char: "Il nome dell'etichetta non deve superare i 255 caratteri", + toast: { + error: "Errore durante l'aggiornamento dell'etichetta", + }, + }, + estimates: { + label: "Stime", + title: "Abilita le stime per il mio progetto", + description: "Ti aiutano a comunicare la complessità e il carico di lavoro del team.", + no_estimate: "Nessuna stima", + new: "Nuovo sistema di stima", + create: { + custom: "Personalizzato", + start_from_scratch: "Inizia da zero", + choose_template: "Scegli un modello", + choose_estimate_system: "Scegli un sistema di stima", + enter_estimate_point: "Inserisci stima", + step: "Passo {step} di {total}", + label: "Crea stima", + }, + toasts: { + created: { + success: { + title: "Stima creata", + message: "La stima è stata creata con successo", + }, + error: { + title: "Creazione stima fallita", + message: "Non siamo riusciti a creare la nuova stima, riprova.", + }, + }, + updated: { + success: { + title: "Stima modificata", + message: "La stima è stata aggiornata nel tuo progetto.", + }, + error: { + title: "Modifica stima fallita", + message: "Non siamo riusciti a modificare la stima, riprova", + }, + }, + enabled: { + success: { + title: "Successo!", + message: "Le stime sono state abilitate.", + }, + }, + disabled: { + success: { + title: "Successo!", + message: "Le stime sono state disabilitate.", + }, + error: { + title: "Errore!", + message: "Impossibile disabilitare la stima. Riprova", + }, + }, + }, + validation: { + min_length: "La stima deve essere maggiore di 0.", + unable_to_process: "Non possiamo elaborare la tua richiesta, riprova.", + numeric: "La stima deve essere un valore numerico.", + character: "La stima deve essere un valore di carattere.", + empty: "Il valore della stima non può essere vuoto.", + already_exists: "Il valore della stima esiste già.", + unsaved_changes: "Hai delle modifiche non salvate. Salva prima di cliccare su Fatto", + remove_empty: + "La stima non può essere vuota. Inserisci un valore in ogni campo o rimuovi quelli per cui non hai valori.", + }, + systems: { + points: { + label: "Punti", + fibonacci: "Fibonacci", + linear: "Lineare", + squares: "Quadrati", + custom: "Personalizzato", + }, + categories: { + label: "Categorie", + t_shirt_sizes: "Taglie T-Shirt", + easy_to_hard: "Da facile a difficile", + custom: "Personalizzato", + }, + time: { + label: "Tempo", + hours: "Ore", + }, + }, + }, + automations: { + label: "Automatizzazioni", + "auto-archive": { + title: "Archivia automaticamente gli elementi di lavoro chiusi", + description: "Plane archiverà automaticamente gli elementi di lavoro che sono stati completati o annullati.", + duration: "Archivia automaticamente gli elementi di lavoro chiusi per", + }, + "auto-close": { + title: "Chiudi automaticamente gli elementi di lavoro", + description: "Plane chiuderà automaticamente gli elementi di lavoro che non sono stati completati o annullati.", + duration: "Chiudi automaticamente gli elementi di lavoro inattivi per", + auto_close_status: "Stato di chiusura automatica", + }, + }, + empty_state: { + labels: { + title: "Nessuna etichetta ancora", + description: "Crea etichette per aiutare a organizzare e filtrare gli elementi di lavoro nel tuo progetto.", + }, + estimates: { + title: "Nessun sistema di stime ancora", + description: "Crea un set di stime per comunicare la quantità di lavoro per elemento di lavoro.", + primary_button: "Aggiungi sistema di stime", + }, + }, + }, + project_cycles: { + add_cycle: "Aggiungi ciclo", + more_details: "Altri dettagli", + cycle: "Ciclo", + update_cycle: "Aggiorna ciclo", + create_cycle: "Crea ciclo", + no_matching_cycles: "Nessun ciclo corrispondente", + remove_filters_to_see_all_cycles: "Rimuovi i filtri per vedere tutti i cicli", + remove_search_criteria_to_see_all_cycles: "Rimuovi i criteri di ricerca per vedere tutti i cicli", + only_completed_cycles_can_be_archived: "Solo i cicli completati possono essere archiviati", + start_date: "Data di inizio", + end_date: "Data di fine", + in_your_timezone: "Nel tuo fuso orario", + transfer_work_items: "Trasferisci {count} elementi di lavoro", + date_range: "Intervallo di date", + add_date: "Aggiungi data", + active_cycle: { + label: "Ciclo attivo", + progress: "Avanzamento", + chart: "Grafico di burndown", + priority_issue: "Elementi di lavoro ad alta priorità", + assignees: "Assegnatari", + issue_burndown: "Burndown degli elementi di lavoro", + ideal: "Ideale", + current: "Corrente", + labels: "Etichette", + }, + upcoming_cycle: { + label: "Ciclo in arrivo", + }, + completed_cycle: { + label: "Ciclo completato", + }, + status: { + days_left: "Giorni rimanenti", + completed: "Completato", + yet_to_start: "Non ancora iniziato", + in_progress: "In corso", + draft: "Bozza", + }, + action: { + restore: { + title: "Ripristina ciclo", + success: { + title: "Ciclo ripristinato", + description: "Il ciclo è stato ripristinato.", + }, + failed: { + title: "Ripristino del ciclo fallito", + description: "Il ciclo non può essere ripristinato. Per favore, riprova.", + }, + }, + favorite: { + loading: "Aggiunta del ciclo ai preferiti in corso", + success: { + description: "Ciclo aggiunto ai preferiti.", + title: "Successo!", + }, + failed: { + description: "Impossibile aggiungere il ciclo ai preferiti. Per favore, riprova.", + title: "Errore!", + }, + }, + unfavorite: { + loading: "Rimozione del ciclo dai preferiti in corso", + success: { + description: "Ciclo rimosso dai preferiti.", + title: "Successo!", + }, + failed: { + description: "Impossibile rimuovere il ciclo dai preferiti. Per favore, riprova.", + title: "Errore!", + }, + }, + update: { + loading: "Aggiornamento del ciclo in corso", + success: { + description: "Ciclo aggiornato con successo.", + title: "Successo!", + }, + failed: { + description: "Errore durante l'aggiornamento del ciclo. Per favore, riprova.", + title: "Errore!", + }, + error: { + already_exists: + "Hai già un ciclo nelle date indicate, se vuoi creare una bozza di ciclo, puoi farlo rimuovendo entrambe le date.", + }, + }, + }, + empty_state: { + general: { + title: "Raggruppa e definisci il tempo per il tuo lavoro in cicli.", + description: + "Suddividi il lavoro in blocchi temporali, lavora a ritroso dalla scadenza del tuo progetto per impostare le date e fai progressi tangibili come team.", + primary_button: { + text: "Imposta il tuo primo ciclo", + comic: { + title: "I cicli sono intervalli temporali ripetitivi.", + description: + "Uno sprint, un'iterazione o qualsiasi altro termine usato per il tracciamento settimanale o bisettimanale del lavoro è un ciclo.", + }, + }, + }, + no_issues: { + title: "Nessun elemento di lavoro aggiunto al ciclo", + description: "Aggiungi o crea gli elementi di lavoro che desideri includere in questo ciclo", + primary_button: { + text: "Crea un nuovo elemento di lavoro", + }, + secondary_button: { + text: "Aggiungi un elemento di lavoro esistente", + }, + }, + completed_no_issues: { + title: "Nessun elemento di lavoro nel ciclo", + description: + "Nessun elemento di lavoro presente nel ciclo. Gli elementi di lavoro sono stati trasferiti o nascosti. Per visualizzare gli elementi nascosti, se presenti, aggiorna le proprietà di visualizzazione di conseguenza.", + }, + active: { + title: "Nessun ciclo attivo", + description: + "Un ciclo attivo è quello che include la data odierna nel suo intervallo. Visualizza qui i dettagli e l'avanzamento del ciclo attivo.", + }, + archived: { + title: "Nessun ciclo archiviato ancora", + description: + "Per organizzare il tuo progetto, archivia i cicli completati. Li troverai qui una volta archiviati.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Crea un elemento di lavoro e assegnalo a qualcuno, anche a te stesso", + description: + "Considera gli elementi di lavoro come compiti, attività, lavori o JTBD. Un elemento di lavoro e i suoi sotto-elementi di lavoro sono solitamente attività basate sul tempo assegnate ai membri del team. Il tuo team crea, assegna e completa gli elementi di lavoro per portare il progetto verso il suo obiettivo.", + primary_button: { + text: "Crea il tuo primo elemento di lavoro", + comic: { + title: "Gli elementi di lavoro sono i mattoni fondamentali in Plane.", + description: + "Ridisegna l'interfaccia di Plane, rebranding dell'azienda o lancia il nuovo sistema di iniezione del carburante sono esempi di elementi di lavoro che probabilmente hanno sotto-elementi.", + }, + }, + }, + no_archived_issues: { + title: "Nessun elemento di lavoro archiviato ancora", + description: + "Manualmente o tramite automazione, puoi archiviare gli elementi di lavoro che sono stati completati o annullati. Li troverai qui una volta archiviati.", + primary_button: { + text: "Imposta l'automazione", + }, + }, + issues_empty_filter: { + title: "Nessun elemento di lavoro trovato corrispondente ai filtri applicati", + secondary_button: { + text: "Cancella tutti i filtri", + }, + }, + }, + }, + project_module: { + add_module: "Aggiungi Modulo", + update_module: "Aggiorna Modulo", + create_module: "Crea Modulo", + archive_module: "Archivia Modulo", + restore_module: "Ripristina Modulo", + delete_module: "Elimina modulo", + empty_state: { + general: { + title: "Associa i traguardi del tuo progetto ai Moduli e traccia facilmente il lavoro aggregato.", + description: + "Un gruppo di elementi di lavoro che appartengono a un genitore logico e gerarchico forma un modulo. Considerali come un modo per tracciare il lavoro in base ai traguardi del progetto. Hanno i propri intervalli temporali e scadenze, oltre ad analisi che ti aiutano a vedere quanto sei vicino o lontano da un traguardo.", + primary_button: { + text: "Crea il tuo primo modulo", + comic: { + title: "I moduli aiutano a raggruppare il lavoro per gerarchia.", + description: + "Un modulo per il carrello, un modulo per il telaio e un modulo per il magazzino sono tutti buoni esempi di questo raggruppamento.", + }, + }, + }, + no_issues: { + title: "Nessun elemento di lavoro nel modulo", + description: "Crea o aggiungi elementi di lavoro che desideri completare come parte di questo modulo", + primary_button: { + text: "Crea nuovi elementi di lavoro", + }, + secondary_button: { + text: "Aggiungi un elemento di lavoro esistente", + }, + }, + archived: { + title: "Nessun modulo archiviato ancora", + description: + "Per organizzare il tuo progetto, archivia i moduli completati o annullati. Li troverai qui una volta archiviati.", + }, + sidebar: { + in_active: "Questo modulo non è ancora attivo.", + invalid_date: "Data non valida. Inserisci una data valida.", + }, + }, + quick_actions: { + archive_module: "Archivia modulo", + archive_module_description: "Solo i moduli completati o annullati possono essere archiviati.", + delete_module: "Elimina modulo", + }, + toast: { + copy: { + success: "Link del modulo copiato negli appunti", + }, + delete: { + success: "Modulo eliminato con successo", + error: "Impossibile eliminare il modulo", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Salva visualizzazioni filtrate per il tuo progetto. Crea quante ne vuoi", + description: + "Le visualizzazioni sono un insieme di filtri salvati che usi frequentemente o a cui vuoi avere accesso rapido. Tutti i tuoi colleghi in un progetto possono vedere tutte le visualizzazioni e scegliere quella che fa per loro.", + primary_button: { + text: "Crea la tua prima visualizzazione", + comic: { + title: "Le visualizzazioni si basano sulle proprietà degli elementi di lavoro.", + description: "Puoi creare una visualizzazione da qui con quante proprietà e filtri desideri.", + }, + }, + }, + filter: { + title: "Nessuna visualizzazione corrispondente", + description: + "Nessuna visualizzazione corrisponde ai criteri di ricerca. \n Crea una nuova visualizzazione invece.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Scrivi una nota, un documento o una vera e propria base di conoscenza. Fai partire Galileo, l'assistente AI di Plane, per aiutarti a iniziare", + description: + "Le pagine sono spazi per appunti in Plane. Prendi note durante le riunioni, formattale facilmente, inserisci elementi di lavoro, disponili usando una libreria di componenti e tienili tutti nel contesto del tuo progetto. Per velocizzare qualsiasi documento, invoca Galileo, l'IA di Plane, con una scorciatoia o con il clic di un pulsante.", + primary_button: { + text: "Crea la tua prima pagina", + }, + }, + private: { + title: "Nessuna pagina privata ancora", + description: + "Tieni qui i tuoi appunti privati. Quando sarai pronto a condividerli, il team sarà a portata di clic.", + primary_button: { + text: "Crea la tua prima pagina", + }, + }, + public: { + title: "Nessuna pagina pubblica ancora", + description: "Visualizza qui le pagine condivise con tutti nel tuo progetto.", + primary_button: { + text: "Crea la tua prima pagina", + }, + }, + archived: { + title: "Nessuna pagina archiviata ancora", + description: "Archivia le pagine che non sono più di tuo interesse. Potrai accedervi quando necessario.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Nessun risultato trovato", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Nessun elemento di lavoro corrispondente trovato", + }, + no_issues: { + title: "Nessun elemento di lavoro trovato", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Nessun commento ancora", + description: "I commenti possono essere usati come spazio per discussioni e follow-up sugli elementi di lavoro", + }, + }, + }, + notification: { + label: "Notifiche", + page_label: "{workspace} - Notifiche", + options: { + mark_all_as_read: "Segna tutto come letto", + mark_read: "Segna come letto", + mark_unread: "Segna come non letto", + refresh: "Aggiorna", + filters: "Filtri Notifiche", + show_unread: "Mostra non lette", + show_snoozed: "Mostra snoozate", + show_archived: "Mostra archiviate", + mark_archive: "Archivia", + mark_unarchive: "Rimuovi da archivio", + mark_snooze: "Snoozed", + mark_unsnooze: "Annulla snooze", + }, + toasts: { + read: "Notifica segnata come letta", + unread: "Notifica segnata come non letta", + archived: "Notifica archiviata", + unarchived: "Notifica rimossa dall'archivio", + snoozed: "Notifica snoozata", + unsnoozed: "Notifica desnoozata", + }, + empty_state: { + detail: { + title: "Seleziona per visualizzare i dettagli.", + }, + all: { + title: "Nessun elemento di lavoro assegnato", + description: "Qui puoi vedere gli aggiornamenti degli elementi di lavoro assegnati a te", + }, + mentions: { + title: "Nessun elemento di lavoro assegnato", + description: "Qui puoi vedere gli aggiornamenti degli elementi di lavoro assegnati a te", + }, + }, + tabs: { + all: "Tutti", + mentions: "Menzioni", + }, + filter: { + assigned: "Assegnati a me", + created: "Creati da me", + subscribed: "Iscritti da me", + }, + snooze: { + "1_day": "1 giorno", + "3_days": "3 giorni", + "5_days": "5 giorni", + "1_week": "1 settimana", + "2_weeks": "2 settimane", + custom: "Personalizzato", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Aggiungi elementi di lavoro al ciclo per visualizzarne l'avanzamento", + }, + chart: { + title: "Aggiungi elementi di lavoro al ciclo per visualizzare il grafico di burndown.", + }, + priority_issue: { + title: "Visualizza in anteprima gli elementi di lavoro ad alta priorità del ciclo.", + }, + assignee: { + title: "Aggiungi assegnatari agli elementi di lavoro per vedere la ripartizione per assegnatario.", + }, + label: { + title: "Aggiungi etichette agli elementi di lavoro per vedere la ripartizione per etichette.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "L'accoglienza non è abilitata per il progetto.", + description: + "L'accoglienza ti aiuta a gestire le richieste in entrata per il tuo progetto e ad aggiungerle come elementi di lavoro nel tuo flusso. Abilita l'accoglienza dalle impostazioni del progetto per gestire le richieste.", + primary_button: { + text: "Gestisci funzionalità", + }, + }, + cycle: { + title: "I cicli non sono abilitati per questo progetto.", + description: + "Suddividi il lavoro in blocchi temporali, lavora a ritroso dalla scadenza del tuo progetto per impostare le date e fai progressi tangibili come team. Abilita la funzionalità dei cicli per il tuo progetto per iniziare a usarli.", + primary_button: { + text: "Gestisci funzionalità", + }, + }, + module: { + title: "I moduli non sono abilitati per il progetto.", + description: + "I moduli sono i blocchi costitutivi del tuo progetto. Abilita i moduli dalle impostazioni del progetto per iniziare a usarli.", + primary_button: { + text: "Gestisci funzionalità", + }, + }, + page: { + title: "Le pagine non sono abilitate per il progetto.", + description: + "Le pagine sono i blocchi costitutivi del tuo progetto. Abilita le pagine dalle impostazioni del progetto per iniziare a usarle.", + primary_button: { + text: "Gestisci funzionalità", + }, + }, + view: { + title: "Le visualizzazioni non sono abilitate per il progetto.", + description: + "Le visualizzazioni sono i blocchi costitutivi del tuo progetto. Abilita le visualizzazioni dalle impostazioni del progetto per iniziare a usarle.", + primary_button: { + text: "Gestisci funzionalità", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Bozza di un elemento di lavoro", + empty_state: { + title: "Le bozze degli elementi di lavoro e, presto, anche i commenti appariranno qui.", + description: + "Per provarlo, inizia ad aggiungere un elemento di lavoro e lascialo a metà o crea la tua prima bozza qui sotto. 😉", + primary_button: { + text: "Crea la tua prima bozza", + }, + }, + delete_modal: { + title: "Elimina bozza", + description: "Sei sicuro di voler eliminare questa bozza? Questa azione non può essere annullata.", + }, + toasts: { + created: { + success: "Bozza creata", + error: "Impossibile creare l'elemento di lavoro. Per favore, riprova.", + }, + deleted: { + success: "Bozza eliminata", + }, + }, + }, + stickies: { + title: "I tuoi stickies", + placeholder: "clicca per scrivere qui", + all: "Tutti gli stickies", + "no-data": "Annota un'idea, cattura un aha o registra un lampo di genio. Aggiungi uno sticky per iniziare.", + add: "Aggiungi sticky", + search_placeholder: "Cerca per titolo", + delete: "Elimina sticky", + delete_confirmation: "Sei sicuro di voler eliminare questo sticky?", + empty_state: { + simple: "Annota un'idea, cattura un aha o registra un lampo di genio. Aggiungi uno sticky per iniziare.", + general: { + title: "Gli stickies sono note rapide e cose da fare che annoti al volo.", + description: + "Cattura i tuoi pensieri e idee senza sforzo creando stickies a cui puoi accedere in qualsiasi momento e ovunque.", + primary_button: { + text: "Aggiungi sticky", + }, + }, + search: { + title: "Non corrisponde a nessuno dei tuoi stickies.", + description: "Prova con un termine diverso o facci sapere se sei sicuro che la tua ricerca sia corretta.", + primary_button: { + text: "Aggiungi sticky", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Il nome dello sticky non può superare i 100 caratteri.", + already_exists: "Esiste già uno sticky senza descrizione", + }, + created: { + title: "Sticky creato", + message: "Lo sticky è stato creato con successo", + }, + not_created: { + title: "Sticky non creato", + message: "Lo sticky non può essere creato", + }, + updated: { + title: "Sticky aggiornato", + message: "Lo sticky è stato aggiornato con successo", + }, + not_updated: { + title: "Sticky non aggiornato", + message: "Lo sticky non può essere aggiornato", + }, + removed: { + title: "Sticky rimosso", + message: "Lo sticky è stato rimosso con successo", + }, + not_removed: { + title: "Sticky non rimosso", + message: "Lo sticky non può essere rimosso", + }, + }, + }, + role_details: { + guest: { + title: "Ospite", + description: "I membri esterni alle organizzazioni possono essere invitati come ospiti.", + }, + member: { + title: "Membro", + description: + "Permette di leggere, scrivere, modificare ed eliminare entità all'interno di progetti, cicli e moduli.", + }, + admin: { + title: "Amministratore", + description: "Tutti i permessi impostati su true all'interno dello spazio di lavoro.", + }, + }, + user_roles: { + product_or_project_manager: "Product / Project Manager", + development_or_engineering: "Sviluppo / Ingegneria", + founder_or_executive: "Fondatore / Dirigente", + freelancer_or_consultant: "Freelance / Consulente", + marketing_or_growth: "Marketing / Crescita", + sales_or_business_development: "Vendite / Sviluppo commerciale", + support_or_operations: "Supporto / Operazioni", + student_or_professor: "Studente / Professore", + human_resources: "Risorse umane", + other: "Altro", + }, + importer: { + github: { + title: "Github", + description: "Importa elementi di lavoro dai repository GitHub e sincronizzali.", + }, + jira: { + title: "Jira", + description: "Importa elementi di lavoro ed epic dai progetti e dagli epic di Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Esporta elementi di lavoro in un file CSV.", + short_description: "Esporta come CSV", + }, + excel: { + title: "Excel", + description: "Esporta elementi di lavoro in un file Excel.", + short_description: "Esporta come Excel", + }, + xlsx: { + title: "Excel", + description: "Esporta elementi di lavoro in un file Excel.", + short_description: "Esporta come Excel", + }, + json: { + title: "JSON", + description: "Esporta elementi di lavoro in un file JSON.", + short_description: "Esporta come JSON", + }, + }, + default_global_view: { + all_issues: "Tutti gli elementi di lavoro", + assigned: "Assegnati", + created: "Creati", + subscribed: "Iscritti", + }, + themes: { + theme_options: { + system_preference: { + label: "Preferenza di sistema", + }, + light: { + label: "Chiaro", + }, + dark: { + label: "Scuro", + }, + light_contrast: { + label: "Contrasto elevato chiaro", + }, + dark_contrast: { + label: "Contrasto elevato scuro", + }, + custom: { + label: "Tema personalizzato", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Pianificato", + in_progress: "In corso", + paused: "In pausa", + completed: "Completato", + cancelled: "Annullato", + }, + layout: { + list: "Layout a lista", + board: "Layout a galleria", + timeline: "Layout a timeline", + }, + order_by: { + name: "Nome", + progress: "Avanzamento", + issues: "Numero di elementi di lavoro", + due_date: "Scadenza", + created_at: "Data di creazione", + manual: "Manuale", + }, + }, + cycle: { + label: "{count, plural, one {Ciclo} other {Cicli}}", + no_cycle: "Nessun ciclo", + }, + module: { + label: "{count, plural, one {Modulo} other {Moduli}}", + no_module: "Nessun modulo", + }, + description_versions: { + last_edited_by: "Ultima modifica di", + previously_edited_by: "Precedentemente modificato da", + edited_by: "Modificato da", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane non si è avviato. Questo potrebbe essere dovuto al fatto che uno o più servizi Plane non sono riusciti ad avviarsi.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Scegli View Logs da setup.sh e dai log Docker per essere sicuro.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Schema", + empty_state: { + title: "Intestazioni mancanti", + description: "Aggiungiamo alcune intestazioni a questa pagina per vederle qui.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Parole", + characters: "Caratteri", + paragraphs: "Paragrafi", + read_time: "Tempo di lettura", + }, + actors_info: { + edited_by: "Modificato da", + created_by: "Creato da", + }, + version_history: { + label: "Cronologia versioni", + current_version: "Versione corrente", + }, + }, + assets: { + label: "Risorse", + download_button: "Scarica", + empty_state: { + title: "Immagini mancanti", + description: "Aggiungi immagini per vederle qui.", + }, + }, + }, + open_button: "Apri pannello di navigazione", + close_button: "Chiudi pannello di navigazione", + outline_floating_button: "Apri schema", + }, +} as const; diff --git a/packages/i18n/src/locales/ja/accessibility.json b/packages/i18n/src/locales/ja/accessibility.json deleted file mode 100644 index b983500ff1..0000000000 --- a/packages/i18n/src/locales/ja/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "ワークスペースロゴ", - "open_workspace_switcher": "ワークスペーススイッチャーを開く", - "open_user_menu": "ユーザーメニューを開く", - "open_command_palette": "コマンドパレットを開く", - "open_extended_sidebar": "拡張サイドバーを開く", - "close_extended_sidebar": "拡張サイドバーを閉じる", - "create_favorites_folder": "お気に入りフォルダを作成", - "open_folder": "フォルダを開く", - "close_folder": "フォルダを閉じる", - "open_favorites_menu": "お気に入りメニューを開く", - "close_favorites_menu": "お気に入りメニューを閉じる", - "enter_folder_name": "フォルダ名を入力", - "create_new_project": "新しいプロジェクトを作成", - "open_projects_menu": "プロジェクトメニューを開く", - "close_projects_menu": "プロジェクトメニューを閉じる", - "toggle_quick_actions_menu": "クイックアクションメニューの切り替え", - "open_project_menu": "プロジェクトメニューを開く", - "close_project_menu": "プロジェクトメニューを閉じる", - "collapse_sidebar": "サイドバーを折りたたむ", - "expand_sidebar": "サイドバーを展開", - "edition_badge": "有料プランのモーダルを開く" - }, - "auth_forms": { - "clear_email": "メールをクリア", - "show_password": "パスワードを表示", - "hide_password": "パスワードを非表示", - "close_alert": "アラートを閉じる", - "close_popover": "ポップオーバーを閉じる" - } - } -} diff --git a/packages/i18n/src/locales/ja/accessibility.ts b/packages/i18n/src/locales/ja/accessibility.ts new file mode 100644 index 0000000000..e96c2cf295 --- /dev/null +++ b/packages/i18n/src/locales/ja/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "ワークスペースロゴ", + open_workspace_switcher: "ワークスペーススイッチャーを開く", + open_user_menu: "ユーザーメニューを開く", + open_command_palette: "コマンドパレットを開く", + open_extended_sidebar: "拡張サイドバーを開く", + close_extended_sidebar: "拡張サイドバーを閉じる", + create_favorites_folder: "お気に入りフォルダを作成", + open_folder: "フォルダを開く", + close_folder: "フォルダを閉じる", + open_favorites_menu: "お気に入りメニューを開く", + close_favorites_menu: "お気に入りメニューを閉じる", + enter_folder_name: "フォルダ名を入力", + create_new_project: "新しいプロジェクトを作成", + open_projects_menu: "プロジェクトメニューを開く", + close_projects_menu: "プロジェクトメニューを閉じる", + toggle_quick_actions_menu: "クイックアクションメニューの切り替え", + open_project_menu: "プロジェクトメニューを開く", + close_project_menu: "プロジェクトメニューを閉じる", + collapse_sidebar: "サイドバーを折りたたむ", + expand_sidebar: "サイドバーを展開", + edition_badge: "有料プランのモーダルを開く", + }, + auth_forms: { + clear_email: "メールをクリア", + show_password: "パスワードを表示", + hide_password: "パスワードを非表示", + close_alert: "アラートを閉じる", + close_popover: "ポップオーバーを閉じる", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/ja/editor.json b/packages/i18n/src/locales/ja/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/ja/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/ja/editor.ts b/packages/i18n/src/locales/ja/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/ja/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/ja/translations.json b/packages/i18n/src/locales/ja/translations.json deleted file mode 100644 index bff522b372..0000000000 --- a/packages/i18n/src/locales/ja/translations.json +++ /dev/null @@ -1,2533 +0,0 @@ -{ - "sidebar": { - "projects": "プロジェクト", - "pages": "ページ", - "new_work_item": "新規作業項目", - "home": "ホーム", - "your_work": "あなたの作業", - "inbox": "受信トレイ", - "workspace": "ワークスペース", - "views": "ビュー", - "analytics": "アナリティクス", - "work_items": "作業項目", - "cycles": "サイクル", - "modules": "モジュール", - "intake": "インテーク", - "drafts": "下書き", - "favorites": "お気に入り", - "pro": "プロ", - "upgrade": "アップグレード" - }, - "auth": { - "common": { - "email": { - "label": "メールアドレス", - "placeholder": "name@company.com", - "errors": { - "required": "メールアドレスは必須です", - "invalid": "メールアドレスが無効です" - } - }, - "password": { - "label": "パスワード", - "set_password": "パスワードを設定", - "placeholder": "パスワードを入力", - "confirm_password": { - "label": "パスワードの確認", - "placeholder": "パスワードを確認" - }, - "current_password": { - "label": "現在のパスワード" - }, - "new_password": { - "label": "新しいパスワード", - "placeholder": "新しいパスワードを入力" - }, - "change_password": { - "label": { - "default": "パスワードを変更", - "submitting": "パスワードを変更中" - } - }, - "errors": { - "match": "パスワードが一致しません", - "empty": "パスワードを入力してください", - "length": "パスワードは8文字以上である必要があります", - "strength": { - "weak": "パスワードが弱すぎます", - "strong": "パスワードは十分な強度です" - } - }, - "submit": "パスワードを設定", - "toast": { - "change_password": { - "success": { - "title": "成功!", - "message": "パスワードが正常に変更されました。" - }, - "error": { - "title": "エラー!", - "message": "問題が発生しました。もう一度お試しください。" - } - } - } - }, - "unique_code": { - "label": "ユニークコード", - "placeholder": "gets-sets-flys", - "paste_code": "メールで送信されたコードを貼り付けてください", - "requesting_new_code": "新しいコードをリクエスト中", - "sending_code": "コードを送信中" - }, - "already_have_an_account": "すでにアカウントをお持ちですか?", - "login": "ログイン", - "create_account": "アカウントを作成", - "new_to_plane": "Planeは初めてですか?", - "back_to_sign_in": "サインインに戻る", - "resend_in": "{seconds}秒後に再送信", - "sign_in_with_unique_code": "ユニークコードでサインイン", - "forgot_password": "パスワードをお忘れですか?" - }, - "sign_up": { - "header": { - "label": "チームと作業を管理するためのアカウントを作成してください。", - "step": { - "email": { - "header": "サインアップ", - "sub_header": "" - }, - "password": { - "header": "サインアップ", - "sub_header": "メールアドレスとパスワードの組み合わせでサインアップ。" - }, - "unique_code": { - "header": "サインアップ", - "sub_header": "上記のメールアドレスに送信されたユニークコードでサインアップ。" - } - } - }, - "errors": { - "password": { - "strength": "強力なパスワードを設定して続行してください" - } - } - }, - "sign_in": { - "header": { - "label": "チームと作業を管理するためにログインしてください。", - "step": { - "email": { - "header": "ログインまたはサインアップ", - "sub_header": "" - }, - "password": { - "header": "ログインまたはサインアップ", - "sub_header": "メールアドレスとパスワードの組み合わせでログイン。" - }, - "unique_code": { - "header": "ログインまたはサインアップ", - "sub_header": "上記のメールアドレスに送信されたユニークコードでログイン。" - } - } - } - }, - "forgot_password": { - "title": "パスワードをリセット", - "description": "確認済みのユーザーアカウントのメールアドレスを入力してください。パスワードリセットリンクを送信します。", - "email_sent": "リセットリンクをメールアドレスに送信しました", - "send_reset_link": "リセットリンクを送信", - "errors": { - "smtp_not_enabled": "管理者がSMTPを有効にしていないため、パスワードリセットリンクを送信できません" - }, - "toast": { - "success": { - "title": "メール送信完了", - "message": "パスワードをリセットするためのリンクを受信トレイで確認してください。数分以内に表示されない場合は、迷惑メールフォルダを確認してください。" - }, - "error": { - "title": "エラー!", - "message": "問題が発生しました。もう一度お試しください。" - } - } - }, - "reset_password": { - "title": "新しいパスワードを設定", - "description": "強力なパスワードでアカウントを保護" - }, - "set_password": { - "title": "アカウントを保護", - "description": "パスワードを設定して安全にログイン" - }, - "sign_out": { - "toast": { - "error": { - "title": "エラー!", - "message": "サインアウトに失敗しました。もう一度お試しください。" - } - } - } - }, - "submit": "送信", - "cancel": "キャンセル", - "loading": "読み込み中", - "error": "エラー", - "success": "成功", - "warning": "警告", - "info": "情報", - "close": "閉じる", - "yes": "はい", - "no": "いいえ", - "ok": "OK", - "name": "名前", - "description": "説明", - "search": "検索", - "add_member": "メンバーを追加", - "adding_members": "メンバーを追加中", - "remove_member": "メンバーを削除", - "add_members": "メンバーを追加", - "adding_member": "メンバーを追加中", - "remove_members": "メンバーを削除", - "add": "追加", - "adding": "追加中", - "remove": "削除", - "add_new": "新規追加", - "remove_selected": "選択項目を削除", - "first_name": "名", - "last_name": "姓", - "email": "メールアドレス", - "display_name": "表示名", - "role": "役割", - "timezone": "タイムゾーン", - "avatar": "アバター", - "cover_image": "カバー画像", - "password": "パスワード", - "change_cover": "カバーを変更", - "language": "言語", - "saving": "保存中", - "save_changes": "変更を保存", - "deactivate_account": "アカウントを無効化", - "deactivate_account_description": "アカウントを無効化すると、そのアカウント内のすべてのデータとリソースが完全に削除され、復元できなくなります。", - "profile_settings": "プロフィール設定", - "your_account": "あなたのアカウント", - "security": "セキュリティ", - "activity": "アクティビティ", - "appearance": "外観", - "notifications": "通知", - "workspaces": "ワークスペース", - "create_workspace": "ワークスペースを作成", - "invitations": "招待", - "summary": "概要", - "assigned": "割り当て済み", - "created": "作成済み", - "subscribed": "購読中", - "you_do_not_have_the_permission_to_access_this_page": "このページにアクセスする権限がありません。", - "something_went_wrong_please_try_again": "問題が発生しました。もう一度お試しください。", - "load_more": "もっと読み込む", - "select_or_customize_your_interface_color_scheme": "インターフェースの配色を選択またはカスタマイズしてください。", - "theme": "テーマ", - "system_preference": "システム設定に従う", - "light": "ライト", - "dark": "ダーク", - "light_contrast": "ライトハイコントラスト", - "dark_contrast": "ダークハイコントラスト", - "custom": "カスタムテーマ", - "select_your_theme": "テーマを選択", - "customize_your_theme": "テーマをカスタマイズ", - "background_color": "背景色", - "text_color": "文字色", - "primary_color": "プライマリ(テーマ)カラー", - "sidebar_background_color": "サイドバーの背景色", - "sidebar_text_color": "サイドバーの文字色", - "set_theme": "テーマを設定", - "enter_a_valid_hex_code_of_6_characters": "6文字の有効な16進コードを入力してください", - "background_color_is_required": "背景色は必須です", - "text_color_is_required": "文字色は必須です", - "primary_color_is_required": "プライマリカラーは必須です", - "sidebar_background_color_is_required": "サイドバーの背景色は必須です", - "sidebar_text_color_is_required": "サイドバーの文字色は必須です", - "updating_theme": "テーマを更新中", - "theme_updated_successfully": "テーマが正常に更新されました", - "failed_to_update_the_theme": "テーマの更新に失敗しました", - "email_notifications": "メール通知", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "購読している作業項目の最新情報を受け取ります。通知を受け取るには有効にしてください。", - "email_notification_setting_updated_successfully": "メール通知設定が正常に更新されました", - "failed_to_update_email_notification_setting": "メール通知設定の更新に失敗しました", - "notify_me_when": "通知を受け取るタイミング", - "property_changes": "プロパティの変更", - "property_changes_description": "作業項目の担当者、優先度、見積もりなどのプロパティが変更されたときに通知します。", - "state_change": "状態の変更", - "state_change_description": "作業項目が異なる状態に移動したときに通知します", - "issue_completed": "作業項目の完了", - "issue_completed_description": "作業項目が完了したときのみ通知します", - "comments": "コメント", - "comments_description": "誰かが作業項目にコメントを残したときに通知します", - "mentions": "メンション", - "mentions_description": "誰かがコメントや説明で自分をメンションしたときのみ通知します", - "old_password": "現在のパスワード", - "general_settings": "一般設定", - "sign_out": "サインアウト", - "signing_out": "サインアウト中", - "active_cycles": "アクティブサイクル", - "active_cycles_description": "プロジェクト全体のサイクルを監視し、優先度の高い作業項目を追跡し、注意が必要なサイクルにズームインします。", - "on_demand_snapshots_of_all_your_cycles": "すべてのサイクルのオンデマンドスナップショット", - "upgrade": "アップグレード", - "10000_feet_view": "すべてのアクティブサイクルの俯瞰図", - "10000_feet_view_description": "各プロジェクトのサイクル間を移動する代わりに、すべてのプロジェクトの実行中のサイクルを一度に確認できます。", - "get_snapshot_of_each_active_cycle": "各アクティブサイクルのスナップショットを取得", - "get_snapshot_of_each_active_cycle_description": "すべてのアクティブサイクルの主要な指標を追跡し、進捗状況を確認し、期限に対する範囲を把握します。", - "compare_burndowns": "バーンダウンを比較", - "compare_burndowns_description": "各サイクルのバーンダウンレポートを確認して、各チームのパフォーマンスを監視します。", - "quickly_see_make_or_break_issues": "重要な作業項目をすぐに確認", - "quickly_see_make_or_break_issues_description": "期限に対する各サイクルの優先度の高い作業項目をプレビューします。ワンクリックでサイクルごとにすべての項目を確認できます。", - "zoom_into_cycles_that_need_attention": "注意が必要なサイクルにズームイン", - "zoom_into_cycles_that_need_attention_description": "期待に沿わないサイクルの状態をワンクリックで調査します。", - "stay_ahead_of_blockers": "ブロッカーに先手を打つ", - "stay_ahead_of_blockers_description": "プロジェクト間の課題を特定し、他のビューでは明らかでないサイクル間の依存関係を確認します。", - "analytics": "アナリティクス", - "workspace_invites": "ワークスペースの招待", - "enter_god_mode": "ゴッドモードに入る", - "workspace_logo": "ワークスペースのロゴ", - "new_issue": "新規作業項目", - "your_work": "あなたの作業", - "drafts": "下書き", - "projects": "プロジェクト", - "views": "ビュー", - "workspace": "ワークスペース", - "archives": "アーカイブ", - "settings": "設定", - "failed_to_move_favorite": "お気に入りの移動に失敗しました", - "favorites": "お気に入り", - "no_favorites_yet": "まだお気に入りがありません", - "create_folder": "フォルダを作成", - "new_folder": "新規フォルダ", - "favorite_updated_successfully": "お気に入りが正常に更新されました", - "favorite_created_successfully": "お気に入りが正常に作成されました", - "folder_already_exists": "フォルダは既に存在します", - "folder_name_cannot_be_empty": "フォルダ名を空にすることはできません", - "something_went_wrong": "問題が発生しました", - "failed_to_reorder_favorite": "お気に入りの並び替えに失敗しました", - "favorite_removed_successfully": "お気に入りが正常に削除されました", - "failed_to_create_favorite": "お気に入りの作成に失敗しました", - "failed_to_rename_favorite": "お気に入りの名前変更に失敗しました", - "project_link_copied_to_clipboard": "プロジェクトリンクがクリップボードにコピーされました", - "link_copied": "リンクがコピーされました", - "add_project": "プロジェクトを追加", - "create_project": "プロジェクトを作成", - "failed_to_remove_project_from_favorites": "プロジェクトをお気に入りから削除できませんでした。もう一度お試しください。", - "project_created_successfully": "プロジェクトが正常に作成されました", - "project_created_successfully_description": "プロジェクトが正常に作成されました。作業項目を追加できるようになりました。", - "project_name_already_taken": "プロジェクト名は既に使用されています。", - "project_identifier_already_taken": "プロジェクト識別子は既に使用されています。", - "project_cover_image_alt": "プロジェクトのカバー画像", - "name_is_required": "名前は必須です", - "title_should_be_less_than_255_characters": "タイトルは255文字未満である必要があります", - "project_name": "プロジェクト名", - "project_id_must_be_at_least_1_character": "プロジェクトIDは最低1文字必要です", - "project_id_must_be_at_most_5_characters": "プロジェクトIDは最大5文字までです", - "project_id": "プロジェクトID", - "project_id_tooltip_content": "プロジェクト内の作業項目を一意に識別するのに役立ちます。最大5文字。", - "description_placeholder": "説明", - "only_alphanumeric_non_latin_characters_allowed": "英数字と非ラテン文字のみ使用できます。", - "project_id_is_required": "プロジェクトIDは必須です", - "project_id_allowed_char": "英数字と非ラテン文字のみ使用できます。", - "project_id_min_char": "プロジェクトIDは最低1文字必要です", - "project_id_max_char": "プロジェクトIDは最大5文字までです", - "project_description_placeholder": "プロジェクトの説明を入力", - "select_network": "ネットワークを選択", - "lead": "リード", - "date_range": "日付範囲", - "private": "プライベート", - "public": "パブリック", - "accessible_only_by_invite": "招待のみアクセス可能", - "anyone_in_the_workspace_except_guests_can_join": "ゲスト以外のワークスペースのメンバーが参加可能", - "creating": "作成中", - "creating_project": "プロジェクトを作成中", - "adding_project_to_favorites": "プロジェクトをお気に入りに追加中", - "project_added_to_favorites": "プロジェクトがお気に入りに追加されました", - "couldnt_add_the_project_to_favorites": "プロジェクトをお気に入りに追加できませんでした。もう一度お試しください。", - "removing_project_from_favorites": "プロジェクトをお気に入りから削除中", - "project_removed_from_favorites": "プロジェクトがお気に入りから削除されました", - "couldnt_remove_the_project_from_favorites": "プロジェクトをお気に入りから削除できませんでした。もう一度お試しください。", - "add_to_favorites": "お気に入りに追加", - "remove_from_favorites": "お気に入りから削除", - "publish_project": "プロジェクトを公開", - "publish": "公開", - "copy_link": "リンクをコピー", - "leave_project": "プロジェクトを退出", - "join_the_project_to_rearrange": "並び替えるにはプロジェクトに参加してください", - "drag_to_rearrange": "ドラッグして並び替え", - "congrats": "おめでとうございます!", - "open_project": "プロジェクトを開く", - "issues": "作業項目", - "cycles": "Cycles", - "modules": "Modules", - "pages": "Pages", - "intake": "Intake", - "time_tracking": "時間トラッキング", - "work_management": "作業管理", - "projects_and_issues": "プロジェクトと作業項目", - "projects_and_issues_description": "このプロジェクトでオン/オフを切り替えます。", - "cycles_description": "プロジェクトごとに作業の時間枠を設定し、必要に応じて期間を調整します。1サイクルは2週間、次は1週間でもかまいません。", - "modules_description": "専任のリーダーと担当者を持つサブプロジェクトに作業を整理します。", - "views_description": "カスタムの並び替え、フィルター、表示オプションを保存するか、チームと共有します。", - "pages_description": "自由形式のコンテンツを作成・編集できます。メモ、ドキュメント、何でもOKです。", - "intake_description": "非メンバーがバグ、フィードバック、提案を共有できるようにし、ワークフローを妨げないようにします。", - "time_tracking_description": "作業項目やプロジェクトに費やした時間を記録します。", - "work_management_description": "作業とプロジェクトを簡単に管理します。", - "documentation": "ドキュメント", - "message_support": "サポートにメッセージ", - "contact_sales": "営業に問い合わせ", - "hyper_mode": "Hyper Mode", - "keyboard_shortcuts": "キーボードショートカット", - "whats_new": "新機能", - "version": "バージョン", - "we_are_having_trouble_fetching_the_updates": "更新情報の取得に問題が発生しています。", - "our_changelogs": "変更履歴", - "for_the_latest_updates": "最新の更新情報については", - "please_visit": "をご覧ください", - "docs": "ドキュメント", - "full_changelog": "完全な変更履歴", - "support": "サポート", - "discord": "Discord", - "powered_by_plane_pages": "Powered by Plane Pages", - "please_select_at_least_one_invitation": "少なくとも1つの招待を選択してください。", - "please_select_at_least_one_invitation_description": "ワークスペースに参加するには少なくとも1つの招待を選択してください。", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "誰かがあなたをワークスペースに招待しています", - "join_a_workspace": "ワークスペースに参加", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "誰かがあなたをワークスペースに招待しています", - "join_a_workspace_description": "ワークスペースに参加", - "accept_and_join": "承諾して参加", - "go_home": "ホームへ", - "no_pending_invites": "保留中の招待はありません", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "誰かがワークスペースに招待した場合、ここで確認できます", - "back_to_home": "ホームに戻る", - "workspace_name": "ワークスペース名", - "deactivate_your_account": "アカウントを無効化", - "deactivate_your_account_description": "無効化すると、作業項目を割り当てられなくなり、ワークスペースの請求対象外となります。アカウントを再有効化するには、このメールアドレスでワークスペースへの招待が必要です。", - "deactivating": "無効化中", - "confirm": "確認", - "confirming": "確認中", - "draft_created": "下書きが作成されました", - "issue_created_successfully": "作業項目が正常に作成されました", - "draft_creation_failed": "下書きの作成に失敗しました", - "issue_creation_failed": "作業項目の作成に失敗しました", - "draft_issue": "作業項目の下書き", - "issue_updated_successfully": "作業項目が正常に更新されました", - "issue_could_not_be_updated": "作業項目を更新できませんでした", - "create_a_draft": "下書きを作成", - "save_to_drafts": "下書きに保存", - "save": "保存", - "update": "更新", - "updating": "更新中", - "create_new_issue": "新規作業項目を作成", - "editor_is_not_ready_to_discard_changes": "エディターは変更を破棄する準備ができていません", - "failed_to_move_issue_to_project": "作業項目をプロジェクトに移動できませんでした", - "create_more": "さらに作成", - "add_to_project": "プロジェクトに追加", - "discard": "破棄", - "duplicate_issue_found": "重複する作業項目が見つかりました", - "duplicate_issues_found": "重複する作業項目が見つかりました", - "no_matching_results": "一致する結果がありません", - "title_is_required": "タイトルは必須です", - "title": "タイトル", - "state": "状態", - "priority": "優先度", - "none": "なし", - "urgent": "緊急", - "high": "高", - "medium": "中", - "low": "低", - "members": "メンバー", - "assignee": "担当者", - "assignees": "担当者", - "you": "あなた", - "labels": "ラベル", - "create_new_label": "新規ラベルを作成", - "start_date": "開始日", - "end_date": "終了日", - "due_date": "期限", - "estimate": "見積もり", - "change_parent_issue": "親作業項目を変更", - "remove_parent_issue": "親作業項目を削除", - "add_parent": "親を追加", - "loading_members": "メンバーを読み込み中", - "view_link_copied_to_clipboard": "ビューリンクがクリップボードにコピーされました。", - "required": "必須", - "optional": "任意", - "Cancel": "キャンセル", - "edit": "編集", - "archive": "アーカイブ", - "restore": "復元", - "open_in_new_tab": "新しいタブで開く", - "delete": "削除", - "deleting": "削除中", - "make_a_copy": "コピーを作成", - "move_to_project": "プロジェクトに移動", - "good": "おはよう", - "morning": "ございます", - "afternoon": "こんにちは", - "evening": "こんばんは", - "show_all": "すべて表示", - "show_less": "表示を減らす", - "no_data_yet": "まだデータがありません", - "syncing": "同期中", - "add_work_item": "作業項目を追加", - "advanced_description_placeholder": "コマンドには '/' を押してください", - "create_work_item": "作業項目を作成", - "attachments": "添付ファイル", - "declining": "辞退中", - "declined": "辞退済み", - "decline": "辞退", - "unassigned": "未割り当て", - "work_items": "作業項目", - "add_link": "リンクを追加", - "points": "ポイント", - "no_assignee": "担当者なし", - "no_assignees_yet": "まだ担当者がいません", - "no_labels_yet": "まだラベルがありません", - "ideal": "理想", - "current": "現在", - "no_matching_members": "一致するメンバーがいません", - "leaving": "退出中", - "removing": "削除中", - "leave": "退出", - "refresh": "更新", - "refreshing": "更新中", - "refresh_status": "状態を更新", - "prev": "前へ", - "next": "次へ", - "re_generating": "再生成中", - "re_generate": "再生成", - "re_generate_key": "キーを再生成", - "export": "エクスポート", - "member": "{count, plural, other{# メンバー}}", - "new_password_must_be_different_from_old_password": "新しいパスワードは古いパスワードと異なる必要があります", - "edited": "編集済み", - "bot": "ボット", - "project_view": { - "sort_by": { - "created_at": "作成日時", - "updated_at": "更新日時", - "name": "名前" - } - }, - "toast": { - "success": "成功!", - "error": "エラー!" - }, - "links": { - "toasts": { - "created": { - "title": "リンクが作成されました", - "message": "リンクが正常に作成されました" - }, - "not_created": { - "title": "リンクが作成されませんでした", - "message": "リンクを作成できませんでした" - }, - "updated": { - "title": "リンクが更新されました", - "message": "リンクが正常に更新されました" - }, - "not_updated": { - "title": "リンクが更新されませんでした", - "message": "リンクを更新できませんでした" - }, - "removed": { - "title": "リンクが削除されました", - "message": "リンクが正常に削除されました" - }, - "not_removed": { - "title": "リンクが削除されませんでした", - "message": "リンクを削除できませんでした" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "クイックスタートガイド", - "not_right_now": "今はしない", - "create_project": { - "title": "プロジェクトを作成", - "description": "Planeのほとんどはプロジェクトから始まります。", - "cta": "始める" - }, - "invite_team": { - "title": "チームを招待", - "description": "同僚と一緒に構築、デプロイ、管理しましょう。", - "cta": "招待する" - }, - "configure_workspace": { - "title": "ワークスペースを設定する。", - "description": "機能のオン/オフを切り替えたり、さらに詳細な設定を行ったりできます。", - "cta": "このワークスペースを設定" - }, - "personalize_account": { - "title": "Planeをあなた好みにカスタマイズ。", - "description": "プロフィール画像、カラー、その他の設定を選択してください。", - "cta": "今すぐパーソナライズ" - }, - "widgets": { - "title": "ウィジェットがないと静かですね、オンにしましょう", - "description": "すべてのウィジェットがオフになっているようです。体験を向上させるために\n今すぐ有効にしましょう!", - "primary_button": { - "text": "ウィジェットを管理" - } - } - }, - "quick_links": { - "empty": "手元に置いておきたい作業関連のリンクを保存してください。", - "add": "クイックリンクを追加", - "title": "クイックリンク", - "title_plural": "クイックリンク" - }, - "recents": { - "title": "最近", - "empty": { - "project": "プロジェクトを訪問すると、最近のプロジェクトがここに表示されます。", - "page": "ページを訪問すると、最近のページがここに表示されます。", - "issue": "作業項目を訪問すると、最近の作業項目がここに表示されます。", - "default": "まだ最近の項目がありません。" - }, - "filters": { - "all": "すべて", - "projects": "プロジェクト", - "pages": "ページ", - "issues": "作業項目" - } - }, - "new_at_plane": { - "title": "Planeの新機能" - }, - "quick_tutorial": { - "title": "クイックチュートリアル" - }, - "widget": { - "reordered_successfully": "ウィジェットの並び替えが完了しました。", - "reordering_failed": "ウィジェットの並び替え中にエラーが発生しました。" - }, - "manage_widgets": "ウィジェットを管理", - "title": "ホーム", - "star_us_on_github": "GitHubでスターをつける" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URLが無効です", - "placeholder": "URLを入力または貼り付け" - }, - "title": { - "text": "表示タイトル", - "placeholder": "このリンクをどのように表示したいか" - } - } - }, - "common": { - "all": "すべて", - "states": "ステータス", - "state": "ステータス", - "state_groups": "ステータスグループ", - "state_group": "ステート グループ", - "priorities": "優先度", - "priority": "優先度", - "team_project": "チームプロジェクト", - "project": "プロジェクト", - "cycle": "サイクル", - "cycles": "サイクル", - "module": "モジュール", - "modules": "モジュール", - "labels": "ラベル", - "label": "ラベル", - "assignees": "担当者", - "assignee": "担当者", - "created_by": "作成者", - "none": "なし", - "link": "リンク", - "estimates": "見積もり", - "estimate": "見積もり", - "created_at": "クリエイテッド アット", - "completed_at": "コンプリーテッド アット", - "layout": "レイアウト", - "filters": "フィルター", - "display": "表示", - "load_more": "もっと読み込む", - "activity": "アクティビティ", - "analytics": "アナリティクス", - "dates": "日付", - "success": "成功!", - "something_went_wrong": "問題が発生しました", - "error": { - "label": "エラー!", - "message": "エラーが発生しました。もう一度お試しください。" - }, - "group_by": "グループ化", - "epic": "エピック", - "epics": "エピック", - "work_item": "作業項目", - "work_items": "作業項目", - "sub_work_item": "サブ作業項目", - "add": "追加", - "warning": "警告", - "updating": "更新中", - "adding": "追加中", - "update": "更新", - "creating": "作成中", - "create": "作成", - "cancel": "キャンセル", - "description": "説明", - "title": "タイトル", - "attachment": "添付ファイル", - "general": "一般", - "features": "機能", - "automation": "自動化", - "project_name": "プロジェクト名", - "project_id": "プロジェクトID", - "project_timezone": "プロジェクトのタイムゾーン", - "created_on": "作成日", - "update_project": "プロジェクトを更新", - "identifier_already_exists": "識別子は既に存在します", - "add_more": "さらに追加", - "defaults": "デフォルト", - "add_label": "ラベルを追加", - "customize_time_range": "期間をカスタマイズ", - "loading": "読み込み中", - "attachments": "添付ファイル", - "property": "プロパティ", - "properties": "プロパティ", - "parent": "親", - "page": "ページ", - "remove": "削除", - "archiving": "アーカイブ中", - "archive": "アーカイブ", - "access": { - "public": "公開", - "private": "非公開" - }, - "done": "完了", - "sub_work_items": "サブ作業項目", - "comment": "コメント", - "workspace_level": "ワークスペースレベル", - "order_by": { - "label": "並び順", - "manual": "手動", - "last_created": "最終作成日", - "last_updated": "最終更新日", - "start_date": "開始日", - "due_date": "期限日", - "asc": "昇順", - "desc": "降順", - "updated_on": "更新日" - }, - "sort": { - "asc": "昇順", - "desc": "降順", - "created_on": "作成日", - "updated_on": "更新日" - }, - "comments": "コメント", - "updates": "更新", - "clear_all": "すべてクリア", - "copied": "コピーしました!", - "link_copied": "リンクをコピーしました!", - "link_copied_to_clipboard": "リンクをクリップボードにコピーしました", - "copied_to_clipboard": "作業項目のリンクをクリップボードにコピーしました", - "is_copied_to_clipboard": "作業項目をクリップボードにコピーしました", - "no_links_added_yet": "リンクはまだ追加されていません", - "add_link": "リンクを追加", - "links": "リンク", - "go_to_workspace": "ワークスペースへ移動", - "progress": "進捗", - "optional": "任意", - "join": "参加", - "go_back": "戻る", - "continue": "続ける", - "resend": "再送信", - "relations": "関連", - "errors": { - "default": { - "title": "エラー!", - "message": "問題が発生しました。もう一度お試しください。" - }, - "required": "この項目は必須です", - "entity_required": "{entity}は必須です", - "restricted_entity": "{entity} は制限されています" - }, - "update_link": "リンクを更新", - "attach": "添付", - "create_new": "新規作成", - "add_existing": "既存を追加", - "type_or_paste_a_url": "URLを入力または貼り付け", - "url_is_invalid": "URLが無効です", - "display_title": "表示タイトル", - "link_title_placeholder": "このリンクをどのように表示したいか", - "url": "URL", - "side_peek": "サイドピーク", - "modal": "モーダル", - "full_screen": "全画面", - "close_peek_view": "ピークビューを閉じる", - "toggle_peek_view_layout": "ピークビューのレイアウトを切り替え", - "options": "オプション", - "duration": "期間", - "today": "今日", - "week": "週", - "month": "月", - "quarter": "四半期", - "press_for_commands": "コマンドは「/」を押してください", - "click_to_add_description": "クリックして説明を追加", - "search": { - "label": "検索", - "placeholder": "検索するキーワードを入力", - "no_matches_found": "一致する結果が見つかりません", - "no_matching_results": "一致する結果がありません" - }, - "actions": { - "edit": "編集", - "make_a_copy": "コピーを作成", - "open_in_new_tab": "新しいタブで開く", - "copy_link": "リンクをコピー", - "archive": "アーカイブ", - "delete": "削除", - "remove_relation": "関連を削除", - "subscribe": "購読", - "unsubscribe": "購読解除", - "clear_sorting": "並び替えをクリア", - "show_weekends": "週末を表示", - "enable": "有効化", - "disable": "無効化" - }, - "name": "名前", - "discard": "破棄", - "confirm": "確認", - "confirming": "確認中", - "read_the_docs": "ドキュメントを読む", - "default": "デフォルト", - "active": "アクティブ", - "enabled": "有効", - "disabled": "無効", - "mandate": "必須", - "mandatory": "必須", - "yes": "はい", - "no": "いいえ", - "please_wait": "お待ちください", - "enabling": "有効化中", - "disabling": "無効化中", - "beta": "ベータ", - "or": "または", - "next": "次へ", - "back": "戻る", - "cancelling": "キャンセル中", - "configuring": "設定中", - "clear": "クリア", - "import": "インポート", - "connect": "接続", - "authorizing": "認証中", - "processing": "処理中", - "no_data_available": "データがありません", - "from": "{name}から", - "authenticated": "認証済み", - "select": "選択", - "upgrade": "アップグレード", - "add_seats": "シートを追加", - "projects": "プロジェクト", - "workspace": "ワークスペース", - "workspaces": "ワークスペース", - "team": "チーム", - "teams": "チーム", - "entity": "エンティティ", - "entities": "エンティティ", - "task": "タスク", - "tasks": "タスク", - "section": "セクション", - "sections": "セクション", - "edit": "編集", - "connecting": "接続中", - "connected": "接続済み", - "disconnect": "切断", - "disconnecting": "切断中", - "installing": "インストール中", - "install": "インストール", - "reset": "リセット", - "live": "ライブ", - "change_history": "変更履歴", - "coming_soon": "近日公開", - "member": "メンバー", - "members": "メンバー", - "you": "あなた", - "upgrade_cta": { - "higher_subscription": "高いサブスクリプションにアップグレード", - "talk_to_sales": "トーク トゥ セールス" - }, - "category": "カテゴリー", - "categories": "カテゴリーズ", - "saving": "セービング", - "save_changes": "セーブ チェンジズ", - "delete": "デリート", - "deleting": "デリーティング", - "pending": "保留中", - "invite": "招待", - "view": "ビュー", - "deactivated_user": "無効化されたユーザー", - "apply": "適用", - "applying": "適用中", - "users": "ユーザー", - "admins": "管理者", - "guests": "ゲスト", - "on_track": "順調", - "off_track": "遅れ", - "at_risk": "リスクあり", - "timeline": "タイムライン", - "completion": "完了", - "upcoming": "今後の予定", - "completed": "完了", - "in_progress": "進行中", - "planned": "計画済み", - "paused": "一時停止", - "no_of": "{entity} の数", - "resolved": "解決済み" - }, - "chart": { - "x_axis": "エックス アクシス", - "y_axis": "ワイ アクシス", - "metric": "メトリック" - }, - "form": { - "title": { - "required": "タイトルは必須です", - "max_length": "タイトルは{length}文字未満である必要があります" - } - }, - "entity": { - "grouping_title": "{entity}のグループ化", - "priority": "{entity}の優先度", - "all": "すべての{entity}", - "drop_here_to_move": "ここにドロップして{entity}を移動", - "delete": { - "label": "{entity}を削除", - "success": "{entity}を削除しました", - "failed": "{entity}の削除に失敗しました" - }, - "update": { - "failed": "{entity}の更新に失敗しました", - "success": "{entity}を更新しました" - }, - "link_copied_to_clipboard": "{entity}のリンクをクリップボードにコピーしました", - "fetch": { - "failed": "{entity}の取得中にエラーが発生しました" - }, - "add": { - "success": "{entity}を追加しました", - "failed": "{entity}の追加中にエラーが発生しました" - }, - "remove": { - "success": "{entity}を削除しました", - "failed": "{entity}の削除中にエラーが発生しました" - } - }, - "epic": { - "all": "すべてのエピック", - "label": "{count, plural, one {エピック} other {エピック}}", - "new": "新規エピック", - "adding": "エピックを追加中", - "create": { - "success": "エピックを作成しました" - }, - "add": { - "press_enter": "Enterを押して別のエピックを追加", - "label": "エピックを追加" - }, - "title": { - "label": "エピックのタイトル", - "required": "エピックのタイトルは必須です。" - } - }, - "issue": { - "label": "{count, plural, one {作業項目} other {作業項目}}", - "all": "すべての作業項目", - "edit": "作業項目を編集", - "title": { - "label": "作業項目のタイトル", - "required": "作業項目のタイトルは必須です。" - }, - "add": { - "press_enter": "Enterを押して別の作業項目を追加", - "label": "作業項目を追加", - "cycle": { - "failed": "作業項目をサイクルに追加できませんでした。もう一度お試しください。", - "success": "{count, plural, one {作業項目} other {作業項目}}をサイクルに追加しました。", - "loading": "{count, plural, one {作業項目} other {作業項目}}をサイクルに追加中" - }, - "assignee": "担当者を追加", - "start_date": "開始日を追加", - "due_date": "期限日を追加", - "parent": "親作業項目を追加", - "sub_issue": "サブ作業項目を追加", - "relation": "関連を追加", - "link": "リンクを追加", - "existing": "既存の作業項目を追加" - }, - "remove": { - "label": "作業項目を削除", - "cycle": { - "loading": "サイクルから作業項目を削除中", - "success": "作業項目をサイクルから削除しました。", - "failed": "作業項目をサイクルから削除できませんでした。もう一度お試しください。" - }, - "module": { - "loading": "モジュールから作業項目を削除中", - "success": "作業項目をモジュールから削除しました。", - "failed": "作業項目をモジュールから削除できませんでした。もう一度お試しください。" - }, - "parent": { - "label": "親作業項目を削除" - } - }, - "new": "新規作業項目", - "adding": "作業項目を追加中", - "create": { - "success": "作業項目を作成しました" - }, - "priority": { - "urgent": "緊急", - "high": "高", - "medium": "中", - "low": "低" - }, - "display": { - "properties": { - "label": "表示プロパティ", - "id": "ID", - "issue_type": "作業項目タイプ", - "sub_issue_count": "サブ作業項目数", - "attachment_count": "添付ファイル数", - "created_on": "作成日", - "sub_issue": "サブ作業項目", - "work_item_count": "作業項目数" - }, - "extra": { - "show_sub_issues": "サブ作業項目を表示", - "show_empty_groups": "空のグループを表示" - } - }, - "layouts": { - "ordered_by_label": "このレイアウトは次の順序で並べ替えられています:", - "list": "リスト", - "kanban": "ボード", - "calendar": "カレンダー", - "spreadsheet": "テーブル", - "gantt": "タイムライン", - "title": { - "list": "リストレイアウト", - "kanban": "ボードレイアウト", - "calendar": "カレンダーレイアウト", - "spreadsheet": "テーブルレイアウト", - "gantt": "タイムラインレイアウト" - } - }, - "states": { - "active": "アクティブ", - "backlog": "バックログ" - }, - "comments": { - "placeholder": "コメントを追加", - "switch": { - "private": "プライベートコメントに切り替え", - "public": "公開コメントに切り替え" - }, - "create": { - "success": "コメントを作成しました", - "error": "コメントの作成に失敗しました。後でもう一度お試しください。" - }, - "update": { - "success": "コメントを更新しました", - "error": "コメントの更新に失敗しました。後でもう一度お試しください。" - }, - "remove": { - "success": "コメントを削除しました", - "error": "コメントの削除に失敗しました。後でもう一度お試しください。" - }, - "upload": { - "error": "アセットのアップロードに失敗しました。後でもう一度お試しください。" - }, - "copy_link": { - "success": "コメントリンクがクリップボードにコピーされました", - "error": "コメントリンクのコピーに失敗しました。後でもう一度お試しください。" - } - }, - "empty_state": { - "issue_detail": { - "title": "作業項目が存在しません", - "description": "お探しの作業項目は存在しないか、アーカイブされているか、削除されています。", - "primary_button": { - "text": "他の作業項目を表示" - } - } - }, - "sibling": { - "label": "兄弟作業項目" - }, - "archive": { - "description": "完了またはキャンセルされた\n作業項目のみアーカイブできます", - "label": "作業項目をアーカイブ", - "confirm_message": "作業項目をアーカイブしてもよろしいですか?アーカイブされた作業項目は後で復元できます。", - "success": { - "label": "アーカイブ成功", - "message": "アーカイブはプロジェクトのアーカイブで確認できます。" - }, - "failed": { - "message": "作業項目をアーカイブできませんでした。もう一度お試しください。" - } - }, - "restore": { - "success": { - "title": "復元成功", - "message": "作業項目はプロジェクトの作業項目で確認できます。" - }, - "failed": { - "message": "作業項目を復元できませんでした。もう一度お試しください。" - } - }, - "relation": { - "relates_to": "関連する", - "duplicate": "重複する", - "blocked_by": "ブロックされている", - "blocking": "ブロックしている" - }, - "copy_link": "作業項目のリンクをコピー", - "delete": { - "label": "作業項目を削除", - "error": "作業項目の削除中にエラーが発生しました" - }, - "subscription": { - "actions": { - "subscribed": "作業項目を購読しました", - "unsubscribed": "作業項目の購読を解除しました" - } - }, - "select": { - "error": "少なくとも1つの作業項目を選択してください", - "empty": "作業項目が選択されていません", - "add_selected": "選択した作業項目を追加", - "select_all": "すべて選択", - "deselect_all": "すべての選択を解除" - }, - "open_in_full_screen": "作業項目をフルスクリーンで開く" - }, - "attachment": { - "error": "ファイルを添付できませんでした。もう一度アップロードしてください。", - "only_one_file_allowed": "一度にアップロードできるファイルは1つだけです。", - "file_size_limit": "ファイルサイズは{size}MB以下である必要があります。", - "drag_and_drop": "どこにでもドラッグ&ドロップでアップロード", - "delete": "添付ファイルを削除" - }, - "label": { - "select": "ラベルを選択", - "create": { - "success": "ラベルを作成しました", - "failed": "ラベルの作成に失敗しました", - "already_exists": "ラベルは既に存在します", - "type": "新しいラベルを追加するには入力してください" - } - }, - "sub_work_item": { - "update": { - "success": "サブ作業項目を更新しました", - "error": "サブ作業項目の更新中にエラーが発生しました" - }, - "remove": { - "success": "サブ作業項目を削除しました", - "error": "サブ作業項目の削除中にエラーが発生しました" - }, - "empty_state": { - "sub_list_filters": { - "title": "適用されたフィルターに一致するサブ作業項目がありません。", - "description": "すべてのサブ作業項目を表示するには、すべての適用されたフィルターをクリアしてください。", - "action": "フィルターをクリア" - }, - "list_filters": { - "title": "適用されたフィルターに一致する作業項目がありません。", - "description": "すべての作業項目を表示するには、すべての適用されたフィルターをクリアしてください。", - "action": "フィルターをクリア" - } - } - }, - "view": { - "label": "{count, plural, one {ビュー} other {ビュー}}", - "create": { - "label": "ビューを作成" - }, - "update": { - "label": "ビューを更新" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "保留中", - "description": "保留中" - }, - "declined": { - "title": "却下", - "description": "却下" - }, - "snoozed": { - "title": "スヌーズ", - "description": "残り{days, plural, one{# 日} other{# 日}}" - }, - "accepted": { - "title": "承認済み", - "description": "承認済み" - }, - "duplicate": { - "title": "重複", - "description": "重複" - } - }, - "modals": { - "decline": { - "title": "作業項目を却下", - "content": "作業項目{value}を却下してもよろしいですか?" - }, - "delete": { - "title": "作業項目を削除", - "content": "作業項目{value}を削除してもよろしいですか?", - "success": "作業項目を削除しました" - } - }, - "errors": { - "snooze_permission": "プロジェクト管理者のみが作業項目をスヌーズ/スヌーズ解除できます", - "accept_permission": "プロジェクト管理者のみが作業項目を承認できます", - "decline_permission": "プロジェクト管理者のみが作業項目を却下できます" - }, - "actions": { - "accept": "承認", - "decline": "却下", - "snooze": "スヌーズ", - "unsnooze": "スヌーズ解除", - "copy": "作業項目のリンクをコピー", - "delete": "削除", - "open": "作業項目を開く", - "mark_as_duplicate": "重複としてマーク", - "move": "{value}をプロジェクトの作業項目に移動" - }, - "source": { - "in-app": "アプリ内" - }, - "order_by": { - "created_at": "作成日", - "updated_at": "更新日", - "id": "ID" - }, - "label": "インテーク", - "page_label": "{workspace} - インテーク", - "modal": { - "title": "インテーク作業項目を作成" - }, - "tabs": { - "open": "オープン", - "closed": "クローズ" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "オープンな作業項目がありません", - "description": "オープンな作業項目はここで見つかります。新しい作業項目を作成してください。" - }, - "sidebar_closed_tab": { - "title": "クローズされた作業項目がありません", - "description": "承認または却下されたすべての作業項目はここで見つかります。" - }, - "sidebar_filter": { - "title": "一致する作業項目がありません", - "description": "インテークに適用されたフィルターに一致する作業項目がありません。新しい作業項目を作成してください。" - }, - "detail": { - "title": "詳細を表示する作業項目を選択してください。" - } - } - }, - "workspace_creation": { - "heading": "ワークスペースを作成", - "subheading": "Planeを使用するには、ワークスペースを作成するか参加する必要があります。", - "form": { - "name": { - "label": "ワークスペース名を設定", - "placeholder": "馴染みがあり認識しやすい名前が最適です。" - }, - "url": { - "label": "ワークスペースのURLを設定", - "placeholder": "URLを入力または貼り付け", - "edit_slug": "URLのスラッグのみ編集可能です" - }, - "organization_size": { - "label": "このワークスペースを何人で使用しますか?", - "placeholder": "範囲を選択" - } - }, - "errors": { - "creation_disabled": { - "title": "インスタンス管理者のみがワークスペースを作成できます", - "description": "インスタンス管理者のメールアドレスをご存知の場合は、下のボタンをクリックして連絡を取ってください。", - "request_button": "インスタンス管理者にリクエスト" - }, - "validation": { - "name_alphanumeric": "ワークスペース名には (' '), ('-'), ('_') と英数字のみ使用できます。", - "name_length": "名前は80文字以内にしてください。", - "url_alphanumeric": "URLには ('-') と英数字のみ使用できます。", - "url_length": "URLは48文字以内にしてください。", - "url_already_taken": "ワークスペースのURLは既に使用されています!" - } - }, - "request_email": { - "subject": "新規ワークスペースのリクエスト", - "body": "インスタンス管理者様\n\n[ワークスペース作成の目的]のために、URL [/workspace-name] の新規ワークスペースを作成していただけますでしょうか。\n\nよろしくお願いいたします。\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "ワークスペースを作成", - "loading": "ワークスペースを作成中" - }, - "toast": { - "success": { - "title": "成功", - "message": "ワークスペースが正常に作成されました" - }, - "error": { - "title": "エラー", - "message": "ワークスペースを作成できませんでした。もう一度お試しください。" - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "プロジェクト、アクティビティ、メトリクスの概要", - "description": "Planeへようこそ。ご利用いただき嬉しく思います。最初のプロジェクトを作成して作業項目を追跡すると、このページは進捗を把握するのに役立つスペースに変わります。管理者はチームの進捗に役立つ項目も表示されます。", - "primary_button": { - "text": "最初のプロジェクトを作成", - "comic": { - "title": "Planeではすべてがプロジェクトから始まります", - "description": "プロジェクトは製品のロードマップ、マーケティングキャンペーン、新車の発売などになります。" - } - } - } - } - }, - "workspace_analytics": { - "label": "アナリティクス", - "page_label": "{workspace} - アナリティクス", - "open_tasks": "オープンタスクの合計", - "error": "データの取得中にエラーが発生しました。", - "work_items_closed_in": "クローズされた作業項目", - "selected_projects": "選択されたプロジェクト", - "total_members": "メンバー総数", - "total_cycles": "サイクル総数", - "total_modules": "モジュール総数", - "pending_work_items": { - "title": "保留中の作業項目", - "empty_state": "同僚による保留中の作業項目の分析がここに表示されます。" - }, - "work_items_closed_in_a_year": { - "title": "1年間でクローズされた作業項目", - "empty_state": "作業項目をクローズすると、グラフ形式で分析が表示されます。" - }, - "most_work_items_created": { - "title": "作成された作業項目が最も多い", - "empty_state": "同僚と作成した作業項目の数がここに表示されます。" - }, - "most_work_items_closed": { - "title": "クローズされた作業項目が最も多い", - "empty_state": "同僚とクローズした作業項目の数がここに表示されます。" - }, - "tabs": { - "scope_and_demand": "スコープと需要", - "custom": "カスタムアナリティクス" - }, - "empty_state": { - "customized_insights": { - "description": "あなたに割り当てられた作業項目は、ステータスごとに分類されてここに表示されます。", - "title": "まだデータがありません" - }, - "created_vs_resolved": { - "description": "時間の経過とともに作成および解決された作業項目がここに表示されます。", - "title": "まだデータがありません" - }, - "project_insights": { - "title": "まだデータがありません", - "description": "あなたに割り当てられた作業項目は、ステータスごとに分類されてここに表示されます。" - }, - "general": { - "title": "進捗、ワークロード、割り当てを追跡する。傾向を発見し、障害を除去し、作業をより迅速に進める", - "description": "範囲と需要、見積もり、スコープクリープを確認する。チームメンバーとチームのパフォーマンスを把握し、プロジェクトが時間通りに実行されることを確実にする。", - "primary_button": { - "text": "最初のプロジェクトを開始", - "comic": { - "title": "アナリティクスはサイクル + モジュールで最もよく機能します", - "description": "まず、作業項目をサイクルに時間枠を設定し、可能であれば、複数のサイクルにまたがる作業項目をモジュールにグループ化してください。左側のナビゲーションで両方をチェックしてください。" - } - } - } - }, - "created_vs_resolved": "作成 vs 解決", - "customized_insights": "カスタマイズされたインサイト", - "backlog_work_items": "バックログの{entity}", - "active_projects": "アクティブなプロジェクト", - "trend_on_charts": "グラフの傾向", - "all_projects": "すべてのプロジェクト", - "summary_of_projects": "プロジェクトの概要", - "project_insights": "プロジェクトのインサイト", - "started_work_items": "開始された{entity}", - "total_work_items": "{entity}の合計", - "total_projects": "プロジェクト合計", - "total_admins": "管理者の合計", - "total_users": "ユーザー総数", - "total_intake": "総収入", - "un_started_work_items": "未開始の{entity}", - "total_guests": "ゲストの合計", - "completed_work_items": "完了した{entity}", - "total": "{entity}の合計" - }, - "workspace_projects": { - "label": "{count, plural, one {プロジェクト} other {プロジェクト}}", - "create": { - "label": "プロジェクトを追加" - }, - "network": { - "private": { - "title": "非公開", - "description": "招待された人のみアクセス可能" - }, - "public": { - "title": "公開", - "description": "ゲスト以外のワークスペースの全員が参加可能" - } - }, - "error": { - "permission": "この操作を実行する権限がありません。", - "cycle_delete": "サイクルの削除に失敗しました", - "module_delete": "モジュールの削除に失敗しました", - "issue_delete": "作業項目の削除に失敗しました" - }, - "state": { - "backlog": "バックログ", - "unstarted": "未開始", - "started": "開始済み", - "completed": "完了", - "cancelled": "キャンセル" - }, - "sort": { - "manual": "手動", - "name": "名前", - "created_at": "作成日", - "members_length": "メンバー数" - }, - "scope": { - "my_projects": "自分のプロジェクト", - "archived_projects": "アーカイブ済み" - }, - "common": { - "months_count": "{months, plural, one{# ヶ月} other{# ヶ月}}" - }, - "empty_state": { - "general": { - "title": "アクティブなプロジェクトがありません", - "description": "各プロジェクトは目標指向の作業の親として考えてください。プロジェクトには作業、サイクル、モジュールが含まれ、同僚と共にその目標の達成を支援します。新しいプロジェクトを作成するか、アーカイブされたプロジェクトをフィルタリングしてください。", - "primary_button": { - "text": "最初のプロジェクトを開始", - "comic": { - "title": "Planeではすべてがプロジェクトから始まります", - "description": "プロジェクトは製品のロードマップ、マーケティングキャンペーン、新車の発売などになります。" - } - } - }, - "no_projects": { - "title": "プロジェクトがありません", - "description": "作業項目を作成したり作業を管理したりするには、プロジェクトを作成するか、プロジェクトのメンバーになる必要があります。", - "primary_button": { - "text": "最初のプロジェクトを開始", - "comic": { - "title": "Planeではすべてがプロジェクトから始まります", - "description": "プロジェクトは製品のロードマップ、マーケティングキャンペーン、新車の発売などになります。" - } - } - }, - "filter": { - "title": "一致するプロジェクトがありません", - "description": "条件に一致するプロジェクトが見つかりません。\n代わりに新しいプロジェクトを作成してください。" - }, - "search": { - "description": "条件に一致するプロジェクトが見つかりません。\n代わりに新しいプロジェクトを作成してください。" - } - } - }, - "workspace_views": { - "add_view": "ビューを追加", - "empty_state": { - "all-issues": { - "title": "プロジェクトに作業項目がありません", - "description": "最初のプロジェクトが完了しました!次は、作業を追跡可能な作業項目に分割しましょう。始めましょう!", - "primary_button": { - "text": "新しい作業項目を作成" - } - }, - "assigned": { - "title": "作業項目がまだありません", - "description": "あなたに割り当てられた作業項目をここで追跡できます。", - "primary_button": { - "text": "新しい作業項目を作成" - } - }, - "created": { - "title": "作業項目がまだありません", - "description": "あなたが作成したすべての作業項目がここに表示され、直接追跡できます。", - "primary_button": { - "text": "新しい作業項目を作成" - } - }, - "subscribed": { - "title": "作業項目がまだありません", - "description": "興味のある作業項目を購読して、ここですべてを追跡できます。" - }, - "custom-view": { - "title": "作業項目がまだありません", - "description": "フィルターに該当する作業項目をここで追跡できます。" - } - } - }, - "workspace_settings": { - "label": "ワークスペース設定", - "page_label": "{workspace} - 一般設定", - "key_created": "キーが作成されました", - "copy_key": "このシークレットキーをコピーしてPlaneページに保存してください。閉じた後はこのキーを見ることができません。キーを含むCSVファイルがダウンロードされました。", - "token_copied": "トークンがクリップボードにコピーされました。", - "settings": { - "general": { - "title": "一般", - "upload_logo": "ロゴをアップロード", - "edit_logo": "ロゴを編集", - "name": "ワークスペース名", - "company_size": "会社の規模", - "url": "ワークスペースURL", - "update_workspace": "ワークスペースを更新", - "delete_workspace": "このワークスペースを削除", - "delete_workspace_description": "ワークスペースを削除すると、そのワークスペース内のすべてのデータとリソースが完全に削除され、復元することはできません。", - "delete_btn": "このワークスペースを削除", - "delete_modal": { - "title": "このワークスペースを削除してもよろしいですか?", - "description": "有料プランの無料トライアルが有効です。続行するには、まずトライアルをキャンセルしてください。", - "dismiss": "閉じる", - "cancel": "トライアルをキャンセル", - "success_title": "ワークスペースが削除されました。", - "success_message": "まもなくプロフィールページに移動します。", - "error_title": "操作に失敗しました。", - "error_message": "もう一度お試しください。" - }, - "errors": { - "name": { - "required": "名前は必須です", - "max_length": "ワークスペース名は80文字を超えることはできません" - }, - "company_size": { - "required": "会社の規模は必須です", - "select_a_range": "組織の規模を選択" - } - } - }, - "members": { - "title": "メンバー", - "add_member": "メンバーを追加", - "pending_invites": "保留中の招待", - "invitations_sent_successfully": "招待が正常に送信されました", - "leave_confirmation": "ワークスペースから退出してもよろしいですか?このワークスペースにアクセスできなくなります。この操作は取り消せません。", - "details": { - "full_name": "フルネーム", - "display_name": "表示名", - "email_address": "メールアドレス", - "account_type": "アカウントタイプ", - "authentication": "認証", - "joining_date": "参加日" - }, - "modal": { - "title": "共同作業者を招待", - "description": "ワークスペースに共同作業者を招待します。", - "button": "招待を送信", - "button_loading": "招待を送信中", - "placeholder": "name@company.com", - "errors": { - "required": "招待するにはメールアドレスが必要です。", - "invalid": "メールアドレスが無効です" - } - } - }, - "billing_and_plans": { - "title": "請求とプラン", - "current_plan": "現在のプラン", - "free_plan": "現在フリープランを使用中です", - "view_plans": "プランを表示" - }, - "exports": { - "title": "エクスポート", - "exporting": "エクスポート中", - "previous_exports": "過去のエクスポート", - "export_separate_files": "データを個別のファイルにエクスポート", - "modal": { - "title": "エクスポート先", - "toasts": { - "success": { - "title": "エクスポート成功", - "message": "エクスポートした{entity}は過去のエクスポートからダウンロードできます。" - }, - "error": { - "title": "エクスポート失敗", - "message": "エクスポートに失敗しました。もう一度お試しください。" - } - } - } - }, - "webhooks": { - "title": "Webhook", - "add_webhook": "Webhookを追加", - "modal": { - "title": "Webhookを作成", - "details": "Webhook詳細", - "payload": "ペイロードURL", - "question": "このWebhookをトリガーするイベントを選択してください", - "error": "URLは必須です" - }, - "secret_key": { - "title": "シークレットキー", - "message": "Webhookペイロードにサインインするためのトークンを生成" - }, - "options": { - "all": "すべてを送信", - "individual": "個別のイベントを選択" - }, - "toasts": { - "created": { - "title": "Webhook作成完了", - "message": "Webhookが正常に作成されました" - }, - "not_created": { - "title": "Webhook作成失敗", - "message": "Webhookを作成できませんでした" - }, - "updated": { - "title": "Webhook更新完了", - "message": "Webhookが正常に更新されました" - }, - "not_updated": { - "title": "Webhook更新失敗", - "message": "Webhookを更新できませんでした" - }, - "removed": { - "title": "Webhook削除完了", - "message": "Webhookが正常に削除されました" - }, - "not_removed": { - "title": "Webhook削除失敗", - "message": "Webhookを削除できませんでした" - }, - "secret_key_copied": { - "message": "シークレットキーがクリップボードにコピーされました。" - }, - "secret_key_not_copied": { - "message": "シークレットキーのコピー中にエラーが発生しました。" - } - } - }, - "api_tokens": { - "title": "APIトークン", - "add_token": "APIトークンを追加", - "create_token": "トークンを作成", - "never_expires": "無期限", - "generate_token": "トークンを生成", - "generating": "生成中", - "delete": { - "title": "APIトークンを削除", - "description": "このトークンを使用しているアプリケーションはPlaneのデータにアクセスできなくなります。この操作は取り消せません。", - "success": { - "title": "成功!", - "message": "APIトークンが正常に削除されました" - }, - "error": { - "title": "エラー!", - "message": "APIトークンを削除できませんでした" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "APIトークンがまだ作成されていません", - "description": "PlaneのAPIを使用して、Planeのデータを外部システムと統合できます。トークンを作成して始めましょう。" - }, - "webhooks": { - "title": "Webhookが追加されていません", - "description": "Webhookを作成してリアルタイムの更新を受け取り、アクションを自動化します。" - }, - "exports": { - "title": "エクスポートがまだありません", - "description": "エクスポートすると、参照用のコピーがここに保存されます。" - }, - "imports": { - "title": "インポートがまだありません", - "description": "過去のインポートをここで確認し、ダウンロードできます。" - } - } - }, - "profile": { - "label": "プロフィール", - "page_label": "あなたの作業", - "work": "作業", - "details": { - "joined_on": "参加日", - "time_zone": "タイムゾーン" - }, - "stats": { - "workload": "作業負荷", - "overview": "概要", - "created": "作成した作業項目", - "assigned": "割り当てられた作業項目", - "subscribed": "購読中の作業項目", - "state_distribution": { - "title": "状態別作業項目", - "empty": "より良い分析のために、作業項目を作成してグラフで状態別に表示します。" - }, - "priority_distribution": { - "title": "優先度別作業項目", - "empty": "より良い分析のために、作業項目を作成してグラフで優先度別に表示します。" - }, - "recent_activity": { - "title": "最近のアクティビティ", - "empty": "データが見つかりませんでした。入力内容を確認してください", - "button": "今日のアクティビティをダウンロード", - "button_loading": "ダウンロード中" - } - }, - "actions": { - "profile": "プロフィール", - "security": "セキュリティ", - "activity": "アクティビティ", - "appearance": "外観", - "notifications": "通知" - }, - "tabs": { - "summary": "サマリー", - "assigned": "割り当て済み", - "created": "作成済み", - "subscribed": "購読中", - "activity": "アクティビティ" - }, - "empty_state": { - "activity": { - "title": "アクティビティがまだありません", - "description": "新しい作業項目を作成して始めましょう!詳細とプロパティを追加してください。Planeをさらに探索してアクティビティを確認しましょう。" - }, - "assigned": { - "title": "割り当てられた作業項目がありません", - "description": "あなたに割り当てられた作業項目をここで追跡できます。" - }, - "created": { - "title": "作業項目がまだありません", - "description": "あなたが作成したすべての作業項目がここに表示され、直接追跡できます。" - }, - "subscribed": { - "title": "作業項目がまだありません", - "description": "興味のある作業項目を購読して、ここですべてを追跡できます。" - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "プロジェクトIDを入力", - "please_select_a_timezone": "タイムゾーンを選択してください", - "archive_project": { - "title": "プロジェクトをアーカイブ", - "description": "プロジェクトをアーカイブすると、サイドナビゲーションから非表示になりますが、プロジェクトページからアクセスすることはできます。プロジェクトを復元または削除することもできます。", - "button": "プロジェクトをアーカイブ" - }, - "delete_project": { - "title": "プロジェクトを削除", - "description": "プロジェクトを削除すると、そのプロジェクト内のすべてのデータとリソースが永久に削除され、復元できなくなります。", - "button": "プロジェクトを削除" - }, - "toast": { - "success": "プロジェクトが正常に更新されました", - "error": "プロジェクトを更新できませんでした。もう一度お試しください。" - } - }, - "members": { - "label": "メンバー", - "project_lead": "プロジェクトリーダー", - "default_assignee": "デフォルトの担当者", - "guest_super_permissions": { - "title": "ゲストユーザーにすべての作業項目の閲覧権限を付与:", - "sub_heading": "これにより、ゲストはプロジェクトのすべての作業項目を閲覧できるようになります。" - }, - "invite_members": { - "title": "メンバーを招待", - "sub_heading": "プロジェクトに参加するメンバーを招待します。", - "select_co_worker": "共同作業者を選択" - } - }, - "states": { - "describe_this_state_for_your_members": "このステータスについてメンバーに説明してください。", - "empty_state": { - "title": "{groupKey}グループのステータスがありません", - "description": "新しいステータスを作成してください" - } - }, - "labels": { - "label_title": "ラベルタイトル", - "label_title_is_required": "ラベルタイトルは必須です", - "label_max_char": "ラベル名は255文字を超えることはできません", - "toast": { - "error": "ラベルの更新中にエラーが発生しました" - } - }, - "estimates": { - "label": "見積もり", - "title": "プロジェクトの見積もりを有効にする", - "description": "チームの複雑さと作業負荷を伝えるのに役立ちます。", - "no_estimate": "見積もりなし", - "new": "新しい見積もりシステム", - "create": { - "custom": "カスタム", - "start_from_scratch": "最初から開始", - "choose_template": "テンプレートを選択", - "choose_estimate_system": "見積もりシステムを選択", - "enter_estimate_point": "見積もりを入力", - "step": "ステップ {step} の {total}", - "label": "見積もりを作成" - }, - "toasts": { - "created": { - "success": { - "title": "見積もりを作成", - "message": "見積もりが正常に作成されました" - }, - "error": { - "title": "見積もり作成に失敗", - "message": "新しい見積もりを作成できませんでした。もう一度お試しください。" - } - }, - "updated": { - "success": { - "title": "見積もりを更新", - "message": "プロジェクトの見積もりが更新されました。" - }, - "error": { - "title": "見積もり更新に失敗", - "message": "見積もりを更新できませんでした。もう一度お試しください" - } - }, - "enabled": { - "success": { - "title": "成功!", - "message": "見積もりが有効になりました。" - } - }, - "disabled": { - "success": { - "title": "成功!", - "message": "見積もりが無効になりました。" - }, - "error": { - "title": "エラー!", - "message": "見積もりを無効にできませんでした。もう一度お試しください" - } - } - }, - "validation": { - "min_length": "見積もりは0より大きい必要があります。", - "unable_to_process": "リクエストを処理できません。もう一度お試しください。", - "numeric": "見積もりは数値である必要があります。", - "character": "見積もりは文字値である必要があります。", - "empty": "見積もり値は空にできません。", - "already_exists": "見積もり値は既に存在します。", - "unsaved_changes": "未保存の変更があります。完了をクリックする前に保存してください", - "remove_empty": "見積もりは空にできません。各フィールドに値を入力するか、値がないフィールドを削除してください。" - }, - "systems": { - "points": { - "label": "ポイント", - "fibonacci": "フィボナッチ", - "linear": "リニア", - "squares": "二乗", - "custom": "カスタム" - }, - "categories": { - "label": "カテゴリー", - "t_shirt_sizes": "Tシャツサイズ", - "easy_to_hard": "簡単から難しい", - "custom": "カスタム" - }, - "time": { - "label": "時間", - "hours": "時間" - } - } - }, - "automations": { - "label": "自動化", - "auto-archive": { - "title": "完了した作業項目を自動的にアーカイブ", - "description": "Planeは完了またはキャンセルされた作業項目を自動的にアーカイブします。", - "duration": "閉じられた作業項目を自動的にアーカイブ" - }, - "auto-close": { - "title": "作業項目を自動的に閉じる", - "description": "Planeは完了またはキャンセルされていない作業項目を自動的に閉じます。", - "duration": "非アクティブな作業項目を自動的に閉じる", - "auto_close_status": "自動クローズステータス" - } - }, - "empty_state": { - "labels": { - "title": "ラベルがまだありません", - "description": "プロジェクトの作業項目を整理してフィルタリングするためのラベルを作成します。" - }, - "estimates": { - "title": "見積もりシステムがまだありません", - "description": "作業項目ごとの作業量を伝えるための見積もりセットを作成します。", - "primary_button": "見積もりシステムを追加" - } - } - }, - "project_cycles": { - "add_cycle": "サイクルを追加", - "more_details": "詳細情報", - "cycle": "サイクル", - "update_cycle": "サイクルを更新", - "create_cycle": "サイクルを作成", - "no_matching_cycles": "一致するサイクルがありません", - "remove_filters_to_see_all_cycles": "すべてのサイクルを表示するにはフィルターを解除してください", - "remove_search_criteria_to_see_all_cycles": "すべてのサイクルを表示するには検索条件を解除してください", - "only_completed_cycles_can_be_archived": "完了したサイクルのみアーカイブできます", - "start_date": "開始日", - "end_date": "終了日", - "in_your_timezone": "あなたのタイムゾーン", - "transfer_work_items": "作業項目を転送 {count}", - "date_range": "日付範囲", - "add_date": "日付を追加", - "active_cycle": { - "label": "アクティブなサイクル", - "progress": "進捗", - "chart": "バーンダウンチャート", - "priority_issue": "優先作業項目", - "assignees": "担当者", - "issue_burndown": "作業項目バーンダウン", - "ideal": "理想", - "current": "現在", - "labels": "ラベル" - }, - "upcoming_cycle": { - "label": "今後のサイクル" - }, - "completed_cycle": { - "label": "完了したサイクル" - }, - "status": { - "days_left": "残り日数", - "completed": "完了", - "yet_to_start": "開始前", - "in_progress": "進行中", - "draft": "下書き" - }, - "action": { - "restore": { - "title": "サイクルを復元", - "success": { - "title": "サイクルが復元されました", - "description": "サイクルが復元されました。" - }, - "failed": { - "title": "サイクルの復元に失敗", - "description": "サイクルを復元できませんでした。もう一度お試しください。" - } - }, - "favorite": { - "loading": "お気に入りにサイクルを追加中", - "success": { - "description": "サイクルがお気に入りに追加されました。", - "title": "成功!" - }, - "failed": { - "description": "サイクルをお気に入りに追加できませんでした。もう一度お試しください。", - "title": "エラー!" - } - }, - "unfavorite": { - "loading": "お気に入りからサイクルを削除中", - "success": { - "description": "サイクルがお気に入りから削除されました。", - "title": "成功!" - }, - "failed": { - "description": "サイクルをお気に入りから削除できませんでした。もう一度お試しください。", - "title": "エラー!" - } - }, - "update": { - "loading": "サイクルを更新中", - "success": { - "description": "サイクルが正常に更新されました。", - "title": "成功!" - }, - "failed": { - "description": "サイクルの更新中にエラーが発生しました。もう一度お試しください。", - "title": "エラー!" - }, - "error": { - "already_exists": "指定した日付のサイクルは既に存在します。下書きサイクルを作成する場合は、両方の日付を削除してください。" - } - } - }, - "empty_state": { - "general": { - "title": "サイクルで作業をグループ化してタイムボックス化します。", - "description": "作業をタイムボックス化された単位に分割し、プロジェクトの期限から逆算して日付を設定し、チームとして具体的な進捗を作ります。", - "primary_button": { - "text": "最初のサイクルを設定", - "comic": { - "title": "サイクルは繰り返されるタイムボックスです。", - "description": "スプリント、イテレーション、または週次や隔週の作業追跡に使用するその他の用語がサイクルです。" - } - } - }, - "no_issues": { - "title": "サイクルに作業項目が追加されていません", - "description": "このサイクル内でタイムボックス化して提供したい作業項目を追加または作成します", - "primary_button": { - "text": "新しい作業項目を作成" - }, - "secondary_button": { - "text": "既存の作業項目を追加" - } - }, - "completed_no_issues": { - "title": "サイクルに作業項目がありません", - "description": "サイクルに作業項目がありません。作業項目は転送されたか非表示になっています。非表示の作業項目がある場合は、表示プロパティを更新して確認してください。" - }, - "active": { - "title": "アクティブなサイクルがありません", - "description": "アクティブなサイクルには、その期間内に今日の日付が含まれるものが該当します。アクティブなサイクルの進捗と詳細をここで確認できます。" - }, - "archived": { - "title": "アーカイブされたサイクルがまだありません", - "description": "プロジェクトを整理するために、完了したサイクルをアーカイブします。アーカイブ後はここで確認できます。" - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "作業項目を作成して誰かに割り当てましょう。自分自身でも構いません", - "description": "作業項目は、仕事、タスク、作業、またはJTBD(私たちが好む用語)と考えてください。作業項目とそのサブ作業項目は通常、チームメンバーに割り当てられる時間ベースのアクションアイテムです。チームは作業項目を作成、割り当て、完了することでプロジェクトの目標に向かって進みます。", - "primary_button": { - "text": "最初の作業項目を作成", - "comic": { - "title": "作業項目はPlaneの構成要素です。", - "description": "PlaneのUIの再設計、会社のリブランド、新しい燃料噴射システムの立ち上げなどは、サブ作業項目を持つ可能性が高い作業項目の例です。" - } - } - }, - "no_archived_issues": { - "title": "アーカイブされた作業項目がまだありません", - "description": "手動または自動化を通じて、完了またはキャンセルされた作業項目をアーカイブできます。アーカイブ後はここで確認できます。", - "primary_button": { - "text": "自動化を設定" - } - }, - "issues_empty_filter": { - "title": "適用されたフィルターに一致する作業項目が見つかりません", - "secondary_button": { - "text": "すべてのフィルターをクリア" - } - } - } - }, - "project_module": { - "add_module": "モジュールを追加", - "update_module": "モジュールを更新", - "create_module": "モジュールを作成", - "archive_module": "モジュールをアーカイブ", - "restore_module": "モジュールを復元", - "delete_module": "モジュールを削除", - "empty_state": { - "general": { - "title": "プロジェクトのマイルストーンをモジュールにマッピングし、集計された作業を簡単に追跡できます。", - "description": "論理的で階層的な親に属する作業項目のグループがモジュールを形成します。プロジェクトのマイルストーンで作業を追跡する方法として考えてください。期間や期限があり、マイルストーンまでの進捗状況を確認できる分析機能も備えています。", - "primary_button": { - "text": "最初のモジュールを作成", - "comic": { - "title": "モジュールは階層的に作業をグループ化するのに役立ちます。", - "description": "カートモジュール、シャーシモジュール、倉庫モジュールは、このグループ化の良い例です。" - } - } - }, - "no_issues": { - "title": "モジュールに作業項目がありません", - "description": "このモジュールの一部として達成したい作業項目を作成または追加してください", - "primary_button": { - "text": "新しい作業項目を作成" - }, - "secondary_button": { - "text": "既存の作業項目を追加" - } - }, - "archived": { - "title": "アーカイブされたモジュールがまだありません", - "description": "プロジェクトを整理するために、完了またはキャンセルされたモジュールをアーカイブします。アーカイブ後はここで確認できます。" - }, - "sidebar": { - "in_active": "このモジュールはまだアクティブではありません。", - "invalid_date": "無効な日付です。有効な日付を入力してください。" - } - }, - "quick_actions": { - "archive_module": "モジュールをアーカイブ", - "archive_module_description": "完了またはキャンセルされた\nモジュールのみアーカイブできます。", - "delete_module": "モジュールを削除" - }, - "toast": { - "copy": { - "success": "モジュールのリンクがクリップボードにコピーされました" - }, - "delete": { - "success": "モジュールが正常に削除されました", - "error": "モジュールを削除できませんでした" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "プロジェクトのフィルター付きビューを保存します。必要な数だけ作成できます", - "description": "ビューは、頻繁に使用するフィルターや簡単にアクセスしたいフィルターの集合です。プロジェクト内のすべての同僚が全員のビューを確認でき、自分のニーズに最も合うものを選択できます。", - "primary_button": { - "text": "最初のビューを作成", - "comic": { - "title": "ビューは作業項目のプロパティの上で機能します。", - "description": "ここから、必要に応じて多くのプロパティやフィルターを使用してビューを作成できます。" - } - } - }, - "filter": { - "title": "一致するビューがありません", - "description": "検索条件に一致するビューがありません。\n代わりに新しいビューを作成してください。" - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "メモ、ドキュメント、または完全なナレッジベースを作成しましょう。PlaneのAIアシスタントGalileoが開始をサポートします", - "description": "ページはPlaneの思考整理スペースです。会議のメモを取り、簡単に整形し、作業項目を埋め込み、コンポーネントライブラリを使用してレイアウトし、すべてをプロジェクトのコンテキストに保存できます。ドキュメントを素早く作成するには、ショートカットまたはボタンのクリックでPlaneのAI、Galileoを呼び出してください。", - "primary_button": { - "text": "最初のページを作成" - } - }, - "private": { - "title": "プライベートページがまだありません", - "description": "プライベートな考えをここに保存しましょう。共有する準備ができたら、チームはクリック一つで共有できます。", - "primary_button": { - "text": "最初のページを作成" - } - }, - "public": { - "title": "公開ページがまだありません", - "description": "プロジェクト内の全員と共有されているページをここで確認できます。", - "primary_button": { - "text": "最初のページを作成" - } - }, - "archived": { - "title": "アーカイブされたページがまだありません", - "description": "注目していないページをアーカイブします。必要な時にここでアクセスできます。" - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "結果が見つかりません" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "一致する作業項目が見つかりません" - }, - "no_issues": { - "title": "作業項目が見つかりません" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "コメントがまだありません", - "description": "コメントは作業項目のディスカッションとフォローアップのスペースとして使用できます" - } - } - }, - "notification": { - "label": "受信トレイ", - "page_label": "{workspace} - 受信トレイ", - "options": { - "mark_all_as_read": "すべて既読にする", - "mark_read": "既読にする", - "mark_unread": "未読にする", - "refresh": "更新", - "filters": "受信トレイフィルター", - "show_unread": "未読を表示", - "show_snoozed": "スヌーズを表示", - "show_archived": "アーカイブを表示", - "mark_archive": "アーカイブ", - "mark_unarchive": "アーカイブ解除", - "mark_snooze": "スヌーズ", - "mark_unsnooze": "スヌーズ解除" - }, - "toasts": { - "read": "通知を既読にしました", - "unread": "通知を未読にしました", - "archived": "通知をアーカイブしました", - "unarchived": "通知をアーカイブ解除しました", - "snoozed": "通知をスヌーズしました", - "unsnoozed": "通知のスヌーズを解除しました" - }, - "empty_state": { - "detail": { - "title": "詳細を表示するには選択してください。" - }, - "all": { - "title": "割り当てられた作業項目がありません", - "description": "あなたに割り当てられた作業項目の更新が\nここに表示されます" - }, - "mentions": { - "title": "割り当てられた作業項目がありません", - "description": "あなたに割り当てられた作業項目の更新が\nここに表示されます" - } - }, - "tabs": { - "all": "すべて", - "mentions": "メンション" - }, - "filter": { - "assigned": "自分に割り当て", - "created": "自分が作成", - "subscribed": "自分が購読" - }, - "snooze": { - "1_day": "1日", - "3_days": "3日", - "5_days": "5日", - "1_week": "1週間", - "2_weeks": "2週間", - "custom": "カスタム" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "サイクルの進捗を表示するには作業項目を追加してください" - }, - "chart": { - "title": "バーンダウンチャートを表示するには作業項目を追加してください。" - }, - "priority_issue": { - "title": "サイクルで取り組まれている優先度の高い作業項目を一目で確認できます。" - }, - "assignee": { - "title": "担当者別の作業の内訳を確認するには、作業項目に担当者を追加してください。" - }, - "label": { - "title": "ラベル別の作業の内訳を確認するには、作業項目にラベルを追加してください。" - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "インテークがプロジェクトで有効になっていません。", - "description": "インテークは、プロジェクトへの受信リクエストを管理し、ワークフローに作業項目として追加するのに役立ちます。リクエストを管理するには、プロジェクト設定でインテークを有効にしてください。", - "primary_button": { - "text": "機能を管理" - } - }, - "cycle": { - "title": "サイクルがこのプロジェクトで有効になっていません。", - "description": "時間枠で作業を分割し、プロジェクトの期限から逆算して日付を設定し、チームとして具体的な進捗を作ります。サイクルを使用するには、プロジェクトでサイクル機能を有効にしてください。", - "primary_button": { - "text": "機能を管理" - } - }, - "module": { - "title": "モジュールがプロジェクトで有効になっていません。", - "description": "モジュールはプロジェクトの構成要素です。モジュールを使用するには、プロジェクト設定でモジュールを有効にしてください。", - "primary_button": { - "text": "機能を管理" - } - }, - "page": { - "title": "ページがプロジェクトで有効になっていません。", - "description": "ページはプロジェクトの構成要素です。ページを使用するには、プロジェクト設定でページを有効にしてください。", - "primary_button": { - "text": "機能を管理" - } - }, - "view": { - "title": "ビューがプロジェクトで有効になっていません。", - "description": "ビューはプロジェクトの構成要素です。ビューを使用するには、プロジェクト設定でビューを有効にしてください。", - "primary_button": { - "text": "機能を管理" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "作業項目の下書き", - "empty_state": { - "title": "書きかけの作業項目、そしてまもなくコメントがここに表示されます。", - "description": "試してみるには、作業項目の追加を開始して途中で中断するか、以下で最初の下書きを作成してください。😉", - "primary_button": { - "text": "最初の下書きを作成" - } - }, - "delete_modal": { - "title": "下書きを削除", - "description": "この下書きを削除してもよろしいですか?この操作は取り消せません。" - }, - "toasts": { - "created": { - "success": "下書きを作成しました", - "error": "作業項目を作成できませんでした。もう一度お試しください。" - }, - "deleted": { - "success": "下書きを削除しました" - } - } - }, - "stickies": { - "title": "あなたの付箋", - "placeholder": "ここをクリックして入力", - "all": "すべての付箋", - "no-data": "アイデアをメモしたり、ひらめきをキャプチャしたり、閃きを記録したりしましょう。付箋を追加して始めましょう。", - "add": "付箋を追加", - "search_placeholder": "タイトルで検索", - "delete": "付箋を削除", - "delete_confirmation": "この付箋を削除してもよろしいですか?", - "empty_state": { - "simple": "アイデアをメモしたり、ひらめきをキャプチャしたり、閃きを記録したりしましょう。付箋を追加して始めましょう。", - "general": { - "title": "付箋は、その場で素早く取るメモやToDoです。", - "description": "いつでもどこからでもアクセスできる付箋を作成して、思考やアイデアを簡単にキャプチャできます。", - "primary_button": { - "text": "付箋を追加" - } - }, - "search": { - "title": "付箋に一致するものがありません。", - "description": "別の用語を試すか、検索が正しいと\n確信がある場合はお知らせください。", - "primary_button": { - "text": "付箋を追加" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "付箋の名前は100文字を超えることはできません。", - "already_exists": "説明のない付箋がすでに存在します" - }, - "created": { - "title": "付箋を作成しました", - "message": "付箋が正常に作成されました" - }, - "not_created": { - "title": "付箋を作成できませんでした", - "message": "付箋を作成できませんでした" - }, - "updated": { - "title": "付箋を更新しました", - "message": "付箋が正常に更新されました" - }, - "not_updated": { - "title": "付箋を更新できませんでした", - "message": "付箋を更新できませんでした" - }, - "removed": { - "title": "付箋を削除しました", - "message": "付箋が正常に削除されました" - }, - "not_removed": { - "title": "付箋を削除できませんでした", - "message": "付箋を削除できませんでした" - } - } - }, - "role_details": { - "guest": { - "title": "ゲスト", - "description": "組織の外部メンバーをゲストとして招待できます。" - }, - "member": { - "title": "メンバー", - "description": "プロジェクト、サイクル、モジュール内のエンティティの読み取り、書き込み、編集、削除が可能" - }, - "admin": { - "title": "管理者", - "description": "ワークスペース内のすべての権限が有効。" - } - }, - "user_roles": { - "product_or_project_manager": "プロダクト/プロジェクトマネージャー", - "development_or_engineering": "開発/エンジニアリング", - "founder_or_executive": "創業者/エグゼクティブ", - "freelancer_or_consultant": "フリーランス/コンサルタント", - "marketing_or_growth": "マーケティング/グロース", - "sales_or_business_development": "営業/ビジネス開発", - "support_or_operations": "サポート/オペレーション", - "student_or_professor": "学生/教授", - "human_resources": "人事", - "other": "その他" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "GitHubリポジトリから作業項目をインポートして同期します。" - }, - "jira": { - "title": "Jira", - "description": "Jiraプロジェクトとエピックから作業項目とエピックをインポートします。" - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "作業項目をCSVファイルにエクスポートします。", - "short_description": "CSVとしてエクスポート" - }, - "excel": { - "title": "Excel", - "description": "作業項目をExcelファイルにエクスポートします。", - "short_description": "Excelとしてエクスポート" - }, - "xlsx": { - "title": "Excel", - "description": "作業項目をExcelファイルにエクスポートします。", - "short_description": "Excelとしてエクスポート" - }, - "json": { - "title": "JSON", - "description": "作業項目をJSONファイルにエクスポートします。", - "short_description": "JSONとしてエクスポート" - } - }, - "default_global_view": { - "all_issues": "すべての作業項目", - "assigned": "割り当て済み", - "created": "作成済み", - "subscribed": "購読中" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "システム設定" - }, - "light": { - "label": "ライト" - }, - "dark": { - "label": "ダーク" - }, - "light_contrast": { - "label": "ライトハイコントラスト" - }, - "dark_contrast": { - "label": "ダークハイコントラスト" - }, - "custom": { - "label": "カスタムテーマ" - } - } - }, - "project_modules": { - "status": { - "backlog": "バックログ", - "planned": "計画済み", - "in_progress": "進行中", - "paused": "一時停止", - "completed": "完了", - "cancelled": "キャンセル" - }, - "layout": { - "list": "リスト表示", - "board": "ギャラリー表示", - "timeline": "タイムライン表示" - }, - "order_by": { - "name": "名前", - "progress": "進捗", - "issues": "作業項目数", - "due_date": "期限", - "created_at": "作成日", - "manual": "手動" - } - }, - "cycle": { - "label": "{count, plural, one {サイクル} other {サイクル}}", - "no_cycle": "サイクルなし" - }, - "module": { - "label": "{count, plural, one {モジュール} other {モジュール}}", - "no_module": "モジュールなし" - }, - "description_versions": { - "last_edited_by": "最終編集者", - "previously_edited_by": "以前の編集者", - "edited_by": "編集者" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Planeが起動しませんでした。これは1つまたは複数のPlaneサービスの起動に失敗したことが原因である可能性があります。", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "setup.shとDockerログからView Logsを選択して確認してください。" - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "アウトライン", - "empty_state": { - "title": "見出しがありません", - "description": "このページに見出しを追加してここで確認しましょう。" - } - }, - "info": { - "label": "情報", - "document_info": { - "words": "単語数", - "characters": "文字数", - "paragraphs": "段落数", - "read_time": "読了時間" - }, - "actors_info": { - "edited_by": "編集者", - "created_by": "作成者" - }, - "version_history": { - "label": "バージョン履歴", - "current_version": "現在のバージョン" - } - }, - "assets": { - "label": "アセット", - "download_button": "ダウンロード", - "empty_state": { - "title": "画像がありません", - "description": "画像を追加してここで確認してください。" - } - } - }, - "open_button": "ナビゲーションパネルを開く", - "close_button": "ナビゲーションパネルを閉じる", - "outline_floating_button": "アウトラインを開く" - } -} diff --git a/packages/i18n/src/locales/ja/translations.ts b/packages/i18n/src/locales/ja/translations.ts new file mode 100644 index 0000000000..9b8e8e6048 --- /dev/null +++ b/packages/i18n/src/locales/ja/translations.ts @@ -0,0 +1,2586 @@ +export default { + sidebar: { + projects: "プロジェクト", + pages: "ページ", + new_work_item: "新規作業項目", + home: "ホーム", + your_work: "あなたの作業", + inbox: "受信トレイ", + workspace: "ワークスペース", + views: "ビュー", + analytics: "アナリティクス", + work_items: "作業項目", + cycles: "サイクル", + modules: "モジュール", + intake: "インテーク", + drafts: "下書き", + favorites: "お気に入り", + pro: "プロ", + upgrade: "アップグレード", + }, + auth: { + common: { + email: { + label: "メールアドレス", + placeholder: "name@company.com", + errors: { + required: "メールアドレスは必須です", + invalid: "メールアドレスが無効です", + }, + }, + password: { + label: "パスワード", + set_password: "パスワードを設定", + placeholder: "パスワードを入力", + confirm_password: { + label: "パスワードの確認", + placeholder: "パスワードを確認", + }, + current_password: { + label: "現在のパスワード", + }, + new_password: { + label: "新しいパスワード", + placeholder: "新しいパスワードを入力", + }, + change_password: { + label: { + default: "パスワードを変更", + submitting: "パスワードを変更中", + }, + }, + errors: { + match: "パスワードが一致しません", + empty: "パスワードを入力してください", + length: "パスワードは8文字以上である必要があります", + strength: { + weak: "パスワードが弱すぎます", + strong: "パスワードは十分な強度です", + }, + }, + submit: "パスワードを設定", + toast: { + change_password: { + success: { + title: "成功!", + message: "パスワードが正常に変更されました。", + }, + error: { + title: "エラー!", + message: "問題が発生しました。もう一度お試しください。", + }, + }, + }, + }, + unique_code: { + label: "ユニークコード", + placeholder: "gets-sets-flys", + paste_code: "メールで送信されたコードを貼り付けてください", + requesting_new_code: "新しいコードをリクエスト中", + sending_code: "コードを送信中", + }, + already_have_an_account: "すでにアカウントをお持ちですか?", + login: "ログイン", + create_account: "アカウントを作成", + new_to_plane: "Planeは初めてですか?", + back_to_sign_in: "サインインに戻る", + resend_in: "{seconds}秒後に再送信", + sign_in_with_unique_code: "ユニークコードでサインイン", + forgot_password: "パスワードをお忘れですか?", + }, + sign_up: { + header: { + label: "チームと作業を管理するためのアカウントを作成してください。", + step: { + email: { + header: "サインアップ", + sub_header: "", + }, + password: { + header: "サインアップ", + sub_header: "メールアドレスとパスワードの組み合わせでサインアップ。", + }, + unique_code: { + header: "サインアップ", + sub_header: "上記のメールアドレスに送信されたユニークコードでサインアップ。", + }, + }, + }, + errors: { + password: { + strength: "強力なパスワードを設定して続行してください", + }, + }, + }, + sign_in: { + header: { + label: "チームと作業を管理するためにログインしてください。", + step: { + email: { + header: "ログインまたはサインアップ", + sub_header: "", + }, + password: { + header: "ログインまたはサインアップ", + sub_header: "メールアドレスとパスワードの組み合わせでログイン。", + }, + unique_code: { + header: "ログインまたはサインアップ", + sub_header: "上記のメールアドレスに送信されたユニークコードでログイン。", + }, + }, + }, + }, + forgot_password: { + title: "パスワードをリセット", + description: + "確認済みのユーザーアカウントのメールアドレスを入力してください。パスワードリセットリンクを送信します。", + email_sent: "リセットリンクをメールアドレスに送信しました", + send_reset_link: "リセットリンクを送信", + errors: { + smtp_not_enabled: "管理者がSMTPを有効にしていないため、パスワードリセットリンクを送信できません", + }, + toast: { + success: { + title: "メール送信完了", + message: + "パスワードをリセットするためのリンクを受信トレイで確認してください。数分以内に表示されない場合は、迷惑メールフォルダを確認してください。", + }, + error: { + title: "エラー!", + message: "問題が発生しました。もう一度お試しください。", + }, + }, + }, + reset_password: { + title: "新しいパスワードを設定", + description: "強力なパスワードでアカウントを保護", + }, + set_password: { + title: "アカウントを保護", + description: "パスワードを設定して安全にログイン", + }, + sign_out: { + toast: { + error: { + title: "エラー!", + message: "サインアウトに失敗しました。もう一度お試しください。", + }, + }, + }, + }, + submit: "送信", + cancel: "キャンセル", + loading: "読み込み中", + error: "エラー", + success: "成功", + warning: "警告", + info: "情報", + close: "閉じる", + yes: "はい", + no: "いいえ", + ok: "OK", + name: "名前", + description: "説明", + search: "検索", + add_member: "メンバーを追加", + adding_members: "メンバーを追加中", + remove_member: "メンバーを削除", + add_members: "メンバーを追加", + adding_member: "メンバーを追加中", + remove_members: "メンバーを削除", + add: "追加", + adding: "追加中", + remove: "削除", + add_new: "新規追加", + remove_selected: "選択項目を削除", + first_name: "名", + last_name: "姓", + email: "メールアドレス", + display_name: "表示名", + role: "役割", + timezone: "タイムゾーン", + avatar: "アバター", + cover_image: "カバー画像", + password: "パスワード", + change_cover: "カバーを変更", + language: "言語", + saving: "保存中", + save_changes: "変更を保存", + deactivate_account: "アカウントを無効化", + deactivate_account_description: + "アカウントを無効化すると、そのアカウント内のすべてのデータとリソースが完全に削除され、復元できなくなります。", + profile_settings: "プロフィール設定", + your_account: "あなたのアカウント", + security: "セキュリティ", + activity: "アクティビティ", + appearance: "外観", + notifications: "通知", + workspaces: "ワークスペース", + create_workspace: "ワークスペースを作成", + invitations: "招待", + summary: "概要", + assigned: "割り当て済み", + created: "作成済み", + subscribed: "購読中", + you_do_not_have_the_permission_to_access_this_page: "このページにアクセスする権限がありません。", + something_went_wrong_please_try_again: "問題が発生しました。もう一度お試しください。", + load_more: "もっと読み込む", + select_or_customize_your_interface_color_scheme: "インターフェースの配色を選択またはカスタマイズしてください。", + theme: "テーマ", + system_preference: "システム設定に従う", + light: "ライト", + dark: "ダーク", + light_contrast: "ライトハイコントラスト", + dark_contrast: "ダークハイコントラスト", + custom: "カスタムテーマ", + select_your_theme: "テーマを選択", + customize_your_theme: "テーマをカスタマイズ", + background_color: "背景色", + text_color: "文字色", + primary_color: "プライマリ(テーマ)カラー", + sidebar_background_color: "サイドバーの背景色", + sidebar_text_color: "サイドバーの文字色", + set_theme: "テーマを設定", + enter_a_valid_hex_code_of_6_characters: "6文字の有効な16進コードを入力してください", + background_color_is_required: "背景色は必須です", + text_color_is_required: "文字色は必須です", + primary_color_is_required: "プライマリカラーは必須です", + sidebar_background_color_is_required: "サイドバーの背景色は必須です", + sidebar_text_color_is_required: "サイドバーの文字色は必須です", + updating_theme: "テーマを更新中", + theme_updated_successfully: "テーマが正常に更新されました", + failed_to_update_the_theme: "テーマの更新に失敗しました", + email_notifications: "メール通知", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "購読している作業項目の最新情報を受け取ります。通知を受け取るには有効にしてください。", + email_notification_setting_updated_successfully: "メール通知設定が正常に更新されました", + failed_to_update_email_notification_setting: "メール通知設定の更新に失敗しました", + notify_me_when: "通知を受け取るタイミング", + property_changes: "プロパティの変更", + property_changes_description: "作業項目の担当者、優先度、見積もりなどのプロパティが変更されたときに通知します。", + state_change: "状態の変更", + state_change_description: "作業項目が異なる状態に移動したときに通知します", + issue_completed: "作業項目の完了", + issue_completed_description: "作業項目が完了したときのみ通知します", + comments: "コメント", + comments_description: "誰かが作業項目にコメントを残したときに通知します", + mentions: "メンション", + mentions_description: "誰かがコメントや説明で自分をメンションしたときのみ通知します", + old_password: "現在のパスワード", + general_settings: "一般設定", + sign_out: "サインアウト", + signing_out: "サインアウト中", + active_cycles: "アクティブサイクル", + active_cycles_description: + "プロジェクト全体のサイクルを監視し、優先度の高い作業項目を追跡し、注意が必要なサイクルにズームインします。", + on_demand_snapshots_of_all_your_cycles: "すべてのサイクルのオンデマンドスナップショット", + upgrade: "アップグレード", + "10000_feet_view": "すべてのアクティブサイクルの俯瞰図", + "10000_feet_view_description": + "各プロジェクトのサイクル間を移動する代わりに、すべてのプロジェクトの実行中のサイクルを一度に確認できます。", + get_snapshot_of_each_active_cycle: "各アクティブサイクルのスナップショットを取得", + get_snapshot_of_each_active_cycle_description: + "すべてのアクティブサイクルの主要な指標を追跡し、進捗状況を確認し、期限に対する範囲を把握します。", + compare_burndowns: "バーンダウンを比較", + compare_burndowns_description: "各サイクルのバーンダウンレポートを確認して、各チームのパフォーマンスを監視します。", + quickly_see_make_or_break_issues: "重要な作業項目をすぐに確認", + quickly_see_make_or_break_issues_description: + "期限に対する各サイクルの優先度の高い作業項目をプレビューします。ワンクリックでサイクルごとにすべての項目を確認できます。", + zoom_into_cycles_that_need_attention: "注意が必要なサイクルにズームイン", + zoom_into_cycles_that_need_attention_description: "期待に沿わないサイクルの状態をワンクリックで調査します。", + stay_ahead_of_blockers: "ブロッカーに先手を打つ", + stay_ahead_of_blockers_description: + "プロジェクト間の課題を特定し、他のビューでは明らかでないサイクル間の依存関係を確認します。", + analytics: "アナリティクス", + workspace_invites: "ワークスペースの招待", + enter_god_mode: "ゴッドモードに入る", + workspace_logo: "ワークスペースのロゴ", + new_issue: "新規作業項目", + your_work: "あなたの作業", + drafts: "下書き", + projects: "プロジェクト", + views: "ビュー", + workspace: "ワークスペース", + archives: "アーカイブ", + settings: "設定", + failed_to_move_favorite: "お気に入りの移動に失敗しました", + favorites: "お気に入り", + no_favorites_yet: "まだお気に入りがありません", + create_folder: "フォルダを作成", + new_folder: "新規フォルダ", + favorite_updated_successfully: "お気に入りが正常に更新されました", + favorite_created_successfully: "お気に入りが正常に作成されました", + folder_already_exists: "フォルダは既に存在します", + folder_name_cannot_be_empty: "フォルダ名を空にすることはできません", + something_went_wrong: "問題が発生しました", + failed_to_reorder_favorite: "お気に入りの並び替えに失敗しました", + favorite_removed_successfully: "お気に入りが正常に削除されました", + failed_to_create_favorite: "お気に入りの作成に失敗しました", + failed_to_rename_favorite: "お気に入りの名前変更に失敗しました", + project_link_copied_to_clipboard: "プロジェクトリンクがクリップボードにコピーされました", + link_copied: "リンクがコピーされました", + add_project: "プロジェクトを追加", + create_project: "プロジェクトを作成", + failed_to_remove_project_from_favorites: "プロジェクトをお気に入りから削除できませんでした。もう一度お試しください。", + project_created_successfully: "プロジェクトが正常に作成されました", + project_created_successfully_description: + "プロジェクトが正常に作成されました。作業項目を追加できるようになりました。", + project_name_already_taken: "プロジェクト名は既に使用されています。", + project_identifier_already_taken: "プロジェクト識別子は既に使用されています。", + project_cover_image_alt: "プロジェクトのカバー画像", + name_is_required: "名前は必須です", + title_should_be_less_than_255_characters: "タイトルは255文字未満である必要があります", + project_name: "プロジェクト名", + project_id_must_be_at_least_1_character: "プロジェクトIDは最低1文字必要です", + project_id_must_be_at_most_5_characters: "プロジェクトIDは最大5文字までです", + project_id: "プロジェクトID", + project_id_tooltip_content: "プロジェクト内の作業項目を一意に識別するのに役立ちます。最大5文字。", + description_placeholder: "説明", + only_alphanumeric_non_latin_characters_allowed: "英数字と非ラテン文字のみ使用できます。", + project_id_is_required: "プロジェクトIDは必須です", + project_id_allowed_char: "英数字と非ラテン文字のみ使用できます。", + project_id_min_char: "プロジェクトIDは最低1文字必要です", + project_id_max_char: "プロジェクトIDは最大5文字までです", + project_description_placeholder: "プロジェクトの説明を入力", + select_network: "ネットワークを選択", + lead: "リード", + date_range: "日付範囲", + private: "プライベート", + public: "パブリック", + accessible_only_by_invite: "招待のみアクセス可能", + anyone_in_the_workspace_except_guests_can_join: "ゲスト以外のワークスペースのメンバーが参加可能", + creating: "作成中", + creating_project: "プロジェクトを作成中", + adding_project_to_favorites: "プロジェクトをお気に入りに追加中", + project_added_to_favorites: "プロジェクトがお気に入りに追加されました", + couldnt_add_the_project_to_favorites: "プロジェクトをお気に入りに追加できませんでした。もう一度お試しください。", + removing_project_from_favorites: "プロジェクトをお気に入りから削除中", + project_removed_from_favorites: "プロジェクトがお気に入りから削除されました", + couldnt_remove_the_project_from_favorites: + "プロジェクトをお気に入りから削除できませんでした。もう一度お試しください。", + add_to_favorites: "お気に入りに追加", + remove_from_favorites: "お気に入りから削除", + publish_project: "プロジェクトを公開", + publish: "公開", + copy_link: "リンクをコピー", + leave_project: "プロジェクトを退出", + join_the_project_to_rearrange: "並び替えるにはプロジェクトに参加してください", + drag_to_rearrange: "ドラッグして並び替え", + congrats: "おめでとうございます!", + open_project: "プロジェクトを開く", + issues: "作業項目", + cycles: "Cycles", + modules: "Modules", + pages: "Pages", + intake: "Intake", + time_tracking: "時間トラッキング", + work_management: "作業管理", + projects_and_issues: "プロジェクトと作業項目", + projects_and_issues_description: "このプロジェクトでオン/オフを切り替えます。", + cycles_description: + "プロジェクトごとに作業の時間枠を設定し、必要に応じて期間を調整します。1サイクルは2週間、次は1週間でもかまいません。", + modules_description: "専任のリーダーと担当者を持つサブプロジェクトに作業を整理します。", + views_description: "カスタムの並び替え、フィルター、表示オプションを保存するか、チームと共有します。", + pages_description: "自由形式のコンテンツを作成・編集できます。メモ、ドキュメント、何でもOKです。", + intake_description: + "非メンバーがバグ、フィードバック、提案を共有できるようにし、ワークフローを妨げないようにします。", + time_tracking_description: "作業項目やプロジェクトに費やした時間を記録します。", + work_management_description: "作業とプロジェクトを簡単に管理します。", + documentation: "ドキュメント", + message_support: "サポートにメッセージ", + contact_sales: "営業に問い合わせ", + hyper_mode: "Hyper Mode", + keyboard_shortcuts: "キーボードショートカット", + whats_new: "新機能", + version: "バージョン", + we_are_having_trouble_fetching_the_updates: "更新情報の取得に問題が発生しています。", + our_changelogs: "変更履歴", + for_the_latest_updates: "最新の更新情報については", + please_visit: "をご覧ください", + docs: "ドキュメント", + full_changelog: "完全な変更履歴", + support: "サポート", + discord: "Discord", + powered_by_plane_pages: "Powered by Plane Pages", + please_select_at_least_one_invitation: "少なくとも1つの招待を選択してください。", + please_select_at_least_one_invitation_description: + "ワークスペースに参加するには少なくとも1つの招待を選択してください。", + we_see_that_someone_has_invited_you_to_join_a_workspace: "誰かがあなたをワークスペースに招待しています", + join_a_workspace: "ワークスペースに参加", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: "誰かがあなたをワークスペースに招待しています", + join_a_workspace_description: "ワークスペースに参加", + accept_and_join: "承諾して参加", + go_home: "ホームへ", + no_pending_invites: "保留中の招待はありません", + you_can_see_here_if_someone_invites_you_to_a_workspace: "誰かがワークスペースに招待した場合、ここで確認できます", + back_to_home: "ホームに戻る", + workspace_name: "ワークスペース名", + deactivate_your_account: "アカウントを無効化", + deactivate_your_account_description: + "無効化すると、作業項目を割り当てられなくなり、ワークスペースの請求対象外となります。アカウントを再有効化するには、このメールアドレスでワークスペースへの招待が必要です。", + deactivating: "無効化中", + confirm: "確認", + confirming: "確認中", + draft_created: "下書きが作成されました", + issue_created_successfully: "作業項目が正常に作成されました", + draft_creation_failed: "下書きの作成に失敗しました", + issue_creation_failed: "作業項目の作成に失敗しました", + draft_issue: "作業項目の下書き", + issue_updated_successfully: "作業項目が正常に更新されました", + issue_could_not_be_updated: "作業項目を更新できませんでした", + create_a_draft: "下書きを作成", + save_to_drafts: "下書きに保存", + save: "保存", + update: "更新", + updating: "更新中", + create_new_issue: "新規作業項目を作成", + editor_is_not_ready_to_discard_changes: "エディターは変更を破棄する準備ができていません", + failed_to_move_issue_to_project: "作業項目をプロジェクトに移動できませんでした", + create_more: "さらに作成", + add_to_project: "プロジェクトに追加", + discard: "破棄", + duplicate_issue_found: "重複する作業項目が見つかりました", + duplicate_issues_found: "重複する作業項目が見つかりました", + no_matching_results: "一致する結果がありません", + title_is_required: "タイトルは必須です", + title: "タイトル", + state: "状態", + priority: "優先度", + none: "なし", + urgent: "緊急", + high: "高", + medium: "中", + low: "低", + members: "メンバー", + assignee: "担当者", + assignees: "担当者", + you: "あなた", + labels: "ラベル", + create_new_label: "新規ラベルを作成", + start_date: "開始日", + end_date: "終了日", + due_date: "期限", + estimate: "見積もり", + change_parent_issue: "親作業項目を変更", + remove_parent_issue: "親作業項目を削除", + add_parent: "親を追加", + loading_members: "メンバーを読み込み中", + view_link_copied_to_clipboard: "ビューリンクがクリップボードにコピーされました。", + required: "必須", + optional: "任意", + Cancel: "キャンセル", + edit: "編集", + archive: "アーカイブ", + restore: "復元", + open_in_new_tab: "新しいタブで開く", + delete: "削除", + deleting: "削除中", + make_a_copy: "コピーを作成", + move_to_project: "プロジェクトに移動", + good: "おはよう", + morning: "ございます", + afternoon: "こんにちは", + evening: "こんばんは", + show_all: "すべて表示", + show_less: "表示を減らす", + no_data_yet: "まだデータがありません", + syncing: "同期中", + add_work_item: "作業項目を追加", + advanced_description_placeholder: "コマンドには '/' を押してください", + create_work_item: "作業項目を作成", + attachments: "添付ファイル", + declining: "辞退中", + declined: "辞退済み", + decline: "辞退", + unassigned: "未割り当て", + work_items: "作業項目", + add_link: "リンクを追加", + points: "ポイント", + no_assignee: "担当者なし", + no_assignees_yet: "まだ担当者がいません", + no_labels_yet: "まだラベルがありません", + ideal: "理想", + current: "現在", + no_matching_members: "一致するメンバーがいません", + leaving: "退出中", + removing: "削除中", + leave: "退出", + refresh: "更新", + refreshing: "更新中", + refresh_status: "状態を更新", + prev: "前へ", + next: "次へ", + re_generating: "再生成中", + re_generate: "再生成", + re_generate_key: "キーを再生成", + export: "エクスポート", + member: "{count, plural, other{# メンバー}}", + new_password_must_be_different_from_old_password: "新しいパスワードは古いパスワードと異なる必要があります", + edited: "編集済み", + bot: "ボット", + project_view: { + sort_by: { + created_at: "作成日時", + updated_at: "更新日時", + name: "名前", + }, + }, + toast: { + success: "成功!", + error: "エラー!", + }, + links: { + toasts: { + created: { + title: "リンクが作成されました", + message: "リンクが正常に作成されました", + }, + not_created: { + title: "リンクが作成されませんでした", + message: "リンクを作成できませんでした", + }, + updated: { + title: "リンクが更新されました", + message: "リンクが正常に更新されました", + }, + not_updated: { + title: "リンクが更新されませんでした", + message: "リンクを更新できませんでした", + }, + removed: { + title: "リンクが削除されました", + message: "リンクが正常に削除されました", + }, + not_removed: { + title: "リンクが削除されませんでした", + message: "リンクを削除できませんでした", + }, + }, + }, + home: { + empty: { + quickstart_guide: "クイックスタートガイド", + not_right_now: "今はしない", + create_project: { + title: "プロジェクトを作成", + description: "Planeのほとんどはプロジェクトから始まります。", + cta: "始める", + }, + invite_team: { + title: "チームを招待", + description: "同僚と一緒に構築、デプロイ、管理しましょう。", + cta: "招待する", + }, + configure_workspace: { + title: "ワークスペースを設定する。", + description: "機能のオン/オフを切り替えたり、さらに詳細な設定を行ったりできます。", + cta: "このワークスペースを設定", + }, + personalize_account: { + title: "Planeをあなた好みにカスタマイズ。", + description: "プロフィール画像、カラー、その他の設定を選択してください。", + cta: "今すぐパーソナライズ", + }, + widgets: { + title: "ウィジェットがないと静かですね、オンにしましょう", + description: "すべてのウィジェットがオフになっているようです。体験を向上させるために\n今すぐ有効にしましょう!", + primary_button: { + text: "ウィジェットを管理", + }, + }, + }, + quick_links: { + empty: "手元に置いておきたい作業関連のリンクを保存してください。", + add: "クイックリンクを追加", + title: "クイックリンク", + title_plural: "クイックリンク", + }, + recents: { + title: "最近", + empty: { + project: "プロジェクトを訪問すると、最近のプロジェクトがここに表示されます。", + page: "ページを訪問すると、最近のページがここに表示されます。", + issue: "作業項目を訪問すると、最近の作業項目がここに表示されます。", + default: "まだ最近の項目がありません。", + }, + filters: { + all: "すべて", + projects: "プロジェクト", + pages: "ページ", + issues: "作業項目", + }, + }, + new_at_plane: { + title: "Planeの新機能", + }, + quick_tutorial: { + title: "クイックチュートリアル", + }, + widget: { + reordered_successfully: "ウィジェットの並び替えが完了しました。", + reordering_failed: "ウィジェットの並び替え中にエラーが発生しました。", + }, + manage_widgets: "ウィジェットを管理", + title: "ホーム", + star_us_on_github: "GitHubでスターをつける", + }, + link: { + modal: { + url: { + text: "URL", + required: "URLが無効です", + placeholder: "URLを入力または貼り付け", + }, + title: { + text: "表示タイトル", + placeholder: "このリンクをどのように表示したいか", + }, + }, + }, + common: { + all: "すべて", + states: "ステータス", + state: "ステータス", + state_groups: "ステータスグループ", + state_group: "ステート グループ", + priorities: "優先度", + priority: "優先度", + team_project: "チームプロジェクト", + project: "プロジェクト", + cycle: "サイクル", + cycles: "サイクル", + module: "モジュール", + modules: "モジュール", + labels: "ラベル", + label: "ラベル", + assignees: "担当者", + assignee: "担当者", + created_by: "作成者", + none: "なし", + link: "リンク", + estimates: "見積もり", + estimate: "見積もり", + created_at: "クリエイテッド アット", + completed_at: "コンプリーテッド アット", + layout: "レイアウト", + filters: "フィルター", + display: "表示", + load_more: "もっと読み込む", + activity: "アクティビティ", + analytics: "アナリティクス", + dates: "日付", + success: "成功!", + something_went_wrong: "問題が発生しました", + error: { + label: "エラー!", + message: "エラーが発生しました。もう一度お試しください。", + }, + group_by: "グループ化", + epic: "エピック", + epics: "エピック", + work_item: "作業項目", + work_items: "作業項目", + sub_work_item: "サブ作業項目", + add: "追加", + warning: "警告", + updating: "更新中", + adding: "追加中", + update: "更新", + creating: "作成中", + create: "作成", + cancel: "キャンセル", + description: "説明", + title: "タイトル", + attachment: "添付ファイル", + general: "一般", + features: "機能", + automation: "自動化", + project_name: "プロジェクト名", + project_id: "プロジェクトID", + project_timezone: "プロジェクトのタイムゾーン", + created_on: "作成日", + update_project: "プロジェクトを更新", + identifier_already_exists: "識別子は既に存在します", + add_more: "さらに追加", + defaults: "デフォルト", + add_label: "ラベルを追加", + customize_time_range: "期間をカスタマイズ", + loading: "読み込み中", + attachments: "添付ファイル", + property: "プロパティ", + properties: "プロパティ", + parent: "親", + page: "ページ", + remove: "削除", + archiving: "アーカイブ中", + archive: "アーカイブ", + access: { + public: "公開", + private: "非公開", + }, + done: "完了", + sub_work_items: "サブ作業項目", + comment: "コメント", + workspace_level: "ワークスペースレベル", + order_by: { + label: "並び順", + manual: "手動", + last_created: "最終作成日", + last_updated: "最終更新日", + start_date: "開始日", + due_date: "期限日", + asc: "昇順", + desc: "降順", + updated_on: "更新日", + }, + sort: { + asc: "昇順", + desc: "降順", + created_on: "作成日", + updated_on: "更新日", + }, + comments: "コメント", + updates: "更新", + clear_all: "すべてクリア", + copied: "コピーしました!", + link_copied: "リンクをコピーしました!", + link_copied_to_clipboard: "リンクをクリップボードにコピーしました", + copied_to_clipboard: "作業項目のリンクをクリップボードにコピーしました", + is_copied_to_clipboard: "作業項目をクリップボードにコピーしました", + no_links_added_yet: "リンクはまだ追加されていません", + add_link: "リンクを追加", + links: "リンク", + go_to_workspace: "ワークスペースへ移動", + progress: "進捗", + optional: "任意", + join: "参加", + go_back: "戻る", + continue: "続ける", + resend: "再送信", + relations: "関連", + errors: { + default: { + title: "エラー!", + message: "問題が発生しました。もう一度お試しください。", + }, + required: "この項目は必須です", + entity_required: "{entity}は必須です", + restricted_entity: "{entity} は制限されています", + }, + update_link: "リンクを更新", + attach: "添付", + create_new: "新規作成", + add_existing: "既存を追加", + type_or_paste_a_url: "URLを入力または貼り付け", + url_is_invalid: "URLが無効です", + display_title: "表示タイトル", + link_title_placeholder: "このリンクをどのように表示したいか", + url: "URL", + side_peek: "サイドピーク", + modal: "モーダル", + full_screen: "全画面", + close_peek_view: "ピークビューを閉じる", + toggle_peek_view_layout: "ピークビューのレイアウトを切り替え", + options: "オプション", + duration: "期間", + today: "今日", + week: "週", + month: "月", + quarter: "四半期", + press_for_commands: "コマンドは「/」を押してください", + click_to_add_description: "クリックして説明を追加", + search: { + label: "検索", + placeholder: "検索するキーワードを入力", + no_matches_found: "一致する結果が見つかりません", + no_matching_results: "一致する結果がありません", + }, + actions: { + edit: "編集", + make_a_copy: "コピーを作成", + open_in_new_tab: "新しいタブで開く", + copy_link: "リンクをコピー", + archive: "アーカイブ", + delete: "削除", + remove_relation: "関連を削除", + subscribe: "購読", + unsubscribe: "購読解除", + clear_sorting: "並び替えをクリア", + show_weekends: "週末を表示", + enable: "有効化", + disable: "無効化", + }, + name: "名前", + discard: "破棄", + confirm: "確認", + confirming: "確認中", + read_the_docs: "ドキュメントを読む", + default: "デフォルト", + active: "アクティブ", + enabled: "有効", + disabled: "無効", + mandate: "必須", + mandatory: "必須", + yes: "はい", + no: "いいえ", + please_wait: "お待ちください", + enabling: "有効化中", + disabling: "無効化中", + beta: "ベータ", + or: "または", + next: "次へ", + back: "戻る", + cancelling: "キャンセル中", + configuring: "設定中", + clear: "クリア", + import: "インポート", + connect: "接続", + authorizing: "認証中", + processing: "処理中", + no_data_available: "データがありません", + from: "{name}から", + authenticated: "認証済み", + select: "選択", + upgrade: "アップグレード", + add_seats: "シートを追加", + projects: "プロジェクト", + workspace: "ワークスペース", + workspaces: "ワークスペース", + team: "チーム", + teams: "チーム", + entity: "エンティティ", + entities: "エンティティ", + task: "タスク", + tasks: "タスク", + section: "セクション", + sections: "セクション", + edit: "編集", + connecting: "接続中", + connected: "接続済み", + disconnect: "切断", + disconnecting: "切断中", + installing: "インストール中", + install: "インストール", + reset: "リセット", + live: "ライブ", + change_history: "変更履歴", + coming_soon: "近日公開", + member: "メンバー", + members: "メンバー", + you: "あなた", + upgrade_cta: { + higher_subscription: "高いサブスクリプションにアップグレード", + talk_to_sales: "トーク トゥ セールス", + }, + category: "カテゴリー", + categories: "カテゴリーズ", + saving: "セービング", + save_changes: "セーブ チェンジズ", + delete: "デリート", + deleting: "デリーティング", + pending: "保留中", + invite: "招待", + view: "ビュー", + deactivated_user: "無効化されたユーザー", + apply: "適用", + applying: "適用中", + users: "ユーザー", + admins: "管理者", + guests: "ゲスト", + on_track: "順調", + off_track: "遅れ", + at_risk: "リスクあり", + timeline: "タイムライン", + completion: "完了", + upcoming: "今後の予定", + completed: "完了", + in_progress: "進行中", + planned: "計画済み", + paused: "一時停止", + no_of: "{entity} の数", + resolved: "解決済み", + }, + chart: { + x_axis: "エックス アクシス", + y_axis: "ワイ アクシス", + metric: "メトリック", + }, + form: { + title: { + required: "タイトルは必須です", + max_length: "タイトルは{length}文字未満である必要があります", + }, + }, + entity: { + grouping_title: "{entity}のグループ化", + priority: "{entity}の優先度", + all: "すべての{entity}", + drop_here_to_move: "ここにドロップして{entity}を移動", + delete: { + label: "{entity}を削除", + success: "{entity}を削除しました", + failed: "{entity}の削除に失敗しました", + }, + update: { + failed: "{entity}の更新に失敗しました", + success: "{entity}を更新しました", + }, + link_copied_to_clipboard: "{entity}のリンクをクリップボードにコピーしました", + fetch: { + failed: "{entity}の取得中にエラーが発生しました", + }, + add: { + success: "{entity}を追加しました", + failed: "{entity}の追加中にエラーが発生しました", + }, + remove: { + success: "{entity}を削除しました", + failed: "{entity}の削除中にエラーが発生しました", + }, + }, + epic: { + all: "すべてのエピック", + label: "{count, plural, one {エピック} other {エピック}}", + new: "新規エピック", + adding: "エピックを追加中", + create: { + success: "エピックを作成しました", + }, + add: { + press_enter: "Enterを押して別のエピックを追加", + label: "エピックを追加", + }, + title: { + label: "エピックのタイトル", + required: "エピックのタイトルは必須です。", + }, + }, + issue: { + label: "{count, plural, one {作業項目} other {作業項目}}", + all: "すべての作業項目", + edit: "作業項目を編集", + title: { + label: "作業項目のタイトル", + required: "作業項目のタイトルは必須です。", + }, + add: { + press_enter: "Enterを押して別の作業項目を追加", + label: "作業項目を追加", + cycle: { + failed: "作業項目をサイクルに追加できませんでした。もう一度お試しください。", + success: "{count, plural, one {作業項目} other {作業項目}}をサイクルに追加しました。", + loading: "{count, plural, one {作業項目} other {作業項目}}をサイクルに追加中", + }, + assignee: "担当者を追加", + start_date: "開始日を追加", + due_date: "期限日を追加", + parent: "親作業項目を追加", + sub_issue: "サブ作業項目を追加", + relation: "関連を追加", + link: "リンクを追加", + existing: "既存の作業項目を追加", + }, + remove: { + label: "作業項目を削除", + cycle: { + loading: "サイクルから作業項目を削除中", + success: "作業項目をサイクルから削除しました。", + failed: "作業項目をサイクルから削除できませんでした。もう一度お試しください。", + }, + module: { + loading: "モジュールから作業項目を削除中", + success: "作業項目をモジュールから削除しました。", + failed: "作業項目をモジュールから削除できませんでした。もう一度お試しください。", + }, + parent: { + label: "親作業項目を削除", + }, + }, + new: "新規作業項目", + adding: "作業項目を追加中", + create: { + success: "作業項目を作成しました", + }, + priority: { + urgent: "緊急", + high: "高", + medium: "中", + low: "低", + }, + display: { + properties: { + label: "表示プロパティ", + id: "ID", + issue_type: "作業項目タイプ", + sub_issue_count: "サブ作業項目数", + attachment_count: "添付ファイル数", + created_on: "作成日", + sub_issue: "サブ作業項目", + work_item_count: "作業項目数", + }, + extra: { + show_sub_issues: "サブ作業項目を表示", + show_empty_groups: "空のグループを表示", + }, + }, + layouts: { + ordered_by_label: "このレイアウトは次の順序で並べ替えられています:", + list: "リスト", + kanban: "ボード", + calendar: "カレンダー", + spreadsheet: "テーブル", + gantt: "タイムライン", + title: { + list: "リストレイアウト", + kanban: "ボードレイアウト", + calendar: "カレンダーレイアウト", + spreadsheet: "テーブルレイアウト", + gantt: "タイムラインレイアウト", + }, + }, + states: { + active: "アクティブ", + backlog: "バックログ", + }, + comments: { + placeholder: "コメントを追加", + switch: { + private: "プライベートコメントに切り替え", + public: "公開コメントに切り替え", + }, + create: { + success: "コメントを作成しました", + error: "コメントの作成に失敗しました。後でもう一度お試しください。", + }, + update: { + success: "コメントを更新しました", + error: "コメントの更新に失敗しました。後でもう一度お試しください。", + }, + remove: { + success: "コメントを削除しました", + error: "コメントの削除に失敗しました。後でもう一度お試しください。", + }, + upload: { + error: "アセットのアップロードに失敗しました。後でもう一度お試しください。", + }, + copy_link: { + success: "コメントリンクがクリップボードにコピーされました", + error: "コメントリンクのコピーに失敗しました。後でもう一度お試しください。", + }, + }, + empty_state: { + issue_detail: { + title: "作業項目が存在しません", + description: "お探しの作業項目は存在しないか、アーカイブされているか、削除されています。", + primary_button: { + text: "他の作業項目を表示", + }, + }, + }, + sibling: { + label: "兄弟作業項目", + }, + archive: { + description: "完了またはキャンセルされた\n作業項目のみアーカイブできます", + label: "作業項目をアーカイブ", + confirm_message: "作業項目をアーカイブしてもよろしいですか?アーカイブされた作業項目は後で復元できます。", + success: { + label: "アーカイブ成功", + message: "アーカイブはプロジェクトのアーカイブで確認できます。", + }, + failed: { + message: "作業項目をアーカイブできませんでした。もう一度お試しください。", + }, + }, + restore: { + success: { + title: "復元成功", + message: "作業項目はプロジェクトの作業項目で確認できます。", + }, + failed: { + message: "作業項目を復元できませんでした。もう一度お試しください。", + }, + }, + relation: { + relates_to: "関連する", + duplicate: "重複する", + blocked_by: "ブロックされている", + blocking: "ブロックしている", + }, + copy_link: "作業項目のリンクをコピー", + delete: { + label: "作業項目を削除", + error: "作業項目の削除中にエラーが発生しました", + }, + subscription: { + actions: { + subscribed: "作業項目を購読しました", + unsubscribed: "作業項目の購読を解除しました", + }, + }, + select: { + error: "少なくとも1つの作業項目を選択してください", + empty: "作業項目が選択されていません", + add_selected: "選択した作業項目を追加", + select_all: "すべて選択", + deselect_all: "すべての選択を解除", + }, + open_in_full_screen: "作業項目をフルスクリーンで開く", + }, + attachment: { + error: "ファイルを添付できませんでした。もう一度アップロードしてください。", + only_one_file_allowed: "一度にアップロードできるファイルは1つだけです。", + file_size_limit: "ファイルサイズは{size}MB以下である必要があります。", + drag_and_drop: "どこにでもドラッグ&ドロップでアップロード", + delete: "添付ファイルを削除", + }, + label: { + select: "ラベルを選択", + create: { + success: "ラベルを作成しました", + failed: "ラベルの作成に失敗しました", + already_exists: "ラベルは既に存在します", + type: "新しいラベルを追加するには入力してください", + }, + }, + sub_work_item: { + update: { + success: "サブ作業項目を更新しました", + error: "サブ作業項目の更新中にエラーが発生しました", + }, + remove: { + success: "サブ作業項目を削除しました", + error: "サブ作業項目の削除中にエラーが発生しました", + }, + empty_state: { + sub_list_filters: { + title: "適用されたフィルターに一致するサブ作業項目がありません。", + description: "すべてのサブ作業項目を表示するには、すべての適用されたフィルターをクリアしてください。", + action: "フィルターをクリア", + }, + list_filters: { + title: "適用されたフィルターに一致する作業項目がありません。", + description: "すべての作業項目を表示するには、すべての適用されたフィルターをクリアしてください。", + action: "フィルターをクリア", + }, + }, + }, + view: { + label: "{count, plural, one {ビュー} other {ビュー}}", + create: { + label: "ビューを作成", + }, + update: { + label: "ビューを更新", + }, + }, + inbox_issue: { + status: { + pending: { + title: "保留中", + description: "保留中", + }, + declined: { + title: "却下", + description: "却下", + }, + snoozed: { + title: "スヌーズ", + description: "残り{days, plural, one{# 日} other{# 日}}", + }, + accepted: { + title: "承認済み", + description: "承認済み", + }, + duplicate: { + title: "重複", + description: "重複", + }, + }, + modals: { + decline: { + title: "作業項目を却下", + content: "作業項目{value}を却下してもよろしいですか?", + }, + delete: { + title: "作業項目を削除", + content: "作業項目{value}を削除してもよろしいですか?", + success: "作業項目を削除しました", + }, + }, + errors: { + snooze_permission: "プロジェクト管理者のみが作業項目をスヌーズ/スヌーズ解除できます", + accept_permission: "プロジェクト管理者のみが作業項目を承認できます", + decline_permission: "プロジェクト管理者のみが作業項目を却下できます", + }, + actions: { + accept: "承認", + decline: "却下", + snooze: "スヌーズ", + unsnooze: "スヌーズ解除", + copy: "作業項目のリンクをコピー", + delete: "削除", + open: "作業項目を開く", + mark_as_duplicate: "重複としてマーク", + move: "{value}をプロジェクトの作業項目に移動", + }, + source: { + "in-app": "アプリ内", + }, + order_by: { + created_at: "作成日", + updated_at: "更新日", + id: "ID", + }, + label: "インテーク", + page_label: "{workspace} - インテーク", + modal: { + title: "インテーク作業項目を作成", + }, + tabs: { + open: "オープン", + closed: "クローズ", + }, + empty_state: { + sidebar_open_tab: { + title: "オープンな作業項目がありません", + description: "オープンな作業項目はここで見つかります。新しい作業項目を作成してください。", + }, + sidebar_closed_tab: { + title: "クローズされた作業項目がありません", + description: "承認または却下されたすべての作業項目はここで見つかります。", + }, + sidebar_filter: { + title: "一致する作業項目がありません", + description: + "インテークに適用されたフィルターに一致する作業項目がありません。新しい作業項目を作成してください。", + }, + detail: { + title: "詳細を表示する作業項目を選択してください。", + }, + }, + }, + workspace_creation: { + heading: "ワークスペースを作成", + subheading: "Planeを使用するには、ワークスペースを作成するか参加する必要があります。", + form: { + name: { + label: "ワークスペース名を設定", + placeholder: "馴染みがあり認識しやすい名前が最適です。", + }, + url: { + label: "ワークスペースのURLを設定", + placeholder: "URLを入力または貼り付け", + edit_slug: "URLのスラッグのみ編集可能です", + }, + organization_size: { + label: "このワークスペースを何人で使用しますか?", + placeholder: "範囲を選択", + }, + }, + errors: { + creation_disabled: { + title: "インスタンス管理者のみがワークスペースを作成できます", + description: + "インスタンス管理者のメールアドレスをご存知の場合は、下のボタンをクリックして連絡を取ってください。", + request_button: "インスタンス管理者にリクエスト", + }, + validation: { + name_alphanumeric: "ワークスペース名には (' '), ('-'), ('_') と英数字のみ使用できます。", + name_length: "名前は80文字以内にしてください。", + url_alphanumeric: "URLには ('-') と英数字のみ使用できます。", + url_length: "URLは48文字以内にしてください。", + url_already_taken: "ワークスペースのURLは既に使用されています!", + }, + }, + request_email: { + subject: "新規ワークスペースのリクエスト", + body: "インスタンス管理者様\n\n[ワークスペース作成の目的]のために、URL [/workspace-name] の新規ワークスペースを作成していただけますでしょうか。\n\nよろしくお願いいたします。\n{firstName} {lastName}\n{email}", + }, + button: { + default: "ワークスペースを作成", + loading: "ワークスペースを作成中", + }, + toast: { + success: { + title: "成功", + message: "ワークスペースが正常に作成されました", + }, + error: { + title: "エラー", + message: "ワークスペースを作成できませんでした。もう一度お試しください。", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "プロジェクト、アクティビティ、メトリクスの概要", + description: + "Planeへようこそ。ご利用いただき嬉しく思います。最初のプロジェクトを作成して作業項目を追跡すると、このページは進捗を把握するのに役立つスペースに変わります。管理者はチームの進捗に役立つ項目も表示されます。", + primary_button: { + text: "最初のプロジェクトを作成", + comic: { + title: "Planeではすべてがプロジェクトから始まります", + description: "プロジェクトは製品のロードマップ、マーケティングキャンペーン、新車の発売などになります。", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "アナリティクス", + page_label: "{workspace} - アナリティクス", + open_tasks: "オープンタスクの合計", + error: "データの取得中にエラーが発生しました。", + work_items_closed_in: "クローズされた作業項目", + selected_projects: "選択されたプロジェクト", + total_members: "メンバー総数", + total_cycles: "サイクル総数", + total_modules: "モジュール総数", + pending_work_items: { + title: "保留中の作業項目", + empty_state: "同僚による保留中の作業項目の分析がここに表示されます。", + }, + work_items_closed_in_a_year: { + title: "1年間でクローズされた作業項目", + empty_state: "作業項目をクローズすると、グラフ形式で分析が表示されます。", + }, + most_work_items_created: { + title: "作成された作業項目が最も多い", + empty_state: "同僚と作成した作業項目の数がここに表示されます。", + }, + most_work_items_closed: { + title: "クローズされた作業項目が最も多い", + empty_state: "同僚とクローズした作業項目の数がここに表示されます。", + }, + tabs: { + scope_and_demand: "スコープと需要", + custom: "カスタムアナリティクス", + }, + empty_state: { + customized_insights: { + description: "あなたに割り当てられた作業項目は、ステータスごとに分類されてここに表示されます。", + title: "まだデータがありません", + }, + created_vs_resolved: { + description: "時間の経過とともに作成および解決された作業項目がここに表示されます。", + title: "まだデータがありません", + }, + project_insights: { + title: "まだデータがありません", + description: "あなたに割り当てられた作業項目は、ステータスごとに分類されてここに表示されます。", + }, + general: { + title: "進捗、ワークロード、割り当てを追跡する。傾向を発見し、障害を除去し、作業をより迅速に進める", + description: + "範囲と需要、見積もり、スコープクリープを確認する。チームメンバーとチームのパフォーマンスを把握し、プロジェクトが時間通りに実行されることを確実にする。", + primary_button: { + text: "最初のプロジェクトを開始", + comic: { + title: "アナリティクスはサイクル + モジュールで最もよく機能します", + description: + "まず、作業項目をサイクルに時間枠を設定し、可能であれば、複数のサイクルにまたがる作業項目をモジュールにグループ化してください。左側のナビゲーションで両方をチェックしてください。", + }, + }, + }, + }, + created_vs_resolved: "作成 vs 解決", + customized_insights: "カスタマイズされたインサイト", + backlog_work_items: "バックログの{entity}", + active_projects: "アクティブなプロジェクト", + trend_on_charts: "グラフの傾向", + all_projects: "すべてのプロジェクト", + summary_of_projects: "プロジェクトの概要", + project_insights: "プロジェクトのインサイト", + started_work_items: "開始された{entity}", + total_work_items: "{entity}の合計", + total_projects: "プロジェクト合計", + total_admins: "管理者の合計", + total_users: "ユーザー総数", + total_intake: "総収入", + un_started_work_items: "未開始の{entity}", + total_guests: "ゲストの合計", + completed_work_items: "完了した{entity}", + total: "{entity}の合計", + }, + workspace_projects: { + label: "{count, plural, one {プロジェクト} other {プロジェクト}}", + create: { + label: "プロジェクトを追加", + }, + network: { + private: { + title: "非公開", + description: "招待された人のみアクセス可能", + }, + public: { + title: "公開", + description: "ゲスト以外のワークスペースの全員が参加可能", + }, + }, + error: { + permission: "この操作を実行する権限がありません。", + cycle_delete: "サイクルの削除に失敗しました", + module_delete: "モジュールの削除に失敗しました", + issue_delete: "作業項目の削除に失敗しました", + }, + state: { + backlog: "バックログ", + unstarted: "未開始", + started: "開始済み", + completed: "完了", + cancelled: "キャンセル", + }, + sort: { + manual: "手動", + name: "名前", + created_at: "作成日", + members_length: "メンバー数", + }, + scope: { + my_projects: "自分のプロジェクト", + archived_projects: "アーカイブ済み", + }, + common: { + months_count: "{months, plural, one{# ヶ月} other{# ヶ月}}", + }, + empty_state: { + general: { + title: "アクティブなプロジェクトがありません", + description: + "各プロジェクトは目標指向の作業の親として考えてください。プロジェクトには作業、サイクル、モジュールが含まれ、同僚と共にその目標の達成を支援します。新しいプロジェクトを作成するか、アーカイブされたプロジェクトをフィルタリングしてください。", + primary_button: { + text: "最初のプロジェクトを開始", + comic: { + title: "Planeではすべてがプロジェクトから始まります", + description: "プロジェクトは製品のロードマップ、マーケティングキャンペーン、新車の発売などになります。", + }, + }, + }, + no_projects: { + title: "プロジェクトがありません", + description: + "作業項目を作成したり作業を管理したりするには、プロジェクトを作成するか、プロジェクトのメンバーになる必要があります。", + primary_button: { + text: "最初のプロジェクトを開始", + comic: { + title: "Planeではすべてがプロジェクトから始まります", + description: "プロジェクトは製品のロードマップ、マーケティングキャンペーン、新車の発売などになります。", + }, + }, + }, + filter: { + title: "一致するプロジェクトがありません", + description: "条件に一致するプロジェクトが見つかりません。\n代わりに新しいプロジェクトを作成してください。", + }, + search: { + description: "条件に一致するプロジェクトが見つかりません。\n代わりに新しいプロジェクトを作成してください。", + }, + }, + }, + workspace_views: { + add_view: "ビューを追加", + empty_state: { + "all-issues": { + title: "プロジェクトに作業項目がありません", + description: "最初のプロジェクトが完了しました!次は、作業を追跡可能な作業項目に分割しましょう。始めましょう!", + primary_button: { + text: "新しい作業項目を作成", + }, + }, + assigned: { + title: "作業項目がまだありません", + description: "あなたに割り当てられた作業項目をここで追跡できます。", + primary_button: { + text: "新しい作業項目を作成", + }, + }, + created: { + title: "作業項目がまだありません", + description: "あなたが作成したすべての作業項目がここに表示され、直接追跡できます。", + primary_button: { + text: "新しい作業項目を作成", + }, + }, + subscribed: { + title: "作業項目がまだありません", + description: "興味のある作業項目を購読して、ここですべてを追跡できます。", + }, + "custom-view": { + title: "作業項目がまだありません", + description: "フィルターに該当する作業項目をここで追跡できます。", + }, + }, + }, + workspace_settings: { + label: "ワークスペース設定", + page_label: "{workspace} - 一般設定", + key_created: "キーが作成されました", + copy_key: + "このシークレットキーをコピーしてPlaneページに保存してください。閉じた後はこのキーを見ることができません。キーを含むCSVファイルがダウンロードされました。", + token_copied: "トークンがクリップボードにコピーされました。", + settings: { + general: { + title: "一般", + upload_logo: "ロゴをアップロード", + edit_logo: "ロゴを編集", + name: "ワークスペース名", + company_size: "会社の規模", + url: "ワークスペースURL", + update_workspace: "ワークスペースを更新", + delete_workspace: "このワークスペースを削除", + delete_workspace_description: + "ワークスペースを削除すると、そのワークスペース内のすべてのデータとリソースが完全に削除され、復元することはできません。", + delete_btn: "このワークスペースを削除", + delete_modal: { + title: "このワークスペースを削除してもよろしいですか?", + description: "有料プランの無料トライアルが有効です。続行するには、まずトライアルをキャンセルしてください。", + dismiss: "閉じる", + cancel: "トライアルをキャンセル", + success_title: "ワークスペースが削除されました。", + success_message: "まもなくプロフィールページに移動します。", + error_title: "操作に失敗しました。", + error_message: "もう一度お試しください。", + }, + errors: { + name: { + required: "名前は必須です", + max_length: "ワークスペース名は80文字を超えることはできません", + }, + company_size: { + required: "会社の規模は必須です", + select_a_range: "組織の規模を選択", + }, + }, + }, + members: { + title: "メンバー", + add_member: "メンバーを追加", + pending_invites: "保留中の招待", + invitations_sent_successfully: "招待が正常に送信されました", + leave_confirmation: + "ワークスペースから退出してもよろしいですか?このワークスペースにアクセスできなくなります。この操作は取り消せません。", + details: { + full_name: "フルネーム", + display_name: "表示名", + email_address: "メールアドレス", + account_type: "アカウントタイプ", + authentication: "認証", + joining_date: "参加日", + }, + modal: { + title: "共同作業者を招待", + description: "ワークスペースに共同作業者を招待します。", + button: "招待を送信", + button_loading: "招待を送信中", + placeholder: "name@company.com", + errors: { + required: "招待するにはメールアドレスが必要です。", + invalid: "メールアドレスが無効です", + }, + }, + }, + billing_and_plans: { + title: "請求とプラン", + current_plan: "現在のプラン", + free_plan: "現在フリープランを使用中です", + view_plans: "プランを表示", + }, + exports: { + title: "エクスポート", + exporting: "エクスポート中", + previous_exports: "過去のエクスポート", + export_separate_files: "データを個別のファイルにエクスポート", + modal: { + title: "エクスポート先", + toasts: { + success: { + title: "エクスポート成功", + message: "エクスポートした{entity}は過去のエクスポートからダウンロードできます。", + }, + error: { + title: "エクスポート失敗", + message: "エクスポートに失敗しました。もう一度お試しください。", + }, + }, + }, + }, + webhooks: { + title: "Webhook", + add_webhook: "Webhookを追加", + modal: { + title: "Webhookを作成", + details: "Webhook詳細", + payload: "ペイロードURL", + question: "このWebhookをトリガーするイベントを選択してください", + error: "URLは必須です", + }, + secret_key: { + title: "シークレットキー", + message: "Webhookペイロードにサインインするためのトークンを生成", + }, + options: { + all: "すべてを送信", + individual: "個別のイベントを選択", + }, + toasts: { + created: { + title: "Webhook作成完了", + message: "Webhookが正常に作成されました", + }, + not_created: { + title: "Webhook作成失敗", + message: "Webhookを作成できませんでした", + }, + updated: { + title: "Webhook更新完了", + message: "Webhookが正常に更新されました", + }, + not_updated: { + title: "Webhook更新失敗", + message: "Webhookを更新できませんでした", + }, + removed: { + title: "Webhook削除完了", + message: "Webhookが正常に削除されました", + }, + not_removed: { + title: "Webhook削除失敗", + message: "Webhookを削除できませんでした", + }, + secret_key_copied: { + message: "シークレットキーがクリップボードにコピーされました。", + }, + secret_key_not_copied: { + message: "シークレットキーのコピー中にエラーが発生しました。", + }, + }, + }, + api_tokens: { + title: "APIトークン", + add_token: "APIトークンを追加", + create_token: "トークンを作成", + never_expires: "無期限", + generate_token: "トークンを生成", + generating: "生成中", + delete: { + title: "APIトークンを削除", + description: + "このトークンを使用しているアプリケーションはPlaneのデータにアクセスできなくなります。この操作は取り消せません。", + success: { + title: "成功!", + message: "APIトークンが正常に削除されました", + }, + error: { + title: "エラー!", + message: "APIトークンを削除できませんでした", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "APIトークンがまだ作成されていません", + description: + "PlaneのAPIを使用して、Planeのデータを外部システムと統合できます。トークンを作成して始めましょう。", + }, + webhooks: { + title: "Webhookが追加されていません", + description: "Webhookを作成してリアルタイムの更新を受け取り、アクションを自動化します。", + }, + exports: { + title: "エクスポートがまだありません", + description: "エクスポートすると、参照用のコピーがここに保存されます。", + }, + imports: { + title: "インポートがまだありません", + description: "過去のインポートをここで確認し、ダウンロードできます。", + }, + }, + }, + profile: { + label: "プロフィール", + page_label: "あなたの作業", + work: "作業", + details: { + joined_on: "参加日", + time_zone: "タイムゾーン", + }, + stats: { + workload: "作業負荷", + overview: "概要", + created: "作成した作業項目", + assigned: "割り当てられた作業項目", + subscribed: "購読中の作業項目", + state_distribution: { + title: "状態別作業項目", + empty: "より良い分析のために、作業項目を作成してグラフで状態別に表示します。", + }, + priority_distribution: { + title: "優先度別作業項目", + empty: "より良い分析のために、作業項目を作成してグラフで優先度別に表示します。", + }, + recent_activity: { + title: "最近のアクティビティ", + empty: "データが見つかりませんでした。入力内容を確認してください", + button: "今日のアクティビティをダウンロード", + button_loading: "ダウンロード中", + }, + }, + actions: { + profile: "プロフィール", + security: "セキュリティ", + activity: "アクティビティ", + appearance: "外観", + notifications: "通知", + }, + tabs: { + summary: "サマリー", + assigned: "割り当て済み", + created: "作成済み", + subscribed: "購読中", + activity: "アクティビティ", + }, + empty_state: { + activity: { + title: "アクティビティがまだありません", + description: + "新しい作業項目を作成して始めましょう!詳細とプロパティを追加してください。Planeをさらに探索してアクティビティを確認しましょう。", + }, + assigned: { + title: "割り当てられた作業項目がありません", + description: "あなたに割り当てられた作業項目をここで追跡できます。", + }, + created: { + title: "作業項目がまだありません", + description: "あなたが作成したすべての作業項目がここに表示され、直接追跡できます。", + }, + subscribed: { + title: "作業項目がまだありません", + description: "興味のある作業項目を購読して、ここですべてを追跡できます。", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "プロジェクトIDを入力", + please_select_a_timezone: "タイムゾーンを選択してください", + archive_project: { + title: "プロジェクトをアーカイブ", + description: + "プロジェクトをアーカイブすると、サイドナビゲーションから非表示になりますが、プロジェクトページからアクセスすることはできます。プロジェクトを復元または削除することもできます。", + button: "プロジェクトをアーカイブ", + }, + delete_project: { + title: "プロジェクトを削除", + description: + "プロジェクトを削除すると、そのプロジェクト内のすべてのデータとリソースが永久に削除され、復元できなくなります。", + button: "プロジェクトを削除", + }, + toast: { + success: "プロジェクトが正常に更新されました", + error: "プロジェクトを更新できませんでした。もう一度お試しください。", + }, + }, + members: { + label: "メンバー", + project_lead: "プロジェクトリーダー", + default_assignee: "デフォルトの担当者", + guest_super_permissions: { + title: "ゲストユーザーにすべての作業項目の閲覧権限を付与:", + sub_heading: "これにより、ゲストはプロジェクトのすべての作業項目を閲覧できるようになります。", + }, + invite_members: { + title: "メンバーを招待", + sub_heading: "プロジェクトに参加するメンバーを招待します。", + select_co_worker: "共同作業者を選択", + }, + }, + states: { + describe_this_state_for_your_members: "このステータスについてメンバーに説明してください。", + empty_state: { + title: "{groupKey}グループのステータスがありません", + description: "新しいステータスを作成してください", + }, + }, + labels: { + label_title: "ラベルタイトル", + label_title_is_required: "ラベルタイトルは必須です", + label_max_char: "ラベル名は255文字を超えることはできません", + toast: { + error: "ラベルの更新中にエラーが発生しました", + }, + }, + estimates: { + label: "見積もり", + title: "プロジェクトの見積もりを有効にする", + description: "チームの複雑さと作業負荷を伝えるのに役立ちます。", + no_estimate: "見積もりなし", + new: "新しい見積もりシステム", + create: { + custom: "カスタム", + start_from_scratch: "最初から開始", + choose_template: "テンプレートを選択", + choose_estimate_system: "見積もりシステムを選択", + enter_estimate_point: "見積もりを入力", + step: "ステップ {step} の {total}", + label: "見積もりを作成", + }, + toasts: { + created: { + success: { + title: "見積もりを作成", + message: "見積もりが正常に作成されました", + }, + error: { + title: "見積もり作成に失敗", + message: "新しい見積もりを作成できませんでした。もう一度お試しください。", + }, + }, + updated: { + success: { + title: "見積もりを更新", + message: "プロジェクトの見積もりが更新されました。", + }, + error: { + title: "見積もり更新に失敗", + message: "見積もりを更新できませんでした。もう一度お試しください", + }, + }, + enabled: { + success: { + title: "成功!", + message: "見積もりが有効になりました。", + }, + }, + disabled: { + success: { + title: "成功!", + message: "見積もりが無効になりました。", + }, + error: { + title: "エラー!", + message: "見積もりを無効にできませんでした。もう一度お試しください", + }, + }, + }, + validation: { + min_length: "見積もりは0より大きい必要があります。", + unable_to_process: "リクエストを処理できません。もう一度お試しください。", + numeric: "見積もりは数値である必要があります。", + character: "見積もりは文字値である必要があります。", + empty: "見積もり値は空にできません。", + already_exists: "見積もり値は既に存在します。", + unsaved_changes: "未保存の変更があります。完了をクリックする前に保存してください", + remove_empty: "見積もりは空にできません。各フィールドに値を入力するか、値がないフィールドを削除してください。", + }, + systems: { + points: { + label: "ポイント", + fibonacci: "フィボナッチ", + linear: "リニア", + squares: "二乗", + custom: "カスタム", + }, + categories: { + label: "カテゴリー", + t_shirt_sizes: "Tシャツサイズ", + easy_to_hard: "簡単から難しい", + custom: "カスタム", + }, + time: { + label: "時間", + hours: "時間", + }, + }, + }, + automations: { + label: "自動化", + "auto-archive": { + title: "完了した作業項目を自動的にアーカイブ", + description: "Planeは完了またはキャンセルされた作業項目を自動的にアーカイブします。", + duration: "閉じられた作業項目を自動的にアーカイブ", + }, + "auto-close": { + title: "作業項目を自動的に閉じる", + description: "Planeは完了またはキャンセルされていない作業項目を自動的に閉じます。", + duration: "非アクティブな作業項目を自動的に閉じる", + auto_close_status: "自動クローズステータス", + }, + }, + empty_state: { + labels: { + title: "ラベルがまだありません", + description: "プロジェクトの作業項目を整理してフィルタリングするためのラベルを作成します。", + }, + estimates: { + title: "見積もりシステムがまだありません", + description: "作業項目ごとの作業量を伝えるための見積もりセットを作成します。", + primary_button: "見積もりシステムを追加", + }, + }, + }, + project_cycles: { + add_cycle: "サイクルを追加", + more_details: "詳細情報", + cycle: "サイクル", + update_cycle: "サイクルを更新", + create_cycle: "サイクルを作成", + no_matching_cycles: "一致するサイクルがありません", + remove_filters_to_see_all_cycles: "すべてのサイクルを表示するにはフィルターを解除してください", + remove_search_criteria_to_see_all_cycles: "すべてのサイクルを表示するには検索条件を解除してください", + only_completed_cycles_can_be_archived: "完了したサイクルのみアーカイブできます", + start_date: "開始日", + end_date: "終了日", + in_your_timezone: "あなたのタイムゾーン", + transfer_work_items: "作業項目を転送 {count}", + date_range: "日付範囲", + add_date: "日付を追加", + active_cycle: { + label: "アクティブなサイクル", + progress: "進捗", + chart: "バーンダウンチャート", + priority_issue: "優先作業項目", + assignees: "担当者", + issue_burndown: "作業項目バーンダウン", + ideal: "理想", + current: "現在", + labels: "ラベル", + }, + upcoming_cycle: { + label: "今後のサイクル", + }, + completed_cycle: { + label: "完了したサイクル", + }, + status: { + days_left: "残り日数", + completed: "完了", + yet_to_start: "開始前", + in_progress: "進行中", + draft: "下書き", + }, + action: { + restore: { + title: "サイクルを復元", + success: { + title: "サイクルが復元されました", + description: "サイクルが復元されました。", + }, + failed: { + title: "サイクルの復元に失敗", + description: "サイクルを復元できませんでした。もう一度お試しください。", + }, + }, + favorite: { + loading: "お気に入りにサイクルを追加中", + success: { + description: "サイクルがお気に入りに追加されました。", + title: "成功!", + }, + failed: { + description: "サイクルをお気に入りに追加できませんでした。もう一度お試しください。", + title: "エラー!", + }, + }, + unfavorite: { + loading: "お気に入りからサイクルを削除中", + success: { + description: "サイクルがお気に入りから削除されました。", + title: "成功!", + }, + failed: { + description: "サイクルをお気に入りから削除できませんでした。もう一度お試しください。", + title: "エラー!", + }, + }, + update: { + loading: "サイクルを更新中", + success: { + description: "サイクルが正常に更新されました。", + title: "成功!", + }, + failed: { + description: "サイクルの更新中にエラーが発生しました。もう一度お試しください。", + title: "エラー!", + }, + error: { + already_exists: + "指定した日付のサイクルは既に存在します。下書きサイクルを作成する場合は、両方の日付を削除してください。", + }, + }, + }, + empty_state: { + general: { + title: "サイクルで作業をグループ化してタイムボックス化します。", + description: + "作業をタイムボックス化された単位に分割し、プロジェクトの期限から逆算して日付を設定し、チームとして具体的な進捗を作ります。", + primary_button: { + text: "最初のサイクルを設定", + comic: { + title: "サイクルは繰り返されるタイムボックスです。", + description: "スプリント、イテレーション、または週次や隔週の作業追跡に使用するその他の用語がサイクルです。", + }, + }, + }, + no_issues: { + title: "サイクルに作業項目が追加されていません", + description: "このサイクル内でタイムボックス化して提供したい作業項目を追加または作成します", + primary_button: { + text: "新しい作業項目を作成", + }, + secondary_button: { + text: "既存の作業項目を追加", + }, + }, + completed_no_issues: { + title: "サイクルに作業項目がありません", + description: + "サイクルに作業項目がありません。作業項目は転送されたか非表示になっています。非表示の作業項目がある場合は、表示プロパティを更新して確認してください。", + }, + active: { + title: "アクティブなサイクルがありません", + description: + "アクティブなサイクルには、その期間内に今日の日付が含まれるものが該当します。アクティブなサイクルの進捗と詳細をここで確認できます。", + }, + archived: { + title: "アーカイブされたサイクルがまだありません", + description: + "プロジェクトを整理するために、完了したサイクルをアーカイブします。アーカイブ後はここで確認できます。", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "作業項目を作成して誰かに割り当てましょう。自分自身でも構いません", + description: + "作業項目は、仕事、タスク、作業、またはJTBD(私たちが好む用語)と考えてください。作業項目とそのサブ作業項目は通常、チームメンバーに割り当てられる時間ベースのアクションアイテムです。チームは作業項目を作成、割り当て、完了することでプロジェクトの目標に向かって進みます。", + primary_button: { + text: "最初の作業項目を作成", + comic: { + title: "作業項目はPlaneの構成要素です。", + description: + "PlaneのUIの再設計、会社のリブランド、新しい燃料噴射システムの立ち上げなどは、サブ作業項目を持つ可能性が高い作業項目の例です。", + }, + }, + }, + no_archived_issues: { + title: "アーカイブされた作業項目がまだありません", + description: + "手動または自動化を通じて、完了またはキャンセルされた作業項目をアーカイブできます。アーカイブ後はここで確認できます。", + primary_button: { + text: "自動化を設定", + }, + }, + issues_empty_filter: { + title: "適用されたフィルターに一致する作業項目が見つかりません", + secondary_button: { + text: "すべてのフィルターをクリア", + }, + }, + }, + }, + project_module: { + add_module: "モジュールを追加", + update_module: "モジュールを更新", + create_module: "モジュールを作成", + archive_module: "モジュールをアーカイブ", + restore_module: "モジュールを復元", + delete_module: "モジュールを削除", + empty_state: { + general: { + title: "プロジェクトのマイルストーンをモジュールにマッピングし、集計された作業を簡単に追跡できます。", + description: + "論理的で階層的な親に属する作業項目のグループがモジュールを形成します。プロジェクトのマイルストーンで作業を追跡する方法として考えてください。期間や期限があり、マイルストーンまでの進捗状況を確認できる分析機能も備えています。", + primary_button: { + text: "最初のモジュールを作成", + comic: { + title: "モジュールは階層的に作業をグループ化するのに役立ちます。", + description: "カートモジュール、シャーシモジュール、倉庫モジュールは、このグループ化の良い例です。", + }, + }, + }, + no_issues: { + title: "モジュールに作業項目がありません", + description: "このモジュールの一部として達成したい作業項目を作成または追加してください", + primary_button: { + text: "新しい作業項目を作成", + }, + secondary_button: { + text: "既存の作業項目を追加", + }, + }, + archived: { + title: "アーカイブされたモジュールがまだありません", + description: + "プロジェクトを整理するために、完了またはキャンセルされたモジュールをアーカイブします。アーカイブ後はここで確認できます。", + }, + sidebar: { + in_active: "このモジュールはまだアクティブではありません。", + invalid_date: "無効な日付です。有効な日付を入力してください。", + }, + }, + quick_actions: { + archive_module: "モジュールをアーカイブ", + archive_module_description: "完了またはキャンセルされた\nモジュールのみアーカイブできます。", + delete_module: "モジュールを削除", + }, + toast: { + copy: { + success: "モジュールのリンクがクリップボードにコピーされました", + }, + delete: { + success: "モジュールが正常に削除されました", + error: "モジュールを削除できませんでした", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "プロジェクトのフィルター付きビューを保存します。必要な数だけ作成できます", + description: + "ビューは、頻繁に使用するフィルターや簡単にアクセスしたいフィルターの集合です。プロジェクト内のすべての同僚が全員のビューを確認でき、自分のニーズに最も合うものを選択できます。", + primary_button: { + text: "最初のビューを作成", + comic: { + title: "ビューは作業項目のプロパティの上で機能します。", + description: "ここから、必要に応じて多くのプロパティやフィルターを使用してビューを作成できます。", + }, + }, + }, + filter: { + title: "一致するビューがありません", + description: "検索条件に一致するビューがありません。\n代わりに新しいビューを作成してください。", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "メモ、ドキュメント、または完全なナレッジベースを作成しましょう。PlaneのAIアシスタントGalileoが開始をサポートします", + description: + "ページはPlaneの思考整理スペースです。会議のメモを取り、簡単に整形し、作業項目を埋め込み、コンポーネントライブラリを使用してレイアウトし、すべてをプロジェクトのコンテキストに保存できます。ドキュメントを素早く作成するには、ショートカットまたはボタンのクリックでPlaneのAI、Galileoを呼び出してください。", + primary_button: { + text: "最初のページを作成", + }, + }, + private: { + title: "プライベートページがまだありません", + description: + "プライベートな考えをここに保存しましょう。共有する準備ができたら、チームはクリック一つで共有できます。", + primary_button: { + text: "最初のページを作成", + }, + }, + public: { + title: "公開ページがまだありません", + description: "プロジェクト内の全員と共有されているページをここで確認できます。", + primary_button: { + text: "最初のページを作成", + }, + }, + archived: { + title: "アーカイブされたページがまだありません", + description: "注目していないページをアーカイブします。必要な時にここでアクセスできます。", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "結果が見つかりません", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "一致する作業項目が見つかりません", + }, + no_issues: { + title: "作業項目が見つかりません", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "コメントがまだありません", + description: "コメントは作業項目のディスカッションとフォローアップのスペースとして使用できます", + }, + }, + }, + notification: { + label: "受信トレイ", + page_label: "{workspace} - 受信トレイ", + options: { + mark_all_as_read: "すべて既読にする", + mark_read: "既読にする", + mark_unread: "未読にする", + refresh: "更新", + filters: "受信トレイフィルター", + show_unread: "未読を表示", + show_snoozed: "スヌーズを表示", + show_archived: "アーカイブを表示", + mark_archive: "アーカイブ", + mark_unarchive: "アーカイブ解除", + mark_snooze: "スヌーズ", + mark_unsnooze: "スヌーズ解除", + }, + toasts: { + read: "通知を既読にしました", + unread: "通知を未読にしました", + archived: "通知をアーカイブしました", + unarchived: "通知をアーカイブ解除しました", + snoozed: "通知をスヌーズしました", + unsnoozed: "通知のスヌーズを解除しました", + }, + empty_state: { + detail: { + title: "詳細を表示するには選択してください。", + }, + all: { + title: "割り当てられた作業項目がありません", + description: "あなたに割り当てられた作業項目の更新が\nここに表示されます", + }, + mentions: { + title: "割り当てられた作業項目がありません", + description: "あなたに割り当てられた作業項目の更新が\nここに表示されます", + }, + }, + tabs: { + all: "すべて", + mentions: "メンション", + }, + filter: { + assigned: "自分に割り当て", + created: "自分が作成", + subscribed: "自分が購読", + }, + snooze: { + "1_day": "1日", + "3_days": "3日", + "5_days": "5日", + "1_week": "1週間", + "2_weeks": "2週間", + custom: "カスタム", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "サイクルの進捗を表示するには作業項目を追加してください", + }, + chart: { + title: "バーンダウンチャートを表示するには作業項目を追加してください。", + }, + priority_issue: { + title: "サイクルで取り組まれている優先度の高い作業項目を一目で確認できます。", + }, + assignee: { + title: "担当者別の作業の内訳を確認するには、作業項目に担当者を追加してください。", + }, + label: { + title: "ラベル別の作業の内訳を確認するには、作業項目にラベルを追加してください。", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "インテークがプロジェクトで有効になっていません。", + description: + "インテークは、プロジェクトへの受信リクエストを管理し、ワークフローに作業項目として追加するのに役立ちます。リクエストを管理するには、プロジェクト設定でインテークを有効にしてください。", + primary_button: { + text: "機能を管理", + }, + }, + cycle: { + title: "サイクルがこのプロジェクトで有効になっていません。", + description: + "時間枠で作業を分割し、プロジェクトの期限から逆算して日付を設定し、チームとして具体的な進捗を作ります。サイクルを使用するには、プロジェクトでサイクル機能を有効にしてください。", + primary_button: { + text: "機能を管理", + }, + }, + module: { + title: "モジュールがプロジェクトで有効になっていません。", + description: + "モジュールはプロジェクトの構成要素です。モジュールを使用するには、プロジェクト設定でモジュールを有効にしてください。", + primary_button: { + text: "機能を管理", + }, + }, + page: { + title: "ページがプロジェクトで有効になっていません。", + description: + "ページはプロジェクトの構成要素です。ページを使用するには、プロジェクト設定でページを有効にしてください。", + primary_button: { + text: "機能を管理", + }, + }, + view: { + title: "ビューがプロジェクトで有効になっていません。", + description: + "ビューはプロジェクトの構成要素です。ビューを使用するには、プロジェクト設定でビューを有効にしてください。", + primary_button: { + text: "機能を管理", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "作業項目の下書き", + empty_state: { + title: "書きかけの作業項目、そしてまもなくコメントがここに表示されます。", + description: "試してみるには、作業項目の追加を開始して途中で中断するか、以下で最初の下書きを作成してください。😉", + primary_button: { + text: "最初の下書きを作成", + }, + }, + delete_modal: { + title: "下書きを削除", + description: "この下書きを削除してもよろしいですか?この操作は取り消せません。", + }, + toasts: { + created: { + success: "下書きを作成しました", + error: "作業項目を作成できませんでした。もう一度お試しください。", + }, + deleted: { + success: "下書きを削除しました", + }, + }, + }, + stickies: { + title: "あなたの付箋", + placeholder: "ここをクリックして入力", + all: "すべての付箋", + "no-data": + "アイデアをメモしたり、ひらめきをキャプチャしたり、閃きを記録したりしましょう。付箋を追加して始めましょう。", + add: "付箋を追加", + search_placeholder: "タイトルで検索", + delete: "付箋を削除", + delete_confirmation: "この付箋を削除してもよろしいですか?", + empty_state: { + simple: + "アイデアをメモしたり、ひらめきをキャプチャしたり、閃きを記録したりしましょう。付箋を追加して始めましょう。", + general: { + title: "付箋は、その場で素早く取るメモやToDoです。", + description: "いつでもどこからでもアクセスできる付箋を作成して、思考やアイデアを簡単にキャプチャできます。", + primary_button: { + text: "付箋を追加", + }, + }, + search: { + title: "付箋に一致するものがありません。", + description: "別の用語を試すか、検索が正しいと\n確信がある場合はお知らせください。", + primary_button: { + text: "付箋を追加", + }, + }, + }, + toasts: { + errors: { + wrong_name: "付箋の名前は100文字を超えることはできません。", + already_exists: "説明のない付箋がすでに存在します", + }, + created: { + title: "付箋を作成しました", + message: "付箋が正常に作成されました", + }, + not_created: { + title: "付箋を作成できませんでした", + message: "付箋を作成できませんでした", + }, + updated: { + title: "付箋を更新しました", + message: "付箋が正常に更新されました", + }, + not_updated: { + title: "付箋を更新できませんでした", + message: "付箋を更新できませんでした", + }, + removed: { + title: "付箋を削除しました", + message: "付箋が正常に削除されました", + }, + not_removed: { + title: "付箋を削除できませんでした", + message: "付箋を削除できませんでした", + }, + }, + }, + role_details: { + guest: { + title: "ゲスト", + description: "組織の外部メンバーをゲストとして招待できます。", + }, + member: { + title: "メンバー", + description: "プロジェクト、サイクル、モジュール内のエンティティの読み取り、書き込み、編集、削除が可能", + }, + admin: { + title: "管理者", + description: "ワークスペース内のすべての権限が有効。", + }, + }, + user_roles: { + product_or_project_manager: "プロダクト/プロジェクトマネージャー", + development_or_engineering: "開発/エンジニアリング", + founder_or_executive: "創業者/エグゼクティブ", + freelancer_or_consultant: "フリーランス/コンサルタント", + marketing_or_growth: "マーケティング/グロース", + sales_or_business_development: "営業/ビジネス開発", + support_or_operations: "サポート/オペレーション", + student_or_professor: "学生/教授", + human_resources: "人事", + other: "その他", + }, + importer: { + github: { + title: "GitHub", + description: "GitHubリポジトリから作業項目をインポートして同期します。", + }, + jira: { + title: "Jira", + description: "Jiraプロジェクトとエピックから作業項目とエピックをインポートします。", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "作業項目をCSVファイルにエクスポートします。", + short_description: "CSVとしてエクスポート", + }, + excel: { + title: "Excel", + description: "作業項目をExcelファイルにエクスポートします。", + short_description: "Excelとしてエクスポート", + }, + xlsx: { + title: "Excel", + description: "作業項目をExcelファイルにエクスポートします。", + short_description: "Excelとしてエクスポート", + }, + json: { + title: "JSON", + description: "作業項目をJSONファイルにエクスポートします。", + short_description: "JSONとしてエクスポート", + }, + }, + default_global_view: { + all_issues: "すべての作業項目", + assigned: "割り当て済み", + created: "作成済み", + subscribed: "購読中", + }, + themes: { + theme_options: { + system_preference: { + label: "システム設定", + }, + light: { + label: "ライト", + }, + dark: { + label: "ダーク", + }, + light_contrast: { + label: "ライトハイコントラスト", + }, + dark_contrast: { + label: "ダークハイコントラスト", + }, + custom: { + label: "カスタムテーマ", + }, + }, + }, + project_modules: { + status: { + backlog: "バックログ", + planned: "計画済み", + in_progress: "進行中", + paused: "一時停止", + completed: "完了", + cancelled: "キャンセル", + }, + layout: { + list: "リスト表示", + board: "ギャラリー表示", + timeline: "タイムライン表示", + }, + order_by: { + name: "名前", + progress: "進捗", + issues: "作業項目数", + due_date: "期限", + created_at: "作成日", + manual: "手動", + }, + }, + cycle: { + label: "{count, plural, one {サイクル} other {サイクル}}", + no_cycle: "サイクルなし", + }, + module: { + label: "{count, plural, one {モジュール} other {モジュール}}", + no_module: "モジュールなし", + }, + description_versions: { + last_edited_by: "最終編集者", + previously_edited_by: "以前の編集者", + edited_by: "編集者", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Planeが起動しませんでした。これは1つまたは複数のPlaneサービスの起動に失敗したことが原因である可能性があります。", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "setup.shとDockerログからView Logsを選択して確認してください。", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "アウトライン", + empty_state: { + title: "見出しがありません", + description: "このページに見出しを追加してここで確認しましょう。", + }, + }, + info: { + label: "情報", + document_info: { + words: "単語数", + characters: "文字数", + paragraphs: "段落数", + read_time: "読了時間", + }, + actors_info: { + edited_by: "編集者", + created_by: "作成者", + }, + version_history: { + label: "バージョン履歴", + current_version: "現在のバージョン", + }, + }, + assets: { + label: "アセット", + download_button: "ダウンロード", + empty_state: { + title: "画像がありません", + description: "画像を追加してここで確認してください。", + }, + }, + }, + open_button: "ナビゲーションパネルを開く", + close_button: "ナビゲーションパネルを閉じる", + outline_floating_button: "アウトラインを開く", + }, +} as const; diff --git a/packages/i18n/src/locales/ko/accessibility.json b/packages/i18n/src/locales/ko/accessibility.json deleted file mode 100644 index 298a7e122d..0000000000 --- a/packages/i18n/src/locales/ko/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "워크스페이스 로고", - "open_workspace_switcher": "워크스페이스 전환기 열기", - "open_user_menu": "사용자 메뉴 열기", - "open_command_palette": "명령 팔레트 열기", - "open_extended_sidebar": "확장된 사이드바 열기", - "close_extended_sidebar": "확장된 사이드바 닫기", - "create_favorites_folder": "즐겨찾기 폴더 생성", - "open_folder": "폴더 열기", - "close_folder": "폴더 닫기", - "open_favorites_menu": "즐겨찾기 메뉴 열기", - "close_favorites_menu": "즐겨찾기 메뉴 닫기", - "enter_folder_name": "폴더 이름 입력", - "create_new_project": "새 프로젝트 생성", - "open_projects_menu": "프로젝트 메뉴 열기", - "close_projects_menu": "프로젝트 메뉴 닫기", - "toggle_quick_actions_menu": "빠른 작업 메뉴 토글", - "open_project_menu": "프로젝트 메뉴 열기", - "close_project_menu": "프로젝트 메뉴 닫기", - "collapse_sidebar": "사이드바 축소", - "expand_sidebar": "사이드바 확장", - "edition_badge": "유료 플랜 모달 열기" - }, - "auth_forms": { - "clear_email": "이메일 지우기", - "show_password": "비밀번호 표시", - "hide_password": "비밀번호 숨기기", - "close_alert": "알림 닫기", - "close_popover": "팝오버 닫기" - } - } -} diff --git a/packages/i18n/src/locales/ko/accessibility.ts b/packages/i18n/src/locales/ko/accessibility.ts new file mode 100644 index 0000000000..6c3ba882c8 --- /dev/null +++ b/packages/i18n/src/locales/ko/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "워크스페이스 로고", + open_workspace_switcher: "워크스페이스 전환기 열기", + open_user_menu: "사용자 메뉴 열기", + open_command_palette: "명령 팔레트 열기", + open_extended_sidebar: "확장된 사이드바 열기", + close_extended_sidebar: "확장된 사이드바 닫기", + create_favorites_folder: "즐겨찾기 폴더 생성", + open_folder: "폴더 열기", + close_folder: "폴더 닫기", + open_favorites_menu: "즐겨찾기 메뉴 열기", + close_favorites_menu: "즐겨찾기 메뉴 닫기", + enter_folder_name: "폴더 이름 입력", + create_new_project: "새 프로젝트 생성", + open_projects_menu: "프로젝트 메뉴 열기", + close_projects_menu: "프로젝트 메뉴 닫기", + toggle_quick_actions_menu: "빠른 작업 메뉴 토글", + open_project_menu: "프로젝트 메뉴 열기", + close_project_menu: "프로젝트 메뉴 닫기", + collapse_sidebar: "사이드바 축소", + expand_sidebar: "사이드바 확장", + edition_badge: "유료 플랜 모달 열기", + }, + auth_forms: { + clear_email: "이메일 지우기", + show_password: "비밀번호 표시", + hide_password: "비밀번호 숨기기", + close_alert: "알림 닫기", + close_popover: "팝오버 닫기", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/ko/editor.json b/packages/i18n/src/locales/ko/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/ko/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/ko/editor.ts b/packages/i18n/src/locales/ko/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/ko/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/ko/translations.json b/packages/i18n/src/locales/ko/translations.json deleted file mode 100644 index 9a86dab612..0000000000 --- a/packages/i18n/src/locales/ko/translations.json +++ /dev/null @@ -1,2535 +0,0 @@ -{ - "sidebar": { - "projects": "프로젝트", - "pages": "페이지", - "new_work_item": "새 작업 항목", - "home": "홈", - "your_work": "나의 작업", - "inbox": "받은 편지함", - "workspace": "작업 공간", - "views": "보기", - "analytics": "분석", - "work_items": "작업 항목", - "cycles": "주기", - "modules": "모듈", - "intake": "접수", - "drafts": "초안", - "favorites": "즐겨찾기", - "pro": "프로", - "upgrade": "업그레이드" - }, - "auth": { - "common": { - "email": { - "label": "이메일", - "placeholder": "name@company.com", - "errors": { - "required": "이메일이 필요합니다", - "invalid": "유효하지 않은 이메일입니다" - } - }, - "password": { - "label": "비밀번호", - "set_password": "비밀번호 설정", - "placeholder": "비밀번호 입력", - "confirm_password": { - "label": "비밀번호 확인", - "placeholder": "비밀번호 확인" - }, - "current_password": { - "label": "현재 비밀번호" - }, - "new_password": { - "label": "새 비밀번호", - "placeholder": "새 비밀번호 입력" - }, - "change_password": { - "label": { - "default": "비밀번호 변경", - "submitting": "비밀번호 변경 중" - } - }, - "errors": { - "match": "비밀번호가 일치하지 않습니다", - "empty": "비밀번호를 입력해주세요", - "length": "비밀번호는 8자 이상이어야 합니다", - "strength": { - "weak": "비밀번호가 약합니다", - "strong": "비밀번호가 강합니다" - } - }, - "submit": "비밀번호 설정", - "toast": { - "change_password": { - "success": { - "title": "성공!", - "message": "비밀번호가 성공적으로 변경되었습니다." - }, - "error": { - "title": "오류!", - "message": "문제가 발생했습니다. 다시 시도해주세요." - } - } - } - }, - "unique_code": { - "label": "고유 코드", - "placeholder": "gets-sets-flys", - "paste_code": "이메일로 전송된 코드를 붙여넣기", - "requesting_new_code": "새 코드 요청 중", - "sending_code": "코드 전송 중" - }, - "already_have_an_account": "이미 계정이 있으신가요?", - "login": "로그인", - "create_account": "계정 만들기", - "new_to_plane": "Plane을 처음 사용하시나요?", - "back_to_sign_in": "로그인으로 돌아가기", - "resend_in": "{seconds}초 후 다시 전송", - "sign_in_with_unique_code": "고유 코드로 로그인", - "forgot_password": "비밀번호를 잊으셨나요?" - }, - "sign_up": { - "header": { - "label": "팀과 함께 작업을 관리하려면 계정을 만드세요.", - "step": { - "email": { - "header": "가입", - "sub_header": "" - }, - "password": { - "header": "가입", - "sub_header": "이메일-비밀번호 조합으로 가입하세요." - }, - "unique_code": { - "header": "가입", - "sub_header": "위 이메일 주소로 전송된 고유 코드로 가입하세요." - } - } - }, - "errors": { - "password": { - "strength": "강력한 비밀번호를 설정하여 진행하세요" - } - } - }, - "sign_in": { - "header": { - "label": "팀과 함께 작업을 관리하려면 로그인하세요.", - "step": { - "email": { - "header": "로그인 또는 가입", - "sub_header": "" - }, - "password": { - "header": "로그인 또는 가입", - "sub_header": "이메일-비밀번호 조합을 사용하여 로그인하세요." - }, - "unique_code": { - "header": "로그인 또는 가입", - "sub_header": "위 이메일 주소로 전송된 고유 코드로 로그인하세요." - } - } - } - }, - "forgot_password": { - "title": "비밀번호 재설정", - "description": "사용자 계정의 인증된 이메일 주소를 입력하면 비밀번호 재설정 링크를 보내드립니다.", - "email_sent": "이메일 주소로 재설정 링크를 보냈습니다", - "send_reset_link": "재설정 링크 보내기", - "errors": { - "smtp_not_enabled": "SMTP가 활성화되지 않았습니다. 비밀번호 재설정 링크를 보낼 수 없습니다." - }, - "toast": { - "success": { - "title": "이메일 전송됨", - "message": "비밀번호 재설정 링크를 확인하세요. 몇 분 내에 나타나지 않으면 스팸 폴더를 확인하세요." - }, - "error": { - "title": "오류!", - "message": "문제가 발생했습니다. 다시 시도해주세요." - } - } - }, - "reset_password": { - "title": "새 비밀번호 설정", - "description": "강력한 비밀번호로 계정을 보호하세요" - }, - "set_password": { - "title": "계정 보호", - "description": "비밀번호 설정은 안전한 로그인을 도와줍니다" - }, - "sign_out": { - "toast": { - "error": { - "title": "오류!", - "message": "로그아웃에 실패했습니다. 다시 시도해주세요." - } - } - } - }, - "submit": "제출", - "cancel": "취소", - "loading": "로딩 중", - "error": "오류", - "success": "성공", - "warning": "경고", - "info": "정보", - "close": "닫기", - "yes": "예", - "no": "아니오", - "ok": "확인", - "name": "이름", - "description": "설명", - "search": "검색", - "add_member": "멤버 추가", - "adding_members": "멤버 추가 중", - "remove_member": "멤버 제거", - "add_members": "멤버 추가", - "adding_member": "멤버 추가 중", - "remove_members": "멤버 제거", - "add": "추가", - "adding": "추가 중", - "remove": "제거", - "add_new": "새로 추가", - "remove_selected": "선택 제거", - "first_name": "이름", - "last_name": "성", - "email": "이메일", - "display_name": "표시 이름", - "role": "역할", - "timezone": "시간대", - "avatar": "아바타", - "cover_image": "커버 이미지", - "password": "비밀번호", - "change_cover": "커버 변경", - "language": "언어", - "saving": "저장 중", - "save_changes": "변경 사항 저장", - "deactivate_account": "계정 비활성화", - "deactivate_account_description": "계정을 비활성화하면 해당 계정 내의 모든 데이터와 리소스가 영구적으로 삭제되며 복구할 수 없습니다.", - "profile_settings": "프로필 설정", - "your_account": "나의 계정", - "security": "보안", - "activity": "활동", - "appearance": "외관", - "notifications": "알림", - "workspaces": "작업 공간", - "create_workspace": "작업 공간 생성", - "invitations": "초대", - "summary": "요약", - "assigned": "할당됨", - "created": "생성됨", - "subscribed": "구독됨", - "you_do_not_have_the_permission_to_access_this_page": "이 페이지에 접근할 권한이 없습니다.", - "something_went_wrong_please_try_again": "문제가 발생했습니다. 다시 시도해주세요.", - "load_more": "더 보기", - "select_or_customize_your_interface_color_scheme": "인터페이스 색상 테마를 선택하거나 사용자 정의하세요.", - "theme": "테마", - "system_preference": "시스템 기본값", - "light": "라이트", - "dark": "다크", - "light_contrast": "라이트 고대비", - "dark_contrast": "다크 고대비", - "custom": "사용자 정의 테마", - "select_your_theme": "테마 선택", - "customize_your_theme": "테마 사용자 정의", - "background_color": "배경 색상", - "text_color": "텍스트 색상", - "primary_color": "기본(테마) 색상", - "sidebar_background_color": "사이드바 배경 색상", - "sidebar_text_color": "사이드바 텍스트 색상", - "set_theme": "테마 설정", - "enter_a_valid_hex_code_of_6_characters": "유효한 6자리 헥스 코드를 입력하세요", - "background_color_is_required": "배경 색상이 필요합니다", - "text_color_is_required": "텍스트 색상이 필요합니다", - "primary_color_is_required": "기본 색상이 필요합니다", - "sidebar_background_color_is_required": "사이드바 배경 색상이 필요합니다", - "sidebar_text_color_is_required": "사이드바 텍스트 색상이 필요합니다", - "updating_theme": "테마 업데이트 중", - "theme_updated_successfully": "테마가 성공적으로 업데이트되었습니다", - "failed_to_update_the_theme": "테마 업데이트에 실패했습니다", - "email_notifications": "이메일 알림", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "구독한 작업 항목에 대한 최신 정보를 유지하세요. 알림을 받으려면 이 기능을 활성화하세요.", - "email_notification_setting_updated_successfully": "이메일 알림 설정이 성공적으로 업데이트되었습니다", - "failed_to_update_email_notification_setting": "이메일 알림 설정 업데이트에 실패했습니다", - "notify_me_when": "다음 경우 알림", - "property_changes": "속성 변경", - "property_changes_description": "작업 항목의 속성(담당자, 우선순위, 추정치 등)이 변경될 때 알림을 받습니다.", - "state_change": "상태 변경", - "state_change_description": "작업 항목이 다른 상태로 이동할 때 알림을 받습니다", - "issue_completed": "작업 항목 완료", - "issue_completed_description": "작업 항목이 완료될 때만 알림을 받습니다", - "comments": "댓글", - "comments_description": "작업 항목에 누군가 댓글을 남길 때 알림을 받습니다", - "mentions": "멘션", - "mentions_description": "댓글이나 설명에서 누군가 나를 멘션할 때만 알림을 받습니다", - "old_password": "기존 비밀번호", - "general_settings": "일반 설정", - "sign_out": "로그아웃", - "signing_out": "로그아웃 중", - "active_cycles": "활성 주기", - "active_cycles_description": "프로젝트 전반의 주기를 모니터링하고, 고우선 작업 항목을 추적하며, 주의가 필요한 주기를 확대합니다.", - "on_demand_snapshots_of_all_your_cycles": "모든 주기의 주문형 스냅샷", - "upgrade": "업그레이드", - "10000_feet_view": "10,000피트 뷰", - "10000_feet_view_description": "모든 프로젝트의 주기를 한 번에 확인할 수 있습니다.", - "get_snapshot_of_each_active_cycle": "각 활성 주기의 스냅샷을 얻으세요.", - "get_snapshot_of_each_active_cycle_description": "모든 활성 주기의 고수준 메트릭을 추적하고, 진행 상태를 확인하며, 마감일에 대한 범위를 파악합니다.", - "compare_burndowns": "버다운 비교", - "compare_burndowns_description": "각 팀의 성과를 모니터링하고 각 주기의 버다운 보고서를 확인합니다.", - "quickly_see_make_or_break_issues": "빠르게 중요한 작업 항목을 확인하세요.", - "quickly_see_make_or_break_issues_description": "각 주기의 고우선 작업 항목을 미리 보고 마감일에 대한 모든 작업 항목을 한 번에 확인합니다.", - "zoom_into_cycles_that_need_attention": "주의가 필요한 주기를 확대하세요.", - "zoom_into_cycles_that_need_attention_description": "기대에 부합하지 않는 주기의 상태를 한 번에 조사합니다.", - "stay_ahead_of_blockers": "차단 요소를 미리 파악하세요.", - "stay_ahead_of_blockers_description": "프로젝트 간의 문제를 파악하고 다른 뷰에서 명확하지 않은 주기 간의 종속성을 확인합니다.", - "analytics": "분석", - "workspace_invites": "작업 공간 초대", - "enter_god_mode": "갓 모드로 전환", - "workspace_logo": "작업 공간 로고", - "new_issue": "새 작업 항목", - "your_work": "나의 작업", - "drafts": "초안", - "projects": "프로젝트", - "views": "보기", - "workspace": "작업 공간", - "archives": "아카이브", - "settings": "설정", - "failed_to_move_favorite": "즐겨찾기 이동 실패", - "favorites": "즐겨찾기", - "no_favorites_yet": "아직 즐겨찾기가 없습니다", - "create_folder": "폴더 생성", - "new_folder": "새 폴더", - "favorite_updated_successfully": "즐겨찾기가 성공적으로 업데이트되었습니다", - "favorite_created_successfully": "즐겨찾기가 성공적으로 생성되었습니다", - "folder_already_exists": "폴더가 이미 존재합니다", - "folder_name_cannot_be_empty": "폴더 이름은 비워둘 수 없습니다", - "something_went_wrong": "문제가 발생했습니다", - "failed_to_reorder_favorite": "즐겨찾기 재정렬 실패", - "favorite_removed_successfully": "즐겨찾기가 성공적으로 제거되었습니다", - "failed_to_create_favorite": "즐겨찾기 생성 실패", - "failed_to_rename_favorite": "즐겨찾기 이름 변경 실패", - "project_link_copied_to_clipboard": "프로젝트 링크가 클립보드에 복사되었습니다", - "link_copied": "링크 복사됨", - "add_project": "프로젝트 추가", - "create_project": "프로젝트 생성", - "failed_to_remove_project_from_favorites": "프로젝트를 즐겨찾기에서 제거하지 못했습니다. 다시 시도해주세요.", - "project_created_successfully": "프로젝트가 성공적으로 생성되었습니다", - "project_created_successfully_description": "프로젝트가 성공적으로 생성되었습니다. 이제 작업 항목을 추가할 수 있습니다.", - "project_name_already_taken": "프로젝트 이름이 이미 사용 중입니다.", - "project_identifier_already_taken": "프로젝트 식별자가 이미 사용 중입니다.", - "project_cover_image_alt": "프로젝트 커버 이미지", - "name_is_required": "이름이 필요합니다", - "title_should_be_less_than_255_characters": "제목은 255자 미만이어야 합니다", - "project_name": "프로젝트 이름", - "project_id_must_be_at_least_1_character": "프로젝트 ID는 최소 1자 이상이어야 합니다", - "project_id_must_be_at_most_5_characters": "프로젝트 ID는 최대 5자 이하여야 합니다", - "project_id": "프로젝트 ID", - "project_id_tooltip_content": "작업 항목을 고유하게 식별하는 데 도움이 됩니다. 최대 5자.", - "description_placeholder": "설명", - "only_alphanumeric_non_latin_characters_allowed": "영숫자 및 비라틴 문자만 허용됩니다.", - "project_id_is_required": "프로젝트 ID가 필요합니다", - "project_id_allowed_char": "영숫자 및 비라틴 문자만 허용됩니다.", - "project_id_min_char": "프로젝트 ID는 최소 1자 이상이어야 합니다", - "project_id_max_char": "프로젝트 ID는 최대 5자 이하여야 합니다", - "project_description_placeholder": "프로젝트 설명 입력", - "select_network": "네트워크 선택", - "lead": "리드", - "date_range": "날짜 범위", - "private": "비공개", - "public": "공개", - "accessible_only_by_invite": "초대에 의해서만 접근 가능", - "anyone_in_the_workspace_except_guests_can_join": "게스트를 제외한 작업 공간의 모든 사람이 참여할 수 있습니다", - "creating": "생성 중", - "creating_project": "프로젝트 생성 중", - "adding_project_to_favorites": "프로젝트를 즐겨찾기에 추가 중", - "project_added_to_favorites": "프로젝트가 즐겨찾기에 추가되었습니다", - "couldnt_add_the_project_to_favorites": "프로젝트를 즐겨찾기에 추가하지 못했습니다. 다시 시도해주세요.", - "removing_project_from_favorites": "프로젝트를 즐겨찾기에서 제거 중", - "project_removed_from_favorites": "프로젝트가 즐겨찾기에서 제거되었습니다", - "couldnt_remove_the_project_from_favorites": "프로젝트를 즐겨찾기에서 제거하지 못했습니다. 다시 시도해주세요.", - "add_to_favorites": "즐겨찾기에 추가", - "remove_from_favorites": "즐겨찾기에서 제거", - "publish_project": "프로젝트 게시", - "publish": "게시", - "copy_link": "링크 복사", - "leave_project": "프로젝트 떠나기", - "join_the_project_to_rearrange": "프로젝트에 참여하여 재정렬", - "drag_to_rearrange": "드래그하여 재정렬", - "congrats": "축하합니다!", - "open_project": "프로젝트 열기", - "issues": "작업 항목", - "cycles": "주기", - "modules": "모듈", - "pages": "페이지", - "intake": "접수", - "time_tracking": "시간 추적", - "work_management": "작업 관리", - "projects_and_issues": "프로젝트 및 작업 항목", - "projects_and_issues_description": "이 프로젝트에서 이들을 켜거나 끕니다.", - "cycles_description": "프로젝트별로 작업 시간을 설정하고 필요에 따라 기간을 조정하세요. 한 주기는 2주일일 수 있고, 다음은 1주일일 수 있습니다.", - "modules_description": "작업을 전담 리더와 담당자가 있는 하위 프로젝트로 구성하세요.", - "views_description": "사용자 정의 정렬, 필터 및 표시 옵션을 저장하거나 팀과 공유하세요.", - "pages_description": "자유 형식의 콘텐츠를 작성하고 편집하세요. 메모, 문서, 무엇이든 가능합니다.", - "intake_description": "비회원이 버그, 피드백, 제안을 공유할 수 있도록 하되, 워크플로우를 방해하지 않도록 합니다.", - "time_tracking_description": "작업 항목 및 프로젝트에 소요된 시간을 기록하세요.", - "work_management_description": "작업 및 프로젝트를 쉽게 관리합니다.", - "documentation": "문서", - "message_support": "지원 메시지", - "contact_sales": "영업 문의", - "hyper_mode": "하이퍼 모드", - "keyboard_shortcuts": "키보드 단축키", - "whats_new": "새로운 기능", - "version": "버전", - "we_are_having_trouble_fetching_the_updates": "업데이트를 가져오는 데 문제가 발생했습니다.", - "our_changelogs": "우리의 변경 로그", - "for_the_latest_updates": "최신 업데이트를 위해", - "please_visit": "방문해주세요", - "docs": "문서", - "full_changelog": "전체 변경 로그", - "support": "지원", - "discord": "디스코드", - "powered_by_plane_pages": "Plane Pages 제공", - "please_select_at_least_one_invitation": "최소 하나의 초대를 선택하세요.", - "please_select_at_least_one_invitation_description": "작업 공간에 참여하려면 최소 하나의 초대를 선택하세요.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "누군가가 작업 공간에 참여하도록 초대했습니다", - "join_a_workspace": "작업 공간 참여", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "누군가가 작업 공간에 참여하도록 초대했습니다", - "join_a_workspace_description": "작업 공간 참여", - "accept_and_join": "수락하고 참여", - "go_home": "홈으로 이동", - "no_pending_invites": "보류 중인 초대 없음", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "누군가가 작업 공간에 초대하면 여기에 표시됩니다", - "back_to_home": "홈으로 돌아가기", - "workspace_name": "작업 공간 이름", - "deactivate_your_account": "계정 비활성화", - "deactivate_your_account_description": "계정을 비활성화하면 작업 항목에 할당될 수 없으며 작업 공간에 대한 청구가 발생하지 않습니다. 계정을 다시 활성화하려면 이 이메일 주소로 작업 공간 초대가 필요합니다.", - "deactivating": "비활성화 중", - "confirm": "확인", - "confirming": "확인 중", - "draft_created": "초안 생성됨", - "issue_created_successfully": "작업 항목이 성공적으로 생성되었습니다", - "draft_creation_failed": "초안 생성 실패", - "issue_creation_failed": "작업 항목 생성 실패", - "draft_issue": "초안 작업 항목", - "issue_updated_successfully": "작업 항목이 성공적으로 업데이트되었습니다", - "issue_could_not_be_updated": "작업 항목을 업데이트할 수 없습니다", - "create_a_draft": "초안 생성", - "save_to_drafts": "초안에 저장", - "save": "저장", - "update": "업데이트", - "updating": "업데이트 중", - "create_new_issue": "새 작업 항목 생성", - "editor_is_not_ready_to_discard_changes": "편집기가 변경 사항을 폐기할 준비가 되지 않았습니다", - "failed_to_move_issue_to_project": "작업 항목을 프로젝트로 이동하지 못했습니다", - "create_more": "더 많이 생성", - "add_to_project": "프로젝트에 추가", - "discard": "폐기", - "duplicate_issue_found": "중복된 작업 항목 발견", - "duplicate_issues_found": "중복된 작업 항목 발견", - "no_matching_results": "일치하는 결과 없음", - "title_is_required": "제목이 필요합니다", - "title": "제목", - "state": "상태", - "priority": "우선순위", - "none": "없음", - "urgent": "긴급", - "high": "높음", - "medium": "중간", - "low": "낮음", - "members": "멤버", - "assignee": "담당자", - "assignees": "담당자", - "you": "나", - "labels": "레이블", - "create_new_label": "새 레이블 생성", - "start_date": "시작 날짜", - "end_date": "종료 날짜", - "due_date": "마감일", - "estimate": "추정", - "change_parent_issue": "상위 작업 항목 변경", - "remove_parent_issue": "상위 작업 항목 제거", - "add_parent": "상위 항목 추가", - "loading_members": "멤버 로딩 중", - "view_link_copied_to_clipboard": "뷰 링크가 클립보드에 복사되었습니다.", - "required": "필수", - "optional": "선택", - "Cancel": "취소", - "edit": "편집", - "archive": "아카이브", - "restore": "복원", - "open_in_new_tab": "새 탭에서 열기", - "delete": "삭제", - "deleting": "삭제 중", - "make_a_copy": "복사본 만들기", - "move_to_project": "프로젝트로 이동", - "good": "좋은", - "morning": "아침", - "afternoon": "오후", - "evening": "저녁", - "show_all": "모두 보기", - "show_less": "간략히 보기", - "no_data_yet": "아직 데이터 없음", - "syncing": "동기화 중", - "add_work_item": "작업 항목 추가", - "advanced_description_placeholder": "명령어를 위해 '/'를 누르세요", - "create_work_item": "작업 항목 생성", - "attachments": "첨부 파일", - "declining": "거절 중", - "declined": "거절됨", - "decline": "거절", - "unassigned": "미할당", - "work_items": "작업 항목", - "add_link": "링크 추가", - "points": "포인트", - "no_assignee": "담당자 없음", - "no_assignees_yet": "아직 담당자 없음", - "no_labels_yet": "아직 레이블 없음", - "ideal": "이상적인", - "current": "현재", - "no_matching_members": "일치하는 멤버 없음", - "leaving": "떠나는 중", - "removing": "제거 중", - "leave": "떠나기", - "refresh": "새로 고침", - "refreshing": "새로 고침 중", - "refresh_status": "상태 새로 고침", - "prev": "이전", - "next": "다음", - "re_generating": "다시 생성 중", - "re_generate": "다시 생성", - "re_generate_key": "키 다시 생성", - "export": "내보내기", - "member": "{count, plural, one{# 멤버} other{# 멤버}}", - "new_password_must_be_different_from_old_password": "새 비밀번호는 이전 비밀번호와 다르게 설정해야 합니다", - "edited": "수정됨", - "bot": "봇", - "project_view": { - "sort_by": { - "created_at": "생성일", - "updated_at": "업데이트일", - "name": "이름" - } - }, - "toast": { - "success": "성공!", - "error": "오류!" - }, - "links": { - "toasts": { - "created": { - "title": "링크 생성됨", - "message": "링크가 성공적으로 생성되었습니다" - }, - "not_created": { - "title": "링크 생성되지 않음", - "message": "링크를 생성할 수 없습니다" - }, - "updated": { - "title": "링크 업데이트됨", - "message": "링크가 성공적으로 업데이트되었습니다" - }, - "not_updated": { - "title": "링크 업데이트되지 않음", - "message": "링크를 업데이트할 수 없습니다" - }, - "removed": { - "title": "링크 제거됨", - "message": "링크가 성공적으로 제거되었습니다" - }, - "not_removed": { - "title": "링크 제거되지 않음", - "message": "링크를 제거할 수 없습니다" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "빠른 시작 가이드", - "not_right_now": "지금은 안 함", - "create_project": { - "title": "프로젝트 생성", - "description": "Plane에서 대부분의 작업은 프로젝트로 시작됩니다.", - "cta": "시작하기" - }, - "invite_team": { - "title": "팀 초대", - "description": "동료와 함께 빌드, 배포 및 관리하세요.", - "cta": "초대하기" - }, - "configure_workspace": { - "title": "작업 공간 설정", - "description": "기능을 켜거나 끄거나 그 이상을 수행하세요.", - "cta": "이 작업 공간 설정" - }, - "personalize_account": { - "title": "Plane을 개인화하세요.", - "description": "사진, 색상 등을 선택하세요.", - "cta": "지금 개인화" - }, - "widgets": { - "title": "위젯이 없으면 조용합니다. 켜세요", - "description": "모든 위젯이 꺼져 있는 것 같습니다. 지금 활성화하여 경험을 향상시키세요!", - "primary_button": { - "text": "위젯 관리" - } - } - }, - "quick_links": { - "empty": "작업과 관련된 링크를 저장하세요.", - "add": "빠른 링크 추가", - "title": "빠른 링크", - "title_plural": "빠른 링크" - }, - "recents": { - "title": "최근 항목", - "empty": { - "project": "최근 방문한 프로젝트가 여기에 표시됩니다.", - "page": "최근 방문한 페이지가 여기에 표시됩니다.", - "issue": "최근 방문한 작업 항목이 여기에 표시됩니다.", - "default": "아직 최근 항목이 없습니다." - }, - "filters": { - "all": "모든", - "projects": "프로젝트", - "pages": "페이지", - "issues": "작업 항목" - } - }, - "new_at_plane": { - "title": "Plane의 새로운 기능" - }, - "quick_tutorial": { - "title": "빠른 튜토리얼" - }, - "widget": { - "reordered_successfully": "위젯이 성공적으로 재정렬되었습니다.", - "reordering_failed": "위젯 재정렬 중 오류가 발생했습니다." - }, - "manage_widgets": "위젯 관리", - "title": "홈", - "star_us_on_github": "GitHub에서 별표" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL이 유효하지 않습니다", - "placeholder": "URL 입력 또는 붙여넣기" - }, - "title": { - "text": "표시 제목", - "placeholder": "이 링크를 어떻게 표시할지 입력하세요" - } - } - }, - "common": { - "all": "모두", - "states": "상태", - "state": "상태", - "state_groups": "상태 그룹", - "state_group": "상태 그룹", - "priorities": "우선순위", - "priority": "우선순위", - "team_project": "팀 프로젝트", - "project": "프로젝트", - "cycle": "주기", - "cycles": "주기", - "module": "모듈", - "modules": "모듈", - "labels": "레이블", - "label": "레이블", - "assignees": "담당자", - "assignee": "담당자", - "created_by": "생성자", - "none": "없음", - "link": "링크", - "estimates": "추정", - "estimate": "추정", - "created_at": "생성일", - "completed_at": "완료일", - "layout": "레이아웃", - "filters": "필터", - "display": "디스플레이", - "load_more": "더 보기", - "activity": "활동", - "analytics": "분석", - "dates": "날짜", - "success": "성공!", - "something_went_wrong": "문제가 발생했습니다", - "error": { - "label": "오류!", - "message": "오류가 발생했습니다. 다시 시도해주세요." - }, - "group_by": "그룹화 기준", - "epic": "에픽", - "epics": "에픽", - "work_item": "작업 항목", - "work_items": "작업 항목", - "sub_work_item": "하위 작업 항목", - "add": "추가", - "warning": "경고", - "updating": "업데이트 중", - "adding": "추가 중", - "update": "업데이트", - "creating": "생성 중", - "create": "생성", - "cancel": "취소", - "description": "설명", - "title": "제목", - "attachment": "첨부 파일", - "general": "일반", - "features": "기능", - "automation": "자동화", - "project_name": "프로젝트 이름", - "project_id": "프로젝트 ID", - "project_timezone": "프로젝트 시간대", - "created_on": "생성일", - "update_project": "프로젝트 업데이트", - "identifier_already_exists": "식별자가 이미 존재합니다", - "add_more": "더 추가", - "defaults": "기본값", - "add_label": "레이블 추가", - "customize_time_range": "시간 범위 사용자 정의", - "loading": "로딩 중", - "attachments": "첨부 파일", - "property": "속성", - "properties": "속성", - "parent": "상위 항목", - "page": "페이지", - "remove": "제거", - "archiving": "아카이브 중", - "archive": "아카이브", - "access": { - "public": "공개", - "private": "비공개" - }, - "done": "완료", - "sub_work_items": "하위 작업 항목", - "comment": "댓글", - "workspace_level": "작업 공간 수준", - "order_by": { - "label": "정렬 기준", - "manual": "수동", - "last_created": "마지막 생성", - "last_updated": "마지막 업데이트", - "start_date": "시작 날짜", - "due_date": "마감일", - "asc": "오름차순", - "desc": "내림차순", - "updated_on": "업데이트일" - }, - "sort": { - "asc": "오름차순", - "desc": "내림차순", - "created_on": "생성일", - "updated_on": "업데이트일" - }, - "comments": "댓글", - "updates": "업데이트", - "clear_all": "모두 지우기", - "copied": "복사됨!", - "link_copied": "링크 복사됨!", - "link_copied_to_clipboard": "링크가 클립보드에 복사되었습니다", - "copied_to_clipboard": "작업 항목 링크가 클립보드에 복사되었습니다", - "is_copied_to_clipboard": "작업 항목이 클립보드에 복사되었습니다", - "no_links_added_yet": "아직 추가된 링크 없음", - "add_link": "링크 추가", - "links": "링크", - "go_to_workspace": "작업 공간으로 이동", - "progress": "진행", - "optional": "선택", - "join": "참여", - "go_back": "뒤로 가기", - "continue": "계속", - "resend": "다시 보내기", - "relations": "관계", - "errors": { - "default": { - "title": "오류!", - "message": "문제가 발생했습니다. 다시 시도해주세요." - }, - "required": "이 필드는 필수입니다", - "entity_required": "{entity}가 필요합니다", - "restricted_entity": "{entity}은(는) 제한되어 있습니다" - }, - "update_link": "링크 업데이트", - "attach": "첨부", - "create_new": "새로 생성", - "add_existing": "기존 항목 추가", - "type_or_paste_a_url": "URL 입력 또는 붙여넣기", - "url_is_invalid": "URL이 유효하지 않습니다", - "display_title": "표시 제목", - "link_title_placeholder": "이 링크를 어떻게 표시할지 입력하세요", - "url": "URL", - "side_peek": "사이드 피크", - "modal": "모달", - "full_screen": "전체 화면", - "close_peek_view": "피크 뷰 닫기", - "toggle_peek_view_layout": "피크 뷰 레이아웃 전환", - "options": "옵션", - "duration": "기간", - "today": "오늘", - "week": "주", - "month": "월", - "quarter": "분기", - "press_for_commands": "명령어를 위해 '/'를 누르세요", - "click_to_add_description": "설명 추가를 위해 클릭하세요", - "search": { - "label": "검색", - "placeholder": "검색어 입력", - "no_matches_found": "일치하는 항목 없음", - "no_matching_results": "일치하는 결과 없음" - }, - "actions": { - "edit": "편집", - "make_a_copy": "복사본 만들기", - "open_in_new_tab": "새 탭에서 열기", - "copy_link": "링크 복사", - "archive": "아카이브", - "restore": "복원", - "delete": "삭제", - "remove_relation": "관계 제거", - "subscribe": "구독", - "unsubscribe": "구독 취소", - "clear_sorting": "정렬 지우기", - "show_weekends": "주말 표시", - "enable": "활성화", - "disable": "비활성화" - }, - "name": "이름", - "discard": "폐기", - "confirm": "확인", - "confirming": "확인 중", - "read_the_docs": "문서 읽기", - "default": "기본값", - "active": "활성", - "enabled": "활성화됨", - "disabled": "비활성화됨", - "mandate": "의무", - "mandatory": "필수", - "yes": "예", - "no": "아니오", - "please_wait": "기다려주세요", - "enabling": "활성화 중", - "disabling": "비활성화 중", - "beta": "베타", - "or": "또는", - "next": "다음", - "back": "뒤로", - "cancelling": "취소 중", - "configuring": "구성 중", - "clear": "지우기", - "import": "가져오기", - "connect": "연결", - "authorizing": "인증 중", - "processing": "처리 중", - "no_data_available": "사용 가능한 데이터 없음", - "from": "{name}에서", - "authenticated": "인증됨", - "select": "선택", - "upgrade": "업그레이드", - "add_seats": "좌석 추가", - "projects": "프로젝트", - "workspace": "작업 공간", - "workspaces": "작업 공간", - "team": "팀", - "teams": "팀", - "entity": "엔티티", - "entities": "엔티티", - "task": "작업", - "tasks": "작업", - "section": "섹션", - "sections": "섹션", - "edit": "편집", - "connecting": "연결 중", - "connected": "연결됨", - "disconnect": "연결 해제", - "disconnecting": "연결 해제 중", - "installing": "설치 중", - "install": "설치", - "reset": "재설정", - "live": "라이브", - "change_history": "변경 기록", - "coming_soon": "곧 출시", - "member": "멤버", - "members": "멤버", - "you": "나", - "upgrade_cta": { - "higher_subscription": "더 높은 구독으로 업그레이드", - "talk_to_sales": "영업팀과 상담" - }, - "category": "카테고리", - "categories": "카테고리", - "saving": "저장 중", - "save_changes": "변경 사항 저장", - "delete": "삭제", - "deleting": "삭제 중", - "pending": "보류 중", - "invite": "초대", - "view": "보기", - "deactivated_user": "비활성화된 사용자", - "apply": "적용", - "applying": "적용 중", - "users": "사용자", - "admins": "관리자", - "guests": "게스트", - "on_track": "계획대로 진행 중", - "off_track": "계획 이탈", - "at_risk": "위험", - "timeline": "타임라인", - "completion": "완료", - "upcoming": "예정된", - "completed": "완료됨", - "in_progress": "진행 중", - "planned": "계획된", - "paused": "일시 중지됨", - "no_of": "{entity} 수", - "resolved": "해결됨" - }, - "chart": { - "x_axis": "X축", - "y_axis": "Y축", - "metric": "메트릭" - }, - "form": { - "title": { - "required": "제목이 필요합니다", - "max_length": "제목은 {length}자 미만이어야 합니다" - } - }, - "entity": { - "grouping_title": "{entity} 그룹화", - "priority": "{entity} 우선순위", - "all": "모든 {entity}", - "drop_here_to_move": "{entity}를 이동하려면 여기에 드롭하세요", - "delete": { - "label": "{entity} 삭제", - "success": "{entity}가 성공적으로 삭제되었습니다", - "failed": "{entity} 삭제 실패" - }, - "update": { - "failed": "{entity} 업데이트 실패", - "success": "{entity}가 성공적으로 업데이트되었습니다" - }, - "link_copied_to_clipboard": "{entity} 링크가 클립보드에 복사되었습니다", - "fetch": { - "failed": "{entity}를 가져오는 중 오류 발생" - }, - "add": { - "success": "{entity}가 성공적으로 추가되었습니다", - "failed": "{entity} 추가 중 오류 발생" - }, - "remove": { - "success": "{entity}가 성공적으로 제거되었습니다", - "failed": "{entity} 제거 중 오류 발생" - } - }, - "epic": { - "all": "모든 에픽", - "label": "{count, plural, one {에픽} other {에픽}}", - "new": "새 에픽", - "adding": "에픽 추가 중", - "create": { - "success": "에픽이 성공적으로 생성되었습니다" - }, - "add": { - "press_enter": "다른 에픽을 추가하려면 'Enter'를 누르세요", - "label": "에픽 추가" - }, - "title": { - "label": "에픽 제목", - "required": "에픽 제목이 필요합니다." - } - }, - "issue": { - "label": "{count, plural, one {작업 항목} other {작업 항목}}", - "all": "모든 작업 항목", - "edit": "작업 항목 편집", - "title": { - "label": "작업 항목 제목", - "required": "작업 항목 제목이 필요합니다." - }, - "add": { - "press_enter": "다른 작업 항목을 추가하려면 'Enter'를 누르세요", - "label": "작업 항목 추가", - "cycle": { - "failed": "작업 항목을 주기에 추가할 수 없습니다. 다시 시도해주세요.", - "success": "{count, plural, one {작업 항목} other {작업 항목}}이 주기에 성공적으로 추가되었습니다.", - "loading": "{count, plural, one {작업 항목} other {작업 항목}}을 주기에 추가 중" - }, - "assignee": "담당자 추가", - "start_date": "시작 날짜 추가", - "due_date": "마감일 추가", - "parent": "상위 작업 항목 추가", - "sub_issue": "하위 작업 항목 추가", - "relation": "관계 추가", - "link": "링크 추가", - "existing": "기존 작업 항목 추가" - }, - "remove": { - "label": "작업 항목 제거", - "cycle": { - "loading": "작업 항목을 주기에서 제거 중", - "success": "작업 항목이 주기에서 성공적으로 제거되었습니다.", - "failed": "작업 항목을 주기에서 제거할 수 없습니다. 다시 시도해주세요." - }, - "module": { - "loading": "작업 항목을 모듈에서 제거 중", - "success": "작업 항목이 모듈에서 성공적으로 제거되었습니다.", - "failed": "작업 항목을 모듈에서 제거할 수 없습니다. 다시 시도해주세요." - }, - "parent": { - "label": "상위 작업 항목 제거" - } - }, - "new": "새 작업 항목", - "adding": "작업 항목 추가 중", - "create": { - "success": "작업 항목이 성공적으로 생성되었습니다" - }, - "priority": { - "urgent": "긴급", - "high": "높음", - "medium": "중간", - "low": "낮음" - }, - "display": { - "properties": { - "label": "디스플레이 속성", - "id": "ID", - "issue_type": "작업 항목 유형", - "sub_issue_count": "하위 작업 항목 수", - "attachment_count": "첨부 파일 수", - "created_on": "생성일", - "sub_issue": "하위 작업 항목", - "work_item_count": "작업 항목 수" - }, - "extra": { - "show_sub_issues": "하위 작업 항목 표시", - "show_empty_groups": "빈 그룹 표시" - } - }, - "layouts": { - "ordered_by_label": "이 레이아웃은 다음 기준으로 정렬됩니다", - "list": "목록", - "kanban": "보드", - "calendar": "캘린더", - "spreadsheet": "테이블", - "gantt": "타임라인", - "title": { - "list": "목록 레이아웃", - "kanban": "보드 레이아웃", - "calendar": "캘린더 레이아웃", - "spreadsheet": "테이블 레이아웃", - "gantt": "타임라인 레이아웃" - } - }, - "states": { - "active": "활성", - "backlog": "백로그" - }, - "comments": { - "placeholder": "댓글 추가", - "switch": { - "private": "비공개 댓글로 전환", - "public": "공개 댓글로 전환" - }, - "create": { - "success": "댓글이 성공적으로 생성되었습니다", - "error": "댓글 생성 실패. 나중에 다시 시도해주세요." - }, - "update": { - "success": "댓글이 성공적으로 업데이트되었습니다", - "error": "댓글 업데이트 실패. 나중에 다시 시도해주세요." - }, - "remove": { - "success": "댓글이 성공적으로 제거되었습니다", - "error": "댓글 제거 실패. 나중에 다시 시도해주세요." - }, - "upload": { - "error": "자산 업로드 실패. 나중에 다시 시도해주세요." - }, - "copy_link": { - "success": "댓글 링크가 클립보드에 복사되었습니다", - "error": "댓글 링크 복사 중 오류가 발생했습니다. 나중에 다시 시도해 주세요." - } - }, - "empty_state": { - "issue_detail": { - "title": "작업 항목이 존재하지 않습니다", - "description": "찾고 있는 작업 항목이 존재하지 않거나, 아카이브되었거나, 삭제되었습니다.", - "primary_button": { - "text": "다른 작업 항목 보기" - } - } - }, - "sibling": { - "label": "형제 작업 항목" - }, - "archive": { - "description": "완료되거나 취소된 작업 항목만 아카이브할 수 있습니다", - "label": "작업 항목 아카이브", - "confirm_message": "작업 항목을 아카이브하시겠습니까? 모든 아카이브된 작업 항목은 나중에 복원할 수 있습니다.", - "success": { - "label": "아카이브 성공", - "message": "아카이브된 항목은 프로젝트 아카이브에서 찾을 수 있습니다." - }, - "failed": { - "message": "작업 항목을 아카이브할 수 없습니다. 다시 시도해주세요." - } - }, - "restore": { - "success": { - "title": "복원 성공", - "message": "작업 항목을 프로젝트 작업 항목에서 찾을 수 있습니다." - }, - "failed": { - "message": "작업 항목을 복원할 수 없습니다. 다시 시도해주세요." - } - }, - "relation": { - "relates_to": "관련 있음", - "duplicate": "중복", - "blocked_by": "차단됨", - "blocking": "차단 중" - }, - "copy_link": "작업 항목 링크 복사", - "delete": { - "label": "작업 항목 삭제", - "error": "작업 항목 삭제 중 오류 발생" - }, - "subscription": { - "actions": { - "subscribed": "작업 항목이 성공적으로 구독되었습니다", - "unsubscribed": "작업 항목 구독이 성공적으로 취소되었습니다" - } - }, - "select": { - "error": "최소 하나의 작업 항목을 선택하세요", - "empty": "선택된 작업 항목 없음", - "add_selected": "선택된 작업 항목 추가", - "select_all": "모두 선택", - "deselect_all": "모두 선택 해제" - }, - "open_in_full_screen": "작업 항목을 전체 화면으로 열기" - }, - "attachment": { - "error": "파일을 첨부할 수 없습니다. 다시 업로드하세요.", - "only_one_file_allowed": "한 번에 하나의 파일만 업로드할 수 있습니다.", - "file_size_limit": "파일 크기는 {size}MB 이하이어야 합니다.", - "drag_and_drop": "업로드하려면 아무 곳에나 드래그 앤 드롭하세요", - "delete": "첨부 파일 삭제" - }, - "label": { - "select": "레이블 선택", - "create": { - "success": "레이블이 성공적으로 생성되었습니다", - "failed": "레이블 생성 실패", - "already_exists": "레이블이 이미 존재합니다", - "type": "새 레이블을 추가하려면 입력하세요" - } - }, - "sub_work_item": { - "update": { - "success": "하위 작업 항목이 성공적으로 업데이트되었습니다", - "error": "하위 작업 항목 업데이트 중 오류 발생" - }, - "remove": { - "success": "하위 작업 항목이 성공적으로 제거되었습니다", - "error": "하위 작업 항목 제거 중 오류 발생" - }, - "empty_state": { - "sub_list_filters": { - "title": "적용된 필터에 일치하는 하위 작업 항목이 없습니다.", - "description": "모든 하위 작업 항목을 보려면 모든 적용된 필터를 지우세요.", - "action": "필터 지우기" - }, - "list_filters": { - "title": "적용된 필터에 일치하는 작업 항목이 없습니다.", - "description": "모든 작업 항목을 보려면 모든 적용된 필터를 지우세요.", - "action": "필터 지우기" - } - } - }, - "view": { - "label": "{count, plural, one {뷰} other {뷰}}", - "create": { - "label": "뷰 생성" - }, - "update": { - "label": "뷰 업데이트" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "보류 중", - "description": "보류 중" - }, - "declined": { - "title": "거절됨", - "description": "거절됨" - }, - "snoozed": { - "title": "미루기", - "description": "{days, plural, one{# 일} other{# 일}} 남음" - }, - "accepted": { - "title": "수락됨", - "description": "수락됨" - }, - "duplicate": { - "title": "중복", - "description": "중복" - } - }, - "modals": { - "decline": { - "title": "작업 항목 거절", - "content": "작업 항목 {value}을(를) 거절하시겠습니까?" - }, - "delete": { - "title": "작업 항목 삭제", - "content": "작업 항목 {value}을(를) 삭제하시겠습니까?", - "success": "작업 항목이 성공적으로 삭제되었습니다" - } - }, - "errors": { - "snooze_permission": "프로젝트 관리자만 작업 항목을 미루거나 미루기 해제할 수 있습니다", - "accept_permission": "프로젝트 관리자만 작업 항목을 수락할 수 있습니다", - "decline_permission": "프로젝트 관리자만 작업 항목을 거절할 수 있습니다" - }, - "actions": { - "accept": "수락", - "decline": "거절", - "snooze": "미루기", - "unsnooze": "미루기 해제", - "copy": "작업 항목 링크 복사", - "delete": "삭제", - "open": "작업 항목 열기", - "mark_as_duplicate": "중복으로 표시", - "move": "{value}을(를) 프로젝트 작업 항목으로 이동" - }, - "source": { - "in-app": "앱 내" - }, - "order_by": { - "created_at": "생성일", - "updated_at": "업데이트일", - "id": "ID" - }, - "label": "접수", - "page_label": "{workspace} - 접수", - "modal": { - "title": "접수 작업 항목 생성" - }, - "tabs": { - "open": "열기", - "closed": "닫기" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "열린 작업 항목 없음", - "description": "여기에서 열린 작업 항목을 찾을 수 있습니다. 새 작업 항목을 생성하세요." - }, - "sidebar_closed_tab": { - "title": "닫힌 작업 항목 없음", - "description": "수락되거나 거절된 모든 작업 항목을 여기에서 찾을 수 있습니다." - }, - "sidebar_filter": { - "title": "일치하는 작업 항목 없음", - "description": "적용된 필터와 일치하는 작업 항목이 없습니다. 새 작업 항목을 생성하세요." - }, - "detail": { - "title": "작업 항목의 세부 정보를 보려면 선택하세요." - } - } - }, - "workspace_creation": { - "heading": "작업 공간 생성", - "subheading": "Plane을 사용하려면 작업 공간을 생성하거나 참여해야 합니다.", - "form": { - "name": { - "label": "작업 공간 이름", - "placeholder": "익숙하고 인식 가능한 이름이 가장 좋습니다." - }, - "url": { - "label": "작업 공간 URL 설정", - "placeholder": "URL 입력 또는 붙여넣기", - "edit_slug": "URL의 슬러그만 편집할 수 있습니다" - }, - "organization_size": { - "label": "이 작업 공간을 사용할 사람 수", - "placeholder": "범위 선택" - } - }, - "errors": { - "creation_disabled": { - "title": "작업 공간은 인스턴스 관리자만 생성할 수 있습니다", - "description": "인스턴스 관리자 이메일 주소를 알고 있다면 아래 버튼을 클릭하여 연락하세요.", - "request_button": "인스턴스 관리자 요청" - }, - "validation": { - "name_alphanumeric": "작업 공간 이름에는 (' '), ('-'), ('_') 및 영숫자 문자만 포함될 수 있습니다.", - "name_length": "이름은 80자 이내로 제한하세요.", - "url_alphanumeric": "URL에는 ('-') 및 영숫자 문자만 포함될 수 있습니다.", - "url_length": "URL은 48자 이내로 제한하세요.", - "url_already_taken": "작업 공간 URL이 이미 사용 중입니다!" - } - }, - "request_email": { - "subject": "새 작업 공간 요청", - "body": "안녕하세요 인스턴스 관리자님,\n\n[목적]을 위해 [/workspace-name] URL로 새 작업 공간을 생성해 주세요.\n\n감사합니다,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "작업 공간 생성", - "loading": "작업 공간 생성 중" - }, - "toast": { - "success": { - "title": "성공", - "message": "작업 공간이 성공적으로 생성되었습니다" - }, - "error": { - "title": "오류", - "message": "작업 공간을 생성할 수 없습니다. 다시 시도해주세요." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "프로젝트, 활동 및 메트릭 개요", - "description": "Plane에 오신 것을 환영합니다. 첫 번째 프로젝트를 생성하고 작업 항목을 추적하면 이 페이지가 진행 상황을 돕는 공간으로 변합니다. 관리자도 팀의 진행을 돕는 항목을 볼 수 있습니다.", - "primary_button": { - "text": "첫 번째 프로젝트 생성", - "comic": { - "title": "Plane에서 모든 것은 프로젝트로 시작됩니다", - "description": "프로젝트는 제품 로드맵, 마케팅 캠페인 또는 새로운 자동차 출시일 수 있습니다." - } - } - } - } - }, - "workspace_analytics": { - "label": "분석", - "page_label": "{workspace} - 분석", - "open_tasks": "열린 작업 항목", - "error": "데이터를 가져오는 중 오류가 발생했습니다.", - "work_items_closed_in": "닫힌 작업 항목", - "selected_projects": "선택된 프로젝트", - "total_members": "총 멤버", - "total_cycles": "총 주기", - "total_modules": "총 모듈", - "pending_work_items": { - "title": "보류 중인 작업 항목", - "empty_state": "동료의 보류 중인 작업 항목 분석이 여기에 표시됩니다." - }, - "work_items_closed_in_a_year": { - "title": "1년 동안 닫힌 작업 항목", - "empty_state": "작업 항목을 닫아 그래프에서 분석을 확인하세요." - }, - "most_work_items_created": { - "title": "가장 많은 작업 항목 생성", - "empty_state": "동료와 그들이 생성한 작업 항목 수가 여기에 표시됩니다." - }, - "most_work_items_closed": { - "title": "가장 많은 작업 항목 닫힘", - "empty_state": "동료와 그들이 닫은 작업 항목 수가 여기에 표시됩니다." - }, - "tabs": { - "scope_and_demand": "범위 및 수요", - "custom": "맞춤형 분석" - }, - "empty_state": { - "customized_insights": { - "description": "귀하에게 할당된 작업 항목이 상태별로 나누어 여기에 표시됩니다.", - "title": "아직 데이터가 없습니다" - }, - "created_vs_resolved": { - "description": "시간이 지나면서 생성되고 해결된 작업 항목이 여기에 표시됩니다.", - "title": "아직 데이터가 없습니다" - }, - "project_insights": { - "title": "아직 데이터가 없습니다", - "description": "귀하에게 할당된 작업 항목이 상태별로 나누어 여기에 표시됩니다." - }, - "general": { - "title": "진행 상황, 워크로드 및 할당을 추적하세요. 트렌드를 파악하고 장애물을 제거하며 더 빠르게 작업하세요", - "description": "범위 대 수요, 추정치 및 범위 크리프를 확인하세요. 팀 구성원과 팀의 성과를 파악하고 프로젝트가 제시간에 실행되도록 하세요.", - "primary_button": { - "text": "첫 번째 프로젝트 시작", - "comic": { - "title": "분석은 사이클 + 모듈과 함께 가장 잘 작동합니다", - "description": "먼저 작업 항목을 사이클로 시간 제한을 두고, 가능하다면 한 사이클 이상 걸리는 작업 항목을 모듈로 그룹화하세요. 왼쪽 탐색에서 둘 다 확인하세요." - } - } - } - }, - "created_vs_resolved": "생성됨 vs 해결됨", - "customized_insights": "맞춤형 인사이트", - "backlog_work_items": "백로그 {entity}", - "active_projects": "활성 프로젝트", - "trend_on_charts": "차트의 추세", - "all_projects": "모든 프로젝트", - "summary_of_projects": "프로젝트 요약", - "project_insights": "프로젝트 인사이트", - "started_work_items": "시작된 {entity}", - "total_work_items": "총 {entity}", - "total_projects": "총 프로젝트 수", - "total_admins": "총 관리자 수", - "total_users": "총 사용자 수", - "total_intake": "총 수입", - "un_started_work_items": "시작되지 않은 {entity}", - "total_guests": "총 게스트 수", - "completed_work_items": "완료된 {entity}", - "total": "총 {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {프로젝트} other {프로젝트}}", - "create": { - "label": "프로젝트 추가" - }, - "network": { - "label": "네트워크", - "private": { - "title": "비공개", - "description": "초대에 의해서만 접근 가능" - }, - "public": { - "title": "공개", - "description": "게스트를 제외한 작업 공간의 모든 사람이 참여할 수 있습니다" - } - }, - "error": { - "permission": "이 작업을 수행할 권한이 없습니다.", - "cycle_delete": "주기 삭제 실패", - "module_delete": "모듈 삭제 실패", - "issue_delete": "작업 항목 삭제 실패" - }, - "state": { - "backlog": "백로그", - "unstarted": "시작되지 않음", - "started": "시작됨", - "completed": "완료됨", - "cancelled": "취소됨" - }, - "sort": { - "manual": "수동", - "name": "이름", - "created_at": "생성일", - "members_length": "멤버 수" - }, - "scope": { - "my_projects": "내 프로젝트", - "archived_projects": "아카이브" - }, - "common": { - "months_count": "{months, plural, one{# 개월} other{# 개월}}" - }, - "empty_state": { - "general": { - "title": "활성 프로젝트 없음", - "description": "각 프로젝트를 목표 지향 작업의 부모로 생각하세요. 프로젝트는 작업, 주기 및 모듈이 존재하는 곳이며, 동료와 함께 목표를 달성하는 데 도움이 됩니다. 새 프로젝트를 생성하거나 아카이브된 프로젝트를 필터링하세요.", - "primary_button": { - "text": "첫 번째 프로젝트 시작", - "comic": { - "title": "Plane에서 모든 것은 프로젝트로 시작됩니다", - "description": "프로젝트는 제품 로드맵, 마케팅 캠페인 또는 새로운 자동차 출시일 수 있습니다." - } - } - }, - "no_projects": { - "title": "프로젝트 없음", - "description": "작업 항목을 생성하거나 작업을 관리하려면 프로젝트를 생성하거나 참여해야 합니다.", - "primary_button": { - "text": "첫 번째 프로젝트 시작", - "comic": { - "title": "Plane에서 모든 것은 프로젝트로 시작됩니다", - "description": "프로젝트는 제품 로드맵, 마케팅 캠페인 또는 새로운 자동차 출시일 수 있습니다." - } - } - }, - "filter": { - "title": "일치하는 프로젝트 없음", - "description": "일치하는 프로젝트가 없습니다. 대신 새 프로젝트를 생성하세요." - }, - "search": { - "description": "일치하는 프로젝트가 없습니다. 대신 새 프로젝트를 생성하세요" - } - } - }, - "workspace_views": { - "add_view": "뷰 추가", - "empty_state": { - "all-issues": { - "title": "프로젝트에 작업 항목 없음", - "description": "첫 번째 프로젝트 완료! 이제 작업 항목을 추적 가능한 조각으로 나누세요. 시작합시다!", - "primary_button": { - "text": "새 작업 항목 생성" - } - }, - "assigned": { - "title": "작업 항목 없음", - "description": "할당된 작업 항목을 여기에서 추적할 수 있습니다.", - "primary_button": { - "text": "새 작업 항목 생성" - } - }, - "created": { - "title": "작업 항목 없음", - "description": "생성한 모든 작업 항목이 여기에 표시됩니다. 여기에서 직접 추적하세요.", - "primary_button": { - "text": "새 작업 항목 생성" - } - }, - "subscribed": { - "title": "작업 항목 없음", - "description": "관심 있는 작업 항목을 구독하고 여기에서 모두 추적하세요." - }, - "custom-view": { - "title": "작업 항목 없음", - "description": "필터가 적용된 작업 항목을 여기에서 모두 추적하세요." - } - } - }, - "workspace_settings": { - "label": "작업 공간 설정", - "page_label": "{workspace} - 일반 설정", - "key_created": "키 생성됨", - "copy_key": "이 비밀 키를 Plane Pages에 복사하고 저장하세요. 닫기 버튼을 누른 후에는 이 키를 볼 수 없습니다. 키가 포함된 CSV 파일이 다운로드되었습니다.", - "token_copied": "토큰이 클립보드에 복사되었습니다.", - "settings": { - "general": { - "title": "일반", - "upload_logo": "로고 업로드", - "edit_logo": "로고 편집", - "name": "작업 공간 이름", - "company_size": "회사 규모", - "url": "작업 공간 URL", - "update_workspace": "작업 공간 업데이트", - "delete_workspace": "이 작업 공간 삭제", - "delete_workspace_description": "작업 공간을 삭제하면 해당 작업 공간 내의 모든 데이터와 리소스가 영구적으로 삭제되며 복구할 수 없습니다.", - "delete_btn": "이 작업 공간 삭제", - "delete_modal": { - "title": "이 작업 공간을 삭제하시겠습니까?", - "description": "유료 플랜의 활성화된 평가판이 있습니다. 먼저 취소해야 진행할 수 있습니다.", - "dismiss": "무시", - "cancel": "평가판 취소", - "success_title": "작업 공간 삭제됨.", - "success_message": "곧 프로필 페이지로 이동합니다.", - "error_title": "작업이 실패했습니다.", - "error_message": "다시 시도해주세요." - }, - "errors": { - "name": { - "required": "이름이 필요합니다", - "max_length": "작업 공간 이름은 80자를 초과할 수 없습니다" - }, - "company_size": { - "required": "회사 규모가 필요합니다", - "select_a_range": "조직 규모 선택" - } - } - }, - "members": { - "title": "멤버", - "add_member": "멤버 추가", - "pending_invites": "보류 중인 초대", - "invitations_sent_successfully": "초대가 성공적으로 전송되었습니다", - "leave_confirmation": "작업 공간을 떠나시겠습니까? 더 이상 이 작업 공간에 접근할 수 없습니다. 이 작업은 되돌릴 수 없습니다.", - "details": { - "full_name": "전체 이름", - "display_name": "표시 이름", - "email_address": "이메일 주소", - "account_type": "계정 유형", - "authentication": "인증", - "joining_date": "가입 날짜" - }, - "modal": { - "title": "사람들을 초대하여 협업하세요", - "description": "작업 공간에서 협업할 사람들을 초대하세요.", - "button": "초대 전송", - "button_loading": "초대 전송 중", - "placeholder": "name@company.com", - "errors": { - "required": "초대하려면 이메일 주소가 필요합니다.", - "invalid": "이메일이 유효하지 않습니다" - } - } - }, - "billing_and_plans": { - "title": "청구 및 플랜", - "current_plan": "현재 플랜", - "free_plan": "현재 무료 플랜을 사용 중입니다", - "view_plans": "플랜 보기" - }, - "exports": { - "title": "내보내기", - "exporting": "내보내기 중", - "previous_exports": "이전 내보내기", - "export_separate_files": "데이터를 별도의 파일로 내보내기", - "modal": { - "title": "내보내기", - "toasts": { - "success": { - "title": "내보내기 성공", - "message": "이전 내보내기에서 내보낸 {entity}를 다운로드할 수 있습니다." - }, - "error": { - "title": "내보내기 실패", - "message": "내보내기가 실패했습니다. 다시 시도해주세요." - } - } - } - }, - "webhooks": { - "title": "웹훅", - "add_webhook": "웹훅 추가", - "modal": { - "title": "웹훅 생성", - "details": "웹훅 세부 정보", - "payload": "페이로드 URL", - "question": "어떤 이벤트가 이 웹훅을 트리거하길 원하십니까?", - "error": "URL이 필요합니다" - }, - "secret_key": { - "title": "비밀 키", - "message": "웹훅 페이로드에 로그인하려면 토큰을 생성하세요" - }, - "options": { - "all": "모든 항목 보내기", - "individual": "개별 이벤트 선택" - }, - "toasts": { - "created": { - "title": "웹훅 생성됨", - "message": "웹훅이 성공적으로 생성되었습니다" - }, - "not_created": { - "title": "웹훅 생성되지 않음", - "message": "웹훅을 생성할 수 없습니다" - }, - "updated": { - "title": "웹훅 업데이트됨", - "message": "웹훅이 성공적으로 업데이트되었습니다" - }, - "not_updated": { - "title": "웹훅 업데이트되지 않음", - "message": "웹훅을 업데이트할 수 없습니다" - }, - "removed": { - "title": "웹훅 제거됨", - "message": "웹훅이 성공적으로 제거되었습니다" - }, - "not_removed": { - "title": "웹훅 제거되지 않음", - "message": "웹훅을 제거할 수 없습니다" - }, - "secret_key_copied": { - "message": "비밀 키가 클립보드에 복사되었습니다." - }, - "secret_key_not_copied": { - "message": "비밀 키를 복사하는 중 오류가 발생했습니다." - } - } - }, - "api_tokens": { - "title": "API 토큰", - "add_token": "API 토큰 추가", - "create_token": "토큰 생성", - "never_expires": "만료되지 않음", - "generate_token": "토큰 생성", - "generating": "생성 중", - "delete": { - "title": "API 토큰 삭제", - "description": "이 토큰을 사용하는 애플리케이션은 더 이상 Plane 데이터에 접근할 수 없습니다. 이 작업은 되돌릴 수 없습니다.", - "success": { - "title": "성공!", - "message": "API 토큰이 성공적으로 삭제되었습니다" - }, - "error": { - "title": "오류!", - "message": "API 토큰을 삭제할 수 없습니다" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "생성된 API 토큰 없음", - "description": "Plane API를 사용하여 Plane의 데이터를 외부 시스템과 통합할 수 있습니다. 토큰을 생성하여 시작하세요." - }, - "webhooks": { - "title": "추가된 웹훅 없음", - "description": "실시간 업데이트를 받고 작업을 자동화하려면 웹훅을 생성하세요." - }, - "exports": { - "title": "아직 내보내기 없음", - "description": "내보낼 때마다 참조용으로 여기에 복사본이 있습니다." - }, - "imports": { - "title": "아직 가져오기 없음", - "description": "이전 가져오기를 모두 여기에서 찾고 다운로드하세요." - } - } - }, - "profile": { - "label": "프로필", - "page_label": "나의 작업", - "work": "작업", - "details": { - "joined_on": "가입일", - "time_zone": "시간대" - }, - "stats": { - "workload": "작업량", - "overview": "개요", - "created": "생성된 작업 항목", - "assigned": "할당된 작업 항목", - "subscribed": "구독된 작업 항목", - "state_distribution": { - "title": "상태별 작업 항목", - "empty": "작업 항목을 생성하여 상태별 그래프에서 분석을 확인하세요." - }, - "priority_distribution": { - "title": "우선순위별 작업 항목", - "empty": "작업 항목을 생성하여 우선순위별 그래프에서 분석을 확인하세요." - }, - "recent_activity": { - "title": "최근 활동", - "empty": "데이터를 찾을 수 없습니다. 입력을 확인하세요", - "button": "오늘의 활동 다운로드", - "button_loading": "다운로드 중" - } - }, - "actions": { - "profile": "프로필", - "security": "보안", - "activity": "활동", - "appearance": "외관", - "notifications": "알림" - }, - "tabs": { - "summary": "요약", - "assigned": "할당됨", - "created": "생성됨", - "subscribed": "구독됨", - "activity": "활동" - }, - "empty_state": { - "activity": { - "title": "아직 활동 없음", - "description": "새 작업 항목을 생성하여 시작하세요! 세부 정보와 속성을 추가하세요. Plane에서 더 많은 것을 탐색하여 활동을 확인하세요." - }, - "assigned": { - "title": "할당된 작업 항목 없음", - "description": "할당된 작업 항목을 여기에서 추적할 수 있습니다." - }, - "created": { - "title": "작업 항목 없음", - "description": "생성한 모든 작업 항목이 여기에 표시됩니다. 여기에서 직접 추적하세요." - }, - "subscribed": { - "title": "작업 항목 없음", - "description": "관심 있는 작업 항목을 구독하고 여기에서 모두 추적하세요." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "프로젝트 ID 입력", - "please_select_a_timezone": "시간대를 선택하세요", - "archive_project": { - "title": "프로젝트 아카이브", - "description": "프로젝트를 아카이브하면 사이드 내비게이션에서 프로젝트가 목록에서 제외되지만 프로젝트 페이지에서 여전히 접근할 수 있습니다. 언제든지 프로젝트를 복원하거나 삭제할 수 있습니다.", - "button": "프로젝트 아카이브" - }, - "delete_project": { - "title": "프로젝트 삭제", - "description": "프로젝트를 삭제하면 해당 프로젝트 내의 모든 데이터와 리소스가 영구적으로 삭제되며 복구할 수 없습니다.", - "button": "프로젝트 삭제" - }, - "toast": { - "success": "프로젝트가 성공적으로 업데이트되었습니다", - "error": "프로젝트를 업데이트할 수 없습니다. 다시 시도해주세요." - } - }, - "members": { - "label": "멤버", - "project_lead": "프로젝트 리드", - "default_assignee": "기본 담당자", - "guest_super_permissions": { - "title": "게스트 사용자에게 모든 작업 항목에 대한 보기 권한 부여:", - "sub_heading": "이렇게 하면 게스트가 모든 프로젝트 작업 항목에 대한 보기 권한을 갖게 됩니다." - }, - "invite_members": { - "title": "멤버 초대", - "sub_heading": "프로젝트에서 작업할 멤버를 초대하세요.", - "select_co_worker": "동료 선택" - } - }, - "states": { - "describe_this_state_for_your_members": "멤버를 위해 이 상태를 설명하세요.", - "empty_state": { - "title": "{groupKey} 그룹에 사용할 수 있는 상태 없음", - "description": "새 상태를 생성하세요" - } - }, - "labels": { - "label_title": "레이블 제목", - "label_title_is_required": "레이블 제목이 필요합니다", - "label_max_char": "레이블 이름은 255자를 초과할 수 없습니다", - "toast": { - "error": "레이블 업데이트 중 오류 발생" - } - }, - "estimates": { - "label": "추정", - "title": "프로젝트 추정 활성화", - "description": "팀의 복잡성과 작업량을 전달하는 데 도움이 됩니다.", - "no_estimate": "추정 없음", - "new": "새 추정 시스템", - "create": { - "custom": "사용자 지정", - "start_from_scratch": "처음부터 시작", - "choose_template": "템플릿 선택", - "choose_estimate_system": "추정 시스템 선택", - "enter_estimate_point": "추정 입력", - "step": "단계 {step}/{total}", - "label": "추정 생성" - }, - "toasts": { - "created": { - "success": { - "title": "추정 생성됨", - "message": "추정이 성공적으로 생성되었습니다" - }, - "error": { - "title": "추정 생성 실패", - "message": "새 추정을 생성할 수 없습니다. 다시 시도해 주세요." - } - }, - "updated": { - "success": { - "title": "추정 수정됨", - "message": "프로젝트의 추정이 업데이트되었습니다." - }, - "error": { - "title": "추정 수정 실패", - "message": "추정을 수정할 수 없습니다. 다시 시도해 주세요" - } - }, - "enabled": { - "success": { - "title": "성공!", - "message": "추정이 활성화되었습니다." - } - }, - "disabled": { - "success": { - "title": "성공!", - "message": "추정이 비활성화되었습니다." - }, - "error": { - "title": "오류!", - "message": "추정을 비활성화할 수 없습니다. 다시 시도해 주세요" - } - } - }, - "validation": { - "min_length": "추정은 0보다 커야 합니다.", - "unable_to_process": "요청을 처리할 수 없습니다. 다시 시도해 주세요.", - "numeric": "추정은 숫자 값이어야 합니다.", - "character": "추정은 문자 값이어야 합니다.", - "empty": "추정 값은 비어있을 수 없습니다.", - "already_exists": "추정 값이 이미 존재합니다.", - "unsaved_changes": "저장되지 않은 변경 사항이 있습니다. 완료를 클릭하기 전에 저장하세요", - "remove_empty": "추정은 비어있을 수 없습니다. 각 필드에 값을 입력하거나 값이 없는 필드를 제거하세요." - }, - "systems": { - "points": { - "label": "포인트", - "fibonacci": "피보나치", - "linear": "선형", - "squares": "제곱", - "custom": "사용자 정의" - }, - "categories": { - "label": "카테고리", - "t_shirt_sizes": "티셔츠 사이즈", - "easy_to_hard": "쉬움에서 어려움", - "custom": "사용자 정의" - }, - "time": { - "label": "시간", - "hours": "시간" - } - } - }, - "automations": { - "label": "자동화", - "auto-archive": { - "title": "완료된 작업 항목 자동 보관", - "description": "Plane은 완료되거나 취소된 작업 항목을 자동으로 보관합니다.", - "duration": "다음 기간 동안 닫힌 작업 항목 자동 보관" - }, - "auto-close": { - "title": "작업 항목 자동 닫기", - "description": "Plane은 완료되거나 취소되지 않은 작업 항목을 자동으로 닫습니다.", - "duration": "다음 기간 동안 비활성 작업 항목 자동 닫기", - "auto_close_status": "자동 닫기 상태" - } - }, - "empty_state": { - "labels": { - "title": "레이블 없음", - "description": "프로젝트에서 작업 항목을 구성하고 필터링하는 데 도움이 되는 레이블을 생성하세요." - }, - "estimates": { - "title": "추정 시스템 없음", - "description": "작업 항목당 작업량을 전달하는 추정 세트를 생성하세요.", - "primary_button": "추정 시스템 추가" - } - } - }, - "project_cycles": { - "add_cycle": "주기 추가", - "more_details": "자세히 보기", - "cycle": "주기", - "update_cycle": "주기 업데이트", - "create_cycle": "주기 생성", - "no_matching_cycles": "일치하는 주기 없음", - "remove_filters_to_see_all_cycles": "모든 주기를 보려면 필터를 제거하세요", - "remove_search_criteria_to_see_all_cycles": "모든 주기를 보려면 검색 기준을 제거하세요", - "only_completed_cycles_can_be_archived": "완료된 주기만 아카이브할 수 있습니다", - "start_date": "시작일", - "end_date": "종료일", - "in_your_timezone": "내 시간대", - "transfer_work_items": "{count}개의 작업 항목 이전", - "date_range": "날짜 범위", - "add_date": "날짜 추가", - "active_cycle": { - "label": "활성 주기", - "progress": "진행", - "chart": "버다운 차트", - "priority_issue": "우선순위 작업 항목", - "assignees": "담당자", - "issue_burndown": "작업 항목 버다운", - "ideal": "이상적인", - "current": "현재", - "labels": "레이블" - }, - "upcoming_cycle": { - "label": "다가오는 주기" - }, - "completed_cycle": { - "label": "완료된 주기" - }, - "status": { - "days_left": "남은 일수", - "completed": "완료됨", - "yet_to_start": "시작되지 않음", - "in_progress": "진행 중", - "draft": "초안" - }, - "action": { - "restore": { - "title": "주기 복원", - "success": { - "title": "주기 복원됨", - "description": "주기가 복원되었습니다." - }, - "failed": { - "title": "주기 복원 실패", - "description": "주기를 복원할 수 없습니다. 다시 시도해주세요." - } - }, - "favorite": { - "loading": "주기를 즐겨찾기에 추가 중", - "success": { - "description": "주기가 즐겨찾기에 추가되었습니다.", - "title": "성공!" - }, - "failed": { - "description": "주기를 즐겨찾기에 추가할 수 없습니다. 다시 시도해주세요.", - "title": "오류!" - } - }, - "unfavorite": { - "loading": "주기를 즐겨찾기에서 제거 중", - "success": { - "description": "주기가 즐겨찾기에서 제거되었습니다.", - "title": "성공!" - }, - "failed": { - "description": "주기를 즐겨찾기에서 제거할 수 없습니다. 다시 시도해주세요.", - "title": "오류!" - } - }, - "update": { - "loading": "주기 업데이트 중", - "success": { - "description": "주기가 성공적으로 업데이트되었습니다.", - "title": "성공!" - }, - "failed": { - "description": "주기 업데이트 중 오류 발생. 다시 시도해주세요.", - "title": "오류!" - }, - "error": { - "already_exists": "주어진 날짜에 이미 주기가 있습니다. 초안 주기를 생성하려면 두 날짜를 모두 제거하세요." - } - } - }, - "empty_state": { - "general": { - "title": "작업을 주기로 그룹화하고 시간 상자화하세요.", - "description": "작업을 시간 상자로 나누고, 프로젝트 마감일에서 역으로 날짜를 설정하며, 팀으로서 실질적인 진전을 이루세요.", - "primary_button": { - "text": "첫 번째 주기 설정", - "comic": { - "title": "주기는 반복적인 시간 상자입니다.", - "description": "스프린트, 반복 또는 주간 또는 격주로 작업을 추적하는 데 사용하는 다른 용어는 모두 주기입니다." - } - } - }, - "no_issues": { - "title": "주기에 추가된 작업 항목 없음", - "description": "이 주기 내에서 시간 상자화하고 전달하려는 작업 항목을 추가하거나 생성하세요", - "primary_button": { - "text": "새 작업 항목 생성" - }, - "secondary_button": { - "text": "기존 작업 항목 추가" - } - }, - "completed_no_issues": { - "title": "주기에 작업 항목 없음", - "description": "주기에 작업 항목이 없습니다. 작업 항목이 전송되었거나 숨겨져 있습니다. 숨겨진 작업 항목을 보려면 표시 속성을 적절히 업데이트하세요." - }, - "active": { - "title": "활성 주기 없음", - "description": "활성 주기에는 오늘 날짜가 범위 내에 포함된 모든 기간이 포함됩니다. 여기에서 활성 주기의 진행 상황과 세부 정보를 확인하세요." - }, - "archived": { - "title": "아카이브된 주기 없음", - "description": "프로젝트를 정리하려면 완료된 주기를 아카이브하세요. 아카이브된 주기는 여기에서 찾을 수 있습니다." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "작업 항목을 생성하고 누군가에게 할당하세요, 심지어 자신에게도", - "description": "작업 항목을 작업, 작업, 작업 또는 JTBD로 생각하세요. 작업 항목과 하위 작업 항목은 일반적으로 팀원에게 할당된 시간 기반 작업입니다. 팀은 작업 항목을 생성, 할당 및 완료하여 프로젝트 목표를 향해 나아갑니다.", - "primary_button": { - "text": "첫 번째 작업 항목 생성", - "comic": { - "title": "작업 항목은 Plane의 구성 요소입니다.", - "description": "Plane UI 재설계, 회사 리브랜딩 또는 새로운 연료 주입 시스템 출시와 같은 작업 항목은 하위 작업 항목이 있을 가능성이 큽니다." - } - } - }, - "no_archived_issues": { - "title": "아카이브된 작업 항목 없음", - "description": "수동으로 또는 자동화를 통해 완료되거나 취소된 작업 항목을 아카이브할 수 있습니다. 아카이브된 항목은 여기에서 찾을 수 있습니다.", - "primary_button": { - "text": "자동화 설정" - } - }, - "issues_empty_filter": { - "title": "적용된 필터와 일치하는 작업 항목 없음", - "secondary_button": { - "text": "모든 필터 지우기" - } - } - } - }, - "project_module": { - "add_module": "모듈 추가", - "update_module": "모듈 업데이트", - "create_module": "모듈 생성", - "archive_module": "모듈 아카이브", - "restore_module": "모듈 복원", - "delete_module": "모듈 삭제", - "empty_state": { - "general": { - "title": "프로젝트 마일스톤을 모듈로 매핑하고 집계된 작업을 쉽게 추적하세요.", - "description": "논리적이고 계층적인 부모에 속하는 작업 항목 그룹이 모듈을 형성합니다. 이를 프로젝트 마일스톤별로 작업을 추적하는 방법으로 생각하세요. 모듈은 자체 기간과 마감일을 가지며, 마일스톤에 얼마나 가까운지 또는 먼지를 확인하는 데 도움이 되는 분석을 제공합니다.", - "primary_button": { - "text": "첫 번째 모듈 생성", - "comic": { - "title": "모듈은 계층별로 작업을 그룹화하는 데 도움이 됩니다.", - "description": "카트 모듈, 섀시 모듈 및 창고 모듈은 모두 이 그룹화의 좋은 예입니다." - } - } - }, - "no_issues": { - "title": "모듈에 작업 항목 없음", - "description": "이 모듈의 일부로 완료하려는 작업 항목을 생성하거나 추가하세요", - "primary_button": { - "text": "새 작업 항목 생성" - }, - "secondary_button": { - "text": "기존 작업 항목 추가" - } - }, - "archived": { - "title": "아카이브된 모듈 없음", - "description": "프로젝트를 정리하려면 완료되거나 취소된 모듈을 아카이브하세요. 아카이브된 모듈은 여기에서 찾을 수 있습니다." - }, - "sidebar": { - "in_active": "이 모듈은 아직 활성화되지 않았습니다.", - "invalid_date": "유효하지 않은 날짜입니다. 유효한 날짜를 입력하세요." - } - }, - "quick_actions": { - "archive_module": "모듈 아카이브", - "archive_module_description": "완료되거나 취소된 모듈만 아카이브할 수 있습니다.", - "delete_module": "모듈 삭제" - }, - "toast": { - "copy": { - "success": "모듈 링크가 클립보드에 복사되었습니다" - }, - "delete": { - "success": "모듈이 성공적으로 삭제되었습니다", - "error": "모듈 삭제 실패" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "프로젝트에 대한 필터링된 뷰를 저장하세요. 필요한 만큼 생성하세요", - "description": "뷰는 자주 사용하는 필터 또는 쉽게 접근하고 싶은 필터 세트입니다. 프로젝트의 모든 동료가 모든 사람의 뷰를 보고 자신에게 가장 적합한 뷰를 선택할 수 있습니다.", - "primary_button": { - "text": "첫 번째 뷰 생성", - "comic": { - "title": "뷰는 작업 항목 속성 위에서 작동합니다.", - "description": "여기에서 원하는 만큼의 속성을 필터로 사용하여 뷰를 생성할 수 있습니다." - } - } - }, - "filter": { - "title": "일치하는 뷰 없음", - "description": "검색 기준과 일치하는 뷰가 없습니다. 대신 새 뷰를 생성하세요." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "메모, 문서 또는 전체 지식 기반을 작성하세요. Galileo, Plane의 AI 도우미가 시작을 도와줍니다", - "description": "페이지는 Plane에서 생각을 정리하는 공간입니다. 회의 메모를 작성하고, 쉽게 형식을 지정하고, 작업 항목을 포함하고, 구성 요소 라이브러리를 사용하여 레이아웃을 작성하고, 모든 것을 프로젝트의 맥락에서 유지하세요. 문서를 빠르게 작성하려면 단축키나 버튼 클릭으로 Galileo, Plane의 AI를 호출하세요.", - "primary_button": { - "text": "첫 번째 페이지 생성" - } - }, - "private": { - "title": "비공개 페이지 없음", - "description": "비공개 생각을 여기에 보관하세요. 공유할 준비가 되면 팀이 클릭 한 번으로 접근할 수 있습니다.", - "primary_button": { - "text": "첫 번째 페이지 생성" - } - }, - "public": { - "title": "공개 페이지 없음", - "description": "프로젝트의 모든 사람과 공유된 페이지를 여기에서 확인하세요.", - "primary_button": { - "text": "첫 번째 페이지 생성" - } - }, - "archived": { - "title": "아카이브된 페이지 없음", - "description": "레이더에 없는 페이지를 아카이브하세요. 필요할 때 여기에서 접근하세요." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "결과 없음" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "일치하는 작업 항목 없음" - }, - "no_issues": { - "title": "작업 항목 없음" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "댓글 없음", - "description": "댓글은 작업 항목에 대한 토론 및 후속 공간으로 사용할 수 있습니다" - } - } - }, - "notification": { - "label": "받은 편지함", - "page_label": "{workspace} - 받은 편지함", - "options": { - "mark_all_as_read": "모두 읽음으로 표시", - "mark_read": "읽음으로 표시", - "mark_unread": "읽지 않음으로 표시", - "refresh": "새로 고침", - "filters": "받은 편지함 필터", - "show_unread": "읽지 않음 표시", - "show_snoozed": "미루기 표시", - "show_archived": "아카이브 표시", - "mark_archive": "아카이브", - "mark_unarchive": "아카이브 해제", - "mark_snooze": "미루기", - "mark_unsnooze": "미루기 해제" - }, - "toasts": { - "read": "알림이 읽음으로 표시되었습니다", - "unread": "알림이 읽지 않음으로 표시되었습니다", - "archived": "알림이 아카이브되었습니다", - "unarchived": "알림이 아카이브 해제되었습니다", - "snoozed": "알림이 미루기되었습니다", - "unsnoozed": "알림이 미루기 해제되었습니다" - }, - "empty_state": { - "detail": { - "title": "세부 정보를 보려면 선택하세요." - }, - "all": { - "title": "할당된 작업 항목 없음", - "description": "할당된 작업 항목의 업데이트를 여기에서 확인할 수 있습니다" - }, - "mentions": { - "title": "할당된 작업 항목 없음", - "description": "할당된 작업 항목의 업데이트를 여기에서 확인할 수 있습니다" - } - }, - "tabs": { - "all": "모두", - "mentions": "멘션" - }, - "filter": { - "assigned": "나에게 할당됨", - "created": "내가 생성함", - "subscribed": "내가 구독함" - }, - "snooze": { - "1_day": "1일", - "3_days": "3일", - "5_days": "5일", - "1_week": "1주", - "2_weeks": "2주", - "custom": "사용자 정의" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "주기에 작업 항목을 추가하여 진행 상황을 확인하세요" - }, - "chart": { - "title": "주기에 작업 항목을 추가하여 버다운 차트를 확인하세요." - }, - "priority_issue": { - "title": "주기에서 처리된 고우선 작업 항목을 한눈에 확인하세요." - }, - "assignee": { - "title": "작업 항목에 담당자를 추가하여 담당자별 작업 분포를 확인하세요." - }, - "label": { - "title": "작업 항목에 레이블을 추가하여 레이블별 작업 분포를 확인하세요." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "프로젝트에 접수가 활성화되지 않았습니다.", - "description": "접수는 프로젝트로 들어오는 요청을 관리하고 이를 워크플로우의 작업 항목으로 추가하는 데 도움이 됩니다. 프로젝트 설정에서 접수를 활성화하여 요청을 관리하세요.", - "primary_button": { - "text": "기능 관리" - } - }, - "cycle": { - "title": "이 프로젝트에 주기가 활성화되지 않았습니다.", - "description": "작업을 시간 상자로 나누고, 프로젝트 마감일에서 역으로 날짜를 설정하며, 팀으로서 실질적인 진전을 이루세요. 프로젝트에 주기 기능을 활성화하여 사용하세요.", - "primary_button": { - "text": "기능 관리" - } - }, - "module": { - "title": "프로젝트에 모듈이 활성화되지 않았습니다.", - "description": "모듈은 프로젝트의 구성 요소입니다. 프로젝트 설정에서 모듈을 활성화하여 사용하세요.", - "primary_button": { - "text": "기능 관리" - } - }, - "page": { - "title": "프로젝트에 페이지가 활성화되지 않았습니다.", - "description": "페이지는 프로젝트의 구성 요소입니다. 프로젝트 설정에서 페이지를 활성화하여 사용하세요.", - "primary_button": { - "text": "기능 관리" - } - }, - "view": { - "title": "프로젝트에 뷰가 활성화되지 않았습니다.", - "description": "뷰는 프로젝트의 구성 요소입니다. 프로젝트 설정에서 뷰를 활성화하여 사용하세요.", - "primary_button": { - "text": "기능 관리" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "작업 항목 초안", - "empty_state": { - "title": "작성 중인 작업 항목과 곧 댓글이 여기에 표시됩니다.", - "description": "이 기능을 사용해 보려면 작업 항목을 추가하고 중간에 멈추거나 아래에서 첫 번째 초안을 생성하세요. 😉", - "primary_button": { - "text": "첫 번째 초안 생성" - } - }, - "delete_modal": { - "title": "초안 삭제", - "description": "이 초안을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다." - }, - "toasts": { - "created": { - "success": "초안 생성됨", - "error": "작업 항목을 생성할 수 없습니다. 다시 시도해주세요." - }, - "deleted": { - "success": "초안 삭제됨" - } - } - }, - "stickies": { - "title": "나의 스티키", - "placeholder": "여기에 입력하려면 클릭하세요", - "all": "모든 스티키", - "no-data": "아이디어를 적어두거나, 유레카를 기록하거나, 영감을 기록하세요. 스티키를 추가하여 시작하세요.", - "add": "스티키 추가", - "search_placeholder": "제목으로 검색", - "delete": "스티키 삭제", - "delete_confirmation": "이 스티키를 삭제하시겠습니까?", - "empty_state": { - "simple": "아이디어를 적어두거나, 유레카를 기록하거나, 영감을 기록하세요. 스티키를 추가하여 시작하세요.", - "general": { - "title": "스티키는 즉석에서 작성하는 빠른 메모와 할 일입니다.", - "description": "스티키를 생성하여 생각과 아이디어를 쉽게 캡처하고 언제 어디서나 접근할 수 있습니다.", - "primary_button": { - "text": "스티키 추가" - } - }, - "search": { - "title": "일치하는 스티키가 없습니다.", - "description": "다른 용어를 시도하거나 검색이 올바른지 확신하는 경우 알려주세요.", - "primary_button": { - "text": "스티키 추가" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "스티키 이름은 100자를 초과할 수 없습니다.", - "already_exists": "설명이 없는 스티키가 이미 존재합니다" - }, - "created": { - "title": "스티키 생성됨", - "message": "스티키가 성공적으로 생성되었습니다" - }, - "not_created": { - "title": "스티키 생성되지 않음", - "message": "스티키를 생성할 수 없습니다" - }, - "updated": { - "title": "스티키 업데이트됨", - "message": "스티키가 성공적으로 업데이트되었습니다" - }, - "not_updated": { - "title": "스티키 업데이트되지 않음", - "message": "스티키를 업데이트할 수 없습니다" - }, - "removed": { - "title": "스티키 제거됨", - "message": "스티키가 성공적으로 제거되었습니다" - }, - "not_removed": { - "title": "스티키 제거되지 않음", - "message": "스티키를 제거할 수 없습니다" - } - } - }, - "role_details": { - "guest": { - "title": "게스트", - "description": "조직의 외부 멤버는 게스트로 초대될 수 있습니다." - }, - "member": { - "title": "멤버", - "description": "프로젝트, 주기 및 모듈 내에서 엔티티를 읽고, 쓰고, 편집하고, 삭제할 수 있는 권한" - }, - "admin": { - "title": "관리자", - "description": "작업 공간 내에서 모든 권한이 true로 설정됨." - } - }, - "user_roles": { - "product_or_project_manager": "제품 / 프로젝트 관리자", - "development_or_engineering": "개발 / 엔지니어링", - "founder_or_executive": "창립자 / 임원", - "freelancer_or_consultant": "프리랜서 / 컨설턴트", - "marketing_or_growth": "마케팅 / 성장", - "sales_or_business_development": "영업 / 비즈니스 개발", - "support_or_operations": "지원 / 운영", - "student_or_professor": "학생 / 교수", - "human_resources": "인사 / 자원", - "other": "기타" - }, - "importer": { - "github": { - "title": "Github", - "description": "GitHub 저장소에서 작업 항목을 가져오고 동기화합니다." - }, - "jira": { - "title": "Jira", - "description": "Jira 프로젝트 및 에픽에서 작업 항목과 에픽을 가져옵니다." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "작업 항목을 CSV 파일로 내보냅니다.", - "short_description": "CSV로 내보내기" - }, - "excel": { - "title": "Excel", - "description": "작업 항목을 Excel 파일로 내보냅니다.", - "short_description": "Excel로 내보내기" - }, - "xlsx": { - "title": "Excel", - "description": "작업 항목을 Excel 파일로 내보냅니다.", - "short_description": "Excel로 내보내기" - }, - "json": { - "title": "JSON", - "description": "작업 항목을 JSON 파일로 내보냅니다.", - "short_description": "JSON으로 내보내기" - } - }, - "default_global_view": { - "all_issues": "모든 작업 항목", - "assigned": "할당됨", - "created": "생성됨", - "subscribed": "구독됨" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "시스템 기본값" - }, - "light": { - "label": "라이트" - }, - "dark": { - "label": "다크" - }, - "light_contrast": { - "label": "라이트 고대비" - }, - "dark_contrast": { - "label": "다크 고대비" - }, - "custom": { - "label": "사용자 정의 테마" - } - } - }, - "project_modules": { - "status": { - "backlog": "백로그", - "planned": "계획됨", - "in_progress": "진행 중", - "paused": "일시 중지됨", - "completed": "완료됨", - "cancelled": "취소됨" - }, - "layout": { - "list": "목록 레이아웃", - "board": "갤러리 레이아웃", - "timeline": "타임라인 레이아웃" - }, - "order_by": { - "name": "이름", - "progress": "진행", - "issues": "작업 항목 수", - "due_date": "마감일", - "created_at": "생성일", - "manual": "수동" - } - }, - "cycle": { - "label": "{count, plural, one {주기} other {주기}}", - "no_cycle": "주기 없음" - }, - "module": { - "label": "{count, plural, one {모듈} other {모듈}}", - "no_module": "모듈 없음" - }, - "description_versions": { - "last_edited_by": "마지막 편집자", - "previously_edited_by": "이전 편집자", - "edited_by": "편집자" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane이 시작되지 않았습니다. 이는 하나 이상의 Plane 서비스가 시작에 실패했기 때문일 수 있습니다.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "확실히 하려면 setup.sh와 Docker 로그에서 View Logs를 선택하세요." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "개요", - "empty_state": { - "title": "제목이 없습니다", - "description": "이 페이지에 제목을 추가하여 여기에서 확인해보세요." - } - }, - "info": { - "label": "정보", - "document_info": { - "words": "단어", - "characters": "문자", - "paragraphs": "단락", - "read_time": "읽기 시간" - }, - "actors_info": { - "edited_by": "편집자", - "created_by": "작성자" - }, - "version_history": { - "label": "버전 기록", - "current_version": "현재 버전" - } - }, - "assets": { - "label": "자산", - "download_button": "다운로드", - "empty_state": { - "title": "이미지가 없습니다", - "description": "이미지를 추가하여 여기에서 확인하세요." - } - } - }, - "open_button": "네비게이션 패널 열기", - "close_button": "네비게이션 패널 닫기", - "outline_floating_button": "개요 열기" - } -} diff --git a/packages/i18n/src/locales/ko/translations.ts b/packages/i18n/src/locales/ko/translations.ts new file mode 100644 index 0000000000..26901e17cb --- /dev/null +++ b/packages/i18n/src/locales/ko/translations.ts @@ -0,0 +1,2572 @@ +export default { + sidebar: { + projects: "프로젝트", + pages: "페이지", + new_work_item: "새 작업 항목", + home: "홈", + your_work: "나의 작업", + inbox: "받은 편지함", + workspace: "작업 공간", + views: "보기", + analytics: "분석", + work_items: "작업 항목", + cycles: "주기", + modules: "모듈", + intake: "접수", + drafts: "초안", + favorites: "즐겨찾기", + pro: "프로", + upgrade: "업그레이드", + }, + auth: { + common: { + email: { + label: "이메일", + placeholder: "name@company.com", + errors: { + required: "이메일이 필요합니다", + invalid: "유효하지 않은 이메일입니다", + }, + }, + password: { + label: "비밀번호", + set_password: "비밀번호 설정", + placeholder: "비밀번호 입력", + confirm_password: { + label: "비밀번호 확인", + placeholder: "비밀번호 확인", + }, + current_password: { + label: "현재 비밀번호", + }, + new_password: { + label: "새 비밀번호", + placeholder: "새 비밀번호 입력", + }, + change_password: { + label: { + default: "비밀번호 변경", + submitting: "비밀번호 변경 중", + }, + }, + errors: { + match: "비밀번호가 일치하지 않습니다", + empty: "비밀번호를 입력해주세요", + length: "비밀번호는 8자 이상이어야 합니다", + strength: { + weak: "비밀번호가 약합니다", + strong: "비밀번호가 강합니다", + }, + }, + submit: "비밀번호 설정", + toast: { + change_password: { + success: { + title: "성공!", + message: "비밀번호가 성공적으로 변경되었습니다.", + }, + error: { + title: "오류!", + message: "문제가 발생했습니다. 다시 시도해주세요.", + }, + }, + }, + }, + unique_code: { + label: "고유 코드", + placeholder: "gets-sets-flys", + paste_code: "이메일로 전송된 코드를 붙여넣기", + requesting_new_code: "새 코드 요청 중", + sending_code: "코드 전송 중", + }, + already_have_an_account: "이미 계정이 있으신가요?", + login: "로그인", + create_account: "계정 만들기", + new_to_plane: "Plane을 처음 사용하시나요?", + back_to_sign_in: "로그인으로 돌아가기", + resend_in: "{seconds}초 후 다시 전송", + sign_in_with_unique_code: "고유 코드로 로그인", + forgot_password: "비밀번호를 잊으셨나요?", + }, + sign_up: { + header: { + label: "팀과 함께 작업을 관리하려면 계정을 만드세요.", + step: { + email: { + header: "가입", + sub_header: "", + }, + password: { + header: "가입", + sub_header: "이메일-비밀번호 조합으로 가입하세요.", + }, + unique_code: { + header: "가입", + sub_header: "위 이메일 주소로 전송된 고유 코드로 가입하세요.", + }, + }, + }, + errors: { + password: { + strength: "강력한 비밀번호를 설정하여 진행하세요", + }, + }, + }, + sign_in: { + header: { + label: "팀과 함께 작업을 관리하려면 로그인하세요.", + step: { + email: { + header: "로그인 또는 가입", + sub_header: "", + }, + password: { + header: "로그인 또는 가입", + sub_header: "이메일-비밀번호 조합을 사용하여 로그인하세요.", + }, + unique_code: { + header: "로그인 또는 가입", + sub_header: "위 이메일 주소로 전송된 고유 코드로 로그인하세요.", + }, + }, + }, + }, + forgot_password: { + title: "비밀번호 재설정", + description: "사용자 계정의 인증된 이메일 주소를 입력하면 비밀번호 재설정 링크를 보내드립니다.", + email_sent: "이메일 주소로 재설정 링크를 보냈습니다", + send_reset_link: "재설정 링크 보내기", + errors: { + smtp_not_enabled: "SMTP가 활성화되지 않았습니다. 비밀번호 재설정 링크를 보낼 수 없습니다.", + }, + toast: { + success: { + title: "이메일 전송됨", + message: "비밀번호 재설정 링크를 확인하세요. 몇 분 내에 나타나지 않으면 스팸 폴더를 확인하세요.", + }, + error: { + title: "오류!", + message: "문제가 발생했습니다. 다시 시도해주세요.", + }, + }, + }, + reset_password: { + title: "새 비밀번호 설정", + description: "강력한 비밀번호로 계정을 보호하세요", + }, + set_password: { + title: "계정 보호", + description: "비밀번호 설정은 안전한 로그인을 도와줍니다", + }, + sign_out: { + toast: { + error: { + title: "오류!", + message: "로그아웃에 실패했습니다. 다시 시도해주세요.", + }, + }, + }, + }, + submit: "제출", + cancel: "취소", + loading: "로딩 중", + error: "오류", + success: "성공", + warning: "경고", + info: "정보", + close: "닫기", + yes: "예", + no: "아니오", + ok: "확인", + name: "이름", + description: "설명", + search: "검색", + add_member: "멤버 추가", + adding_members: "멤버 추가 중", + remove_member: "멤버 제거", + add_members: "멤버 추가", + adding_member: "멤버 추가 중", + remove_members: "멤버 제거", + add: "추가", + adding: "추가 중", + remove: "제거", + add_new: "새로 추가", + remove_selected: "선택 제거", + first_name: "이름", + last_name: "성", + email: "이메일", + display_name: "표시 이름", + role: "역할", + timezone: "시간대", + avatar: "아바타", + cover_image: "커버 이미지", + password: "비밀번호", + change_cover: "커버 변경", + language: "언어", + saving: "저장 중", + save_changes: "변경 사항 저장", + deactivate_account: "계정 비활성화", + deactivate_account_description: + "계정을 비활성화하면 해당 계정 내의 모든 데이터와 리소스가 영구적으로 삭제되며 복구할 수 없습니다.", + profile_settings: "프로필 설정", + your_account: "나의 계정", + security: "보안", + activity: "활동", + appearance: "외관", + notifications: "알림", + workspaces: "작업 공간", + create_workspace: "작업 공간 생성", + invitations: "초대", + summary: "요약", + assigned: "할당됨", + created: "생성됨", + subscribed: "구독됨", + you_do_not_have_the_permission_to_access_this_page: "이 페이지에 접근할 권한이 없습니다.", + something_went_wrong_please_try_again: "문제가 발생했습니다. 다시 시도해주세요.", + load_more: "더 보기", + select_or_customize_your_interface_color_scheme: "인터페이스 색상 테마를 선택하거나 사용자 정의하세요.", + theme: "테마", + system_preference: "시스템 기본값", + light: "라이트", + dark: "다크", + light_contrast: "라이트 고대비", + dark_contrast: "다크 고대비", + custom: "사용자 정의 테마", + select_your_theme: "테마 선택", + customize_your_theme: "테마 사용자 정의", + background_color: "배경 색상", + text_color: "텍스트 색상", + primary_color: "기본(테마) 색상", + sidebar_background_color: "사이드바 배경 색상", + sidebar_text_color: "사이드바 텍스트 색상", + set_theme: "테마 설정", + enter_a_valid_hex_code_of_6_characters: "유효한 6자리 헥스 코드를 입력하세요", + background_color_is_required: "배경 색상이 필요합니다", + text_color_is_required: "텍스트 색상이 필요합니다", + primary_color_is_required: "기본 색상이 필요합니다", + sidebar_background_color_is_required: "사이드바 배경 색상이 필요합니다", + sidebar_text_color_is_required: "사이드바 텍스트 색상이 필요합니다", + updating_theme: "테마 업데이트 중", + theme_updated_successfully: "테마가 성공적으로 업데이트되었습니다", + failed_to_update_the_theme: "테마 업데이트에 실패했습니다", + email_notifications: "이메일 알림", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "구독한 작업 항목에 대한 최신 정보를 유지하세요. 알림을 받으려면 이 기능을 활성화하세요.", + email_notification_setting_updated_successfully: "이메일 알림 설정이 성공적으로 업데이트되었습니다", + failed_to_update_email_notification_setting: "이메일 알림 설정 업데이트에 실패했습니다", + notify_me_when: "다음 경우 알림", + property_changes: "속성 변경", + property_changes_description: "작업 항목의 속성(담당자, 우선순위, 추정치 등)이 변경될 때 알림을 받습니다.", + state_change: "상태 변경", + state_change_description: "작업 항목이 다른 상태로 이동할 때 알림을 받습니다", + issue_completed: "작업 항목 완료", + issue_completed_description: "작업 항목이 완료될 때만 알림을 받습니다", + comments: "댓글", + comments_description: "작업 항목에 누군가 댓글을 남길 때 알림을 받습니다", + mentions: "멘션", + mentions_description: "댓글이나 설명에서 누군가 나를 멘션할 때만 알림을 받습니다", + old_password: "기존 비밀번호", + general_settings: "일반 설정", + sign_out: "로그아웃", + signing_out: "로그아웃 중", + active_cycles: "활성 주기", + active_cycles_description: + "프로젝트 전반의 주기를 모니터링하고, 고우선 작업 항목을 추적하며, 주의가 필요한 주기를 확대합니다.", + on_demand_snapshots_of_all_your_cycles: "모든 주기의 주문형 스냅샷", + upgrade: "업그레이드", + "10000_feet_view": "10,000피트 뷰", + "10000_feet_view_description": "모든 프로젝트의 주기를 한 번에 확인할 수 있습니다.", + get_snapshot_of_each_active_cycle: "각 활성 주기의 스냅샷을 얻으세요.", + get_snapshot_of_each_active_cycle_description: + "모든 활성 주기의 고수준 메트릭을 추적하고, 진행 상태를 확인하며, 마감일에 대한 범위를 파악합니다.", + compare_burndowns: "버다운 비교", + compare_burndowns_description: "각 팀의 성과를 모니터링하고 각 주기의 버다운 보고서를 확인합니다.", + quickly_see_make_or_break_issues: "빠르게 중요한 작업 항목을 확인하세요.", + quickly_see_make_or_break_issues_description: + "각 주기의 고우선 작업 항목을 미리 보고 마감일에 대한 모든 작업 항목을 한 번에 확인합니다.", + zoom_into_cycles_that_need_attention: "주의가 필요한 주기를 확대하세요.", + zoom_into_cycles_that_need_attention_description: "기대에 부합하지 않는 주기의 상태를 한 번에 조사합니다.", + stay_ahead_of_blockers: "차단 요소를 미리 파악하세요.", + stay_ahead_of_blockers_description: + "프로젝트 간의 문제를 파악하고 다른 뷰에서 명확하지 않은 주기 간의 종속성을 확인합니다.", + analytics: "분석", + workspace_invites: "작업 공간 초대", + enter_god_mode: "갓 모드로 전환", + workspace_logo: "작업 공간 로고", + new_issue: "새 작업 항목", + your_work: "나의 작업", + drafts: "초안", + projects: "프로젝트", + views: "보기", + workspace: "작업 공간", + archives: "아카이브", + settings: "설정", + failed_to_move_favorite: "즐겨찾기 이동 실패", + favorites: "즐겨찾기", + no_favorites_yet: "아직 즐겨찾기가 없습니다", + create_folder: "폴더 생성", + new_folder: "새 폴더", + favorite_updated_successfully: "즐겨찾기가 성공적으로 업데이트되었습니다", + favorite_created_successfully: "즐겨찾기가 성공적으로 생성되었습니다", + folder_already_exists: "폴더가 이미 존재합니다", + folder_name_cannot_be_empty: "폴더 이름은 비워둘 수 없습니다", + something_went_wrong: "문제가 발생했습니다", + failed_to_reorder_favorite: "즐겨찾기 재정렬 실패", + favorite_removed_successfully: "즐겨찾기가 성공적으로 제거되었습니다", + failed_to_create_favorite: "즐겨찾기 생성 실패", + failed_to_rename_favorite: "즐겨찾기 이름 변경 실패", + project_link_copied_to_clipboard: "프로젝트 링크가 클립보드에 복사되었습니다", + link_copied: "링크 복사됨", + add_project: "프로젝트 추가", + create_project: "프로젝트 생성", + failed_to_remove_project_from_favorites: "프로젝트를 즐겨찾기에서 제거하지 못했습니다. 다시 시도해주세요.", + project_created_successfully: "프로젝트가 성공적으로 생성되었습니다", + project_created_successfully_description: + "프로젝트가 성공적으로 생성되었습니다. 이제 작업 항목을 추가할 수 있습니다.", + project_name_already_taken: "프로젝트 이름이 이미 사용 중입니다.", + project_identifier_already_taken: "프로젝트 식별자가 이미 사용 중입니다.", + project_cover_image_alt: "프로젝트 커버 이미지", + name_is_required: "이름이 필요합니다", + title_should_be_less_than_255_characters: "제목은 255자 미만이어야 합니다", + project_name: "프로젝트 이름", + project_id_must_be_at_least_1_character: "프로젝트 ID는 최소 1자 이상이어야 합니다", + project_id_must_be_at_most_5_characters: "프로젝트 ID는 최대 5자 이하여야 합니다", + project_id: "프로젝트 ID", + project_id_tooltip_content: "작업 항목을 고유하게 식별하는 데 도움이 됩니다. 최대 5자.", + description_placeholder: "설명", + only_alphanumeric_non_latin_characters_allowed: "영숫자 및 비라틴 문자만 허용됩니다.", + project_id_is_required: "프로젝트 ID가 필요합니다", + project_id_allowed_char: "영숫자 및 비라틴 문자만 허용됩니다.", + project_id_min_char: "프로젝트 ID는 최소 1자 이상이어야 합니다", + project_id_max_char: "프로젝트 ID는 최대 5자 이하여야 합니다", + project_description_placeholder: "프로젝트 설명 입력", + select_network: "네트워크 선택", + lead: "리드", + date_range: "날짜 범위", + private: "비공개", + public: "공개", + accessible_only_by_invite: "초대에 의해서만 접근 가능", + anyone_in_the_workspace_except_guests_can_join: "게스트를 제외한 작업 공간의 모든 사람이 참여할 수 있습니다", + creating: "생성 중", + creating_project: "프로젝트 생성 중", + adding_project_to_favorites: "프로젝트를 즐겨찾기에 추가 중", + project_added_to_favorites: "프로젝트가 즐겨찾기에 추가되었습니다", + couldnt_add_the_project_to_favorites: "프로젝트를 즐겨찾기에 추가하지 못했습니다. 다시 시도해주세요.", + removing_project_from_favorites: "프로젝트를 즐겨찾기에서 제거 중", + project_removed_from_favorites: "프로젝트가 즐겨찾기에서 제거되었습니다", + couldnt_remove_the_project_from_favorites: "프로젝트를 즐겨찾기에서 제거하지 못했습니다. 다시 시도해주세요.", + add_to_favorites: "즐겨찾기에 추가", + remove_from_favorites: "즐겨찾기에서 제거", + publish_project: "프로젝트 게시", + publish: "게시", + copy_link: "링크 복사", + leave_project: "프로젝트 떠나기", + join_the_project_to_rearrange: "프로젝트에 참여하여 재정렬", + drag_to_rearrange: "드래그하여 재정렬", + congrats: "축하합니다!", + open_project: "프로젝트 열기", + issues: "작업 항목", + cycles: "주기", + modules: "모듈", + pages: "페이지", + intake: "접수", + time_tracking: "시간 추적", + work_management: "작업 관리", + projects_and_issues: "프로젝트 및 작업 항목", + projects_and_issues_description: "이 프로젝트에서 이들을 켜거나 끕니다.", + cycles_description: + "프로젝트별로 작업 시간을 설정하고 필요에 따라 기간을 조정하세요. 한 주기는 2주일일 수 있고, 다음은 1주일일 수 있습니다.", + modules_description: "작업을 전담 리더와 담당자가 있는 하위 프로젝트로 구성하세요.", + views_description: "사용자 정의 정렬, 필터 및 표시 옵션을 저장하거나 팀과 공유하세요.", + pages_description: "자유 형식의 콘텐츠를 작성하고 편집하세요. 메모, 문서, 무엇이든 가능합니다.", + intake_description: "비회원이 버그, 피드백, 제안을 공유할 수 있도록 하되, 워크플로우를 방해하지 않도록 합니다.", + time_tracking_description: "작업 항목 및 프로젝트에 소요된 시간을 기록하세요.", + work_management_description: "작업 및 프로젝트를 쉽게 관리합니다.", + documentation: "문서", + message_support: "지원 메시지", + contact_sales: "영업 문의", + hyper_mode: "하이퍼 모드", + keyboard_shortcuts: "키보드 단축키", + whats_new: "새로운 기능", + version: "버전", + we_are_having_trouble_fetching_the_updates: "업데이트를 가져오는 데 문제가 발생했습니다.", + our_changelogs: "우리의 변경 로그", + for_the_latest_updates: "최신 업데이트를 위해", + please_visit: "방문해주세요", + docs: "문서", + full_changelog: "전체 변경 로그", + support: "지원", + discord: "디스코드", + powered_by_plane_pages: "Plane Pages 제공", + please_select_at_least_one_invitation: "최소 하나의 초대를 선택하세요.", + please_select_at_least_one_invitation_description: "작업 공간에 참여하려면 최소 하나의 초대를 선택하세요.", + we_see_that_someone_has_invited_you_to_join_a_workspace: "누군가가 작업 공간에 참여하도록 초대했습니다", + join_a_workspace: "작업 공간 참여", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: "누군가가 작업 공간에 참여하도록 초대했습니다", + join_a_workspace_description: "작업 공간 참여", + accept_and_join: "수락하고 참여", + go_home: "홈으로 이동", + no_pending_invites: "보류 중인 초대 없음", + you_can_see_here_if_someone_invites_you_to_a_workspace: "누군가가 작업 공간에 초대하면 여기에 표시됩니다", + back_to_home: "홈으로 돌아가기", + workspace_name: "작업 공간 이름", + deactivate_your_account: "계정 비활성화", + deactivate_your_account_description: + "계정을 비활성화하면 작업 항목에 할당될 수 없으며 작업 공간에 대한 청구가 발생하지 않습니다. 계정을 다시 활성화하려면 이 이메일 주소로 작업 공간 초대가 필요합니다.", + deactivating: "비활성화 중", + confirm: "확인", + confirming: "확인 중", + draft_created: "초안 생성됨", + issue_created_successfully: "작업 항목이 성공적으로 생성되었습니다", + draft_creation_failed: "초안 생성 실패", + issue_creation_failed: "작업 항목 생성 실패", + draft_issue: "초안 작업 항목", + issue_updated_successfully: "작업 항목이 성공적으로 업데이트되었습니다", + issue_could_not_be_updated: "작업 항목을 업데이트할 수 없습니다", + create_a_draft: "초안 생성", + save_to_drafts: "초안에 저장", + save: "저장", + update: "업데이트", + updating: "업데이트 중", + create_new_issue: "새 작업 항목 생성", + editor_is_not_ready_to_discard_changes: "편집기가 변경 사항을 폐기할 준비가 되지 않았습니다", + failed_to_move_issue_to_project: "작업 항목을 프로젝트로 이동하지 못했습니다", + create_more: "더 많이 생성", + add_to_project: "프로젝트에 추가", + discard: "폐기", + duplicate_issue_found: "중복된 작업 항목 발견", + duplicate_issues_found: "중복된 작업 항목 발견", + no_matching_results: "일치하는 결과 없음", + title_is_required: "제목이 필요합니다", + title: "제목", + state: "상태", + priority: "우선순위", + none: "없음", + urgent: "긴급", + high: "높음", + medium: "중간", + low: "낮음", + members: "멤버", + assignee: "담당자", + assignees: "담당자", + you: "나", + labels: "레이블", + create_new_label: "새 레이블 생성", + start_date: "시작 날짜", + end_date: "종료 날짜", + due_date: "마감일", + estimate: "추정", + change_parent_issue: "상위 작업 항목 변경", + remove_parent_issue: "상위 작업 항목 제거", + add_parent: "상위 항목 추가", + loading_members: "멤버 로딩 중", + view_link_copied_to_clipboard: "뷰 링크가 클립보드에 복사되었습니다.", + required: "필수", + optional: "선택", + Cancel: "취소", + edit: "편집", + archive: "아카이브", + restore: "복원", + open_in_new_tab: "새 탭에서 열기", + delete: "삭제", + deleting: "삭제 중", + make_a_copy: "복사본 만들기", + move_to_project: "프로젝트로 이동", + good: "좋은", + morning: "아침", + afternoon: "오후", + evening: "저녁", + show_all: "모두 보기", + show_less: "간략히 보기", + no_data_yet: "아직 데이터 없음", + syncing: "동기화 중", + add_work_item: "작업 항목 추가", + advanced_description_placeholder: "명령어를 위해 '/'를 누르세요", + create_work_item: "작업 항목 생성", + attachments: "첨부 파일", + declining: "거절 중", + declined: "거절됨", + decline: "거절", + unassigned: "미할당", + work_items: "작업 항목", + add_link: "링크 추가", + points: "포인트", + no_assignee: "담당자 없음", + no_assignees_yet: "아직 담당자 없음", + no_labels_yet: "아직 레이블 없음", + ideal: "이상적인", + current: "현재", + no_matching_members: "일치하는 멤버 없음", + leaving: "떠나는 중", + removing: "제거 중", + leave: "떠나기", + refresh: "새로 고침", + refreshing: "새로 고침 중", + refresh_status: "상태 새로 고침", + prev: "이전", + next: "다음", + re_generating: "다시 생성 중", + re_generate: "다시 생성", + re_generate_key: "키 다시 생성", + export: "내보내기", + member: "{count, plural, one{# 멤버} other{# 멤버}}", + new_password_must_be_different_from_old_password: "새 비밀번호는 이전 비밀번호와 다르게 설정해야 합니다", + edited: "수정됨", + bot: "봇", + project_view: { + sort_by: { + created_at: "생성일", + updated_at: "업데이트일", + name: "이름", + }, + }, + toast: { + success: "성공!", + error: "오류!", + }, + links: { + toasts: { + created: { + title: "링크 생성됨", + message: "링크가 성공적으로 생성되었습니다", + }, + not_created: { + title: "링크 생성되지 않음", + message: "링크를 생성할 수 없습니다", + }, + updated: { + title: "링크 업데이트됨", + message: "링크가 성공적으로 업데이트되었습니다", + }, + not_updated: { + title: "링크 업데이트되지 않음", + message: "링크를 업데이트할 수 없습니다", + }, + removed: { + title: "링크 제거됨", + message: "링크가 성공적으로 제거되었습니다", + }, + not_removed: { + title: "링크 제거되지 않음", + message: "링크를 제거할 수 없습니다", + }, + }, + }, + home: { + empty: { + quickstart_guide: "빠른 시작 가이드", + not_right_now: "지금은 안 함", + create_project: { + title: "프로젝트 생성", + description: "Plane에서 대부분의 작업은 프로젝트로 시작됩니다.", + cta: "시작하기", + }, + invite_team: { + title: "팀 초대", + description: "동료와 함께 빌드, 배포 및 관리하세요.", + cta: "초대하기", + }, + configure_workspace: { + title: "작업 공간 설정", + description: "기능을 켜거나 끄거나 그 이상을 수행하세요.", + cta: "이 작업 공간 설정", + }, + personalize_account: { + title: "Plane을 개인화하세요.", + description: "사진, 색상 등을 선택하세요.", + cta: "지금 개인화", + }, + widgets: { + title: "위젯이 없으면 조용합니다. 켜세요", + description: "모든 위젯이 꺼져 있는 것 같습니다. 지금 활성화하여 경험을 향상시키세요!", + primary_button: { + text: "위젯 관리", + }, + }, + }, + quick_links: { + empty: "작업과 관련된 링크를 저장하세요.", + add: "빠른 링크 추가", + title: "빠른 링크", + title_plural: "빠른 링크", + }, + recents: { + title: "최근 항목", + empty: { + project: "최근 방문한 프로젝트가 여기에 표시됩니다.", + page: "최근 방문한 페이지가 여기에 표시됩니다.", + issue: "최근 방문한 작업 항목이 여기에 표시됩니다.", + default: "아직 최근 항목이 없습니다.", + }, + filters: { + all: "모든", + projects: "프로젝트", + pages: "페이지", + issues: "작업 항목", + }, + }, + new_at_plane: { + title: "Plane의 새로운 기능", + }, + quick_tutorial: { + title: "빠른 튜토리얼", + }, + widget: { + reordered_successfully: "위젯이 성공적으로 재정렬되었습니다.", + reordering_failed: "위젯 재정렬 중 오류가 발생했습니다.", + }, + manage_widgets: "위젯 관리", + title: "홈", + star_us_on_github: "GitHub에서 별표", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL이 유효하지 않습니다", + placeholder: "URL 입력 또는 붙여넣기", + }, + title: { + text: "표시 제목", + placeholder: "이 링크를 어떻게 표시할지 입력하세요", + }, + }, + }, + common: { + all: "모두", + states: "상태", + state: "상태", + state_groups: "상태 그룹", + state_group: "상태 그룹", + priorities: "우선순위", + priority: "우선순위", + team_project: "팀 프로젝트", + project: "프로젝트", + cycle: "주기", + cycles: "주기", + module: "모듈", + modules: "모듈", + labels: "레이블", + label: "레이블", + assignees: "담당자", + assignee: "담당자", + created_by: "생성자", + none: "없음", + link: "링크", + estimates: "추정", + estimate: "추정", + created_at: "생성일", + completed_at: "완료일", + layout: "레이아웃", + filters: "필터", + display: "디스플레이", + load_more: "더 보기", + activity: "활동", + analytics: "분석", + dates: "날짜", + success: "성공!", + something_went_wrong: "문제가 발생했습니다", + error: { + label: "오류!", + message: "오류가 발생했습니다. 다시 시도해주세요.", + }, + group_by: "그룹화 기준", + epic: "에픽", + epics: "에픽", + work_item: "작업 항목", + work_items: "작업 항목", + sub_work_item: "하위 작업 항목", + add: "추가", + warning: "경고", + updating: "업데이트 중", + adding: "추가 중", + update: "업데이트", + creating: "생성 중", + create: "생성", + cancel: "취소", + description: "설명", + title: "제목", + attachment: "첨부 파일", + general: "일반", + features: "기능", + automation: "자동화", + project_name: "프로젝트 이름", + project_id: "프로젝트 ID", + project_timezone: "프로젝트 시간대", + created_on: "생성일", + update_project: "프로젝트 업데이트", + identifier_already_exists: "식별자가 이미 존재합니다", + add_more: "더 추가", + defaults: "기본값", + add_label: "레이블 추가", + customize_time_range: "시간 범위 사용자 정의", + loading: "로딩 중", + attachments: "첨부 파일", + property: "속성", + properties: "속성", + parent: "상위 항목", + page: "페이지", + remove: "제거", + archiving: "아카이브 중", + archive: "아카이브", + access: { + public: "공개", + private: "비공개", + }, + done: "완료", + sub_work_items: "하위 작업 항목", + comment: "댓글", + workspace_level: "작업 공간 수준", + order_by: { + label: "정렬 기준", + manual: "수동", + last_created: "마지막 생성", + last_updated: "마지막 업데이트", + start_date: "시작 날짜", + due_date: "마감일", + asc: "오름차순", + desc: "내림차순", + updated_on: "업데이트일", + }, + sort: { + asc: "오름차순", + desc: "내림차순", + created_on: "생성일", + updated_on: "업데이트일", + }, + comments: "댓글", + updates: "업데이트", + clear_all: "모두 지우기", + copied: "복사됨!", + link_copied: "링크 복사됨!", + link_copied_to_clipboard: "링크가 클립보드에 복사되었습니다", + copied_to_clipboard: "작업 항목 링크가 클립보드에 복사되었습니다", + is_copied_to_clipboard: "작업 항목이 클립보드에 복사되었습니다", + no_links_added_yet: "아직 추가된 링크 없음", + add_link: "링크 추가", + links: "링크", + go_to_workspace: "작업 공간으로 이동", + progress: "진행", + optional: "선택", + join: "참여", + go_back: "뒤로 가기", + continue: "계속", + resend: "다시 보내기", + relations: "관계", + errors: { + default: { + title: "오류!", + message: "문제가 발생했습니다. 다시 시도해주세요.", + }, + required: "이 필드는 필수입니다", + entity_required: "{entity}가 필요합니다", + restricted_entity: "{entity}은(는) 제한되어 있습니다", + }, + update_link: "링크 업데이트", + attach: "첨부", + create_new: "새로 생성", + add_existing: "기존 항목 추가", + type_or_paste_a_url: "URL 입력 또는 붙여넣기", + url_is_invalid: "URL이 유효하지 않습니다", + display_title: "표시 제목", + link_title_placeholder: "이 링크를 어떻게 표시할지 입력하세요", + url: "URL", + side_peek: "사이드 피크", + modal: "모달", + full_screen: "전체 화면", + close_peek_view: "피크 뷰 닫기", + toggle_peek_view_layout: "피크 뷰 레이아웃 전환", + options: "옵션", + duration: "기간", + today: "오늘", + week: "주", + month: "월", + quarter: "분기", + press_for_commands: "명령어를 위해 '/'를 누르세요", + click_to_add_description: "설명 추가를 위해 클릭하세요", + search: { + label: "검색", + placeholder: "검색어 입력", + no_matches_found: "일치하는 항목 없음", + no_matching_results: "일치하는 결과 없음", + }, + actions: { + edit: "편집", + make_a_copy: "복사본 만들기", + open_in_new_tab: "새 탭에서 열기", + copy_link: "링크 복사", + archive: "아카이브", + restore: "복원", + delete: "삭제", + remove_relation: "관계 제거", + subscribe: "구독", + unsubscribe: "구독 취소", + clear_sorting: "정렬 지우기", + show_weekends: "주말 표시", + enable: "활성화", + disable: "비활성화", + }, + name: "이름", + discard: "폐기", + confirm: "확인", + confirming: "확인 중", + read_the_docs: "문서 읽기", + default: "기본값", + active: "활성", + enabled: "활성화됨", + disabled: "비활성화됨", + mandate: "의무", + mandatory: "필수", + yes: "예", + no: "아니오", + please_wait: "기다려주세요", + enabling: "활성화 중", + disabling: "비활성화 중", + beta: "베타", + or: "또는", + next: "다음", + back: "뒤로", + cancelling: "취소 중", + configuring: "구성 중", + clear: "지우기", + import: "가져오기", + connect: "연결", + authorizing: "인증 중", + processing: "처리 중", + no_data_available: "사용 가능한 데이터 없음", + from: "{name}에서", + authenticated: "인증됨", + select: "선택", + upgrade: "업그레이드", + add_seats: "좌석 추가", + projects: "프로젝트", + workspace: "작업 공간", + workspaces: "작업 공간", + team: "팀", + teams: "팀", + entity: "엔티티", + entities: "엔티티", + task: "작업", + tasks: "작업", + section: "섹션", + sections: "섹션", + edit: "편집", + connecting: "연결 중", + connected: "연결됨", + disconnect: "연결 해제", + disconnecting: "연결 해제 중", + installing: "설치 중", + install: "설치", + reset: "재설정", + live: "라이브", + change_history: "변경 기록", + coming_soon: "곧 출시", + member: "멤버", + members: "멤버", + you: "나", + upgrade_cta: { + higher_subscription: "더 높은 구독으로 업그레이드", + talk_to_sales: "영업팀과 상담", + }, + category: "카테고리", + categories: "카테고리", + saving: "저장 중", + save_changes: "변경 사항 저장", + delete: "삭제", + deleting: "삭제 중", + pending: "보류 중", + invite: "초대", + view: "보기", + deactivated_user: "비활성화된 사용자", + apply: "적용", + applying: "적용 중", + users: "사용자", + admins: "관리자", + guests: "게스트", + on_track: "계획대로 진행 중", + off_track: "계획 이탈", + at_risk: "위험", + timeline: "타임라인", + completion: "완료", + upcoming: "예정된", + completed: "완료됨", + in_progress: "진행 중", + planned: "계획된", + paused: "일시 중지됨", + no_of: "{entity} 수", + resolved: "해결됨", + }, + chart: { + x_axis: "X축", + y_axis: "Y축", + metric: "메트릭", + }, + form: { + title: { + required: "제목이 필요합니다", + max_length: "제목은 {length}자 미만이어야 합니다", + }, + }, + entity: { + grouping_title: "{entity} 그룹화", + priority: "{entity} 우선순위", + all: "모든 {entity}", + drop_here_to_move: "{entity}를 이동하려면 여기에 드롭하세요", + delete: { + label: "{entity} 삭제", + success: "{entity}가 성공적으로 삭제되었습니다", + failed: "{entity} 삭제 실패", + }, + update: { + failed: "{entity} 업데이트 실패", + success: "{entity}가 성공적으로 업데이트되었습니다", + }, + link_copied_to_clipboard: "{entity} 링크가 클립보드에 복사되었습니다", + fetch: { + failed: "{entity}를 가져오는 중 오류 발생", + }, + add: { + success: "{entity}가 성공적으로 추가되었습니다", + failed: "{entity} 추가 중 오류 발생", + }, + remove: { + success: "{entity}가 성공적으로 제거되었습니다", + failed: "{entity} 제거 중 오류 발생", + }, + }, + epic: { + all: "모든 에픽", + label: "{count, plural, one {에픽} other {에픽}}", + new: "새 에픽", + adding: "에픽 추가 중", + create: { + success: "에픽이 성공적으로 생성되었습니다", + }, + add: { + press_enter: "다른 에픽을 추가하려면 'Enter'를 누르세요", + label: "에픽 추가", + }, + title: { + label: "에픽 제목", + required: "에픽 제목이 필요합니다.", + }, + }, + issue: { + label: "{count, plural, one {작업 항목} other {작업 항목}}", + all: "모든 작업 항목", + edit: "작업 항목 편집", + title: { + label: "작업 항목 제목", + required: "작업 항목 제목이 필요합니다.", + }, + add: { + press_enter: "다른 작업 항목을 추가하려면 'Enter'를 누르세요", + label: "작업 항목 추가", + cycle: { + failed: "작업 항목을 주기에 추가할 수 없습니다. 다시 시도해주세요.", + success: "{count, plural, one {작업 항목} other {작업 항목}}이 주기에 성공적으로 추가되었습니다.", + loading: "{count, plural, one {작업 항목} other {작업 항목}}을 주기에 추가 중", + }, + assignee: "담당자 추가", + start_date: "시작 날짜 추가", + due_date: "마감일 추가", + parent: "상위 작업 항목 추가", + sub_issue: "하위 작업 항목 추가", + relation: "관계 추가", + link: "링크 추가", + existing: "기존 작업 항목 추가", + }, + remove: { + label: "작업 항목 제거", + cycle: { + loading: "작업 항목을 주기에서 제거 중", + success: "작업 항목이 주기에서 성공적으로 제거되었습니다.", + failed: "작업 항목을 주기에서 제거할 수 없습니다. 다시 시도해주세요.", + }, + module: { + loading: "작업 항목을 모듈에서 제거 중", + success: "작업 항목이 모듈에서 성공적으로 제거되었습니다.", + failed: "작업 항목을 모듈에서 제거할 수 없습니다. 다시 시도해주세요.", + }, + parent: { + label: "상위 작업 항목 제거", + }, + }, + new: "새 작업 항목", + adding: "작업 항목 추가 중", + create: { + success: "작업 항목이 성공적으로 생성되었습니다", + }, + priority: { + urgent: "긴급", + high: "높음", + medium: "중간", + low: "낮음", + }, + display: { + properties: { + label: "디스플레이 속성", + id: "ID", + issue_type: "작업 항목 유형", + sub_issue_count: "하위 작업 항목 수", + attachment_count: "첨부 파일 수", + created_on: "생성일", + sub_issue: "하위 작업 항목", + work_item_count: "작업 항목 수", + }, + extra: { + show_sub_issues: "하위 작업 항목 표시", + show_empty_groups: "빈 그룹 표시", + }, + }, + layouts: { + ordered_by_label: "이 레이아웃은 다음 기준으로 정렬됩니다", + list: "목록", + kanban: "보드", + calendar: "캘린더", + spreadsheet: "테이블", + gantt: "타임라인", + title: { + list: "목록 레이아웃", + kanban: "보드 레이아웃", + calendar: "캘린더 레이아웃", + spreadsheet: "테이블 레이아웃", + gantt: "타임라인 레이아웃", + }, + }, + states: { + active: "활성", + backlog: "백로그", + }, + comments: { + placeholder: "댓글 추가", + switch: { + private: "비공개 댓글로 전환", + public: "공개 댓글로 전환", + }, + create: { + success: "댓글이 성공적으로 생성되었습니다", + error: "댓글 생성 실패. 나중에 다시 시도해주세요.", + }, + update: { + success: "댓글이 성공적으로 업데이트되었습니다", + error: "댓글 업데이트 실패. 나중에 다시 시도해주세요.", + }, + remove: { + success: "댓글이 성공적으로 제거되었습니다", + error: "댓글 제거 실패. 나중에 다시 시도해주세요.", + }, + upload: { + error: "자산 업로드 실패. 나중에 다시 시도해주세요.", + }, + copy_link: { + success: "댓글 링크가 클립보드에 복사되었습니다", + error: "댓글 링크 복사 중 오류가 발생했습니다. 나중에 다시 시도해 주세요.", + }, + }, + empty_state: { + issue_detail: { + title: "작업 항목이 존재하지 않습니다", + description: "찾고 있는 작업 항목이 존재하지 않거나, 아카이브되었거나, 삭제되었습니다.", + primary_button: { + text: "다른 작업 항목 보기", + }, + }, + }, + sibling: { + label: "형제 작업 항목", + }, + archive: { + description: "완료되거나 취소된 작업 항목만 아카이브할 수 있습니다", + label: "작업 항목 아카이브", + confirm_message: "작업 항목을 아카이브하시겠습니까? 모든 아카이브된 작업 항목은 나중에 복원할 수 있습니다.", + success: { + label: "아카이브 성공", + message: "아카이브된 항목은 프로젝트 아카이브에서 찾을 수 있습니다.", + }, + failed: { + message: "작업 항목을 아카이브할 수 없습니다. 다시 시도해주세요.", + }, + }, + restore: { + success: { + title: "복원 성공", + message: "작업 항목을 프로젝트 작업 항목에서 찾을 수 있습니다.", + }, + failed: { + message: "작업 항목을 복원할 수 없습니다. 다시 시도해주세요.", + }, + }, + relation: { + relates_to: "관련 있음", + duplicate: "중복", + blocked_by: "차단됨", + blocking: "차단 중", + }, + copy_link: "작업 항목 링크 복사", + delete: { + label: "작업 항목 삭제", + error: "작업 항목 삭제 중 오류 발생", + }, + subscription: { + actions: { + subscribed: "작업 항목이 성공적으로 구독되었습니다", + unsubscribed: "작업 항목 구독이 성공적으로 취소되었습니다", + }, + }, + select: { + error: "최소 하나의 작업 항목을 선택하세요", + empty: "선택된 작업 항목 없음", + add_selected: "선택된 작업 항목 추가", + select_all: "모두 선택", + deselect_all: "모두 선택 해제", + }, + open_in_full_screen: "작업 항목을 전체 화면으로 열기", + }, + attachment: { + error: "파일을 첨부할 수 없습니다. 다시 업로드하세요.", + only_one_file_allowed: "한 번에 하나의 파일만 업로드할 수 있습니다.", + file_size_limit: "파일 크기는 {size}MB 이하이어야 합니다.", + drag_and_drop: "업로드하려면 아무 곳에나 드래그 앤 드롭하세요", + delete: "첨부 파일 삭제", + }, + label: { + select: "레이블 선택", + create: { + success: "레이블이 성공적으로 생성되었습니다", + failed: "레이블 생성 실패", + already_exists: "레이블이 이미 존재합니다", + type: "새 레이블을 추가하려면 입력하세요", + }, + }, + sub_work_item: { + update: { + success: "하위 작업 항목이 성공적으로 업데이트되었습니다", + error: "하위 작업 항목 업데이트 중 오류 발생", + }, + remove: { + success: "하위 작업 항목이 성공적으로 제거되었습니다", + error: "하위 작업 항목 제거 중 오류 발생", + }, + empty_state: { + sub_list_filters: { + title: "적용된 필터에 일치하는 하위 작업 항목이 없습니다.", + description: "모든 하위 작업 항목을 보려면 모든 적용된 필터를 지우세요.", + action: "필터 지우기", + }, + list_filters: { + title: "적용된 필터에 일치하는 작업 항목이 없습니다.", + description: "모든 작업 항목을 보려면 모든 적용된 필터를 지우세요.", + action: "필터 지우기", + }, + }, + }, + view: { + label: "{count, plural, one {뷰} other {뷰}}", + create: { + label: "뷰 생성", + }, + update: { + label: "뷰 업데이트", + }, + }, + inbox_issue: { + status: { + pending: { + title: "보류 중", + description: "보류 중", + }, + declined: { + title: "거절됨", + description: "거절됨", + }, + snoozed: { + title: "미루기", + description: "{days, plural, one{# 일} other{# 일}} 남음", + }, + accepted: { + title: "수락됨", + description: "수락됨", + }, + duplicate: { + title: "중복", + description: "중복", + }, + }, + modals: { + decline: { + title: "작업 항목 거절", + content: "작업 항목 {value}을(를) 거절하시겠습니까?", + }, + delete: { + title: "작업 항목 삭제", + content: "작업 항목 {value}을(를) 삭제하시겠습니까?", + success: "작업 항목이 성공적으로 삭제되었습니다", + }, + }, + errors: { + snooze_permission: "프로젝트 관리자만 작업 항목을 미루거나 미루기 해제할 수 있습니다", + accept_permission: "프로젝트 관리자만 작업 항목을 수락할 수 있습니다", + decline_permission: "프로젝트 관리자만 작업 항목을 거절할 수 있습니다", + }, + actions: { + accept: "수락", + decline: "거절", + snooze: "미루기", + unsnooze: "미루기 해제", + copy: "작업 항목 링크 복사", + delete: "삭제", + open: "작업 항목 열기", + mark_as_duplicate: "중복으로 표시", + move: "{value}을(를) 프로젝트 작업 항목으로 이동", + }, + source: { + "in-app": "앱 내", + }, + order_by: { + created_at: "생성일", + updated_at: "업데이트일", + id: "ID", + }, + label: "접수", + page_label: "{workspace} - 접수", + modal: { + title: "접수 작업 항목 생성", + }, + tabs: { + open: "열기", + closed: "닫기", + }, + empty_state: { + sidebar_open_tab: { + title: "열린 작업 항목 없음", + description: "여기에서 열린 작업 항목을 찾을 수 있습니다. 새 작업 항목을 생성하세요.", + }, + sidebar_closed_tab: { + title: "닫힌 작업 항목 없음", + description: "수락되거나 거절된 모든 작업 항목을 여기에서 찾을 수 있습니다.", + }, + sidebar_filter: { + title: "일치하는 작업 항목 없음", + description: "적용된 필터와 일치하는 작업 항목이 없습니다. 새 작업 항목을 생성하세요.", + }, + detail: { + title: "작업 항목의 세부 정보를 보려면 선택하세요.", + }, + }, + }, + workspace_creation: { + heading: "작업 공간 생성", + subheading: "Plane을 사용하려면 작업 공간을 생성하거나 참여해야 합니다.", + form: { + name: { + label: "작업 공간 이름", + placeholder: "익숙하고 인식 가능한 이름이 가장 좋습니다.", + }, + url: { + label: "작업 공간 URL 설정", + placeholder: "URL 입력 또는 붙여넣기", + edit_slug: "URL의 슬러그만 편집할 수 있습니다", + }, + organization_size: { + label: "이 작업 공간을 사용할 사람 수", + placeholder: "범위 선택", + }, + }, + errors: { + creation_disabled: { + title: "작업 공간은 인스턴스 관리자만 생성할 수 있습니다", + description: "인스턴스 관리자 이메일 주소를 알고 있다면 아래 버튼을 클릭하여 연락하세요.", + request_button: "인스턴스 관리자 요청", + }, + validation: { + name_alphanumeric: "작업 공간 이름에는 (' '), ('-'), ('_') 및 영숫자 문자만 포함될 수 있습니다.", + name_length: "이름은 80자 이내로 제한하세요.", + url_alphanumeric: "URL에는 ('-') 및 영숫자 문자만 포함될 수 있습니다.", + url_length: "URL은 48자 이내로 제한하세요.", + url_already_taken: "작업 공간 URL이 이미 사용 중입니다!", + }, + }, + request_email: { + subject: "새 작업 공간 요청", + body: "안녕하세요 인스턴스 관리자님,\n\n[목적]을 위해 [/workspace-name] URL로 새 작업 공간을 생성해 주세요.\n\n감사합니다,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "작업 공간 생성", + loading: "작업 공간 생성 중", + }, + toast: { + success: { + title: "성공", + message: "작업 공간이 성공적으로 생성되었습니다", + }, + error: { + title: "오류", + message: "작업 공간을 생성할 수 없습니다. 다시 시도해주세요.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "프로젝트, 활동 및 메트릭 개요", + description: + "Plane에 오신 것을 환영합니다. 첫 번째 프로젝트를 생성하고 작업 항목을 추적하면 이 페이지가 진행 상황을 돕는 공간으로 변합니다. 관리자도 팀의 진행을 돕는 항목을 볼 수 있습니다.", + primary_button: { + text: "첫 번째 프로젝트 생성", + comic: { + title: "Plane에서 모든 것은 프로젝트로 시작됩니다", + description: "프로젝트는 제품 로드맵, 마케팅 캠페인 또는 새로운 자동차 출시일 수 있습니다.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "분석", + page_label: "{workspace} - 분석", + open_tasks: "열린 작업 항목", + error: "데이터를 가져오는 중 오류가 발생했습니다.", + work_items_closed_in: "닫힌 작업 항목", + selected_projects: "선택된 프로젝트", + total_members: "총 멤버", + total_cycles: "총 주기", + total_modules: "총 모듈", + pending_work_items: { + title: "보류 중인 작업 항목", + empty_state: "동료의 보류 중인 작업 항목 분석이 여기에 표시됩니다.", + }, + work_items_closed_in_a_year: { + title: "1년 동안 닫힌 작업 항목", + empty_state: "작업 항목을 닫아 그래프에서 분석을 확인하세요.", + }, + most_work_items_created: { + title: "가장 많은 작업 항목 생성", + empty_state: "동료와 그들이 생성한 작업 항목 수가 여기에 표시됩니다.", + }, + most_work_items_closed: { + title: "가장 많은 작업 항목 닫힘", + empty_state: "동료와 그들이 닫은 작업 항목 수가 여기에 표시됩니다.", + }, + tabs: { + scope_and_demand: "범위 및 수요", + custom: "맞춤형 분석", + }, + empty_state: { + customized_insights: { + description: "귀하에게 할당된 작업 항목이 상태별로 나누어 여기에 표시됩니다.", + title: "아직 데이터가 없습니다", + }, + created_vs_resolved: { + description: "시간이 지나면서 생성되고 해결된 작업 항목이 여기에 표시됩니다.", + title: "아직 데이터가 없습니다", + }, + project_insights: { + title: "아직 데이터가 없습니다", + description: "귀하에게 할당된 작업 항목이 상태별로 나누어 여기에 표시됩니다.", + }, + general: { + title: "진행 상황, 워크로드 및 할당을 추적하세요. 트렌드를 파악하고 장애물을 제거하며 더 빠르게 작업하세요", + description: + "범위 대 수요, 추정치 및 범위 크리프를 확인하세요. 팀 구성원과 팀의 성과를 파악하고 프로젝트가 제시간에 실행되도록 하세요.", + primary_button: { + text: "첫 번째 프로젝트 시작", + comic: { + title: "분석은 사이클 + 모듈과 함께 가장 잘 작동합니다", + description: + "먼저 작업 항목을 사이클로 시간 제한을 두고, 가능하다면 한 사이클 이상 걸리는 작업 항목을 모듈로 그룹화하세요. 왼쪽 탐색에서 둘 다 확인하세요.", + }, + }, + }, + }, + created_vs_resolved: "생성됨 vs 해결됨", + customized_insights: "맞춤형 인사이트", + backlog_work_items: "백로그 {entity}", + active_projects: "활성 프로젝트", + trend_on_charts: "차트의 추세", + all_projects: "모든 프로젝트", + summary_of_projects: "프로젝트 요약", + project_insights: "프로젝트 인사이트", + started_work_items: "시작된 {entity}", + total_work_items: "총 {entity}", + total_projects: "총 프로젝트 수", + total_admins: "총 관리자 수", + total_users: "총 사용자 수", + total_intake: "총 수입", + un_started_work_items: "시작되지 않은 {entity}", + total_guests: "총 게스트 수", + completed_work_items: "완료된 {entity}", + total: "총 {entity}", + }, + workspace_projects: { + label: "{count, plural, one {프로젝트} other {프로젝트}}", + create: { + label: "프로젝트 추가", + }, + network: { + label: "네트워크", + private: { + title: "비공개", + description: "초대에 의해서만 접근 가능", + }, + public: { + title: "공개", + description: "게스트를 제외한 작업 공간의 모든 사람이 참여할 수 있습니다", + }, + }, + error: { + permission: "이 작업을 수행할 권한이 없습니다.", + cycle_delete: "주기 삭제 실패", + module_delete: "모듈 삭제 실패", + issue_delete: "작업 항목 삭제 실패", + }, + state: { + backlog: "백로그", + unstarted: "시작되지 않음", + started: "시작됨", + completed: "완료됨", + cancelled: "취소됨", + }, + sort: { + manual: "수동", + name: "이름", + created_at: "생성일", + members_length: "멤버 수", + }, + scope: { + my_projects: "내 프로젝트", + archived_projects: "아카이브", + }, + common: { + months_count: "{months, plural, one{# 개월} other{# 개월}}", + }, + empty_state: { + general: { + title: "활성 프로젝트 없음", + description: + "각 프로젝트를 목표 지향 작업의 부모로 생각하세요. 프로젝트는 작업, 주기 및 모듈이 존재하는 곳이며, 동료와 함께 목표를 달성하는 데 도움이 됩니다. 새 프로젝트를 생성하거나 아카이브된 프로젝트를 필터링하세요.", + primary_button: { + text: "첫 번째 프로젝트 시작", + comic: { + title: "Plane에서 모든 것은 프로젝트로 시작됩니다", + description: "프로젝트는 제품 로드맵, 마케팅 캠페인 또는 새로운 자동차 출시일 수 있습니다.", + }, + }, + }, + no_projects: { + title: "프로젝트 없음", + description: "작업 항목을 생성하거나 작업을 관리하려면 프로젝트를 생성하거나 참여해야 합니다.", + primary_button: { + text: "첫 번째 프로젝트 시작", + comic: { + title: "Plane에서 모든 것은 프로젝트로 시작됩니다", + description: "프로젝트는 제품 로드맵, 마케팅 캠페인 또는 새로운 자동차 출시일 수 있습니다.", + }, + }, + }, + filter: { + title: "일치하는 프로젝트 없음", + description: "일치하는 프로젝트가 없습니다. 대신 새 프로젝트를 생성하세요.", + }, + search: { + description: "일치하는 프로젝트가 없습니다. 대신 새 프로젝트를 생성하세요", + }, + }, + }, + workspace_views: { + add_view: "뷰 추가", + empty_state: { + "all-issues": { + title: "프로젝트에 작업 항목 없음", + description: "첫 번째 프로젝트 완료! 이제 작업 항목을 추적 가능한 조각으로 나누세요. 시작합시다!", + primary_button: { + text: "새 작업 항목 생성", + }, + }, + assigned: { + title: "작업 항목 없음", + description: "할당된 작업 항목을 여기에서 추적할 수 있습니다.", + primary_button: { + text: "새 작업 항목 생성", + }, + }, + created: { + title: "작업 항목 없음", + description: "생성한 모든 작업 항목이 여기에 표시됩니다. 여기에서 직접 추적하세요.", + primary_button: { + text: "새 작업 항목 생성", + }, + }, + subscribed: { + title: "작업 항목 없음", + description: "관심 있는 작업 항목을 구독하고 여기에서 모두 추적하세요.", + }, + "custom-view": { + title: "작업 항목 없음", + description: "필터가 적용된 작업 항목을 여기에서 모두 추적하세요.", + }, + }, + }, + workspace_settings: { + label: "작업 공간 설정", + page_label: "{workspace} - 일반 설정", + key_created: "키 생성됨", + copy_key: + "이 비밀 키를 Plane Pages에 복사하고 저장하세요. 닫기 버튼을 누른 후에는 이 키를 볼 수 없습니다. 키가 포함된 CSV 파일이 다운로드되었습니다.", + token_copied: "토큰이 클립보드에 복사되었습니다.", + settings: { + general: { + title: "일반", + upload_logo: "로고 업로드", + edit_logo: "로고 편집", + name: "작업 공간 이름", + company_size: "회사 규모", + url: "작업 공간 URL", + update_workspace: "작업 공간 업데이트", + delete_workspace: "이 작업 공간 삭제", + delete_workspace_description: + "작업 공간을 삭제하면 해당 작업 공간 내의 모든 데이터와 리소스가 영구적으로 삭제되며 복구할 수 없습니다.", + delete_btn: "이 작업 공간 삭제", + delete_modal: { + title: "이 작업 공간을 삭제하시겠습니까?", + description: "유료 플랜의 활성화된 평가판이 있습니다. 먼저 취소해야 진행할 수 있습니다.", + dismiss: "무시", + cancel: "평가판 취소", + success_title: "작업 공간 삭제됨.", + success_message: "곧 프로필 페이지로 이동합니다.", + error_title: "작업이 실패했습니다.", + error_message: "다시 시도해주세요.", + }, + errors: { + name: { + required: "이름이 필요합니다", + max_length: "작업 공간 이름은 80자를 초과할 수 없습니다", + }, + company_size: { + required: "회사 규모가 필요합니다", + select_a_range: "조직 규모 선택", + }, + }, + }, + members: { + title: "멤버", + add_member: "멤버 추가", + pending_invites: "보류 중인 초대", + invitations_sent_successfully: "초대가 성공적으로 전송되었습니다", + leave_confirmation: + "작업 공간을 떠나시겠습니까? 더 이상 이 작업 공간에 접근할 수 없습니다. 이 작업은 되돌릴 수 없습니다.", + details: { + full_name: "전체 이름", + display_name: "표시 이름", + email_address: "이메일 주소", + account_type: "계정 유형", + authentication: "인증", + joining_date: "가입 날짜", + }, + modal: { + title: "사람들을 초대하여 협업하세요", + description: "작업 공간에서 협업할 사람들을 초대하세요.", + button: "초대 전송", + button_loading: "초대 전송 중", + placeholder: "name@company.com", + errors: { + required: "초대하려면 이메일 주소가 필요합니다.", + invalid: "이메일이 유효하지 않습니다", + }, + }, + }, + billing_and_plans: { + title: "청구 및 플랜", + current_plan: "현재 플랜", + free_plan: "현재 무료 플랜을 사용 중입니다", + view_plans: "플랜 보기", + }, + exports: { + title: "내보내기", + exporting: "내보내기 중", + previous_exports: "이전 내보내기", + export_separate_files: "데이터를 별도의 파일로 내보내기", + modal: { + title: "내보내기", + toasts: { + success: { + title: "내보내기 성공", + message: "이전 내보내기에서 내보낸 {entity}를 다운로드할 수 있습니다.", + }, + error: { + title: "내보내기 실패", + message: "내보내기가 실패했습니다. 다시 시도해주세요.", + }, + }, + }, + }, + webhooks: { + title: "웹훅", + add_webhook: "웹훅 추가", + modal: { + title: "웹훅 생성", + details: "웹훅 세부 정보", + payload: "페이로드 URL", + question: "어떤 이벤트가 이 웹훅을 트리거하길 원하십니까?", + error: "URL이 필요합니다", + }, + secret_key: { + title: "비밀 키", + message: "웹훅 페이로드에 로그인하려면 토큰을 생성하세요", + }, + options: { + all: "모든 항목 보내기", + individual: "개별 이벤트 선택", + }, + toasts: { + created: { + title: "웹훅 생성됨", + message: "웹훅이 성공적으로 생성되었습니다", + }, + not_created: { + title: "웹훅 생성되지 않음", + message: "웹훅을 생성할 수 없습니다", + }, + updated: { + title: "웹훅 업데이트됨", + message: "웹훅이 성공적으로 업데이트되었습니다", + }, + not_updated: { + title: "웹훅 업데이트되지 않음", + message: "웹훅을 업데이트할 수 없습니다", + }, + removed: { + title: "웹훅 제거됨", + message: "웹훅이 성공적으로 제거되었습니다", + }, + not_removed: { + title: "웹훅 제거되지 않음", + message: "웹훅을 제거할 수 없습니다", + }, + secret_key_copied: { + message: "비밀 키가 클립보드에 복사되었습니다.", + }, + secret_key_not_copied: { + message: "비밀 키를 복사하는 중 오류가 발생했습니다.", + }, + }, + }, + api_tokens: { + title: "API 토큰", + add_token: "API 토큰 추가", + create_token: "토큰 생성", + never_expires: "만료되지 않음", + generate_token: "토큰 생성", + generating: "생성 중", + delete: { + title: "API 토큰 삭제", + description: + "이 토큰을 사용하는 애플리케이션은 더 이상 Plane 데이터에 접근할 수 없습니다. 이 작업은 되돌릴 수 없습니다.", + success: { + title: "성공!", + message: "API 토큰이 성공적으로 삭제되었습니다", + }, + error: { + title: "오류!", + message: "API 토큰을 삭제할 수 없습니다", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "생성된 API 토큰 없음", + description: + "Plane API를 사용하여 Plane의 데이터를 외부 시스템과 통합할 수 있습니다. 토큰을 생성하여 시작하세요.", + }, + webhooks: { + title: "추가된 웹훅 없음", + description: "실시간 업데이트를 받고 작업을 자동화하려면 웹훅을 생성하세요.", + }, + exports: { + title: "아직 내보내기 없음", + description: "내보낼 때마다 참조용으로 여기에 복사본이 있습니다.", + }, + imports: { + title: "아직 가져오기 없음", + description: "이전 가져오기를 모두 여기에서 찾고 다운로드하세요.", + }, + }, + }, + profile: { + label: "프로필", + page_label: "나의 작업", + work: "작업", + details: { + joined_on: "가입일", + time_zone: "시간대", + }, + stats: { + workload: "작업량", + overview: "개요", + created: "생성된 작업 항목", + assigned: "할당된 작업 항목", + subscribed: "구독된 작업 항목", + state_distribution: { + title: "상태별 작업 항목", + empty: "작업 항목을 생성하여 상태별 그래프에서 분석을 확인하세요.", + }, + priority_distribution: { + title: "우선순위별 작업 항목", + empty: "작업 항목을 생성하여 우선순위별 그래프에서 분석을 확인하세요.", + }, + recent_activity: { + title: "최근 활동", + empty: "데이터를 찾을 수 없습니다. 입력을 확인하세요", + button: "오늘의 활동 다운로드", + button_loading: "다운로드 중", + }, + }, + actions: { + profile: "프로필", + security: "보안", + activity: "활동", + appearance: "외관", + notifications: "알림", + }, + tabs: { + summary: "요약", + assigned: "할당됨", + created: "생성됨", + subscribed: "구독됨", + activity: "활동", + }, + empty_state: { + activity: { + title: "아직 활동 없음", + description: + "새 작업 항목을 생성하여 시작하세요! 세부 정보와 속성을 추가하세요. Plane에서 더 많은 것을 탐색하여 활동을 확인하세요.", + }, + assigned: { + title: "할당된 작업 항목 없음", + description: "할당된 작업 항목을 여기에서 추적할 수 있습니다.", + }, + created: { + title: "작업 항목 없음", + description: "생성한 모든 작업 항목이 여기에 표시됩니다. 여기에서 직접 추적하세요.", + }, + subscribed: { + title: "작업 항목 없음", + description: "관심 있는 작업 항목을 구독하고 여기에서 모두 추적하세요.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "프로젝트 ID 입력", + please_select_a_timezone: "시간대를 선택하세요", + archive_project: { + title: "프로젝트 아카이브", + description: + "프로젝트를 아카이브하면 사이드 내비게이션에서 프로젝트가 목록에서 제외되지만 프로젝트 페이지에서 여전히 접근할 수 있습니다. 언제든지 프로젝트를 복원하거나 삭제할 수 있습니다.", + button: "프로젝트 아카이브", + }, + delete_project: { + title: "프로젝트 삭제", + description: + "프로젝트를 삭제하면 해당 프로젝트 내의 모든 데이터와 리소스가 영구적으로 삭제되며 복구할 수 없습니다.", + button: "프로젝트 삭제", + }, + toast: { + success: "프로젝트가 성공적으로 업데이트되었습니다", + error: "프로젝트를 업데이트할 수 없습니다. 다시 시도해주세요.", + }, + }, + members: { + label: "멤버", + project_lead: "프로젝트 리드", + default_assignee: "기본 담당자", + guest_super_permissions: { + title: "게스트 사용자에게 모든 작업 항목에 대한 보기 권한 부여:", + sub_heading: "이렇게 하면 게스트가 모든 프로젝트 작업 항목에 대한 보기 권한을 갖게 됩니다.", + }, + invite_members: { + title: "멤버 초대", + sub_heading: "프로젝트에서 작업할 멤버를 초대하세요.", + select_co_worker: "동료 선택", + }, + }, + states: { + describe_this_state_for_your_members: "멤버를 위해 이 상태를 설명하세요.", + empty_state: { + title: "{groupKey} 그룹에 사용할 수 있는 상태 없음", + description: "새 상태를 생성하세요", + }, + }, + labels: { + label_title: "레이블 제목", + label_title_is_required: "레이블 제목이 필요합니다", + label_max_char: "레이블 이름은 255자를 초과할 수 없습니다", + toast: { + error: "레이블 업데이트 중 오류 발생", + }, + }, + estimates: { + label: "추정", + title: "프로젝트 추정 활성화", + description: "팀의 복잡성과 작업량을 전달하는 데 도움이 됩니다.", + no_estimate: "추정 없음", + new: "새 추정 시스템", + create: { + custom: "사용자 지정", + start_from_scratch: "처음부터 시작", + choose_template: "템플릿 선택", + choose_estimate_system: "추정 시스템 선택", + enter_estimate_point: "추정 입력", + step: "단계 {step}/{total}", + label: "추정 생성", + }, + toasts: { + created: { + success: { + title: "추정 생성됨", + message: "추정이 성공적으로 생성되었습니다", + }, + error: { + title: "추정 생성 실패", + message: "새 추정을 생성할 수 없습니다. 다시 시도해 주세요.", + }, + }, + updated: { + success: { + title: "추정 수정됨", + message: "프로젝트의 추정이 업데이트되었습니다.", + }, + error: { + title: "추정 수정 실패", + message: "추정을 수정할 수 없습니다. 다시 시도해 주세요", + }, + }, + enabled: { + success: { + title: "성공!", + message: "추정이 활성화되었습니다.", + }, + }, + disabled: { + success: { + title: "성공!", + message: "추정이 비활성화되었습니다.", + }, + error: { + title: "오류!", + message: "추정을 비활성화할 수 없습니다. 다시 시도해 주세요", + }, + }, + }, + validation: { + min_length: "추정은 0보다 커야 합니다.", + unable_to_process: "요청을 처리할 수 없습니다. 다시 시도해 주세요.", + numeric: "추정은 숫자 값이어야 합니다.", + character: "추정은 문자 값이어야 합니다.", + empty: "추정 값은 비어있을 수 없습니다.", + already_exists: "추정 값이 이미 존재합니다.", + unsaved_changes: "저장되지 않은 변경 사항이 있습니다. 완료를 클릭하기 전에 저장하세요", + remove_empty: "추정은 비어있을 수 없습니다. 각 필드에 값을 입력하거나 값이 없는 필드를 제거하세요.", + }, + systems: { + points: { + label: "포인트", + fibonacci: "피보나치", + linear: "선형", + squares: "제곱", + custom: "사용자 정의", + }, + categories: { + label: "카테고리", + t_shirt_sizes: "티셔츠 사이즈", + easy_to_hard: "쉬움에서 어려움", + custom: "사용자 정의", + }, + time: { + label: "시간", + hours: "시간", + }, + }, + }, + automations: { + label: "자동화", + "auto-archive": { + title: "완료된 작업 항목 자동 보관", + description: "Plane은 완료되거나 취소된 작업 항목을 자동으로 보관합니다.", + duration: "다음 기간 동안 닫힌 작업 항목 자동 보관", + }, + "auto-close": { + title: "작업 항목 자동 닫기", + description: "Plane은 완료되거나 취소되지 않은 작업 항목을 자동으로 닫습니다.", + duration: "다음 기간 동안 비활성 작업 항목 자동 닫기", + auto_close_status: "자동 닫기 상태", + }, + }, + empty_state: { + labels: { + title: "레이블 없음", + description: "프로젝트에서 작업 항목을 구성하고 필터링하는 데 도움이 되는 레이블을 생성하세요.", + }, + estimates: { + title: "추정 시스템 없음", + description: "작업 항목당 작업량을 전달하는 추정 세트를 생성하세요.", + primary_button: "추정 시스템 추가", + }, + }, + }, + project_cycles: { + add_cycle: "주기 추가", + more_details: "자세히 보기", + cycle: "주기", + update_cycle: "주기 업데이트", + create_cycle: "주기 생성", + no_matching_cycles: "일치하는 주기 없음", + remove_filters_to_see_all_cycles: "모든 주기를 보려면 필터를 제거하세요", + remove_search_criteria_to_see_all_cycles: "모든 주기를 보려면 검색 기준을 제거하세요", + only_completed_cycles_can_be_archived: "완료된 주기만 아카이브할 수 있습니다", + start_date: "시작일", + end_date: "종료일", + in_your_timezone: "내 시간대", + transfer_work_items: "{count}개의 작업 항목 이전", + date_range: "날짜 범위", + add_date: "날짜 추가", + active_cycle: { + label: "활성 주기", + progress: "진행", + chart: "버다운 차트", + priority_issue: "우선순위 작업 항목", + assignees: "담당자", + issue_burndown: "작업 항목 버다운", + ideal: "이상적인", + current: "현재", + labels: "레이블", + }, + upcoming_cycle: { + label: "다가오는 주기", + }, + completed_cycle: { + label: "완료된 주기", + }, + status: { + days_left: "남은 일수", + completed: "완료됨", + yet_to_start: "시작되지 않음", + in_progress: "진행 중", + draft: "초안", + }, + action: { + restore: { + title: "주기 복원", + success: { + title: "주기 복원됨", + description: "주기가 복원되었습니다.", + }, + failed: { + title: "주기 복원 실패", + description: "주기를 복원할 수 없습니다. 다시 시도해주세요.", + }, + }, + favorite: { + loading: "주기를 즐겨찾기에 추가 중", + success: { + description: "주기가 즐겨찾기에 추가되었습니다.", + title: "성공!", + }, + failed: { + description: "주기를 즐겨찾기에 추가할 수 없습니다. 다시 시도해주세요.", + title: "오류!", + }, + }, + unfavorite: { + loading: "주기를 즐겨찾기에서 제거 중", + success: { + description: "주기가 즐겨찾기에서 제거되었습니다.", + title: "성공!", + }, + failed: { + description: "주기를 즐겨찾기에서 제거할 수 없습니다. 다시 시도해주세요.", + title: "오류!", + }, + }, + update: { + loading: "주기 업데이트 중", + success: { + description: "주기가 성공적으로 업데이트되었습니다.", + title: "성공!", + }, + failed: { + description: "주기 업데이트 중 오류 발생. 다시 시도해주세요.", + title: "오류!", + }, + error: { + already_exists: "주어진 날짜에 이미 주기가 있습니다. 초안 주기를 생성하려면 두 날짜를 모두 제거하세요.", + }, + }, + }, + empty_state: { + general: { + title: "작업을 주기로 그룹화하고 시간 상자화하세요.", + description: + "작업을 시간 상자로 나누고, 프로젝트 마감일에서 역으로 날짜를 설정하며, 팀으로서 실질적인 진전을 이루세요.", + primary_button: { + text: "첫 번째 주기 설정", + comic: { + title: "주기는 반복적인 시간 상자입니다.", + description: + "스프린트, 반복 또는 주간 또는 격주로 작업을 추적하는 데 사용하는 다른 용어는 모두 주기입니다.", + }, + }, + }, + no_issues: { + title: "주기에 추가된 작업 항목 없음", + description: "이 주기 내에서 시간 상자화하고 전달하려는 작업 항목을 추가하거나 생성하세요", + primary_button: { + text: "새 작업 항목 생성", + }, + secondary_button: { + text: "기존 작업 항목 추가", + }, + }, + completed_no_issues: { + title: "주기에 작업 항목 없음", + description: + "주기에 작업 항목이 없습니다. 작업 항목이 전송되었거나 숨겨져 있습니다. 숨겨진 작업 항목을 보려면 표시 속성을 적절히 업데이트하세요.", + }, + active: { + title: "활성 주기 없음", + description: + "활성 주기에는 오늘 날짜가 범위 내에 포함된 모든 기간이 포함됩니다. 여기에서 활성 주기의 진행 상황과 세부 정보를 확인하세요.", + }, + archived: { + title: "아카이브된 주기 없음", + description: "프로젝트를 정리하려면 완료된 주기를 아카이브하세요. 아카이브된 주기는 여기에서 찾을 수 있습니다.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "작업 항목을 생성하고 누군가에게 할당하세요, 심지어 자신에게도", + description: + "작업 항목을 작업, 작업, 작업 또는 JTBD로 생각하세요. 작업 항목과 하위 작업 항목은 일반적으로 팀원에게 할당된 시간 기반 작업입니다. 팀은 작업 항목을 생성, 할당 및 완료하여 프로젝트 목표를 향해 나아갑니다.", + primary_button: { + text: "첫 번째 작업 항목 생성", + comic: { + title: "작업 항목은 Plane의 구성 요소입니다.", + description: + "Plane UI 재설계, 회사 리브랜딩 또는 새로운 연료 주입 시스템 출시와 같은 작업 항목은 하위 작업 항목이 있을 가능성이 큽니다.", + }, + }, + }, + no_archived_issues: { + title: "아카이브된 작업 항목 없음", + description: + "수동으로 또는 자동화를 통해 완료되거나 취소된 작업 항목을 아카이브할 수 있습니다. 아카이브된 항목은 여기에서 찾을 수 있습니다.", + primary_button: { + text: "자동화 설정", + }, + }, + issues_empty_filter: { + title: "적용된 필터와 일치하는 작업 항목 없음", + secondary_button: { + text: "모든 필터 지우기", + }, + }, + }, + }, + project_module: { + add_module: "모듈 추가", + update_module: "모듈 업데이트", + create_module: "모듈 생성", + archive_module: "모듈 아카이브", + restore_module: "모듈 복원", + delete_module: "모듈 삭제", + empty_state: { + general: { + title: "프로젝트 마일스톤을 모듈로 매핑하고 집계된 작업을 쉽게 추적하세요.", + description: + "논리적이고 계층적인 부모에 속하는 작업 항목 그룹이 모듈을 형성합니다. 이를 프로젝트 마일스톤별로 작업을 추적하는 방법으로 생각하세요. 모듈은 자체 기간과 마감일을 가지며, 마일스톤에 얼마나 가까운지 또는 먼지를 확인하는 데 도움이 되는 분석을 제공합니다.", + primary_button: { + text: "첫 번째 모듈 생성", + comic: { + title: "모듈은 계층별로 작업을 그룹화하는 데 도움이 됩니다.", + description: "카트 모듈, 섀시 모듈 및 창고 모듈은 모두 이 그룹화의 좋은 예입니다.", + }, + }, + }, + no_issues: { + title: "모듈에 작업 항목 없음", + description: "이 모듈의 일부로 완료하려는 작업 항목을 생성하거나 추가하세요", + primary_button: { + text: "새 작업 항목 생성", + }, + secondary_button: { + text: "기존 작업 항목 추가", + }, + }, + archived: { + title: "아카이브된 모듈 없음", + description: + "프로젝트를 정리하려면 완료되거나 취소된 모듈을 아카이브하세요. 아카이브된 모듈은 여기에서 찾을 수 있습니다.", + }, + sidebar: { + in_active: "이 모듈은 아직 활성화되지 않았습니다.", + invalid_date: "유효하지 않은 날짜입니다. 유효한 날짜를 입력하세요.", + }, + }, + quick_actions: { + archive_module: "모듈 아카이브", + archive_module_description: "완료되거나 취소된 모듈만 아카이브할 수 있습니다.", + delete_module: "모듈 삭제", + }, + toast: { + copy: { + success: "모듈 링크가 클립보드에 복사되었습니다", + }, + delete: { + success: "모듈이 성공적으로 삭제되었습니다", + error: "모듈 삭제 실패", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "프로젝트에 대한 필터링된 뷰를 저장하세요. 필요한 만큼 생성하세요", + description: + "뷰는 자주 사용하는 필터 또는 쉽게 접근하고 싶은 필터 세트입니다. 프로젝트의 모든 동료가 모든 사람의 뷰를 보고 자신에게 가장 적합한 뷰를 선택할 수 있습니다.", + primary_button: { + text: "첫 번째 뷰 생성", + comic: { + title: "뷰는 작업 항목 속성 위에서 작동합니다.", + description: "여기에서 원하는 만큼의 속성을 필터로 사용하여 뷰를 생성할 수 있습니다.", + }, + }, + }, + filter: { + title: "일치하는 뷰 없음", + description: "검색 기준과 일치하는 뷰가 없습니다. 대신 새 뷰를 생성하세요.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "메모, 문서 또는 전체 지식 기반을 작성하세요. Galileo, Plane의 AI 도우미가 시작을 도와줍니다", + description: + "페이지는 Plane에서 생각을 정리하는 공간입니다. 회의 메모를 작성하고, 쉽게 형식을 지정하고, 작업 항목을 포함하고, 구성 요소 라이브러리를 사용하여 레이아웃을 작성하고, 모든 것을 프로젝트의 맥락에서 유지하세요. 문서를 빠르게 작성하려면 단축키나 버튼 클릭으로 Galileo, Plane의 AI를 호출하세요.", + primary_button: { + text: "첫 번째 페이지 생성", + }, + }, + private: { + title: "비공개 페이지 없음", + description: "비공개 생각을 여기에 보관하세요. 공유할 준비가 되면 팀이 클릭 한 번으로 접근할 수 있습니다.", + primary_button: { + text: "첫 번째 페이지 생성", + }, + }, + public: { + title: "공개 페이지 없음", + description: "프로젝트의 모든 사람과 공유된 페이지를 여기에서 확인하세요.", + primary_button: { + text: "첫 번째 페이지 생성", + }, + }, + archived: { + title: "아카이브된 페이지 없음", + description: "레이더에 없는 페이지를 아카이브하세요. 필요할 때 여기에서 접근하세요.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "결과 없음", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "일치하는 작업 항목 없음", + }, + no_issues: { + title: "작업 항목 없음", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "댓글 없음", + description: "댓글은 작업 항목에 대한 토론 및 후속 공간으로 사용할 수 있습니다", + }, + }, + }, + notification: { + label: "받은 편지함", + page_label: "{workspace} - 받은 편지함", + options: { + mark_all_as_read: "모두 읽음으로 표시", + mark_read: "읽음으로 표시", + mark_unread: "읽지 않음으로 표시", + refresh: "새로 고침", + filters: "받은 편지함 필터", + show_unread: "읽지 않음 표시", + show_snoozed: "미루기 표시", + show_archived: "아카이브 표시", + mark_archive: "아카이브", + mark_unarchive: "아카이브 해제", + mark_snooze: "미루기", + mark_unsnooze: "미루기 해제", + }, + toasts: { + read: "알림이 읽음으로 표시되었습니다", + unread: "알림이 읽지 않음으로 표시되었습니다", + archived: "알림이 아카이브되었습니다", + unarchived: "알림이 아카이브 해제되었습니다", + snoozed: "알림이 미루기되었습니다", + unsnoozed: "알림이 미루기 해제되었습니다", + }, + empty_state: { + detail: { + title: "세부 정보를 보려면 선택하세요.", + }, + all: { + title: "할당된 작업 항목 없음", + description: "할당된 작업 항목의 업데이트를 여기에서 확인할 수 있습니다", + }, + mentions: { + title: "할당된 작업 항목 없음", + description: "할당된 작업 항목의 업데이트를 여기에서 확인할 수 있습니다", + }, + }, + tabs: { + all: "모두", + mentions: "멘션", + }, + filter: { + assigned: "나에게 할당됨", + created: "내가 생성함", + subscribed: "내가 구독함", + }, + snooze: { + "1_day": "1일", + "3_days": "3일", + "5_days": "5일", + "1_week": "1주", + "2_weeks": "2주", + custom: "사용자 정의", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "주기에 작업 항목을 추가하여 진행 상황을 확인하세요", + }, + chart: { + title: "주기에 작업 항목을 추가하여 버다운 차트를 확인하세요.", + }, + priority_issue: { + title: "주기에서 처리된 고우선 작업 항목을 한눈에 확인하세요.", + }, + assignee: { + title: "작업 항목에 담당자를 추가하여 담당자별 작업 분포를 확인하세요.", + }, + label: { + title: "작업 항목에 레이블을 추가하여 레이블별 작업 분포를 확인하세요.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "프로젝트에 접수가 활성화되지 않았습니다.", + description: + "접수는 프로젝트로 들어오는 요청을 관리하고 이를 워크플로우의 작업 항목으로 추가하는 데 도움이 됩니다. 프로젝트 설정에서 접수를 활성화하여 요청을 관리하세요.", + primary_button: { + text: "기능 관리", + }, + }, + cycle: { + title: "이 프로젝트에 주기가 활성화되지 않았습니다.", + description: + "작업을 시간 상자로 나누고, 프로젝트 마감일에서 역으로 날짜를 설정하며, 팀으로서 실질적인 진전을 이루세요. 프로젝트에 주기 기능을 활성화하여 사용하세요.", + primary_button: { + text: "기능 관리", + }, + }, + module: { + title: "프로젝트에 모듈이 활성화되지 않았습니다.", + description: "모듈은 프로젝트의 구성 요소입니다. 프로젝트 설정에서 모듈을 활성화하여 사용하세요.", + primary_button: { + text: "기능 관리", + }, + }, + page: { + title: "프로젝트에 페이지가 활성화되지 않았습니다.", + description: "페이지는 프로젝트의 구성 요소입니다. 프로젝트 설정에서 페이지를 활성화하여 사용하세요.", + primary_button: { + text: "기능 관리", + }, + }, + view: { + title: "프로젝트에 뷰가 활성화되지 않았습니다.", + description: "뷰는 프로젝트의 구성 요소입니다. 프로젝트 설정에서 뷰를 활성화하여 사용하세요.", + primary_button: { + text: "기능 관리", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "작업 항목 초안", + empty_state: { + title: "작성 중인 작업 항목과 곧 댓글이 여기에 표시됩니다.", + description: + "이 기능을 사용해 보려면 작업 항목을 추가하고 중간에 멈추거나 아래에서 첫 번째 초안을 생성하세요. 😉", + primary_button: { + text: "첫 번째 초안 생성", + }, + }, + delete_modal: { + title: "초안 삭제", + description: "이 초안을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.", + }, + toasts: { + created: { + success: "초안 생성됨", + error: "작업 항목을 생성할 수 없습니다. 다시 시도해주세요.", + }, + deleted: { + success: "초안 삭제됨", + }, + }, + }, + stickies: { + title: "나의 스티키", + placeholder: "여기에 입력하려면 클릭하세요", + all: "모든 스티키", + "no-data": "아이디어를 적어두거나, 유레카를 기록하거나, 영감을 기록하세요. 스티키를 추가하여 시작하세요.", + add: "스티키 추가", + search_placeholder: "제목으로 검색", + delete: "스티키 삭제", + delete_confirmation: "이 스티키를 삭제하시겠습니까?", + empty_state: { + simple: "아이디어를 적어두거나, 유레카를 기록하거나, 영감을 기록하세요. 스티키를 추가하여 시작하세요.", + general: { + title: "스티키는 즉석에서 작성하는 빠른 메모와 할 일입니다.", + description: "스티키를 생성하여 생각과 아이디어를 쉽게 캡처하고 언제 어디서나 접근할 수 있습니다.", + primary_button: { + text: "스티키 추가", + }, + }, + search: { + title: "일치하는 스티키가 없습니다.", + description: "다른 용어를 시도하거나 검색이 올바른지 확신하는 경우 알려주세요.", + primary_button: { + text: "스티키 추가", + }, + }, + }, + toasts: { + errors: { + wrong_name: "스티키 이름은 100자를 초과할 수 없습니다.", + already_exists: "설명이 없는 스티키가 이미 존재합니다", + }, + created: { + title: "스티키 생성됨", + message: "스티키가 성공적으로 생성되었습니다", + }, + not_created: { + title: "스티키 생성되지 않음", + message: "스티키를 생성할 수 없습니다", + }, + updated: { + title: "스티키 업데이트됨", + message: "스티키가 성공적으로 업데이트되었습니다", + }, + not_updated: { + title: "스티키 업데이트되지 않음", + message: "스티키를 업데이트할 수 없습니다", + }, + removed: { + title: "스티키 제거됨", + message: "스티키가 성공적으로 제거되었습니다", + }, + not_removed: { + title: "스티키 제거되지 않음", + message: "스티키를 제거할 수 없습니다", + }, + }, + }, + role_details: { + guest: { + title: "게스트", + description: "조직의 외부 멤버는 게스트로 초대될 수 있습니다.", + }, + member: { + title: "멤버", + description: "프로젝트, 주기 및 모듈 내에서 엔티티를 읽고, 쓰고, 편집하고, 삭제할 수 있는 권한", + }, + admin: { + title: "관리자", + description: "작업 공간 내에서 모든 권한이 true로 설정됨.", + }, + }, + user_roles: { + product_or_project_manager: "제품 / 프로젝트 관리자", + development_or_engineering: "개발 / 엔지니어링", + founder_or_executive: "창립자 / 임원", + freelancer_or_consultant: "프리랜서 / 컨설턴트", + marketing_or_growth: "마케팅 / 성장", + sales_or_business_development: "영업 / 비즈니스 개발", + support_or_operations: "지원 / 운영", + student_or_professor: "학생 / 교수", + human_resources: "인사 / 자원", + other: "기타", + }, + importer: { + github: { + title: "Github", + description: "GitHub 저장소에서 작업 항목을 가져오고 동기화합니다.", + }, + jira: { + title: "Jira", + description: "Jira 프로젝트 및 에픽에서 작업 항목과 에픽을 가져옵니다.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "작업 항목을 CSV 파일로 내보냅니다.", + short_description: "CSV로 내보내기", + }, + excel: { + title: "Excel", + description: "작업 항목을 Excel 파일로 내보냅니다.", + short_description: "Excel로 내보내기", + }, + xlsx: { + title: "Excel", + description: "작업 항목을 Excel 파일로 내보냅니다.", + short_description: "Excel로 내보내기", + }, + json: { + title: "JSON", + description: "작업 항목을 JSON 파일로 내보냅니다.", + short_description: "JSON으로 내보내기", + }, + }, + default_global_view: { + all_issues: "모든 작업 항목", + assigned: "할당됨", + created: "생성됨", + subscribed: "구독됨", + }, + themes: { + theme_options: { + system_preference: { + label: "시스템 기본값", + }, + light: { + label: "라이트", + }, + dark: { + label: "다크", + }, + light_contrast: { + label: "라이트 고대비", + }, + dark_contrast: { + label: "다크 고대비", + }, + custom: { + label: "사용자 정의 테마", + }, + }, + }, + project_modules: { + status: { + backlog: "백로그", + planned: "계획됨", + in_progress: "진행 중", + paused: "일시 중지됨", + completed: "완료됨", + cancelled: "취소됨", + }, + layout: { + list: "목록 레이아웃", + board: "갤러리 레이아웃", + timeline: "타임라인 레이아웃", + }, + order_by: { + name: "이름", + progress: "진행", + issues: "작업 항목 수", + due_date: "마감일", + created_at: "생성일", + manual: "수동", + }, + }, + cycle: { + label: "{count, plural, one {주기} other {주기}}", + no_cycle: "주기 없음", + }, + module: { + label: "{count, plural, one {모듈} other {모듈}}", + no_module: "모듈 없음", + }, + description_versions: { + last_edited_by: "마지막 편집자", + previously_edited_by: "이전 편집자", + edited_by: "편집자", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane이 시작되지 않았습니다. 이는 하나 이상의 Plane 서비스가 시작에 실패했기 때문일 수 있습니다.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "확실히 하려면 setup.sh와 Docker 로그에서 View Logs를 선택하세요.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "개요", + empty_state: { + title: "제목이 없습니다", + description: "이 페이지에 제목을 추가하여 여기에서 확인해보세요.", + }, + }, + info: { + label: "정보", + document_info: { + words: "단어", + characters: "문자", + paragraphs: "단락", + read_time: "읽기 시간", + }, + actors_info: { + edited_by: "편집자", + created_by: "작성자", + }, + version_history: { + label: "버전 기록", + current_version: "현재 버전", + }, + }, + assets: { + label: "자산", + download_button: "다운로드", + empty_state: { + title: "이미지가 없습니다", + description: "이미지를 추가하여 여기에서 확인하세요.", + }, + }, + }, + open_button: "네비게이션 패널 열기", + close_button: "네비게이션 패널 닫기", + outline_floating_button: "개요 열기", + }, +} as const; diff --git a/packages/i18n/src/locales/pl/accessibility.json b/packages/i18n/src/locales/pl/accessibility.json deleted file mode 100644 index c1407911ac..0000000000 --- a/packages/i18n/src/locales/pl/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo obszaru roboczego", - "open_workspace_switcher": "Otwórz przełącznik obszaru roboczego", - "open_user_menu": "Otwórz menu użytkownika", - "open_command_palette": "Otwórz paletę poleceń", - "open_extended_sidebar": "Otwórz rozszerzoną pasek boczny", - "close_extended_sidebar": "Zamknij rozszerzoną pasek boczny", - "create_favorites_folder": "Utwórz folder ulubionych", - "open_folder": "Otwórz folder", - "close_folder": "Zamknij folder", - "open_favorites_menu": "Otwórz menu ulubionych", - "close_favorites_menu": "Zamknij menu ulubionych", - "enter_folder_name": "Wprowadź nazwę folderu", - "create_new_project": "Utwórz nowy projekt", - "open_projects_menu": "Otwórz menu projektów", - "close_projects_menu": "Zamknij menu projektów", - "toggle_quick_actions_menu": "Przełącz menu szybkich akcji", - "open_project_menu": "Otwórz menu projektu", - "close_project_menu": "Zamknij menu projektu", - "collapse_sidebar": "Zwiń pasek boczny", - "expand_sidebar": "Rozwiń pasek boczny", - "edition_badge": "Otwórz modal płatnych planów" - }, - "auth_forms": { - "clear_email": "Wyczyść e-mail", - "show_password": "Pokaż hasło", - "hide_password": "Ukryj hasło", - "close_alert": "Zamknij alert", - "close_popover": "Zamknij popover" - } - } -} diff --git a/packages/i18n/src/locales/pl/accessibility.ts b/packages/i18n/src/locales/pl/accessibility.ts new file mode 100644 index 0000000000..444b9539cf --- /dev/null +++ b/packages/i18n/src/locales/pl/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo obszaru roboczego", + open_workspace_switcher: "Otwórz przełącznik obszaru roboczego", + open_user_menu: "Otwórz menu użytkownika", + open_command_palette: "Otwórz paletę poleceń", + open_extended_sidebar: "Otwórz rozszerzoną pasek boczny", + close_extended_sidebar: "Zamknij rozszerzoną pasek boczny", + create_favorites_folder: "Utwórz folder ulubionych", + open_folder: "Otwórz folder", + close_folder: "Zamknij folder", + open_favorites_menu: "Otwórz menu ulubionych", + close_favorites_menu: "Zamknij menu ulubionych", + enter_folder_name: "Wprowadź nazwę folderu", + create_new_project: "Utwórz nowy projekt", + open_projects_menu: "Otwórz menu projektów", + close_projects_menu: "Zamknij menu projektów", + toggle_quick_actions_menu: "Przełącz menu szybkich akcji", + open_project_menu: "Otwórz menu projektu", + close_project_menu: "Zamknij menu projektu", + collapse_sidebar: "Zwiń pasek boczny", + expand_sidebar: "Rozwiń pasek boczny", + edition_badge: "Otwórz modal płatnych planów", + }, + auth_forms: { + clear_email: "Wyczyść e-mail", + show_password: "Pokaż hasło", + hide_password: "Ukryj hasło", + close_alert: "Zamknij alert", + close_popover: "Zamknij popover", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/pl/editor.json b/packages/i18n/src/locales/pl/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/pl/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/pl/editor.ts b/packages/i18n/src/locales/pl/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/pl/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/pl/translations.json b/packages/i18n/src/locales/pl/translations.json deleted file mode 100644 index a9f5190f6f..0000000000 --- a/packages/i18n/src/locales/pl/translations.json +++ /dev/null @@ -1,2534 +0,0 @@ -{ - "sidebar": { - "projects": "Projekty", - "pages": "Strony", - "new_work_item": "Nowy element pracy", - "home": "Strona główna", - "your_work": "Twoja praca", - "inbox": "Skrzynka odbiorcza", - "workspace": "Przestrzeń robocza", - "views": "Widoki", - "analytics": "Analizy", - "work_items": "Elementy pracy", - "cycles": "Cykle", - "modules": "Moduły", - "intake": "Zgłoszenia", - "drafts": "Szkice", - "favorites": "Ulubione", - "pro": "Pro", - "upgrade": "Uaktualnij" - }, - "auth": { - "common": { - "email": { - "label": "E-mail", - "placeholder": "imię@firma.pl", - "errors": { - "required": "E-mail jest wymagany", - "invalid": "E-mail jest nieprawidłowy" - } - }, - "password": { - "label": "Hasło", - "set_password": "Ustaw hasło", - "placeholder": "Wpisz hasło", - "confirm_password": { - "label": "Potwierdź hasło", - "placeholder": "Potwierdź hasło" - }, - "current_password": { - "label": "Obecne hasło" - }, - "new_password": { - "label": "Nowe hasło", - "placeholder": "Wpisz nowe hasło" - }, - "change_password": { - "label": { - "default": "Zmień hasło", - "submitting": "Trwa zmiana hasła" - } - }, - "errors": { - "match": "Hasła nie pasują do siebie", - "empty": "Proszę wpisać swoje hasło", - "length": "Hasło musi mieć więcej niż 8 znaków", - "strength": { - "weak": "Hasło jest słabe", - "strong": "Hasło jest silne" - } - }, - "submit": "Ustaw hasło", - "toast": { - "change_password": { - "success": { - "title": "Sukces!", - "message": "Hasło zostało pomyślnie zmienione." - }, - "error": { - "title": "Błąd!", - "message": "Coś poszło nie tak. Spróbuj ponownie." - } - } - } - }, - "unique_code": { - "label": "Unikalny kod", - "placeholder": "gets-sets-flys", - "paste_code": "Wklej kod wysłany na Twój e-mail", - "requesting_new_code": "Żądanie nowego kodu", - "sending_code": "Wysyłanie kodu" - }, - "already_have_an_account": "Masz już konto?", - "login": "Zaloguj się", - "create_account": "Utwórz konto", - "new_to_plane": "Nowy w Plane?", - "back_to_sign_in": "Powrót do logowania", - "resend_in": "Wyślij ponownie za {seconds} sekund", - "sign_in_with_unique_code": "Zaloguj się za pomocą unikalnego kodu", - "forgot_password": "Zapomniałeś hasła?" - }, - "sign_up": { - "header": { - "label": "Utwórz konto i zacznij zarządzać pracą ze swoim zespołem.", - "step": { - "email": { - "header": "Rejestracja", - "sub_header": "" - }, - "password": { - "header": "Rejestracja", - "sub_header": "Zarejestruj się, korzystając z kombinacji e-maila i hasła." - }, - "unique_code": { - "header": "Rejestracja", - "sub_header": "Zarejestruj się, używając unikalnego kodu wysłanego na powyższy adres e-mail." - } - } - }, - "errors": { - "password": { - "strength": "Użyj silniejszego hasła, aby kontynuować" - } - } - }, - "sign_in": { - "header": { - "label": "Zaloguj się i zacznij zarządzać pracą ze swoim zespołem.", - "step": { - "email": { - "header": "Zaloguj się lub zarejestruj", - "sub_header": "" - }, - "password": { - "header": "Zaloguj się lub zarejestruj", - "sub_header": "Użyj adresu e-mail i hasła, aby się zalogować." - }, - "unique_code": { - "header": "Zaloguj się lub zarejestruj", - "sub_header": "Zaloguj się za pomocą unikalnego kodu wysłanego na powyższy adres e-mail." - } - } - } - }, - "forgot_password": { - "title": "Zresetuj swoje hasło", - "description": "Podaj zweryfikowany adres e-mail konta użytkownika, a wyślemy Ci link do resetowania hasła.", - "email_sent": "Wysłaliśmy link resetujący na Twój adres e-mail", - "send_reset_link": "Wyślij link do resetowania", - "errors": { - "smtp_not_enabled": "Administrator nie włączył SMTP, nie możemy wysłać linku do resetowania hasła" - }, - "toast": { - "success": { - "title": "E-mail wysłany", - "message": "Sprawdź skrzynkę pocztową, aby znaleźć link do resetowania hasła. Jeśli nie pojawi się w ciągu kilku minut, sprawdź folder spam." - }, - "error": { - "title": "Błąd!", - "message": "Coś poszło nie tak. Spróbuj ponownie." - } - } - }, - "reset_password": { - "title": "Ustaw nowe hasło", - "description": "Zabezpiecz swoje konto silnym hasłem" - }, - "set_password": { - "title": "Zabezpiecz swoje konto", - "description": "Ustawienie hasła pomoże Ci bezpiecznie się logować" - }, - "sign_out": { - "toast": { - "error": { - "title": "Błąd!", - "message": "Wylogowanie nie powiodło się. Spróbuj ponownie." - } - } - } - }, - "submit": "Wyślij", - "cancel": "Anuluj", - "loading": "Ładowanie", - "error": "Błąd", - "success": "Sukces", - "warning": "Ostrzeżenie", - "info": "Informacja", - "close": "Zamknij", - "yes": "Tak", - "no": "Nie", - "ok": "OK", - "name": "Nazwa", - "description": "Opis", - "search": "Szukaj", - "add_member": "Dodaj członka", - "adding_members": "Dodawanie członków", - "remove_member": "Usuń członka", - "add_members": "Dodaj członków", - "adding_member": "Dodawanie członka", - "remove_members": "Usuń członków", - "add": "Dodaj", - "adding": "Dodawanie", - "remove": "Usuń", - "add_new": "Dodaj nowy", - "remove_selected": "Usuń wybrane", - "first_name": "Imię", - "last_name": "Nazwisko", - "email": "E-mail", - "display_name": "Nazwa wyświetlana", - "role": "Rola", - "timezone": "Strefa czasowa", - "avatar": "Zdjęcie profilowe", - "cover_image": "Obraz w tle", - "password": "Hasło", - "change_cover": "Zmień obraz w tle", - "language": "Język", - "saving": "Zapisywanie", - "save_changes": "Zapisz zmiany", - "deactivate_account": "Dezaktywuj konto", - "deactivate_account_description": "Po dezaktywacji konto i wszystkie zasoby z nim związane zostaną trwale usunięte i nie będzie można ich odzyskać.", - "profile_settings": "Ustawienia profilu", - "your_account": "Twoje konto", - "security": "Bezpieczeństwo", - "activity": "Aktywność", - "appearance": "Wygląd", - "notifications": "Powiadomienia", - "workspaces": "Przestrzenie robocze", - "create_workspace": "Utwórz przestrzeń roboczą", - "invitations": "Zaproszenia", - "summary": "Podsumowanie", - "assigned": "Przypisane", - "created": "Utworzone", - "subscribed": "Subskrybowane", - "you_do_not_have_the_permission_to_access_this_page": "Nie masz uprawnień do wyświetlenia tej strony.", - "something_went_wrong_please_try_again": "Coś poszło nie tak. Spróbuj ponownie.", - "load_more": "Załaduj więcej", - "select_or_customize_your_interface_color_scheme": "Wybierz lub dostosuj schemat kolorów interfejsu.", - "theme": "Motyw", - "system_preference": "Preferencje systemowe", - "light": "Jasny", - "dark": "Ciemny", - "light_contrast": "Jasny wysoki kontrast", - "dark_contrast": "Ciemny wysoki kontrast", - "custom": "Motyw niestandardowy", - "select_your_theme": "Wybierz motyw", - "customize_your_theme": "Dostosuj motyw", - "background_color": "Kolor tła", - "text_color": "Kolor tekstu", - "primary_color": "Kolor główny (motyw)", - "sidebar_background_color": "Kolor tła paska bocznego", - "sidebar_text_color": "Kolor tekstu paska bocznego", - "set_theme": "Ustaw motyw", - "enter_a_valid_hex_code_of_6_characters": "Wprowadź prawidłowy kod hex składający się z 6 znaków", - "background_color_is_required": "Kolor tła jest wymagany", - "text_color_is_required": "Kolor tekstu jest wymagany", - "primary_color_is_required": "Kolor główny jest wymagany", - "sidebar_background_color_is_required": "Kolor tła paska bocznego jest wymagany", - "sidebar_text_color_is_required": "Kolor tekstu paska bocznego jest wymagany", - "updating_theme": "Aktualizowanie motywu", - "theme_updated_successfully": "Motyw zaktualizowano pomyślnie", - "failed_to_update_the_theme": "Aktualizacja motywu nie powiodła się", - "email_notifications": "Powiadomienia e-mail", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Bądź na bieżąco z subskrybowanymi elementami pracy. Włącz, aby otrzymywać powiadomienia.", - "email_notification_setting_updated_successfully": "Ustawienia powiadomień e-mail zaktualizowano pomyślnie", - "failed_to_update_email_notification_setting": "Aktualizacja ustawień powiadomień e-mail nie powiodła się", - "notify_me_when": "Powiadamiaj mnie, gdy", - "property_changes": "Zmiany właściwości", - "property_changes_description": "Powiadamiaj, gdy zmieniają się właściwości elementów pracy, takie jak przypisanie, priorytet, oszacowania lub cokolwiek innego.", - "state_change": "Zmiana stanu", - "state_change_description": "Powiadamiaj, gdy element pracy zostaje przeniesiony do innego stanu", - "issue_completed": "Element pracy ukończony", - "issue_completed_description": "Powiadamiaj tylko, gdy element pracy zostanie ukończony", - "comments": "Komentarze", - "comments_description": "Powiadamiaj, gdy ktoś doda komentarz do elementu pracy", - "mentions": "Wzmianki", - "mentions_description": "Powiadamiaj mnie tylko, gdy ktoś mnie wspomni w komentarzach lub opisie", - "old_password": "Stare hasło", - "general_settings": "Ustawienia ogólne", - "sign_out": "Wyloguj się", - "signing_out": "Wylogowywanie", - "active_cycles": "Aktywne cykle", - "active_cycles_description": "Śledź cykle w różnych projektach, monitoruj elementy o wysokim priorytecie i koncentruj się na cyklach wymagających uwagi.", - "on_demand_snapshots_of_all_your_cycles": "Migawki wszystkich Twoich cykli na żądanie", - "upgrade": "Uaktualnij", - "10000_feet_view": "Widok z wysokości 10 000 stóp na wszystkie aktywne cykle.", - "10000_feet_view_description": "Przybliż wszystkie aktywne cykle w różnych projektach bez konieczności przełączania się między nimi.", - "get_snapshot_of_each_active_cycle": "Uzyskaj migawkę każdego aktywnego cyklu.", - "get_snapshot_of_each_active_cycle_description": "Śledź kluczowe metryki wszystkich aktywnych cykli, sprawdzaj postęp i porównuj zakres z terminami.", - "compare_burndowns": "Porównuj wykresy burndown.", - "compare_burndowns_description": "Obserwuj wydajność zespołów, przeglądając raporty burndown każdego cyklu.", - "quickly_see_make_or_break_issues": "Szybko identyfikuj kluczowe elementy pracy.", - "quickly_see_make_or_break_issues_description": "Przeglądaj elementy o wysokim priorytecie w każdym cyklu w kontekście terminów. Jeden klik i wszystko widzisz.", - "zoom_into_cycles_that_need_attention": "Skup się na cyklach wymagających uwagi.", - "zoom_into_cycles_that_need_attention_description": "Zbadaj stan każdego cyklu, który nie spełnia oczekiwań, za pomocą jednego kliknięcia.", - "stay_ahead_of_blockers": "Wyprzedzaj blokery.", - "stay_ahead_of_blockers_description": "Identyfikuj problemy między projektami i odkrywaj zależności między cyklami, niewidoczne w innych widokach.", - "analytics": "Analizy", - "workspace_invites": "Zaproszenia do przestrzeni roboczej", - "enter_god_mode": "Wejdź w tryb boga", - "workspace_logo": "Logo przestrzeni roboczej", - "new_issue": "Nowy element pracy", - "your_work": "Twoja praca", - "drafts": "Szkice", - "projects": "Projekty", - "views": "Widoki", - "workspace": "Przestrzeń robocza", - "archives": "Archiwa", - "settings": "Ustawienia", - "failed_to_move_favorite": "Nie udało się przenieść ulubionego", - "favorites": "Ulubione", - "no_favorites_yet": "Brak ulubionych", - "create_folder": "Utwórz folder", - "new_folder": "Nowy folder", - "favorite_updated_successfully": "Ulubione zaktualizowano pomyślnie", - "favorite_created_successfully": "Ulubione utworzono pomyślnie", - "folder_already_exists": "Folder już istnieje", - "folder_name_cannot_be_empty": "Nazwa folderu nie może być pusta", - "something_went_wrong": "Coś poszło nie tak", - "failed_to_reorder_favorite": "Nie udało się zmienić kolejności ulubionego", - "favorite_removed_successfully": "Ulubione usunięto pomyślnie", - "failed_to_create_favorite": "Nie udało się utworzyć ulubionego", - "failed_to_rename_favorite": "Nie udało się zmienić nazwy ulubionego", - "project_link_copied_to_clipboard": "Link do projektu skopiowano do schowka", - "link_copied": "Link skopiowany", - "add_project": "Dodaj projekt", - "create_project": "Utwórz projekt", - "failed_to_remove_project_from_favorites": "Nie udało się usunąć projektu z ulubionych. Spróbuj ponownie.", - "project_created_successfully": "Projekt utworzono pomyślnie", - "project_created_successfully_description": "Projekt został pomyślnie utworzony. Teraz możesz dodawać elementy pracy.", - "project_name_already_taken": "Nazwa projektu jest już zajęta.", - "project_identifier_already_taken": "Identyfikator projektu jest już zajęty.", - "project_cover_image_alt": "Obraz w tle projektu", - "name_is_required": "Nazwa jest wymagana", - "title_should_be_less_than_255_characters": "Nazwa musi mieć mniej niż 255 znaków", - "project_name": "Nazwa projektu", - "project_id_must_be_at_least_1_character": "ID projektu musi mieć co najmniej 1 znak", - "project_id_must_be_at_most_5_characters": "ID projektu może mieć maksymalnie 5 znaków", - "project_id": "ID projektu", - "project_id_tooltip_content": "Pomaga jednoznacznie identyfikować elementy pracy w projekcie. Max. 5 znaków.", - "description_placeholder": "Opis", - "only_alphanumeric_non_latin_characters_allowed": "Dozwolone są tylko znaki alfanumeryczne i nielatynowskie.", - "project_id_is_required": "ID projektu jest wymagane", - "project_id_allowed_char": "Dozwolone są tylko znaki alfanumeryczne i nielatynowskie.", - "project_id_min_char": "ID projektu musi mieć co najmniej 1 znak", - "project_id_max_char": "ID projektu może mieć maksymalnie 5 znaków", - "project_description_placeholder": "Wpisz opis projektu", - "select_network": "Wybierz sieć", - "lead": "Lead", - "date_range": "Zakres dat", - "private": "Prywatny", - "public": "Publiczny", - "accessible_only_by_invite": "Dostęp wyłącznie na zaproszenie", - "anyone_in_the_workspace_except_guests_can_join": "Każdy w przestrzeni, poza gośćmi, może dołączyć", - "creating": "Tworzenie", - "creating_project": "Tworzenie projektu", - "adding_project_to_favorites": "Dodawanie projektu do ulubionych", - "project_added_to_favorites": "Projekt dodano do ulubionych", - "couldnt_add_the_project_to_favorites": "Nie udało się dodać projektu do ulubionych. Spróbuj ponownie.", - "removing_project_from_favorites": "Usuwanie projektu z ulubionych", - "project_removed_from_favorites": "Projekt usunięto z ulubionych", - "couldnt_remove_the_project_from_favorites": "Nie udało się usunąć projektu z ulubionych. Spróbuj ponownie.", - "add_to_favorites": "Dodaj do ulubionych", - "remove_from_favorites": "Usuń z ulubionych", - "publish_project": "Opublikuj projekt", - "publish": "Opublikuj", - "copy_link": "Kopiuj link", - "leave_project": "Opuść projekt", - "join_the_project_to_rearrange": "Dołącz do projektu, aby zmienić układ", - "drag_to_rearrange": "Przeciągnij, aby zmienić układ", - "congrats": "Gratulacje!", - "open_project": "Otwórz projekt", - "issues": "Elementy pracy", - "cycles": "Cykle", - "modules": "Moduły", - "pages": "Strony", - "intake": "Zgłoszenia", - "time_tracking": "Śledzenie czasu", - "work_management": "Zarządzanie pracą", - "projects_and_issues": "Projekty i elementy pracy", - "projects_and_issues_description": "Włączaj lub wyłączaj te funkcje w projekcie.", - "cycles_description": "Określ ramy czasowe pracy dla każdego projektu i dostosuj okres w razie potrzeby. Jeden cykl może trwać 2 tygodnie, a następny 1 tydzień.", - "modules_description": "Organizuj pracę w podprojekty z dedykowanymi liderami i przypisanymi osobami.", - "views_description": "Zapisz niestandardowe sortowania, filtry i opcje wyświetlania lub udostępnij je zespołowi.", - "pages_description": "Twórz i edytuj treści o swobodnej formie – notatki, dokumenty, cokolwiek.", - "intake_description": "Pozwól osobom spoza zespołu zgłaszać błędy, opinie i sugestie bez zakłócania przepływu pracy.", - "time_tracking_description": "Rejestruj czas spędzony na elementach pracy i projektach.", - "work_management_description": "Łatwo zarządzaj swoją pracą i projektami.", - "documentation": "Dokumentacja", - "message_support": "Skontaktuj się z pomocą", - "contact_sales": "Skontaktuj się z działem sprzedaży", - "hyper_mode": "Tryb Hyper", - "keyboard_shortcuts": "Skróty klawiaturowe", - "whats_new": "Co nowego?", - "version": "Wersja", - "we_are_having_trouble_fetching_the_updates": "Mamy problem z pobraniem aktualizacji.", - "our_changelogs": "nasze dzienniki zmian", - "for_the_latest_updates": "z najnowszymi aktualizacjami.", - "please_visit": "Odwiedź", - "docs": "Dokumentację", - "full_changelog": "Pełny dziennik zmian", - "support": "Wsparcie", - "discord": "Discord", - "powered_by_plane_pages": "Oparte na Plane Pages", - "please_select_at_least_one_invitation": "Wybierz co najmniej jedno zaproszenie.", - "please_select_at_least_one_invitation_description": "Wybierz co najmniej jedno zaproszenie, aby dołączyć do przestrzeni roboczej.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Ktoś zaprosił Cię do przestrzeni roboczej", - "join_a_workspace": "Dołącz do przestrzeni roboczej", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Widzimy, że ktoś zaprosił Cię do przestrzeni roboczej", - "join_a_workspace_description": "Dołącz do przestrzeni roboczej", - "accept_and_join": "Zaakceptuj i dołącz", - "go_home": "Strona główna", - "no_pending_invites": "Brak oczekujących zaproszeń", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Zobaczysz tutaj, jeśli ktoś zaprosi Cię do przestrzeni roboczej", - "back_to_home": "Wróć do strony głównej", - "workspace_name": "nazwa-przestrzeni-roboczej", - "deactivate_your_account": "Dezaktywuj swoje konto", - "deactivate_your_account_description": "Po dezaktywacji nie będziesz mógł być przypisywany do elementów pracy, a opłaty za przestrzeń roboczą nie będą naliczane. Aby ponownie aktywować konto, będziesz potrzebować zaproszenia na ten adres e-mail.", - "deactivating": "Dezaktywowanie", - "confirm": "Potwierdź", - "confirming": "Potwierdzanie", - "draft_created": "Szkic utworzony", - "issue_created_successfully": "Element pracy utworzony pomyślnie", - "draft_creation_failed": "Nie udało się utworzyć szkicu", - "issue_creation_failed": "Nie udało się utworzyć elementu pracy", - "draft_issue": "Szkic elementu pracy", - "issue_updated_successfully": "Element pracy zaktualizowano pomyślnie", - "issue_could_not_be_updated": "Nie udało się zaktualizować elementu pracy", - "create_a_draft": "Utwórz szkic", - "save_to_drafts": "Zapisz w szkicach", - "save": "Zapisz", - "update": "Aktualizuj", - "updating": "Aktualizowanie", - "create_new_issue": "Utwórz nowy element pracy", - "editor_is_not_ready_to_discard_changes": "Edytor nie jest gotowy do odrzucenia zmian", - "failed_to_move_issue_to_project": "Nie udało się przenieść elementu pracy do projektu", - "create_more": "Utwórz więcej", - "add_to_project": "Dodaj do projektu", - "discard": "Odrzuć", - "duplicate_issue_found": "Znaleziono zduplikowany element pracy", - "duplicate_issues_found": "Znaleziono zduplikowane elementy pracy", - "no_matching_results": "Brak pasujących wyników", - "title_is_required": "Tytuł jest wymagany", - "title": "Tytuł", - "state": "Stan", - "priority": "Priorytet", - "none": "Brak", - "urgent": "Pilny", - "high": "Wysoki", - "medium": "Średni", - "low": "Niski", - "members": "Członkowie", - "assignee": "Przypisano", - "assignees": "Przypisani", - "you": "Ty", - "labels": "Etykiety", - "create_new_label": "Utwórz nową etykietę", - "start_date": "Data rozpoczęcia", - "end_date": "Data zakończenia", - "due_date": "Termin", - "estimate": "Szacowanie", - "change_parent_issue": "Zmień element nadrzędny", - "remove_parent_issue": "Usuń element nadrzędny", - "add_parent": "Dodaj element nadrzędny", - "loading_members": "Ładowanie członków", - "view_link_copied_to_clipboard": "Link do widoku skopiowano do schowka.", - "required": "Wymagane", - "optional": "Opcjonalne", - "Cancel": "Anuluj", - "edit": "Edytuj", - "archive": "Archiwizuj", - "restore": "Przywróć", - "open_in_new_tab": "Otwórz w nowej karcie", - "delete": "Usuń", - "deleting": "Usuwanie", - "make_a_copy": "Utwórz kopię", - "move_to_project": "Przenieś do projektu", - "good": "Dzień dobry", - "morning": "rano", - "afternoon": "po południu", - "evening": "wieczorem", - "show_all": "Pokaż wszystko", - "show_less": "Pokaż mniej", - "no_data_yet": "Brak danych", - "syncing": "Synchronizowanie", - "add_work_item": "Dodaj element pracy", - "advanced_description_placeholder": "Naciśnij '/' aby wywołać polecenia", - "create_work_item": "Utwórz element pracy", - "attachments": "Załączniki", - "declining": "Odrzucanie", - "declined": "Odrzucono", - "decline": "Odrzuć", - "unassigned": "Nieprzypisane", - "work_items": "Elementy pracy", - "add_link": "Dodaj link", - "points": "Punkty", - "no_assignee": "Brak przypisanego", - "no_assignees_yet": "Brak przypisanych", - "no_labels_yet": "Brak etykiet", - "ideal": "Idealny", - "current": "Obecny", - "no_matching_members": "Brak pasujących członków", - "leaving": "Opuść", - "removing": "Usuwanie", - "leave": "Opuść", - "refresh": "Odśwież", - "refreshing": "Odświeżanie", - "refresh_status": "Odśwież status", - "prev": "Poprzedni", - "next": "Następny", - "re_generating": "Ponowne generowanie", - "re_generate": "Wygeneruj ponownie", - "re_generate_key": "Wygeneruj klucz ponownie", - "export": "Eksportuj", - "member": "{count, plural, one{# członek} few{# członkowie} other{# członków}}", - "new_password_must_be_different_from_old_password": "Nowe hasło musi być innym niż stare hasło", - "edited": "Edytowano", - "bot": "Bot", - "project_view": { - "sort_by": { - "created_at": "Utworzono dnia", - "updated_at": "Zaktualizowano dnia", - "name": "Nazwa" - } - }, - "toast": { - "success": "Sukces!", - "error": "Błąd!" - }, - "links": { - "toasts": { - "created": { - "title": "Link utworzony", - "message": "Link został pomyślnie utworzony" - }, - "not_created": { - "title": "Nie utworzono linku", - "message": "Nie udało się utworzyć linku" - }, - "updated": { - "title": "Link zaktualizowany", - "message": "Link został pomyślnie zaktualizowany" - }, - "not_updated": { - "title": "Link nie został zaktualizowany", - "message": "Nie udało się zaktualizować linku" - }, - "removed": { - "title": "Link usunięty", - "message": "Link został pomyślnie usunięty" - }, - "not_removed": { - "title": "Link nie został usunięty", - "message": "Nie udało się usunąć linku" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Twój przewodnik szybkiego startu", - "not_right_now": "Nie teraz", - "create_project": { - "title": "Utwórz projekt", - "description": "Większość rzeczy zaczyna się od projektu w Plane.", - "cta": "Zacznij" - }, - "invite_team": { - "title": "Zaproś zespół", - "description": "Współpracuj z kolegami, twórz, dostarczaj i zarządzaj.", - "cta": "Zaproś ich" - }, - "configure_workspace": { - "title": "Skonfiguruj swoją przestrzeń roboczą.", - "description": "Włącz lub wyłącz funkcje albo idź dalej.", - "cta": "Skonfiguruj tę przestrzeń" - }, - "personalize_account": { - "title": "Spersonalizuj Plane.", - "description": "Wybierz zdjęcie, kolory i inne.", - "cta": "Dostosuj teraz" - }, - "widgets": { - "title": "Jest tu pusto bez widżetów, włącz je", - "description": "Wygląda na to, że wszystkie Twoje widżety są wyłączone. Włącz je\ndla lepszego doświadczenia!", - "primary_button": { - "text": "Zarządzaj widżetami" - } - } - }, - "quick_links": { - "empty": "Zapisz linki do ważnych rzeczy, które chcesz mieć pod ręką.", - "add": "Dodaj szybki link", - "title": "Szybki link", - "title_plural": "Szybkie linki" - }, - "recents": { - "title": "Ostatnie", - "empty": { - "project": "Twoje ostatnio odwiedzone projekty pojawią się tutaj.", - "page": "Twoje ostatnio odwiedzone strony pojawią się tutaj.", - "issue": "Twoje ostatnio odwiedzone elementy pracy pojawią się tutaj.", - "default": "Nie masz jeszcze żadnych ostatnich pozycji." - }, - "filters": { - "all": "Wszystkie", - "projects": "Projekty", - "pages": "Strony", - "issues": "Elementy pracy" - } - }, - "new_at_plane": { - "title": "Co nowego w Plane" - }, - "quick_tutorial": { - "title": "Szybki samouczek" - }, - "widget": { - "reordered_successfully": "Widżet pomyślnie przeniesiono.", - "reordering_failed": "Wystąpił błąd podczas przenoszenia widżetu." - }, - "manage_widgets": "Zarządzaj widżetami", - "title": "Strona główna", - "star_us_on_github": "Oceń nas na GitHubie" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL jest nieprawidłowy", - "placeholder": "Wpisz lub wklej adres URL" - }, - "title": { - "text": "Nazwa wyświetlana", - "placeholder": "Jak chcesz nazwać ten link" - } - } - }, - "common": { - "all": "Wszystko", - "states": "Stany", - "state": "Stan", - "state_groups": "Grupy stanów", - "state_group": "Grupa stanów", - "priorities": "Priorytety", - "priority": "Priorytet", - "team_project": "Projekt zespołowy", - "project": "Projekt", - "cycle": "Cykl", - "cycles": "Cykle", - "module": "Moduł", - "modules": "Moduły", - "labels": "Etykiety", - "label": "Etykieta", - "assignees": "Przypisani", - "assignee": "Przypisano", - "created_by": "Utworzone przez", - "none": "Brak", - "link": "Link", - "estimates": "Szacunki", - "estimate": "Szacowanie", - "created_at": "Utworzono dnia", - "completed_at": "Zakończono dnia", - "layout": "Układ", - "filters": "Filtry", - "display": "Wyświetlanie", - "load_more": "Załaduj więcej", - "activity": "Aktywność", - "analytics": "Analizy", - "dates": "Daty", - "success": "Sukces!", - "something_went_wrong": "Coś poszło nie tak", - "error": { - "label": "Błąd!", - "message": "Wystąpił błąd. Spróbuj ponownie." - }, - "group_by": "Grupuj według", - "epic": "Epik", - "epics": "Epiki", - "work_item": "Element pracy", - "work_items": "Elementy pracy", - "sub_work_item": "Podrzędny element pracy", - "add": "Dodaj", - "warning": "Ostrzeżenie", - "updating": "Aktualizowanie", - "adding": "Dodawanie", - "update": "Aktualizuj", - "creating": "Tworzenie", - "create": "Utwórz", - "cancel": "Anuluj", - "description": "Opis", - "title": "Tytuł", - "attachment": "Załącznik", - "general": "Ogólne", - "features": "Funkcje", - "automation": "Automatyzacja", - "project_name": "Nazwa projektu", - "project_id": "ID projektu", - "project_timezone": "Strefa czasowa projektu", - "created_on": "Utworzono dnia", - "update_project": "Zaktualizuj projekt", - "identifier_already_exists": "Identyfikator już istnieje", - "add_more": "Dodaj więcej", - "defaults": "Domyślne", - "add_label": "Dodaj etykietę", - "customize_time_range": "Dostosuj zakres czasu", - "loading": "Ładowanie", - "attachments": "Załączniki", - "property": "Właściwość", - "properties": "Właściwości", - "parent": "Nadrzędny", - "page": "Strona", - "remove": "Usuń", - "archiving": "Archiwizowanie", - "archive": "Archiwizuj", - "access": { - "public": "Publiczny", - "private": "Prywatny" - }, - "done": "Gotowe", - "sub_work_items": "Podrzędne elementy pracy", - "comment": "Komentarz", - "workspace_level": "Poziom przestrzeni roboczej", - "order_by": { - "label": "Sortuj według", - "manual": "Ręcznie", - "last_created": "Ostatnio utworzone", - "last_updated": "Ostatnio zaktualizowane", - "start_date": "Data rozpoczęcia", - "due_date": "Termin", - "asc": "Rosnąco", - "desc": "Malejąco", - "updated_on": "Zaktualizowano dnia" - }, - "sort": { - "asc": "Rosnąco", - "desc": "Malejąco", - "created_on": "Utworzono dnia", - "updated_on": "Zaktualizowano dnia" - }, - "comments": "Komentarze", - "updates": "Aktualizacje", - "clear_all": "Wyczyść wszystko", - "copied": "Skopiowano!", - "link_copied": "Link skopiowano!", - "link_copied_to_clipboard": "Link skopiowano do schowka", - "copied_to_clipboard": "Link do elementu pracy skopiowano do schowka", - "is_copied_to_clipboard": "Element pracy skopiowany do schowka", - "no_links_added_yet": "Nie dodano jeszcze żadnych linków", - "add_link": "Dodaj link", - "links": "Linki", - "go_to_workspace": "Przejdź do przestrzeni roboczej", - "progress": "Postęp", - "optional": "Opcjonalne", - "join": "Dołącz", - "go_back": "Wróć", - "continue": "Kontynuuj", - "resend": "Wyślij ponownie", - "relations": "Relacje", - "errors": { - "default": { - "title": "Błąd!", - "message": "Coś poszło nie tak. Spróbuj ponownie." - }, - "required": "To pole jest wymagane", - "entity_required": "{entity} jest wymagane", - "restricted_entity": "{entity} jest ograniczony" - }, - "update_link": "Zaktualizuj link", - "attach": "Dołącz", - "create_new": "Utwórz nowy", - "add_existing": "Dodaj istniejący", - "type_or_paste_a_url": "Wpisz lub wklej URL", - "url_is_invalid": "URL jest nieprawidłowy", - "display_title": "Nazwa wyświetlana", - "link_title_placeholder": "Jak chcesz nazwać ten link", - "url": "URL", - "side_peek": "Widok boczny", - "modal": "Okno modalne", - "full_screen": "Pełny ekran", - "close_peek_view": "Zamknij podgląd", - "toggle_peek_view_layout": "Przełącz układ podglądu", - "options": "Opcje", - "duration": "Czas trwania", - "today": "Dziś", - "week": "Tydzień", - "month": "Miesiąc", - "quarter": "Kwartał", - "press_for_commands": "Naciśnij '/' aby wywołać polecenia", - "click_to_add_description": "Kliknij, aby dodać opis", - "search": { - "label": "Szukaj", - "placeholder": "Wpisz wyszukiwane hasło", - "no_matches_found": "Nie znaleziono pasujących wyników", - "no_matching_results": "Brak pasujących wyników" - }, - "actions": { - "edit": "Edytuj", - "make_a_copy": "Utwórz kopię", - "open_in_new_tab": "Otwórz w nowej karcie", - "copy_link": "Kopiuj link", - "archive": "Archiwizuj", - "restore": "Przywróć", - "delete": "Usuń", - "remove_relation": "Usuń relację", - "subscribe": "Subskrybuj", - "unsubscribe": "Anuluj subskrypcję", - "clear_sorting": "Wyczyść sortowanie", - "show_weekends": "Pokaż weekendy", - "enable": "Włącz", - "disable": "Wyłącz" - }, - "name": "Nazwa", - "discard": "Odrzuć", - "confirm": "Potwierdź", - "confirming": "Potwierdzanie", - "read_the_docs": "Przeczytaj dokumentację", - "default": "Domyślne", - "active": "Aktywny", - "enabled": "Włączone", - "disabled": "Wyłączone", - "mandate": "Mandat", - "mandatory": "Wymagane", - "yes": "Tak", - "no": "Nie", - "please_wait": "Proszę czekać", - "enabling": "Włączanie", - "disabling": "Wyłączanie", - "beta": "Beta", - "or": "lub", - "next": "Dalej", - "back": "Wstecz", - "cancelling": "Anulowanie", - "configuring": "Konfigurowanie", - "clear": "Wyczyść", - "import": "Importuj", - "connect": "Połącz", - "authorizing": "Autoryzowanie", - "processing": "Przetwarzanie", - "no_data_available": "Brak dostępnych danych", - "from": "od {name}", - "authenticated": "Uwierzytelniono", - "select": "Wybierz", - "upgrade": "Uaktualnij", - "add_seats": "Dodaj miejsca", - "projects": "Projekty", - "workspace": "Przestrzeń robocza", - "workspaces": "Przestrzenie robocze", - "team": "Zespół", - "teams": "Zespoły", - "entity": "Encja", - "entities": "Encje", - "task": "Zadanie", - "tasks": "Zadania", - "section": "Sekcja", - "sections": "Sekcje", - "edit": "Edytuj", - "connecting": "Łączenie", - "connected": "Połączono", - "disconnect": "Odłącz", - "disconnecting": "Odłączanie", - "installing": "Instalowanie", - "install": "Zainstaluj", - "reset": "Resetuj", - "live": "Na żywo", - "change_history": "Historia zmian", - "coming_soon": "Wkrótce", - "member": "Członek", - "members": "Członkowie", - "you": "Ty", - "upgrade_cta": { - "higher_subscription": "Uaktualnij do wyższego abonamentu", - "talk_to_sales": "Skontaktuj się z działem sprzedaży" - }, - "category": "Kategoria", - "categories": "Kategorie", - "saving": "Zapisywanie", - "save_changes": "Zapisz zmiany", - "delete": "Usuń", - "deleting": "Usuwanie", - "pending": "Oczekujące", - "invite": "Zaproś", - "view": "Widok", - "deactivated_user": "Dezaktywowany użytkownik", - "apply": "Zastosuj", - "applying": "Zastosowanie", - "users": "Użytkownicy", - "admins": "Administratorzy", - "guests": "Goście", - "on_track": "Na dobrej drodze", - "off_track": "Poza planem", - "at_risk": "W zagrożeniu", - "timeline": "Oś czasu", - "completion": "Zakończenie", - "upcoming": "Nadchodzące", - "completed": "Zakończone", - "in_progress": "W trakcie", - "planned": "Zaplanowane", - "paused": "Wstrzymane", - "no_of": "Liczba {entity}", - "resolved": "Rozwiązane" - }, - "chart": { - "x_axis": "Oś X", - "y_axis": "Oś Y", - "metric": "Metryka" - }, - "form": { - "title": { - "required": "Tytuł jest wymagany", - "max_length": "Tytuł powinien mieć mniej niż {length} znaków" - } - }, - "entity": { - "grouping_title": "Grupowanie {entity}", - "priority": "Priorytet {entity}", - "all": "Wszystkie {entity}", - "drop_here_to_move": "Przeciągnij tutaj, aby przenieść {entity}", - "delete": { - "label": "Usuń {entity}", - "success": "{entity} pomyślnie usunięto", - "failed": "Nie udało się usunąć {entity}" - }, - "update": { - "failed": "Aktualizacja {entity} nie powiodła się", - "success": "{entity} zaktualizowano pomyślnie" - }, - "link_copied_to_clipboard": "Link do {entity} skopiowano do schowka", - "fetch": { - "failed": "Błąd podczas pobierania {entity}" - }, - "add": { - "success": "{entity} dodano pomyślnie", - "failed": "Błąd podczas dodawania {entity}" - }, - "remove": { - "success": "{entity} usunięto pomyślnie", - "failed": "Błąd podczas usuwania {entity}" - } - }, - "epic": { - "all": "Wszystkie epiki", - "label": "{count, plural, one {Epik} other {Epiki}}", - "new": "Nowy epik", - "adding": "Dodawanie epiku", - "create": { - "success": "Epik utworzono pomyślnie" - }, - "add": { - "press_enter": "Naciśnij 'Enter', aby dodać kolejny epik", - "label": "Dodaj epik" - }, - "title": { - "label": "Tytuł epiku", - "required": "Tytuł epiku jest wymagany." - } - }, - "issue": { - "label": "{count, plural, one {Element pracy} few {Elementy pracy} other {Elementów pracy}}", - "all": "Wszystkie elementy pracy", - "edit": "Edytuj element pracy", - "title": { - "label": "Tytuł elementu pracy", - "required": "Tytuł elementu pracy jest wymagany." - }, - "add": { - "press_enter": "Naciśnij 'Enter', aby dodać kolejny element pracy", - "label": "Dodaj element pracy", - "cycle": { - "failed": "Nie udało się dodać elementu pracy do cyklu. Spróbuj ponownie.", - "success": "{count, plural, one {Element pracy} few {Elementy pracy} other {Elementów pracy}} dodano do cyklu.", - "loading": "Dodawanie {count, plural, one {elementu pracy} few {elementów pracy} other {elementów pracy}} do cyklu" - }, - "assignee": "Dodaj przypisanego", - "start_date": "Dodaj datę rozpoczęcia", - "due_date": "Dodaj termin", - "parent": "Dodaj element nadrzędny", - "sub_issue": "Dodaj podrzędny element pracy", - "relation": "Dodaj relację", - "link": "Dodaj link", - "existing": "Dodaj istniejący element pracy" - }, - "remove": { - "label": "Usuń element pracy", - "cycle": { - "loading": "Usuwanie elementu pracy z cyklu", - "success": "Element pracy usunięto z cyklu.", - "failed": "Nie udało się usunąć elementu pracy z cyklu. Spróbuj ponownie." - }, - "module": { - "loading": "Usuwanie elementu pracy z modułu", - "success": "Element pracy usunięto z modułu.", - "failed": "Nie udało się usunąć elementu pracy z modułu. Spróbuj ponownie." - }, - "parent": { - "label": "Usuń element nadrzędny" - } - }, - "new": "Nowy element pracy", - "adding": "Dodawanie elementu pracy", - "create": { - "success": "Element pracy utworzono pomyślnie" - }, - "priority": { - "urgent": "Pilny", - "high": "Wysoki", - "medium": "Średni", - "low": "Niski" - }, - "display": { - "properties": { - "label": "Wyświetlane właściwości", - "id": "ID", - "issue_type": "Typ elementu pracy", - "sub_issue_count": "Liczba elementów podrzędnych", - "attachment_count": "Liczba załączników", - "created_on": "Utworzono dnia", - "sub_issue": "Element podrzędny", - "work_item_count": "Liczba elementów pracy" - }, - "extra": { - "show_sub_issues": "Pokaż elementy podrzędne", - "show_empty_groups": "Pokaż puste grupy" - } - }, - "layouts": { - "ordered_by_label": "Ten układ jest sortowany według", - "list": "Lista", - "kanban": "Tablica Kanban", - "calendar": "Kalendarz", - "spreadsheet": "Arkusz", - "gantt": "Oś czasu", - "title": { - "list": "Układ listy", - "kanban": "Układ tablicy", - "calendar": "Układ kalendarza", - "spreadsheet": "Układ arkusza", - "gantt": "Układ osi czasu" - } - }, - "states": { - "active": "Aktywny", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Dodaj komentarz", - "switch": { - "private": "Przełącz na komentarz prywatny", - "public": "Przełącz na komentarz publiczny" - }, - "create": { - "success": "Komentarz utworzono pomyślnie", - "error": "Nie udało się utworzyć komentarza. Spróbuj później." - }, - "update": { - "success": "Komentarz zaktualizowano pomyślnie", - "error": "Nie udało się zaktualizować komentarza. Spróbuj później." - }, - "remove": { - "success": "Komentarz usunięto pomyślnie", - "error": "Nie udało się usunąć komentarza. Spróbuj później." - }, - "upload": { - "error": "Nie udało się przesłać załącznika. Spróbuj później." - }, - "copy_link": { - "success": "Link do komentarza skopiowany do schowka", - "error": "Błąd podczas kopiowania linka do komentarza. Spróbuj ponownie później." - } - }, - "empty_state": { - "issue_detail": { - "title": "Element pracy nie istnieje", - "description": "Element pracy, którego szukasz, nie istnieje, został zarchiwizowany lub usunięty.", - "primary_button": { - "text": "Pokaż inne elementy pracy" - } - } - }, - "sibling": { - "label": "Powiązane elementy pracy" - }, - "archive": { - "description": "Można archiwizować tylko elementy pracy w stanie ukończonym lub anulowanym", - "label": "Archiwizuj element pracy", - "confirm_message": "Czy na pewno chcesz zarchiwizować ten element pracy? Wszystkie zarchiwizowane elementy można później przywrócić.", - "success": { - "label": "Archiwizacja zakończona", - "message": "Archiwa znajdziesz w archiwum projektu." - }, - "failed": { - "message": "Nie udało się zarchiwizować elementu pracy. Spróbuj ponownie." - } - }, - "restore": { - "success": { - "title": "Przywrócenie zakończone", - "message": "Twój element pracy można znaleźć w elementach pracy projektu." - }, - "failed": { - "message": "Nie udało się przywrócić elementu pracy. Spróbuj ponownie." - } - }, - "relation": { - "relates_to": "Powiązany z", - "duplicate": "Duplikat", - "blocked_by": "Zablokowany przez", - "blocking": "Blokuje" - }, - "copy_link": "Kopiuj link do elementu pracy", - "delete": { - "label": "Usuń element pracy", - "error": "Błąd podczas usuwania elementu pracy" - }, - "subscription": { - "actions": { - "subscribed": "Subskrypcja elementu pracy powiodła się", - "unsubscribed": "Anulowano subskrypcję elementu pracy" - } - }, - "select": { - "error": "Wybierz co najmniej jeden element pracy", - "empty": "Nie wybrano żadnych elementów pracy", - "add_selected": "Dodaj wybrane elementy pracy", - "select_all": "Wybierz wszystko", - "deselect_all": "Odznacz wszystko" - }, - "open_in_full_screen": "Otwórz element pracy na pełnym ekranie" - }, - "attachment": { - "error": "Nie udało się dodać pliku. Spróbuj ponownie.", - "only_one_file_allowed": "Możesz przesłać tylko jeden plik naraz.", - "file_size_limit": "Plik musi być mniejszy niż {size}MB.", - "drag_and_drop": "Przeciągnij plik w dowolne miejsce, aby przesłać", - "delete": "Usuń załącznik" - }, - "label": { - "select": "Wybierz etykietę", - "create": { - "success": "Etykietę utworzono pomyślnie", - "failed": "Nie udało się utworzyć etykiety", - "already_exists": "Taka etykieta już istnieje", - "type": "Wpisz, aby utworzyć nową etykietę" - } - }, - "sub_work_item": { - "update": { - "success": "Podrzędny element pracy zaktualizowano pomyślnie", - "error": "Błąd podczas aktualizacji elementu podrzędnego" - }, - "remove": { - "success": "Podrzędny element pracy usunięto pomyślnie", - "error": "Błąd podczas usuwania elementu podrzędnego" - }, - "empty_state": { - "sub_list_filters": { - "title": "Nie masz elementów podrzędnych, które pasują do filtrów, które zastosowałeś.", - "description": "Aby zobaczyć wszystkie elementy podrzędne, wyczyść wszystkie zastosowane filtry.", - "action": "Wyczyść filtry" - }, - "list_filters": { - "title": "Nie masz elementów pracy, które pasują do filtrów, które zastosowałeś.", - "description": "Aby zobaczyć wszystkie elementy pracy, wyczyść wszystkie zastosowane filtry.", - "action": "Wyczyść filtry" - } - } - }, - "view": { - "label": "{count, plural, one {Widok} few {Widoki} other {Widoków}}", - "create": { - "label": "Utwórz widok" - }, - "update": { - "label": "Zaktualizuj widok" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Oczekujące", - "description": "Oczekujące" - }, - "declined": { - "title": "Odrzucone", - "description": "Odrzucone" - }, - "snoozed": { - "title": "Odłożone", - "description": "Pozostało {days, plural, one{# dzień} few{# dni} other{# dni}}" - }, - "accepted": { - "title": "Zaakceptowane", - "description": "Zaakceptowane" - }, - "duplicate": { - "title": "Duplikat", - "description": "Duplikat" - } - }, - "modals": { - "decline": { - "title": "Odrzuć element pracy", - "content": "Czy na pewno chcesz odrzucić element pracy {value}?" - }, - "delete": { - "title": "Usuń element pracy", - "content": "Czy na pewno chcesz usunąć element pracy {value}?", - "success": "Element pracy usunięto pomyślnie" - } - }, - "errors": { - "snooze_permission": "Tylko administratorzy projektu mogą odkładać/odkładać ponownie elementy pracy", - "accept_permission": "Tylko administratorzy projektu mogą akceptować elementy pracy", - "decline_permission": "Tylko administratorzy projektu mogą odrzucać elementy pracy" - }, - "actions": { - "accept": "Zaakceptuj", - "decline": "Odrzuć", - "snooze": "Odłóż", - "unsnooze": "Anuluj odłożenie", - "copy": "Kopiuj link do elementu pracy", - "delete": "Usuń", - "open": "Otwórz element pracy", - "mark_as_duplicate": "Oznacz jako duplikat", - "move": "Przenieś {value} do elementów pracy projektu" - }, - "source": { - "in-app": "w aplikacji" - }, - "order_by": { - "created_at": "Utworzono dnia", - "updated_at": "Zaktualizowano dnia", - "id": "ID" - }, - "label": "Zgłoszenia", - "page_label": "{workspace} - Zgłoszenia", - "modal": { - "title": "Utwórz przyjęty element pracy" - }, - "tabs": { - "open": "Otwarte", - "closed": "Zamknięte" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Brak otwartych elementów pracy", - "description": "Tutaj znajdziesz otwarte elementy pracy. Utwórz nowy." - }, - "sidebar_closed_tab": { - "title": "Brak zamkniętych elementów pracy", - "description": "Wszystkie zaakceptowane lub odrzucone elementy pracy pojawią się tutaj." - }, - "sidebar_filter": { - "title": "Brak pasujących elementów pracy", - "description": "Żaden element nie pasuje do filtra w zgłoszeniach. Utwórz nowy." - }, - "detail": { - "title": "Wybierz element pracy, aby zobaczyć szczegóły." - } - } - }, - "workspace_creation": { - "heading": "Utwórz przestrzeń roboczą", - "subheading": "Aby korzystać z Plane, musisz utworzyć lub dołączyć do przestrzeni roboczej.", - "form": { - "name": { - "label": "Nazwij swoją przestrzeń roboczą", - "placeholder": "Użyj czegoś rozpoznawalnego." - }, - "url": { - "label": "Skonfiguruj adres URL swojej przestrzeni", - "placeholder": "Wpisz lub wklej adres URL", - "edit_slug": "Możesz edytować tylko fragment adresu URL (slug)" - }, - "organization_size": { - "label": "Ile osób będzie używać tej przestrzeni?", - "placeholder": "Wybierz zakres" - } - }, - "errors": { - "creation_disabled": { - "title": "Tylko administrator instancji może tworzyć przestrzenie robocze", - "description": "Jeśli znasz adres e-mail administratora, kliknij przycisk poniżej, aby się skontaktować.", - "request_button": "Poproś administratora instancji" - }, - "validation": { - "name_alphanumeric": "Nazwy przestrzeni mogą zawierać tylko (' '), ('-'), ('_') i znaki alfanumeryczne.", - "name_length": "Nazwa ograniczona do 80 znaków.", - "url_alphanumeric": "Adres URL może zawierać tylko ('-') i znaki alfanumeryczne.", - "url_length": "Adres URL ograniczony do 48 znaków.", - "url_already_taken": "Adres URL przestrzeni roboczej jest już zajęty!" - } - }, - "request_email": { - "subject": "Prośba o nową przestrzeń roboczą", - "body": "Cześć Administratorze,\n\nProszę o utworzenie nowej przestrzeni roboczej z adresem [/workspace-name] dla [cel utworzenia].\n\nDziękuję,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Utwórz przestrzeń roboczą", - "loading": "Tworzenie przestrzeni roboczej" - }, - "toast": { - "success": { - "title": "Sukces", - "message": "Przestrzeń roboczą utworzono pomyślnie" - }, - "error": { - "title": "Błąd", - "message": "Nie udało się utworzyć przestrzeni roboczej. Spróbuj ponownie." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Podgląd projektów, aktywności i metryk", - "description": "Witaj w Plane, cieszymy się, że jesteś. Utwórz pierwszy projekt, śledź elementy pracy, a ta strona stanie się centrum Twojego postępu. Administratorzy zobaczą tu również elementy pomocne zespołowi.", - "primary_button": { - "text": "Utwórz pierwszy projekt", - "comic": { - "title": "Wszystko zaczyna się od projektu w Plane", - "description": "Projektem może być harmonogram produktu, kampania marketingowa czy wprowadzenie nowego samochodu." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analizy", - "page_label": "{workspace} - Analizy", - "open_tasks": "Łączna liczba otwartych zadań", - "error": "Wystąpił błąd podczas wczytywania danych.", - "work_items_closed_in": "Elementy pracy zamknięte w", - "selected_projects": "Wybrane projekty", - "total_members": "Łączna liczba członków", - "total_cycles": "Łączna liczba cykli", - "total_modules": "Łączna liczba modułów", - "pending_work_items": { - "title": "Oczekujące elementy pracy", - "empty_state": "Tutaj zobaczysz analizę oczekujących elementów pracy według współpracowników." - }, - "work_items_closed_in_a_year": { - "title": "Elementy pracy zamknięte w ciągu roku", - "empty_state": "Zamykaj elementy pracy, aby zobaczyć analizę w wykresie." - }, - "most_work_items_created": { - "title": "Najwięcej utworzonych elementów", - "empty_state": "Zostaną wyświetleni współpracownicy oraz liczba utworzonych przez nich elementów." - }, - "most_work_items_closed": { - "title": "Najwięcej zamkniętych elementów", - "empty_state": "Zostaną wyświetleni współpracownicy oraz liczba zamkniętych przez nich elementów." - }, - "tabs": { - "scope_and_demand": "Zakres i zapotrzebowanie", - "custom": "Analizy niestandardowe" - }, - "empty_state": { - "customized_insights": { - "description": "Przypisane do Ciebie elementy pracy, podzielone według stanu, pojawią się tutaj.", - "title": "Brak danych" - }, - "created_vs_resolved": { - "description": "Elementy pracy utworzone i rozwiązane w czasie pojawią się tutaj.", - "title": "Brak danych" - }, - "project_insights": { - "title": "Brak danych", - "description": "Przypisane do Ciebie elementy pracy, podzielone według stanu, pojawią się tutaj." - }, - "general": { - "title": "Śledź postęp, obciążenie pracą i alokacje. Wykrywaj trendy, usuwaj blokady i pracuj szybciej", - "description": "Zobacz zakres vs zapotrzebowanie, oszacowania i rozrost zakresu. Uzyskaj wydajność członków zespołu i zespołów, upewniając się, że projekt jest realizowany na czas.", - "primary_button": { - "text": "Rozpocznij swój pierwszy projekt", - "comic": { - "title": "Analityka działa najlepiej z Cyklami + Modułami", - "description": "Najpierw umieść swoje elementy pracy w Cyklach, a jeśli można, pogrupuj elementy obejmujące więcej niż jeden cykl w Moduły. Sprawdź oba w lewej nawigacji." - } - } - } - }, - "created_vs_resolved": "Utworzone vs Rozwiązane", - "customized_insights": "Dostosowane informacje", - "backlog_work_items": "{entity} w backlogu", - "active_projects": "Aktywne projekty", - "trend_on_charts": "Trend na wykresach", - "all_projects": "Wszystkie projekty", - "summary_of_projects": "Podsumowanie projektów", - "project_insights": "Wgląd w projekt", - "started_work_items": "Rozpoczęte {entity}", - "total_work_items": "Łączna liczba {entity}", - "total_projects": "Łączna liczba projektów", - "total_admins": "Łączna liczba administratorów", - "total_users": "Łączna liczba użytkowników", - "total_intake": "Całkowity dochód", - "un_started_work_items": "Nierozpoczęte {entity}", - "total_guests": "Łączna liczba gości", - "completed_work_items": "Ukończone {entity}", - "total": "Łączna liczba {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Projekt} few {Projekty} other {Projektów}}", - "create": { - "label": "Dodaj projekt" - }, - "network": { - "label": "Sieć", - "private": { - "title": "Prywatny", - "description": "Dostęp tylko na zaproszenie" - }, - "public": { - "title": "Publiczny", - "description": "Każdy w przestrzeni, poza gośćmi, może dołączyć" - } - }, - "error": { - "permission": "Nie masz uprawnień do wykonania tej akcji.", - "cycle_delete": "Nie udało się usunąć cyklu", - "module_delete": "Nie udało się usunąć modułu", - "issue_delete": "Nie udało się usunąć elementu pracy" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Nierozpoczęty", - "started": "Rozpoczęty", - "completed": "Ukończony", - "cancelled": "Anulowany" - }, - "sort": { - "manual": "Ręcznie", - "name": "Nazwa", - "created_at": "Data utworzenia", - "members_length": "Liczba członków" - }, - "scope": { - "my_projects": "Moje projekty", - "archived_projects": "Zarchiwizowane" - }, - "common": { - "months_count": "{months, plural, one{# miesiąc} few{# miesiące} other{# miesięcy}}" - }, - "empty_state": { - "general": { - "title": "Brak aktywnych projektów", - "description": "Projekt to główny cel. Zawiera zadania, cykle i moduły. Utwórz nowy lub poszukaj zarchiwizowanych.", - "primary_button": { - "text": "Rozpocznij pierwszy projekt", - "comic": { - "title": "Wszystko zaczyna się od projektu w Plane", - "description": "Projekt może dotyczyć planu produktu, kampanii marketingowej lub uruchomienia nowego samochodu." - } - } - }, - "no_projects": { - "title": "Brak projektów", - "description": "Aby tworzyć elementy pracy, musisz utworzyć lub dołączyć do projektu.", - "primary_button": { - "text": "Rozpocznij pierwszy projekt", - "comic": { - "title": "Wszystko zaczyna się od projektu w Plane", - "description": "Projekt może dotyczyć planu produktu, kampanii marketingowej lub uruchomienia nowego samochodu." - } - } - }, - "filter": { - "title": "Brak pasujących projektów", - "description": "Nie znaleziono projektów spełniających kryteria.\nUtwórz nowy." - }, - "search": { - "description": "Nie znaleziono projektów spełniających kryteria.\nUtwórz nowy." - } - } - }, - "workspace_views": { - "add_view": "Dodaj widok", - "empty_state": { - "all-issues": { - "title": "Brak elementów pracy w projekcie", - "description": "Utwórz pierwszy element i śledź postępy!", - "primary_button": { - "text": "Utwórz element pracy" - } - }, - "assigned": { - "title": "Brak przypisanych elementów", - "description": "Tutaj zobaczysz elementy przypisane Tobie.", - "primary_button": { - "text": "Utwórz element pracy" - } - }, - "created": { - "title": "Brak utworzonych elementów", - "description": "Tutaj pojawiają się elementy, które utworzyłeś(aś).", - "primary_button": { - "text": "Utwórz element pracy" - } - }, - "subscribed": { - "title": "Brak subskrybowanych elementów", - "description": "Subskrybuj elementy, które Cię interesują." - }, - "custom-view": { - "title": "Brak pasujących elementów", - "description": "Wyświetlane są elementy spełniające filtr." - } - } - }, - "workspace_settings": { - "label": "Ustawienia przestrzeni roboczej", - "page_label": "{workspace} - Ustawienia ogólne", - "key_created": "Klucz utworzony", - "copy_key": "Skopiuj i zapisz ten klucz w Plane Pages. Po zamknięciu nie będzie widoczny ponownie. Plik CSV z kluczem został pobrany.", - "token_copied": "Token skopiowano do schowka.", - "settings": { - "general": { - "title": "Ogólne", - "upload_logo": "Prześlij logo", - "edit_logo": "Edytuj logo", - "name": "Nazwa przestrzeni roboczej", - "company_size": "Rozmiar firmy", - "url": "URL przestrzeni roboczej", - "update_workspace": "Zaktualizuj przestrzeń", - "delete_workspace": "Usuń tę przestrzeń", - "delete_workspace_description": "Usunięcie przestrzeni spowoduje wymazanie wszystkich danych i zasobów. Ta akcja jest nieodwracalna.", - "delete_btn": "Usuń przestrzeń", - "delete_modal": { - "title": "Czy na pewno chcesz usunąć tę przestrzeń?", - "description": "Masz aktywną wersję próbną. Najpierw ją anuluj.", - "dismiss": "Zamknij", - "cancel": "Anuluj wersję próbną", - "success_title": "Przestrzeń usunięta.", - "success_message": "Zostaniesz przekierowany do profilu.", - "error_title": "Nie udało się.", - "error_message": "Spróbuj ponownie." - }, - "errors": { - "name": { - "required": "Nazwa jest wymagana", - "max_length": "Nazwa przestrzeni nie może przekraczać 80 znaków" - }, - "company_size": { - "required": "Rozmiar firmy jest wymagany" - } - } - }, - "members": { - "title": "Członkowie", - "add_member": "Dodaj członka", - "pending_invites": "Oczekujące zaproszenia", - "invitations_sent_successfully": "Zaproszenia wysłano pomyślnie", - "leave_confirmation": "Czy na pewno chcesz opuścić przestrzeń? Stracisz dostęp. Ta akcja jest nieodwracalna.", - "details": { - "full_name": "Imię i nazwisko", - "display_name": "Nazwa wyświetlana", - "email_address": "Adres e-mail", - "account_type": "Typ konta", - "authentication": "Uwierzytelnianie", - "joining_date": "Data dołączenia" - }, - "modal": { - "title": "Zaproś współpracowników", - "description": "Zaproś osoby do współpracy.", - "button": "Wyślij zaproszenia", - "button_loading": "Wysyłanie zaproszeń", - "placeholder": "imię@firma.pl", - "errors": { - "required": "Wymagany jest adres e-mail.", - "invalid": "E-mail jest nieprawidłowy" - } - } - }, - "billing_and_plans": { - "title": "Rozliczenia i plany", - "current_plan": "Obecny plan", - "free_plan": "Używasz bezpłatnego planu", - "view_plans": "Wyświetl plany" - }, - "exports": { - "title": "Eksporty", - "exporting": "Eksportowanie", - "previous_exports": "Poprzednie eksporty", - "export_separate_files": "Eksportuj dane do oddzielnych plików", - "modal": { - "title": "Eksport do", - "toasts": { - "success": { - "title": "Eksport zakończony sukcesem", - "message": "Wyeksportowane {entity} można pobrać z poprzednich eksportów." - }, - "error": { - "title": "Eksport nie powiódł się", - "message": "Spróbuj ponownie." - } - } - } - }, - "webhooks": { - "title": "Webhooki", - "add_webhook": "Dodaj webhook", - "modal": { - "title": "Utwórz webhook", - "details": "Szczegóły webhooka", - "payload": "URL payloadu", - "question": "Które zdarzenia mają uruchamiać ten webhook?", - "error": "URL jest wymagany" - }, - "secret_key": { - "title": "Klucz tajny", - "message": "Wygeneruj token do logowania webhooka" - }, - "options": { - "all": "Wysyłaj wszystko", - "individual": "Wybierz pojedyncze zdarzenia" - }, - "toasts": { - "created": { - "title": "Webhook utworzony", - "message": "Webhook został pomyślnie utworzony" - }, - "not_created": { - "title": "Webhook nie został utworzony", - "message": "Nie udało się utworzyć webhooka" - }, - "updated": { - "title": "Webhook zaktualizowany", - "message": "Webhook został pomyślnie zaktualizowany" - }, - "not_updated": { - "title": "Aktualizacja webhooka nie powiodła się", - "message": "Nie udało się zaktualizować webhooka" - }, - "removed": { - "title": "Webhook usunięty", - "message": "Webhook został pomyślnie usunięty" - }, - "not_removed": { - "title": "Usunięcie webhooka nie powiodło się", - "message": "Nie udało się usunąć webhooka" - }, - "secret_key_copied": { - "message": "Klucz tajny skopiowany do schowka." - }, - "secret_key_not_copied": { - "message": "Błąd podczas kopiowania klucza." - } - } - }, - "api_tokens": { - "title": "Tokeny API", - "add_token": "Dodaj token API", - "create_token": "Utwórz token", - "never_expires": "Nigdy nie wygasa", - "generate_token": "Wygeneruj token", - "generating": "Generowanie", - "delete": { - "title": "Usuń token API", - "description": "Aplikacje używające tego tokena stracą dostęp. Ta akcja jest nieodwracalna.", - "success": { - "title": "Sukces!", - "message": "Token pomyślnie usunięto" - }, - "error": { - "title": "Błąd!", - "message": "Usunięcie tokena nie powiodło się" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Brak tokenów API", - "description": "Używaj API, aby zintegrować Plane z zewnętrznymi systemami." - }, - "webhooks": { - "title": "Brak webhooków", - "description": "Utwórz webhooki, aby zautomatyzować działania." - }, - "exports": { - "title": "Brak eksportów", - "description": "Znajdziesz tu historię swoich eksportów." - }, - "imports": { - "title": "Brak importów", - "description": "Znajdziesz tu historię swoich importów." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Twoja praca", - "work": "Praca", - "details": { - "joined_on": "Dołączył(a) dnia", - "time_zone": "Strefa czasowa" - }, - "stats": { - "workload": "Obciążenie", - "overview": "Przegląd", - "created": "Utworzone elementy", - "assigned": "Przypisane elementy", - "subscribed": "Subskrybowane elementy", - "state_distribution": { - "title": "Elementy według stanu", - "empty": "Twórz elementy, aby móc analizować stany." - }, - "priority_distribution": { - "title": "Elementy według priorytetu", - "empty": "Twórz elementy, aby móc analizować priorytety." - }, - "recent_activity": { - "title": "Ostatnia aktywność", - "empty": "Brak aktywności.", - "button": "Pobierz dzisiejszą aktywność", - "button_loading": "Pobieranie" - } - }, - "actions": { - "profile": "Profil", - "security": "Bezpieczeństwo", - "activity": "Aktywność", - "appearance": "Wygląd", - "notifications": "Powiadomienia" - }, - "tabs": { - "summary": "Podsumowanie", - "assigned": "Przypisane", - "created": "Utworzone", - "subscribed": "Subskrybowane", - "activity": "Aktywność" - }, - "empty_state": { - "activity": { - "title": "Brak aktywności", - "description": "Utwórz element pracy, aby zacząć." - }, - "assigned": { - "title": "Brak przypisanych elementów pracy", - "description": "Tutaj zobaczysz elementy pracy przypisane do Ciebie." - }, - "created": { - "title": "Brak utworzonych elementów pracy", - "description": "Tutaj są elementy pracy, które utworzyłeś(aś)." - }, - "subscribed": { - "title": "Brak subskrybowanych elementów pracy", - "description": "Subskrybuj interesujące Cię elementy pracy, a pojawią się tutaj." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Wpisz ID projektu", - "please_select_a_timezone": "Wybierz strefę czasową", - "archive_project": { - "title": "Archiwizuj projekt", - "description": "Archiwizacja ukryje projekt w menu. Dostęp będzie możliwy przez stronę projektów.", - "button": "Archiwizuj projekt" - }, - "delete_project": { - "title": "Usuń projekt", - "description": "Usunięcie projektu spowoduje trwałe wymazanie wszystkich danych. Ta akcja jest nieodwracalna.", - "button": "Usuń projekt" - }, - "toast": { - "success": "Projekt zaktualizowano", - "error": "Aktualizacja nie powiodła się. Spróbuj ponownie." - } - }, - "members": { - "label": "Członkowie", - "project_lead": "Lider projektu", - "default_assignee": "Domyślnie przypisany", - "guest_super_permissions": { - "title": "Nadaj gościom dostęp do wszystkich elementów:", - "sub_heading": "Goście zobaczą wszystkie elementy w projekcie." - }, - "invite_members": { - "title": "Zaproś członków", - "sub_heading": "Zaproś członków do projektu.", - "select_co_worker": "Wybierz współpracownika" - } - }, - "states": { - "describe_this_state_for_your_members": "Opisz ten stan członkom projektu.", - "empty_state": { - "title": "Brak stanów w grupie {groupKey}", - "description": "Utwórz nowy stan" - } - }, - "labels": { - "label_title": "Nazwa etykiety", - "label_title_is_required": "Nazwa etykiety jest wymagana", - "label_max_char": "Nazwa etykiety nie może mieć więcej niż 255 znaków", - "toast": { - "error": "Błąd podczas aktualizacji etykiety" - } - }, - "estimates": { - "label": "Szacunki", - "title": "Włącz szacunki dla mojego projektu", - "description": "Pomagają w komunikacji o złożoności i obciążeniu zespołu.", - "no_estimate": "Bez szacunku", - "new": "Nowy system szacowania", - "create": { - "custom": "Niestandardowy", - "start_from_scratch": "Zacznij od zera", - "choose_template": "Wybierz szablon", - "choose_estimate_system": "Wybierz system szacowania", - "enter_estimate_point": "Wprowadź punkt szacunkowy", - "step": "Krok {step} z {total}", - "label": "Utwórz szacunek" - }, - "toasts": { - "created": { - "success": { - "title": "Utworzono szacunek", - "message": "Szacunek został utworzony pomyślnie" - }, - "error": { - "title": "Błąd tworzenia szacunku", - "message": "Nie udało się utworzyć nowego szacunku, spróbuj ponownie." - } - }, - "updated": { - "success": { - "title": "Zaktualizowano szacunek", - "message": "Szacunek został zaktualizowany w Twoim projekcie." - }, - "error": { - "title": "Błąd aktualizacji szacunku", - "message": "Nie udało się zaktualizować szacunku, spróbuj ponownie" - } - }, - "enabled": { - "success": { - "title": "Sukces!", - "message": "Szacunki zostały włączone." - } - }, - "disabled": { - "success": { - "title": "Sukces!", - "message": "Szacunki zostały wyłączone." - }, - "error": { - "title": "Błąd!", - "message": "Nie udało się wyłączyć szacunków. Spróbuj ponownie" - } - } - }, - "validation": { - "min_length": "Punkt szacunkowy musi być większy niż 0.", - "unable_to_process": "Nie możemy przetworzyć Twojego żądania, spróbuj ponownie.", - "numeric": "Punkt szacunkowy musi być wartością liczbową.", - "character": "Punkt szacunkowy musi być znakiem.", - "empty": "Wartość szacunku nie może być pusta.", - "already_exists": "Wartość szacunku już istnieje.", - "unsaved_changes": "Masz niezapisane zmiany. Zapisz je przed kliknięciem 'gotowe'", - "remove_empty": "Szacunek nie może być pusty. Wprowadź wartość w każde pole lub usuń te, dla których nie masz wartości." - }, - "systems": { - "points": { - "label": "Punkty", - "fibonacci": "Fibonacci", - "linear": "Liniowy", - "squares": "Kwadraty", - "custom": "Własny" - }, - "categories": { - "label": "Kategorie", - "t_shirt_sizes": "Rozmiary koszulek", - "easy_to_hard": "Od łatwego do trudnego", - "custom": "Własne" - }, - "time": { - "label": "Czas", - "hours": "Godziny" - } - } - }, - "automations": { - "label": "Automatyzacja", - "auto-archive": { - "title": "Automatyczna archiwizacja zamkniętych elementów", - "description": "Plane będzie automatycznie archiwizował elementy, które zostały ukończone lub anulowane.", - "duration": "Archiwizuj elementy zamknięte dłużej niż" - }, - "auto-close": { - "title": "Automatyczne zamykanie elementów", - "description": "Plane będzie automatycznie zamykał elementy, które nie zostały ukończone lub anulowane.", - "duration": "Zamknij elementy nieaktywne dłużej niż", - "auto_close_status": "Status automatycznego zamknięcia" - } - }, - "empty_state": { - "labels": { - "title": "Brak etykiet", - "description": "Utwórz etykiety, aby organizować elementy pracy." - }, - "estimates": { - "title": "Brak systemów szacowania", - "description": "Utwórz system szacowania, aby komunikować obciążenie.", - "primary_button": "Dodaj system szacowania" - } - } - }, - "project_cycles": { - "add_cycle": "Dodaj cykl", - "more_details": "Więcej szczegółów", - "cycle": "Cykl", - "update_cycle": "Zaktualizuj cykl", - "create_cycle": "Utwórz cykl", - "no_matching_cycles": "Brak pasujących cykli", - "remove_filters_to_see_all_cycles": "Usuń filtry, aby wyświetlić wszystkie cykle", - "remove_search_criteria_to_see_all_cycles": "Usuń kryteria wyszukiwania, aby wyświetlić wszystkie cykle", - "only_completed_cycles_can_be_archived": "Można archiwizować tylko ukończone cykle", - "start_date": "Data początku", - "end_date": "Data końca", - "in_your_timezone": "W Twojej strefie czasowej", - "transfer_work_items": "Przenieś {count} elementów pracy", - "date_range": "Zakres dat", - "add_date": "Dodaj datę", - "active_cycle": { - "label": "Aktywny cykl", - "progress": "Postęp", - "chart": "Wykres burndown", - "priority_issue": "Elementy o wysokim priorytecie", - "assignees": "Przypisani", - "issue_burndown": "Burndown elementów pracy", - "ideal": "Idealny", - "current": "Obecny", - "labels": "Etykiety" - }, - "upcoming_cycle": { - "label": "Nadchodzący cykl" - }, - "completed_cycle": { - "label": "Ukończony cykl" - }, - "status": { - "days_left": "Pozostało dni", - "completed": "Ukończono", - "yet_to_start": "Jeszcze nierozpoczęty", - "in_progress": "W trakcie", - "draft": "Szkic" - }, - "action": { - "restore": { - "title": "Przywróć cykl", - "success": { - "title": "Cykl przywrócony", - "description": "Cykl został przywrócony." - }, - "failed": { - "title": "Przywracanie nie powiodło się", - "description": "Nie udało się przywrócić cyklu." - } - }, - "favorite": { - "loading": "Dodawanie do ulubionych", - "success": { - "description": "Cykl dodano do ulubionych.", - "title": "Sukces!" - }, - "failed": { - "description": "Nie udało się dodać do ulubionych.", - "title": "Błąd!" - } - }, - "unfavorite": { - "loading": "Usuwanie z ulubionych", - "success": { - "description": "Cykl usunięto z ulubionych.", - "title": "Sukces!" - }, - "failed": { - "description": "Nie udało się usunąć z ulubionych.", - "title": "Błąd!" - } - }, - "update": { - "loading": "Aktualizowanie cyklu", - "success": { - "description": "Cykl zaktualizowano.", - "title": "Sukces!" - }, - "failed": { - "description": "Aktualizacja nie powiodła się.", - "title": "Błąd!" - }, - "error": { - "already_exists": "Cykl o tych datach już istnieje. Aby mieć szkic, usuń daty." - } - } - }, - "empty_state": { - "general": { - "title": "Grupuj pracę w cykle.", - "description": "Ograniczaj pracę w czasie, śledź terminy i monitoruj postępy.", - "primary_button": { - "text": "Utwórz pierwszy cykl", - "comic": { - "title": "Cykle to powtarzalne okresy czasu.", - "description": "Sprint, iteracja lub inny okres, w którym śledzisz pracę." - } - } - }, - "no_issues": { - "title": "Brak elementów w cyklu", - "description": "Dodaj elementy, które chcesz śledzić.", - "primary_button": { - "text": "Utwórz element" - }, - "secondary_button": { - "text": "Dodaj istniejący element" - } - }, - "completed_no_issues": { - "title": "Brak elementów w cyklu", - "description": "Elementy zostały przeniesione lub ukryte. Aby je zobaczyć, zmień właściwości." - }, - "active": { - "title": "Brak aktywnego cyklu", - "description": "Aktywny cykl obejmuje aktualną datę. Będzie wyświetlany tutaj." - }, - "archived": { - "title": "Brak zarchiwizowanych cykli", - "description": "Archiwizuj ukończone cykle, aby zachować porządek." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Utwórz i przypisz element pracy", - "description": "Elementy to zadania, które przypisujesz sobie lub zespołowi. Śledź ich postęp.", - "primary_button": { - "text": "Utwórz pierwszy element", - "comic": { - "title": "Elementy to podstawowe zadania", - "description": "Przykłady: przeprojektowanie interfejsu, rebranding, nowy system." - } - } - }, - "no_archived_issues": { - "title": "Brak zarchiwizowanych elementów", - "description": "Archiwizuj elementy ukończone lub anulowane. Skonfiguruj automatyzację.", - "primary_button": { - "text": "Skonfiguruj automatyzację" - } - }, - "issues_empty_filter": { - "title": "Brak pasujących elementów", - "secondary_button": { - "text": "Wyczyść filtry" - } - } - } - }, - "project_module": { - "add_module": "Dodaj moduł", - "update_module": "Zaktualizuj moduł", - "create_module": "Utwórz moduł", - "archive_module": "Archiwizuj moduł", - "restore_module": "Przywróć moduł", - "delete_module": "Usuń moduł", - "empty_state": { - "general": { - "title": "Grupuj etapy w moduły.", - "description": "Moduły grupują elementy pod wspólnym nadrzędnym celem. Śledź terminy i postępy.", - "primary_button": { - "text": "Utwórz pierwszy moduł", - "comic": { - "title": "Moduły grupują elementy hierarchicznie.", - "description": "Przykłady: moduł koszyka, podwozia, magazynu." - } - } - }, - "no_issues": { - "title": "Brak elementów w module", - "description": "Dodaj elementy do modułu.", - "primary_button": { - "text": "Utwórz elementy" - }, - "secondary_button": { - "text": "Dodaj istniejący element" - } - }, - "archived": { - "title": "Brak zarchiwizowanych modułów", - "description": "Archiwizuj moduły ukończone lub anulowane." - }, - "sidebar": { - "in_active": "Moduł nie jest aktywny.", - "invalid_date": "Nieprawidłowa data. Wpisz prawidłową." - } - }, - "quick_actions": { - "archive_module": "Archiwizuj moduł", - "archive_module_description": "Można archiwizować tylko ukończone/anulowane moduły.", - "delete_module": "Usuń moduł" - }, - "toast": { - "copy": { - "success": "Link do modułu skopiowano" - }, - "delete": { - "success": "Moduł usunięto", - "error": "Nie udało się usunąć modułu" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Zapisuj filtry jako widoki.", - "description": "Widoki to zapisane filtry zapewniające łatwy dostęp. Udostępnij je zespołowi.", - "primary_button": { - "text": "Utwórz pierwszy widok", - "comic": { - "title": "Widoki działają z właściwościami elementów pracy.", - "description": "Utwórz widok z żądanymi filtrami." - } - } - }, - "filter": { - "title": "Brak pasujących widoków", - "description": "Utwórz nowy widok." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Notuj, dokumentuj lub twórz bazę wiedzy. Użyj AI Galileo.", - "description": "Strony to obszar na Twoje myśli. Pisz, formatuj, osadzaj elementy i używaj komponentów.", - "primary_button": { - "text": "Utwórz pierwszą stronę" - } - }, - "private": { - "title": "Brak prywatnych stron", - "description": "Przechowuj prywatne notatki. Udostępnij je później, gdy będziesz gotowy.", - "primary_button": { - "text": "Utwórz stronę" - } - }, - "public": { - "title": "Brak publicznych stron", - "description": "Tutaj zobaczysz strony udostępnione w projekcie.", - "primary_button": { - "text": "Utwórz stronę" - } - }, - "archived": { - "title": "Brak zarchiwizowanych stron", - "description": "Archiwizuj strony do późniejszego użytku." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Nie znaleziono wyników" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Brak pasujących elementów" - }, - "no_issues": { - "title": "Brak elementów" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Brak komentarzy", - "description": "Komentarze służą do dyskusji i śledzenia elementów." - } - } - }, - "notification": { - "label": "Skrzynka", - "page_label": "{workspace} - Skrzynka", - "options": { - "mark_all_as_read": "Oznacz wszystko jako przeczytane", - "mark_read": "Oznacz jako przeczytane", - "mark_unread": "Oznacz jako nieprzeczytane", - "refresh": "Odśwież", - "filters": "Filtry skrzynki", - "show_unread": "Pokaż nieprzeczytane", - "show_snoozed": "Pokaż odłożone", - "show_archived": "Pokaż zarchiwizowane", - "mark_archive": "Archiwizuj", - "mark_unarchive": "Przywróć z archiwum", - "mark_snooze": "Odłóż", - "mark_unsnooze": "Anuluj odłożenie" - }, - "toasts": { - "read": "Powiadomienie oznaczono jako przeczytane", - "unread": "Oznaczono jako nieprzeczytane", - "archived": "Zarchiwizowano", - "unarchived": "Przywrócono z archiwum", - "snoozed": "Odłożono", - "unsnoozed": "Anulowano odłożenie" - }, - "empty_state": { - "detail": { - "title": "Wybierz, aby zobaczyć szczegóły." - }, - "all": { - "title": "Brak przypisanych elementów", - "description": "Aktualizacje przypisanych elementów pojawią się tutaj." - }, - "mentions": { - "title": "Brak wzmianek", - "description": "Twoje wzmianki pojawią się tutaj." - } - }, - "tabs": { - "all": "Wszystko", - "mentions": "Wzmianki" - }, - "filter": { - "assigned": "Przypisano mnie", - "created": "Utworzyłem(am)", - "subscribed": "Subskrybuję" - }, - "snooze": { - "1_day": "1 dzień", - "3_days": "3 dni", - "5_days": "5 dni", - "1_week": "1 tydzień", - "2_weeks": "2 tygodnie", - "custom": "Niestandardowe" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Dodaj elementy pracy, aby śledzić postęp" - }, - "chart": { - "title": "Dodaj elementy pracy, aby wyświetlić wykres burndown." - }, - "priority_issue": { - "title": "Tutaj pojawią się elementy o wysokim priorytecie." - }, - "assignee": { - "title": "Przypisz elementy, aby zobaczyć podział przypisania." - }, - "label": { - "title": "Dodaj etykiety, aby przeprowadzić analizę według etykiet." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Zgłoszenia nie są włączone", - "description": "Włącz zgłoszenia w ustawieniach projektu, aby zarządzać prośbami.", - "primary_button": { - "text": "Zarządzaj funkcjami" - } - }, - "cycle": { - "title": "Cykle nie są włączone", - "description": "Włącz cykle, aby ograniczać pracę w czasie.", - "primary_button": { - "text": "Zarządzaj funkcjami" - } - }, - "module": { - "title": "Moduły nie są włączone", - "description": "Włącz moduły w ustawieniach projektu.", - "primary_button": { - "text": "Zarządzaj funkcjami" - } - }, - "page": { - "title": "Strony nie są włączone", - "description": "Włącz strony w ustawieniach projektu.", - "primary_button": { - "text": "Zarządzaj funkcjami" - } - }, - "view": { - "title": "Widoki nie są włączone", - "description": "Włącz widoki w ustawieniach projektu.", - "primary_button": { - "text": "Zarządzaj funkcjami" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Utwórz szkic elementu pracy", - "empty_state": { - "title": "Robocze elementy pracy i komentarze pojawią się tutaj.", - "description": "Rozpocznij tworzenie elementu pracy i zostaw go w formie szkicu.", - "primary_button": { - "text": "Utwórz pierwszy szkic" - } - }, - "delete_modal": { - "title": "Usuń szkic", - "description": "Czy na pewno chcesz usunąć ten szkic? Ta akcja jest nieodwracalna." - }, - "toasts": { - "created": { - "success": "Szkic utworzono", - "error": "Nie udało się utworzyć" - }, - "deleted": { - "success": "Szkic usunięto" - } - } - }, - "stickies": { - "title": "Twoje notatki", - "placeholder": "kliknij, aby zacząć pisać", - "all": "Wszystkie notatki", - "no-data": "Zapisuj pomysły i myśli. Dodaj pierwszą notatkę.", - "add": "Dodaj notatkę", - "search_placeholder": "Szukaj według nazwy", - "delete": "Usuń notatkę", - "delete_confirmation": "Czy na pewno chcesz usunąć tę notatkę?", - "empty_state": { - "simple": "Zapisuj pomysły i myśli. Dodaj pierwszą notatkę.", - "general": { - "title": "Notatki to szybkie zapiski.", - "description": "Zapisuj pomysły i uzyskuj do nich dostęp z dowolnego miejsca.", - "primary_button": { - "text": "Dodaj notatkę" - } - }, - "search": { - "title": "Nie znaleziono żadnych notatek.", - "description": "Spróbuj innego wyrażenia lub utwórz nową notatkę.", - "primary_button": { - "text": "Dodaj notatkę" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Nazwa notatki może mieć maks. 100 znaków.", - "already_exists": "Notatka bez opisu już istnieje" - }, - "created": { - "title": "Notatkę utworzono", - "message": "Notatkę utworzono pomyślnie" - }, - "not_created": { - "title": "Nie udało się utworzyć", - "message": "Nie można utworzyć notatki" - }, - "updated": { - "title": "Notatkę zaktualizowano", - "message": "Notatkę zaktualizowano pomyślnie" - }, - "not_updated": { - "title": "Aktualizacja się nie powiodła", - "message": "Nie można zaktualizować notatki" - }, - "removed": { - "title": "Notatkę usunięto", - "message": "Notatkę usunięto pomyślnie" - }, - "not_removed": { - "title": "Usunięcie się nie powiodło", - "message": "Nie można usunąć notatki" - } - } - }, - "role_details": { - "guest": { - "title": "Gość", - "description": "Użytkownicy zewnętrzni mogą być zapraszani jako goście." - }, - "member": { - "title": "Członek", - "description": "Może czytać, tworzyć, edytować i usuwać encje." - }, - "admin": { - "title": "Administrator", - "description": "Posiada wszystkie uprawnienia w przestrzeni." - } - }, - "user_roles": { - "product_or_project_manager": "Menadżer produktu/projektu", - "development_or_engineering": "Deweloper/Inżynier", - "founder_or_executive": "Założyciel/Dyrektor", - "freelancer_or_consultant": "Freelancer/Konsultant", - "marketing_or_growth": "Marketing/Rozwój", - "sales_or_business_development": "Sprzedaż/Business Development", - "support_or_operations": "Wsparcie/Operacje", - "student_or_professor": "Student/Profesor", - "human_resources": "Zasoby ludzkie", - "other": "Inne" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Importuj elementy z repozytoriów GitHub." - }, - "jira": { - "title": "Jira", - "description": "Importuj elementy i epiki z Jiry." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Eksportuj elementy do pliku CSV.", - "short_description": "Eksportuj jako CSV" - }, - "excel": { - "title": "Excel", - "description": "Eksportuj elementy do pliku Excel.", - "short_description": "Eksportuj jako Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Eksportuj elementy do pliku Excel.", - "short_description": "Eksportuj jako Excel" - }, - "json": { - "title": "JSON", - "description": "Eksportuj elementy do pliku JSON.", - "short_description": "Eksportuj jako JSON" - } - }, - "default_global_view": { - "all_issues": "Wszystkie elementy", - "assigned": "Przypisane", - "created": "Utworzone", - "subscribed": "Subskrybowane" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Preferencje systemowe" - }, - "light": { - "label": "Jasny" - }, - "dark": { - "label": "Ciemny" - }, - "light_contrast": { - "label": "Jasny wysoki kontrast" - }, - "dark_contrast": { - "label": "Ciemny wysoki kontrast" - }, - "custom": { - "label": "Motyw niestandardowy" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Planowane", - "in_progress": "W trakcie", - "paused": "Wstrzymane", - "completed": "Ukończone", - "cancelled": "Anulowane" - }, - "layout": { - "list": "Lista", - "board": "Tablica", - "timeline": "Oś czasu" - }, - "order_by": { - "name": "Nazwa", - "progress": "Postęp", - "issues": "Liczba elementów", - "due_date": "Termin", - "created_at": "Data utworzenia", - "manual": "Ręcznie" - } - }, - "cycle": { - "label": "{count, plural, one {Cykl} few {Cykle} other {Cyklów}}", - "no_cycle": "Brak cyklu" - }, - "module": { - "label": "{count, plural, one {Moduł} few {Moduły} other {Modułów}}", - "no_module": "Brak modułu" - }, - "description_versions": { - "last_edited_by": "Ostatnio edytowane przez", - "previously_edited_by": "Wcześniej edytowane przez", - "edited_by": "Edytowane przez" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane nie uruchomił się. Może to być spowodowane tym, że jedna lub więcej usług Plane nie mogła się uruchomić.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Wybierz View Logs z setup.sh i logów Docker, aby mieć pewność." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Konspekt", - "empty_state": { - "title": "Brakuje nagłówków", - "description": "Dodajmy kilka nagłówków na tej stronie, aby je tutaj zobaczyć." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Słowa", - "characters": "Znaki", - "paragraphs": "Akapity", - "read_time": "Czas czytania" - }, - "actors_info": { - "edited_by": "Edytowane przez", - "created_by": "Utworzone przez" - }, - "version_history": { - "label": "Historia wersji", - "current_version": "Bieżąca wersja" - } - }, - "assets": { - "label": "Zasoby", - "download_button": "Pobierz", - "empty_state": { - "title": "Brakuje obrazów", - "description": "Dodaj obrazy, aby je tutaj zobaczyć." - } - } - }, - "open_button": "Otwórz panel nawigacji", - "close_button": "Zamknij panel nawigacji", - "outline_floating_button": "Otwórz konspekt" - } -} diff --git a/packages/i18n/src/locales/pl/translations.ts b/packages/i18n/src/locales/pl/translations.ts new file mode 100644 index 0000000000..5df4b10c73 --- /dev/null +++ b/packages/i18n/src/locales/pl/translations.ts @@ -0,0 +1,2563 @@ +export default { + sidebar: { + projects: "Projekty", + pages: "Strony", + new_work_item: "Nowy element pracy", + home: "Strona główna", + your_work: "Twoja praca", + inbox: "Skrzynka odbiorcza", + workspace: "Przestrzeń robocza", + views: "Widoki", + analytics: "Analizy", + work_items: "Elementy pracy", + cycles: "Cykle", + modules: "Moduły", + intake: "Zgłoszenia", + drafts: "Szkice", + favorites: "Ulubione", + pro: "Pro", + upgrade: "Uaktualnij", + }, + auth: { + common: { + email: { + label: "E-mail", + placeholder: "imię@firma.pl", + errors: { + required: "E-mail jest wymagany", + invalid: "E-mail jest nieprawidłowy", + }, + }, + password: { + label: "Hasło", + set_password: "Ustaw hasło", + placeholder: "Wpisz hasło", + confirm_password: { + label: "Potwierdź hasło", + placeholder: "Potwierdź hasło", + }, + current_password: { + label: "Obecne hasło", + }, + new_password: { + label: "Nowe hasło", + placeholder: "Wpisz nowe hasło", + }, + change_password: { + label: { + default: "Zmień hasło", + submitting: "Trwa zmiana hasła", + }, + }, + errors: { + match: "Hasła nie pasują do siebie", + empty: "Proszę wpisać swoje hasło", + length: "Hasło musi mieć więcej niż 8 znaków", + strength: { + weak: "Hasło jest słabe", + strong: "Hasło jest silne", + }, + }, + submit: "Ustaw hasło", + toast: { + change_password: { + success: { + title: "Sukces!", + message: "Hasło zostało pomyślnie zmienione.", + }, + error: { + title: "Błąd!", + message: "Coś poszło nie tak. Spróbuj ponownie.", + }, + }, + }, + }, + unique_code: { + label: "Unikalny kod", + placeholder: "gets-sets-flys", + paste_code: "Wklej kod wysłany na Twój e-mail", + requesting_new_code: "Żądanie nowego kodu", + sending_code: "Wysyłanie kodu", + }, + already_have_an_account: "Masz już konto?", + login: "Zaloguj się", + create_account: "Utwórz konto", + new_to_plane: "Nowy w Plane?", + back_to_sign_in: "Powrót do logowania", + resend_in: "Wyślij ponownie za {seconds} sekund", + sign_in_with_unique_code: "Zaloguj się za pomocą unikalnego kodu", + forgot_password: "Zapomniałeś hasła?", + }, + sign_up: { + header: { + label: "Utwórz konto i zacznij zarządzać pracą ze swoim zespołem.", + step: { + email: { + header: "Rejestracja", + sub_header: "", + }, + password: { + header: "Rejestracja", + sub_header: "Zarejestruj się, korzystając z kombinacji e-maila i hasła.", + }, + unique_code: { + header: "Rejestracja", + sub_header: "Zarejestruj się, używając unikalnego kodu wysłanego na powyższy adres e-mail.", + }, + }, + }, + errors: { + password: { + strength: "Użyj silniejszego hasła, aby kontynuować", + }, + }, + }, + sign_in: { + header: { + label: "Zaloguj się i zacznij zarządzać pracą ze swoim zespołem.", + step: { + email: { + header: "Zaloguj się lub zarejestruj", + sub_header: "", + }, + password: { + header: "Zaloguj się lub zarejestruj", + sub_header: "Użyj adresu e-mail i hasła, aby się zalogować.", + }, + unique_code: { + header: "Zaloguj się lub zarejestruj", + sub_header: "Zaloguj się za pomocą unikalnego kodu wysłanego na powyższy adres e-mail.", + }, + }, + }, + }, + forgot_password: { + title: "Zresetuj swoje hasło", + description: "Podaj zweryfikowany adres e-mail konta użytkownika, a wyślemy Ci link do resetowania hasła.", + email_sent: "Wysłaliśmy link resetujący na Twój adres e-mail", + send_reset_link: "Wyślij link do resetowania", + errors: { + smtp_not_enabled: "Administrator nie włączył SMTP, nie możemy wysłać linku do resetowania hasła", + }, + toast: { + success: { + title: "E-mail wysłany", + message: + "Sprawdź skrzynkę pocztową, aby znaleźć link do resetowania hasła. Jeśli nie pojawi się w ciągu kilku minut, sprawdź folder spam.", + }, + error: { + title: "Błąd!", + message: "Coś poszło nie tak. Spróbuj ponownie.", + }, + }, + }, + reset_password: { + title: "Ustaw nowe hasło", + description: "Zabezpiecz swoje konto silnym hasłem", + }, + set_password: { + title: "Zabezpiecz swoje konto", + description: "Ustawienie hasła pomoże Ci bezpiecznie się logować", + }, + sign_out: { + toast: { + error: { + title: "Błąd!", + message: "Wylogowanie nie powiodło się. Spróbuj ponownie.", + }, + }, + }, + }, + submit: "Wyślij", + cancel: "Anuluj", + loading: "Ładowanie", + error: "Błąd", + success: "Sukces", + warning: "Ostrzeżenie", + info: "Informacja", + close: "Zamknij", + yes: "Tak", + no: "Nie", + ok: "OK", + name: "Nazwa", + description: "Opis", + search: "Szukaj", + add_member: "Dodaj członka", + adding_members: "Dodawanie członków", + remove_member: "Usuń członka", + add_members: "Dodaj członków", + adding_member: "Dodawanie członka", + remove_members: "Usuń członków", + add: "Dodaj", + adding: "Dodawanie", + remove: "Usuń", + add_new: "Dodaj nowy", + remove_selected: "Usuń wybrane", + first_name: "Imię", + last_name: "Nazwisko", + email: "E-mail", + display_name: "Nazwa wyświetlana", + role: "Rola", + timezone: "Strefa czasowa", + avatar: "Zdjęcie profilowe", + cover_image: "Obraz w tle", + password: "Hasło", + change_cover: "Zmień obraz w tle", + language: "Język", + saving: "Zapisywanie", + save_changes: "Zapisz zmiany", + deactivate_account: "Dezaktywuj konto", + deactivate_account_description: + "Po dezaktywacji konto i wszystkie zasoby z nim związane zostaną trwale usunięte i nie będzie można ich odzyskać.", + profile_settings: "Ustawienia profilu", + your_account: "Twoje konto", + security: "Bezpieczeństwo", + activity: "Aktywność", + appearance: "Wygląd", + notifications: "Powiadomienia", + workspaces: "Przestrzenie robocze", + create_workspace: "Utwórz przestrzeń roboczą", + invitations: "Zaproszenia", + summary: "Podsumowanie", + assigned: "Przypisane", + created: "Utworzone", + subscribed: "Subskrybowane", + you_do_not_have_the_permission_to_access_this_page: "Nie masz uprawnień do wyświetlenia tej strony.", + something_went_wrong_please_try_again: "Coś poszło nie tak. Spróbuj ponownie.", + load_more: "Załaduj więcej", + select_or_customize_your_interface_color_scheme: "Wybierz lub dostosuj schemat kolorów interfejsu.", + theme: "Motyw", + system_preference: "Preferencje systemowe", + light: "Jasny", + dark: "Ciemny", + light_contrast: "Jasny wysoki kontrast", + dark_contrast: "Ciemny wysoki kontrast", + custom: "Motyw niestandardowy", + select_your_theme: "Wybierz motyw", + customize_your_theme: "Dostosuj motyw", + background_color: "Kolor tła", + text_color: "Kolor tekstu", + primary_color: "Kolor główny (motyw)", + sidebar_background_color: "Kolor tła paska bocznego", + sidebar_text_color: "Kolor tekstu paska bocznego", + set_theme: "Ustaw motyw", + enter_a_valid_hex_code_of_6_characters: "Wprowadź prawidłowy kod hex składający się z 6 znaków", + background_color_is_required: "Kolor tła jest wymagany", + text_color_is_required: "Kolor tekstu jest wymagany", + primary_color_is_required: "Kolor główny jest wymagany", + sidebar_background_color_is_required: "Kolor tła paska bocznego jest wymagany", + sidebar_text_color_is_required: "Kolor tekstu paska bocznego jest wymagany", + updating_theme: "Aktualizowanie motywu", + theme_updated_successfully: "Motyw zaktualizowano pomyślnie", + failed_to_update_the_theme: "Aktualizacja motywu nie powiodła się", + email_notifications: "Powiadomienia e-mail", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Bądź na bieżąco z subskrybowanymi elementami pracy. Włącz, aby otrzymywać powiadomienia.", + email_notification_setting_updated_successfully: "Ustawienia powiadomień e-mail zaktualizowano pomyślnie", + failed_to_update_email_notification_setting: "Aktualizacja ustawień powiadomień e-mail nie powiodła się", + notify_me_when: "Powiadamiaj mnie, gdy", + property_changes: "Zmiany właściwości", + property_changes_description: + "Powiadamiaj, gdy zmieniają się właściwości elementów pracy, takie jak przypisanie, priorytet, oszacowania lub cokolwiek innego.", + state_change: "Zmiana stanu", + state_change_description: "Powiadamiaj, gdy element pracy zostaje przeniesiony do innego stanu", + issue_completed: "Element pracy ukończony", + issue_completed_description: "Powiadamiaj tylko, gdy element pracy zostanie ukończony", + comments: "Komentarze", + comments_description: "Powiadamiaj, gdy ktoś doda komentarz do elementu pracy", + mentions: "Wzmianki", + mentions_description: "Powiadamiaj mnie tylko, gdy ktoś mnie wspomni w komentarzach lub opisie", + old_password: "Stare hasło", + general_settings: "Ustawienia ogólne", + sign_out: "Wyloguj się", + signing_out: "Wylogowywanie", + active_cycles: "Aktywne cykle", + active_cycles_description: + "Śledź cykle w różnych projektach, monitoruj elementy o wysokim priorytecie i koncentruj się na cyklach wymagających uwagi.", + on_demand_snapshots_of_all_your_cycles: "Migawki wszystkich Twoich cykli na żądanie", + upgrade: "Uaktualnij", + "10000_feet_view": "Widok z wysokości 10 000 stóp na wszystkie aktywne cykle.", + "10000_feet_view_description": + "Przybliż wszystkie aktywne cykle w różnych projektach bez konieczności przełączania się między nimi.", + get_snapshot_of_each_active_cycle: "Uzyskaj migawkę każdego aktywnego cyklu.", + get_snapshot_of_each_active_cycle_description: + "Śledź kluczowe metryki wszystkich aktywnych cykli, sprawdzaj postęp i porównuj zakres z terminami.", + compare_burndowns: "Porównuj wykresy burndown.", + compare_burndowns_description: "Obserwuj wydajność zespołów, przeglądając raporty burndown każdego cyklu.", + quickly_see_make_or_break_issues: "Szybko identyfikuj kluczowe elementy pracy.", + quickly_see_make_or_break_issues_description: + "Przeglądaj elementy o wysokim priorytecie w każdym cyklu w kontekście terminów. Jeden klik i wszystko widzisz.", + zoom_into_cycles_that_need_attention: "Skup się na cyklach wymagających uwagi.", + zoom_into_cycles_that_need_attention_description: + "Zbadaj stan każdego cyklu, który nie spełnia oczekiwań, za pomocą jednego kliknięcia.", + stay_ahead_of_blockers: "Wyprzedzaj blokery.", + stay_ahead_of_blockers_description: + "Identyfikuj problemy między projektami i odkrywaj zależności między cyklami, niewidoczne w innych widokach.", + analytics: "Analizy", + workspace_invites: "Zaproszenia do przestrzeni roboczej", + enter_god_mode: "Wejdź w tryb boga", + workspace_logo: "Logo przestrzeni roboczej", + new_issue: "Nowy element pracy", + your_work: "Twoja praca", + drafts: "Szkice", + projects: "Projekty", + views: "Widoki", + workspace: "Przestrzeń robocza", + archives: "Archiwa", + settings: "Ustawienia", + failed_to_move_favorite: "Nie udało się przenieść ulubionego", + favorites: "Ulubione", + no_favorites_yet: "Brak ulubionych", + create_folder: "Utwórz folder", + new_folder: "Nowy folder", + favorite_updated_successfully: "Ulubione zaktualizowano pomyślnie", + favorite_created_successfully: "Ulubione utworzono pomyślnie", + folder_already_exists: "Folder już istnieje", + folder_name_cannot_be_empty: "Nazwa folderu nie może być pusta", + something_went_wrong: "Coś poszło nie tak", + failed_to_reorder_favorite: "Nie udało się zmienić kolejności ulubionego", + favorite_removed_successfully: "Ulubione usunięto pomyślnie", + failed_to_create_favorite: "Nie udało się utworzyć ulubionego", + failed_to_rename_favorite: "Nie udało się zmienić nazwy ulubionego", + project_link_copied_to_clipboard: "Link do projektu skopiowano do schowka", + link_copied: "Link skopiowany", + add_project: "Dodaj projekt", + create_project: "Utwórz projekt", + failed_to_remove_project_from_favorites: "Nie udało się usunąć projektu z ulubionych. Spróbuj ponownie.", + project_created_successfully: "Projekt utworzono pomyślnie", + project_created_successfully_description: "Projekt został pomyślnie utworzony. Teraz możesz dodawać elementy pracy.", + project_name_already_taken: "Nazwa projektu jest już zajęta.", + project_identifier_already_taken: "Identyfikator projektu jest już zajęty.", + project_cover_image_alt: "Obraz w tle projektu", + name_is_required: "Nazwa jest wymagana", + title_should_be_less_than_255_characters: "Nazwa musi mieć mniej niż 255 znaków", + project_name: "Nazwa projektu", + project_id_must_be_at_least_1_character: "ID projektu musi mieć co najmniej 1 znak", + project_id_must_be_at_most_5_characters: "ID projektu może mieć maksymalnie 5 znaków", + project_id: "ID projektu", + project_id_tooltip_content: "Pomaga jednoznacznie identyfikować elementy pracy w projekcie. Max. 5 znaków.", + description_placeholder: "Opis", + only_alphanumeric_non_latin_characters_allowed: "Dozwolone są tylko znaki alfanumeryczne i nielatynowskie.", + project_id_is_required: "ID projektu jest wymagane", + project_id_allowed_char: "Dozwolone są tylko znaki alfanumeryczne i nielatynowskie.", + project_id_min_char: "ID projektu musi mieć co najmniej 1 znak", + project_id_max_char: "ID projektu może mieć maksymalnie 5 znaków", + project_description_placeholder: "Wpisz opis projektu", + select_network: "Wybierz sieć", + lead: "Lead", + date_range: "Zakres dat", + private: "Prywatny", + public: "Publiczny", + accessible_only_by_invite: "Dostęp wyłącznie na zaproszenie", + anyone_in_the_workspace_except_guests_can_join: "Każdy w przestrzeni, poza gośćmi, może dołączyć", + creating: "Tworzenie", + creating_project: "Tworzenie projektu", + adding_project_to_favorites: "Dodawanie projektu do ulubionych", + project_added_to_favorites: "Projekt dodano do ulubionych", + couldnt_add_the_project_to_favorites: "Nie udało się dodać projektu do ulubionych. Spróbuj ponownie.", + removing_project_from_favorites: "Usuwanie projektu z ulubionych", + project_removed_from_favorites: "Projekt usunięto z ulubionych", + couldnt_remove_the_project_from_favorites: "Nie udało się usunąć projektu z ulubionych. Spróbuj ponownie.", + add_to_favorites: "Dodaj do ulubionych", + remove_from_favorites: "Usuń z ulubionych", + publish_project: "Opublikuj projekt", + publish: "Opublikuj", + copy_link: "Kopiuj link", + leave_project: "Opuść projekt", + join_the_project_to_rearrange: "Dołącz do projektu, aby zmienić układ", + drag_to_rearrange: "Przeciągnij, aby zmienić układ", + congrats: "Gratulacje!", + open_project: "Otwórz projekt", + issues: "Elementy pracy", + cycles: "Cykle", + modules: "Moduły", + pages: "Strony", + intake: "Zgłoszenia", + time_tracking: "Śledzenie czasu", + work_management: "Zarządzanie pracą", + projects_and_issues: "Projekty i elementy pracy", + projects_and_issues_description: "Włączaj lub wyłączaj te funkcje w projekcie.", + cycles_description: + "Określ ramy czasowe pracy dla każdego projektu i dostosuj okres w razie potrzeby. Jeden cykl może trwać 2 tygodnie, a następny 1 tydzień.", + modules_description: "Organizuj pracę w podprojekty z dedykowanymi liderami i przypisanymi osobami.", + views_description: "Zapisz niestandardowe sortowania, filtry i opcje wyświetlania lub udostępnij je zespołowi.", + pages_description: "Twórz i edytuj treści o swobodnej formie – notatki, dokumenty, cokolwiek.", + intake_description: "Pozwól osobom spoza zespołu zgłaszać błędy, opinie i sugestie bez zakłócania przepływu pracy.", + time_tracking_description: "Rejestruj czas spędzony na elementach pracy i projektach.", + work_management_description: "Łatwo zarządzaj swoją pracą i projektami.", + documentation: "Dokumentacja", + message_support: "Skontaktuj się z pomocą", + contact_sales: "Skontaktuj się z działem sprzedaży", + hyper_mode: "Tryb Hyper", + keyboard_shortcuts: "Skróty klawiaturowe", + whats_new: "Co nowego?", + version: "Wersja", + we_are_having_trouble_fetching_the_updates: "Mamy problem z pobraniem aktualizacji.", + our_changelogs: "nasze dzienniki zmian", + for_the_latest_updates: "z najnowszymi aktualizacjami.", + please_visit: "Odwiedź", + docs: "Dokumentację", + full_changelog: "Pełny dziennik zmian", + support: "Wsparcie", + discord: "Discord", + powered_by_plane_pages: "Oparte na Plane Pages", + please_select_at_least_one_invitation: "Wybierz co najmniej jedno zaproszenie.", + please_select_at_least_one_invitation_description: + "Wybierz co najmniej jedno zaproszenie, aby dołączyć do przestrzeni roboczej.", + we_see_that_someone_has_invited_you_to_join_a_workspace: "Ktoś zaprosił Cię do przestrzeni roboczej", + join_a_workspace: "Dołącz do przestrzeni roboczej", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Widzimy, że ktoś zaprosił Cię do przestrzeni roboczej", + join_a_workspace_description: "Dołącz do przestrzeni roboczej", + accept_and_join: "Zaakceptuj i dołącz", + go_home: "Strona główna", + no_pending_invites: "Brak oczekujących zaproszeń", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Zobaczysz tutaj, jeśli ktoś zaprosi Cię do przestrzeni roboczej", + back_to_home: "Wróć do strony głównej", + workspace_name: "nazwa-przestrzeni-roboczej", + deactivate_your_account: "Dezaktywuj swoje konto", + deactivate_your_account_description: + "Po dezaktywacji nie będziesz mógł być przypisywany do elementów pracy, a opłaty za przestrzeń roboczą nie będą naliczane. Aby ponownie aktywować konto, będziesz potrzebować zaproszenia na ten adres e-mail.", + deactivating: "Dezaktywowanie", + confirm: "Potwierdź", + confirming: "Potwierdzanie", + draft_created: "Szkic utworzony", + issue_created_successfully: "Element pracy utworzony pomyślnie", + draft_creation_failed: "Nie udało się utworzyć szkicu", + issue_creation_failed: "Nie udało się utworzyć elementu pracy", + draft_issue: "Szkic elementu pracy", + issue_updated_successfully: "Element pracy zaktualizowano pomyślnie", + issue_could_not_be_updated: "Nie udało się zaktualizować elementu pracy", + create_a_draft: "Utwórz szkic", + save_to_drafts: "Zapisz w szkicach", + save: "Zapisz", + update: "Aktualizuj", + updating: "Aktualizowanie", + create_new_issue: "Utwórz nowy element pracy", + editor_is_not_ready_to_discard_changes: "Edytor nie jest gotowy do odrzucenia zmian", + failed_to_move_issue_to_project: "Nie udało się przenieść elementu pracy do projektu", + create_more: "Utwórz więcej", + add_to_project: "Dodaj do projektu", + discard: "Odrzuć", + duplicate_issue_found: "Znaleziono zduplikowany element pracy", + duplicate_issues_found: "Znaleziono zduplikowane elementy pracy", + no_matching_results: "Brak pasujących wyników", + title_is_required: "Tytuł jest wymagany", + title: "Tytuł", + state: "Stan", + priority: "Priorytet", + none: "Brak", + urgent: "Pilny", + high: "Wysoki", + medium: "Średni", + low: "Niski", + members: "Członkowie", + assignee: "Przypisano", + assignees: "Przypisani", + you: "Ty", + labels: "Etykiety", + create_new_label: "Utwórz nową etykietę", + start_date: "Data rozpoczęcia", + end_date: "Data zakończenia", + due_date: "Termin", + estimate: "Szacowanie", + change_parent_issue: "Zmień element nadrzędny", + remove_parent_issue: "Usuń element nadrzędny", + add_parent: "Dodaj element nadrzędny", + loading_members: "Ładowanie członków", + view_link_copied_to_clipboard: "Link do widoku skopiowano do schowka.", + required: "Wymagane", + optional: "Opcjonalne", + Cancel: "Anuluj", + edit: "Edytuj", + archive: "Archiwizuj", + restore: "Przywróć", + open_in_new_tab: "Otwórz w nowej karcie", + delete: "Usuń", + deleting: "Usuwanie", + make_a_copy: "Utwórz kopię", + move_to_project: "Przenieś do projektu", + good: "Dzień dobry", + morning: "rano", + afternoon: "po południu", + evening: "wieczorem", + show_all: "Pokaż wszystko", + show_less: "Pokaż mniej", + no_data_yet: "Brak danych", + syncing: "Synchronizowanie", + add_work_item: "Dodaj element pracy", + advanced_description_placeholder: "Naciśnij '/' aby wywołać polecenia", + create_work_item: "Utwórz element pracy", + attachments: "Załączniki", + declining: "Odrzucanie", + declined: "Odrzucono", + decline: "Odrzuć", + unassigned: "Nieprzypisane", + work_items: "Elementy pracy", + add_link: "Dodaj link", + points: "Punkty", + no_assignee: "Brak przypisanego", + no_assignees_yet: "Brak przypisanych", + no_labels_yet: "Brak etykiet", + ideal: "Idealny", + current: "Obecny", + no_matching_members: "Brak pasujących członków", + leaving: "Opuść", + removing: "Usuwanie", + leave: "Opuść", + refresh: "Odśwież", + refreshing: "Odświeżanie", + refresh_status: "Odśwież status", + prev: "Poprzedni", + next: "Następny", + re_generating: "Ponowne generowanie", + re_generate: "Wygeneruj ponownie", + re_generate_key: "Wygeneruj klucz ponownie", + export: "Eksportuj", + member: "{count, plural, one{# członek} few{# członkowie} other{# członków}}", + new_password_must_be_different_from_old_password: "Nowe hasło musi być innym niż stare hasło", + edited: "Edytowano", + bot: "Bot", + project_view: { + sort_by: { + created_at: "Utworzono dnia", + updated_at: "Zaktualizowano dnia", + name: "Nazwa", + }, + }, + toast: { + success: "Sukces!", + error: "Błąd!", + }, + links: { + toasts: { + created: { + title: "Link utworzony", + message: "Link został pomyślnie utworzony", + }, + not_created: { + title: "Nie utworzono linku", + message: "Nie udało się utworzyć linku", + }, + updated: { + title: "Link zaktualizowany", + message: "Link został pomyślnie zaktualizowany", + }, + not_updated: { + title: "Link nie został zaktualizowany", + message: "Nie udało się zaktualizować linku", + }, + removed: { + title: "Link usunięty", + message: "Link został pomyślnie usunięty", + }, + not_removed: { + title: "Link nie został usunięty", + message: "Nie udało się usunąć linku", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Twój przewodnik szybkiego startu", + not_right_now: "Nie teraz", + create_project: { + title: "Utwórz projekt", + description: "Większość rzeczy zaczyna się od projektu w Plane.", + cta: "Zacznij", + }, + invite_team: { + title: "Zaproś zespół", + description: "Współpracuj z kolegami, twórz, dostarczaj i zarządzaj.", + cta: "Zaproś ich", + }, + configure_workspace: { + title: "Skonfiguruj swoją przestrzeń roboczą.", + description: "Włącz lub wyłącz funkcje albo idź dalej.", + cta: "Skonfiguruj tę przestrzeń", + }, + personalize_account: { + title: "Spersonalizuj Plane.", + description: "Wybierz zdjęcie, kolory i inne.", + cta: "Dostosuj teraz", + }, + widgets: { + title: "Jest tu pusto bez widżetów, włącz je", + description: "Wygląda na to, że wszystkie Twoje widżety są wyłączone. Włącz je\ndla lepszego doświadczenia!", + primary_button: { + text: "Zarządzaj widżetami", + }, + }, + }, + quick_links: { + empty: "Zapisz linki do ważnych rzeczy, które chcesz mieć pod ręką.", + add: "Dodaj szybki link", + title: "Szybki link", + title_plural: "Szybkie linki", + }, + recents: { + title: "Ostatnie", + empty: { + project: "Twoje ostatnio odwiedzone projekty pojawią się tutaj.", + page: "Twoje ostatnio odwiedzone strony pojawią się tutaj.", + issue: "Twoje ostatnio odwiedzone elementy pracy pojawią się tutaj.", + default: "Nie masz jeszcze żadnych ostatnich pozycji.", + }, + filters: { + all: "Wszystkie", + projects: "Projekty", + pages: "Strony", + issues: "Elementy pracy", + }, + }, + new_at_plane: { + title: "Co nowego w Plane", + }, + quick_tutorial: { + title: "Szybki samouczek", + }, + widget: { + reordered_successfully: "Widżet pomyślnie przeniesiono.", + reordering_failed: "Wystąpił błąd podczas przenoszenia widżetu.", + }, + manage_widgets: "Zarządzaj widżetami", + title: "Strona główna", + star_us_on_github: "Oceń nas na GitHubie", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL jest nieprawidłowy", + placeholder: "Wpisz lub wklej adres URL", + }, + title: { + text: "Nazwa wyświetlana", + placeholder: "Jak chcesz nazwać ten link", + }, + }, + }, + common: { + all: "Wszystko", + states: "Stany", + state: "Stan", + state_groups: "Grupy stanów", + state_group: "Grupa stanów", + priorities: "Priorytety", + priority: "Priorytet", + team_project: "Projekt zespołowy", + project: "Projekt", + cycle: "Cykl", + cycles: "Cykle", + module: "Moduł", + modules: "Moduły", + labels: "Etykiety", + label: "Etykieta", + assignees: "Przypisani", + assignee: "Przypisano", + created_by: "Utworzone przez", + none: "Brak", + link: "Link", + estimates: "Szacunki", + estimate: "Szacowanie", + created_at: "Utworzono dnia", + completed_at: "Zakończono dnia", + layout: "Układ", + filters: "Filtry", + display: "Wyświetlanie", + load_more: "Załaduj więcej", + activity: "Aktywność", + analytics: "Analizy", + dates: "Daty", + success: "Sukces!", + something_went_wrong: "Coś poszło nie tak", + error: { + label: "Błąd!", + message: "Wystąpił błąd. Spróbuj ponownie.", + }, + group_by: "Grupuj według", + epic: "Epik", + epics: "Epiki", + work_item: "Element pracy", + work_items: "Elementy pracy", + sub_work_item: "Podrzędny element pracy", + add: "Dodaj", + warning: "Ostrzeżenie", + updating: "Aktualizowanie", + adding: "Dodawanie", + update: "Aktualizuj", + creating: "Tworzenie", + create: "Utwórz", + cancel: "Anuluj", + description: "Opis", + title: "Tytuł", + attachment: "Załącznik", + general: "Ogólne", + features: "Funkcje", + automation: "Automatyzacja", + project_name: "Nazwa projektu", + project_id: "ID projektu", + project_timezone: "Strefa czasowa projektu", + created_on: "Utworzono dnia", + update_project: "Zaktualizuj projekt", + identifier_already_exists: "Identyfikator już istnieje", + add_more: "Dodaj więcej", + defaults: "Domyślne", + add_label: "Dodaj etykietę", + customize_time_range: "Dostosuj zakres czasu", + loading: "Ładowanie", + attachments: "Załączniki", + property: "Właściwość", + properties: "Właściwości", + parent: "Nadrzędny", + page: "Strona", + remove: "Usuń", + archiving: "Archiwizowanie", + archive: "Archiwizuj", + access: { + public: "Publiczny", + private: "Prywatny", + }, + done: "Gotowe", + sub_work_items: "Podrzędne elementy pracy", + comment: "Komentarz", + workspace_level: "Poziom przestrzeni roboczej", + order_by: { + label: "Sortuj według", + manual: "Ręcznie", + last_created: "Ostatnio utworzone", + last_updated: "Ostatnio zaktualizowane", + start_date: "Data rozpoczęcia", + due_date: "Termin", + asc: "Rosnąco", + desc: "Malejąco", + updated_on: "Zaktualizowano dnia", + }, + sort: { + asc: "Rosnąco", + desc: "Malejąco", + created_on: "Utworzono dnia", + updated_on: "Zaktualizowano dnia", + }, + comments: "Komentarze", + updates: "Aktualizacje", + clear_all: "Wyczyść wszystko", + copied: "Skopiowano!", + link_copied: "Link skopiowano!", + link_copied_to_clipboard: "Link skopiowano do schowka", + copied_to_clipboard: "Link do elementu pracy skopiowano do schowka", + is_copied_to_clipboard: "Element pracy skopiowany do schowka", + no_links_added_yet: "Nie dodano jeszcze żadnych linków", + add_link: "Dodaj link", + links: "Linki", + go_to_workspace: "Przejdź do przestrzeni roboczej", + progress: "Postęp", + optional: "Opcjonalne", + join: "Dołącz", + go_back: "Wróć", + continue: "Kontynuuj", + resend: "Wyślij ponownie", + relations: "Relacje", + errors: { + default: { + title: "Błąd!", + message: "Coś poszło nie tak. Spróbuj ponownie.", + }, + required: "To pole jest wymagane", + entity_required: "{entity} jest wymagane", + restricted_entity: "{entity} jest ograniczony", + }, + update_link: "Zaktualizuj link", + attach: "Dołącz", + create_new: "Utwórz nowy", + add_existing: "Dodaj istniejący", + type_or_paste_a_url: "Wpisz lub wklej URL", + url_is_invalid: "URL jest nieprawidłowy", + display_title: "Nazwa wyświetlana", + link_title_placeholder: "Jak chcesz nazwać ten link", + url: "URL", + side_peek: "Widok boczny", + modal: "Okno modalne", + full_screen: "Pełny ekran", + close_peek_view: "Zamknij podgląd", + toggle_peek_view_layout: "Przełącz układ podglądu", + options: "Opcje", + duration: "Czas trwania", + today: "Dziś", + week: "Tydzień", + month: "Miesiąc", + quarter: "Kwartał", + press_for_commands: "Naciśnij '/' aby wywołać polecenia", + click_to_add_description: "Kliknij, aby dodać opis", + search: { + label: "Szukaj", + placeholder: "Wpisz wyszukiwane hasło", + no_matches_found: "Nie znaleziono pasujących wyników", + no_matching_results: "Brak pasujących wyników", + }, + actions: { + edit: "Edytuj", + make_a_copy: "Utwórz kopię", + open_in_new_tab: "Otwórz w nowej karcie", + copy_link: "Kopiuj link", + archive: "Archiwizuj", + restore: "Przywróć", + delete: "Usuń", + remove_relation: "Usuń relację", + subscribe: "Subskrybuj", + unsubscribe: "Anuluj subskrypcję", + clear_sorting: "Wyczyść sortowanie", + show_weekends: "Pokaż weekendy", + enable: "Włącz", + disable: "Wyłącz", + }, + name: "Nazwa", + discard: "Odrzuć", + confirm: "Potwierdź", + confirming: "Potwierdzanie", + read_the_docs: "Przeczytaj dokumentację", + default: "Domyślne", + active: "Aktywny", + enabled: "Włączone", + disabled: "Wyłączone", + mandate: "Mandat", + mandatory: "Wymagane", + yes: "Tak", + no: "Nie", + please_wait: "Proszę czekać", + enabling: "Włączanie", + disabling: "Wyłączanie", + beta: "Beta", + or: "lub", + next: "Dalej", + back: "Wstecz", + cancelling: "Anulowanie", + configuring: "Konfigurowanie", + clear: "Wyczyść", + import: "Importuj", + connect: "Połącz", + authorizing: "Autoryzowanie", + processing: "Przetwarzanie", + no_data_available: "Brak dostępnych danych", + from: "od {name}", + authenticated: "Uwierzytelniono", + select: "Wybierz", + upgrade: "Uaktualnij", + add_seats: "Dodaj miejsca", + projects: "Projekty", + workspace: "Przestrzeń robocza", + workspaces: "Przestrzenie robocze", + team: "Zespół", + teams: "Zespoły", + entity: "Encja", + entities: "Encje", + task: "Zadanie", + tasks: "Zadania", + section: "Sekcja", + sections: "Sekcje", + edit: "Edytuj", + connecting: "Łączenie", + connected: "Połączono", + disconnect: "Odłącz", + disconnecting: "Odłączanie", + installing: "Instalowanie", + install: "Zainstaluj", + reset: "Resetuj", + live: "Na żywo", + change_history: "Historia zmian", + coming_soon: "Wkrótce", + member: "Członek", + members: "Członkowie", + you: "Ty", + upgrade_cta: { + higher_subscription: "Uaktualnij do wyższego abonamentu", + talk_to_sales: "Skontaktuj się z działem sprzedaży", + }, + category: "Kategoria", + categories: "Kategorie", + saving: "Zapisywanie", + save_changes: "Zapisz zmiany", + delete: "Usuń", + deleting: "Usuwanie", + pending: "Oczekujące", + invite: "Zaproś", + view: "Widok", + deactivated_user: "Dezaktywowany użytkownik", + apply: "Zastosuj", + applying: "Zastosowanie", + users: "Użytkownicy", + admins: "Administratorzy", + guests: "Goście", + on_track: "Na dobrej drodze", + off_track: "Poza planem", + at_risk: "W zagrożeniu", + timeline: "Oś czasu", + completion: "Zakończenie", + upcoming: "Nadchodzące", + completed: "Zakończone", + in_progress: "W trakcie", + planned: "Zaplanowane", + paused: "Wstrzymane", + no_of: "Liczba {entity}", + resolved: "Rozwiązane", + }, + chart: { + x_axis: "Oś X", + y_axis: "Oś Y", + metric: "Metryka", + }, + form: { + title: { + required: "Tytuł jest wymagany", + max_length: "Tytuł powinien mieć mniej niż {length} znaków", + }, + }, + entity: { + grouping_title: "Grupowanie {entity}", + priority: "Priorytet {entity}", + all: "Wszystkie {entity}", + drop_here_to_move: "Przeciągnij tutaj, aby przenieść {entity}", + delete: { + label: "Usuń {entity}", + success: "{entity} pomyślnie usunięto", + failed: "Nie udało się usunąć {entity}", + }, + update: { + failed: "Aktualizacja {entity} nie powiodła się", + success: "{entity} zaktualizowano pomyślnie", + }, + link_copied_to_clipboard: "Link do {entity} skopiowano do schowka", + fetch: { + failed: "Błąd podczas pobierania {entity}", + }, + add: { + success: "{entity} dodano pomyślnie", + failed: "Błąd podczas dodawania {entity}", + }, + remove: { + success: "{entity} usunięto pomyślnie", + failed: "Błąd podczas usuwania {entity}", + }, + }, + epic: { + all: "Wszystkie epiki", + label: "{count, plural, one {Epik} other {Epiki}}", + new: "Nowy epik", + adding: "Dodawanie epiku", + create: { + success: "Epik utworzono pomyślnie", + }, + add: { + press_enter: "Naciśnij 'Enter', aby dodać kolejny epik", + label: "Dodaj epik", + }, + title: { + label: "Tytuł epiku", + required: "Tytuł epiku jest wymagany.", + }, + }, + issue: { + label: "{count, plural, one {Element pracy} few {Elementy pracy} other {Elementów pracy}}", + all: "Wszystkie elementy pracy", + edit: "Edytuj element pracy", + title: { + label: "Tytuł elementu pracy", + required: "Tytuł elementu pracy jest wymagany.", + }, + add: { + press_enter: "Naciśnij 'Enter', aby dodać kolejny element pracy", + label: "Dodaj element pracy", + cycle: { + failed: "Nie udało się dodać elementu pracy do cyklu. Spróbuj ponownie.", + success: "{count, plural, one {Element pracy} few {Elementy pracy} other {Elementów pracy}} dodano do cyklu.", + loading: + "Dodawanie {count, plural, one {elementu pracy} few {elementów pracy} other {elementów pracy}} do cyklu", + }, + assignee: "Dodaj przypisanego", + start_date: "Dodaj datę rozpoczęcia", + due_date: "Dodaj termin", + parent: "Dodaj element nadrzędny", + sub_issue: "Dodaj podrzędny element pracy", + relation: "Dodaj relację", + link: "Dodaj link", + existing: "Dodaj istniejący element pracy", + }, + remove: { + label: "Usuń element pracy", + cycle: { + loading: "Usuwanie elementu pracy z cyklu", + success: "Element pracy usunięto z cyklu.", + failed: "Nie udało się usunąć elementu pracy z cyklu. Spróbuj ponownie.", + }, + module: { + loading: "Usuwanie elementu pracy z modułu", + success: "Element pracy usunięto z modułu.", + failed: "Nie udało się usunąć elementu pracy z modułu. Spróbuj ponownie.", + }, + parent: { + label: "Usuń element nadrzędny", + }, + }, + new: "Nowy element pracy", + adding: "Dodawanie elementu pracy", + create: { + success: "Element pracy utworzono pomyślnie", + }, + priority: { + urgent: "Pilny", + high: "Wysoki", + medium: "Średni", + low: "Niski", + }, + display: { + properties: { + label: "Wyświetlane właściwości", + id: "ID", + issue_type: "Typ elementu pracy", + sub_issue_count: "Liczba elementów podrzędnych", + attachment_count: "Liczba załączników", + created_on: "Utworzono dnia", + sub_issue: "Element podrzędny", + work_item_count: "Liczba elementów pracy", + }, + extra: { + show_sub_issues: "Pokaż elementy podrzędne", + show_empty_groups: "Pokaż puste grupy", + }, + }, + layouts: { + ordered_by_label: "Ten układ jest sortowany według", + list: "Lista", + kanban: "Tablica Kanban", + calendar: "Kalendarz", + spreadsheet: "Arkusz", + gantt: "Oś czasu", + title: { + list: "Układ listy", + kanban: "Układ tablicy", + calendar: "Układ kalendarza", + spreadsheet: "Układ arkusza", + gantt: "Układ osi czasu", + }, + }, + states: { + active: "Aktywny", + backlog: "Backlog", + }, + comments: { + placeholder: "Dodaj komentarz", + switch: { + private: "Przełącz na komentarz prywatny", + public: "Przełącz na komentarz publiczny", + }, + create: { + success: "Komentarz utworzono pomyślnie", + error: "Nie udało się utworzyć komentarza. Spróbuj później.", + }, + update: { + success: "Komentarz zaktualizowano pomyślnie", + error: "Nie udało się zaktualizować komentarza. Spróbuj później.", + }, + remove: { + success: "Komentarz usunięto pomyślnie", + error: "Nie udało się usunąć komentarza. Spróbuj później.", + }, + upload: { + error: "Nie udało się przesłać załącznika. Spróbuj później.", + }, + copy_link: { + success: "Link do komentarza skopiowany do schowka", + error: "Błąd podczas kopiowania linka do komentarza. Spróbuj ponownie później.", + }, + }, + empty_state: { + issue_detail: { + title: "Element pracy nie istnieje", + description: "Element pracy, którego szukasz, nie istnieje, został zarchiwizowany lub usunięty.", + primary_button: { + text: "Pokaż inne elementy pracy", + }, + }, + }, + sibling: { + label: "Powiązane elementy pracy", + }, + archive: { + description: "Można archiwizować tylko elementy pracy w stanie ukończonym lub anulowanym", + label: "Archiwizuj element pracy", + confirm_message: + "Czy na pewno chcesz zarchiwizować ten element pracy? Wszystkie zarchiwizowane elementy można później przywrócić.", + success: { + label: "Archiwizacja zakończona", + message: "Archiwa znajdziesz w archiwum projektu.", + }, + failed: { + message: "Nie udało się zarchiwizować elementu pracy. Spróbuj ponownie.", + }, + }, + restore: { + success: { + title: "Przywrócenie zakończone", + message: "Twój element pracy można znaleźć w elementach pracy projektu.", + }, + failed: { + message: "Nie udało się przywrócić elementu pracy. Spróbuj ponownie.", + }, + }, + relation: { + relates_to: "Powiązany z", + duplicate: "Duplikat", + blocked_by: "Zablokowany przez", + blocking: "Blokuje", + }, + copy_link: "Kopiuj link do elementu pracy", + delete: { + label: "Usuń element pracy", + error: "Błąd podczas usuwania elementu pracy", + }, + subscription: { + actions: { + subscribed: "Subskrypcja elementu pracy powiodła się", + unsubscribed: "Anulowano subskrypcję elementu pracy", + }, + }, + select: { + error: "Wybierz co najmniej jeden element pracy", + empty: "Nie wybrano żadnych elementów pracy", + add_selected: "Dodaj wybrane elementy pracy", + select_all: "Wybierz wszystko", + deselect_all: "Odznacz wszystko", + }, + open_in_full_screen: "Otwórz element pracy na pełnym ekranie", + }, + attachment: { + error: "Nie udało się dodać pliku. Spróbuj ponownie.", + only_one_file_allowed: "Możesz przesłać tylko jeden plik naraz.", + file_size_limit: "Plik musi być mniejszy niż {size}MB.", + drag_and_drop: "Przeciągnij plik w dowolne miejsce, aby przesłać", + delete: "Usuń załącznik", + }, + label: { + select: "Wybierz etykietę", + create: { + success: "Etykietę utworzono pomyślnie", + failed: "Nie udało się utworzyć etykiety", + already_exists: "Taka etykieta już istnieje", + type: "Wpisz, aby utworzyć nową etykietę", + }, + }, + sub_work_item: { + update: { + success: "Podrzędny element pracy zaktualizowano pomyślnie", + error: "Błąd podczas aktualizacji elementu podrzędnego", + }, + remove: { + success: "Podrzędny element pracy usunięto pomyślnie", + error: "Błąd podczas usuwania elementu podrzędnego", + }, + empty_state: { + sub_list_filters: { + title: "Nie masz elementów podrzędnych, które pasują do filtrów, które zastosowałeś.", + description: "Aby zobaczyć wszystkie elementy podrzędne, wyczyść wszystkie zastosowane filtry.", + action: "Wyczyść filtry", + }, + list_filters: { + title: "Nie masz elementów pracy, które pasują do filtrów, które zastosowałeś.", + description: "Aby zobaczyć wszystkie elementy pracy, wyczyść wszystkie zastosowane filtry.", + action: "Wyczyść filtry", + }, + }, + }, + view: { + label: "{count, plural, one {Widok} few {Widoki} other {Widoków}}", + create: { + label: "Utwórz widok", + }, + update: { + label: "Zaktualizuj widok", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Oczekujące", + description: "Oczekujące", + }, + declined: { + title: "Odrzucone", + description: "Odrzucone", + }, + snoozed: { + title: "Odłożone", + description: "Pozostało {days, plural, one{# dzień} few{# dni} other{# dni}}", + }, + accepted: { + title: "Zaakceptowane", + description: "Zaakceptowane", + }, + duplicate: { + title: "Duplikat", + description: "Duplikat", + }, + }, + modals: { + decline: { + title: "Odrzuć element pracy", + content: "Czy na pewno chcesz odrzucić element pracy {value}?", + }, + delete: { + title: "Usuń element pracy", + content: "Czy na pewno chcesz usunąć element pracy {value}?", + success: "Element pracy usunięto pomyślnie", + }, + }, + errors: { + snooze_permission: "Tylko administratorzy projektu mogą odkładać/odkładać ponownie elementy pracy", + accept_permission: "Tylko administratorzy projektu mogą akceptować elementy pracy", + decline_permission: "Tylko administratorzy projektu mogą odrzucać elementy pracy", + }, + actions: { + accept: "Zaakceptuj", + decline: "Odrzuć", + snooze: "Odłóż", + unsnooze: "Anuluj odłożenie", + copy: "Kopiuj link do elementu pracy", + delete: "Usuń", + open: "Otwórz element pracy", + mark_as_duplicate: "Oznacz jako duplikat", + move: "Przenieś {value} do elementów pracy projektu", + }, + source: { + "in-app": "w aplikacji", + }, + order_by: { + created_at: "Utworzono dnia", + updated_at: "Zaktualizowano dnia", + id: "ID", + }, + label: "Zgłoszenia", + page_label: "{workspace} - Zgłoszenia", + modal: { + title: "Utwórz przyjęty element pracy", + }, + tabs: { + open: "Otwarte", + closed: "Zamknięte", + }, + empty_state: { + sidebar_open_tab: { + title: "Brak otwartych elementów pracy", + description: "Tutaj znajdziesz otwarte elementy pracy. Utwórz nowy.", + }, + sidebar_closed_tab: { + title: "Brak zamkniętych elementów pracy", + description: "Wszystkie zaakceptowane lub odrzucone elementy pracy pojawią się tutaj.", + }, + sidebar_filter: { + title: "Brak pasujących elementów pracy", + description: "Żaden element nie pasuje do filtra w zgłoszeniach. Utwórz nowy.", + }, + detail: { + title: "Wybierz element pracy, aby zobaczyć szczegóły.", + }, + }, + }, + workspace_creation: { + heading: "Utwórz przestrzeń roboczą", + subheading: "Aby korzystać z Plane, musisz utworzyć lub dołączyć do przestrzeni roboczej.", + form: { + name: { + label: "Nazwij swoją przestrzeń roboczą", + placeholder: "Użyj czegoś rozpoznawalnego.", + }, + url: { + label: "Skonfiguruj adres URL swojej przestrzeni", + placeholder: "Wpisz lub wklej adres URL", + edit_slug: "Możesz edytować tylko fragment adresu URL (slug)", + }, + organization_size: { + label: "Ile osób będzie używać tej przestrzeni?", + placeholder: "Wybierz zakres", + }, + }, + errors: { + creation_disabled: { + title: "Tylko administrator instancji może tworzyć przestrzenie robocze", + description: "Jeśli znasz adres e-mail administratora, kliknij przycisk poniżej, aby się skontaktować.", + request_button: "Poproś administratora instancji", + }, + validation: { + name_alphanumeric: "Nazwy przestrzeni mogą zawierać tylko (' '), ('-'), ('_') i znaki alfanumeryczne.", + name_length: "Nazwa ograniczona do 80 znaków.", + url_alphanumeric: "Adres URL może zawierać tylko ('-') i znaki alfanumeryczne.", + url_length: "Adres URL ograniczony do 48 znaków.", + url_already_taken: "Adres URL przestrzeni roboczej jest już zajęty!", + }, + }, + request_email: { + subject: "Prośba o nową przestrzeń roboczą", + body: "Cześć Administratorze,\n\nProszę o utworzenie nowej przestrzeni roboczej z adresem [/workspace-name] dla [cel utworzenia].\n\nDziękuję,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Utwórz przestrzeń roboczą", + loading: "Tworzenie przestrzeni roboczej", + }, + toast: { + success: { + title: "Sukces", + message: "Przestrzeń roboczą utworzono pomyślnie", + }, + error: { + title: "Błąd", + message: "Nie udało się utworzyć przestrzeni roboczej. Spróbuj ponownie.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Podgląd projektów, aktywności i metryk", + description: + "Witaj w Plane, cieszymy się, że jesteś. Utwórz pierwszy projekt, śledź elementy pracy, a ta strona stanie się centrum Twojego postępu. Administratorzy zobaczą tu również elementy pomocne zespołowi.", + primary_button: { + text: "Utwórz pierwszy projekt", + comic: { + title: "Wszystko zaczyna się od projektu w Plane", + description: + "Projektem może być harmonogram produktu, kampania marketingowa czy wprowadzenie nowego samochodu.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analizy", + page_label: "{workspace} - Analizy", + open_tasks: "Łączna liczba otwartych zadań", + error: "Wystąpił błąd podczas wczytywania danych.", + work_items_closed_in: "Elementy pracy zamknięte w", + selected_projects: "Wybrane projekty", + total_members: "Łączna liczba członków", + total_cycles: "Łączna liczba cykli", + total_modules: "Łączna liczba modułów", + pending_work_items: { + title: "Oczekujące elementy pracy", + empty_state: "Tutaj zobaczysz analizę oczekujących elementów pracy według współpracowników.", + }, + work_items_closed_in_a_year: { + title: "Elementy pracy zamknięte w ciągu roku", + empty_state: "Zamykaj elementy pracy, aby zobaczyć analizę w wykresie.", + }, + most_work_items_created: { + title: "Najwięcej utworzonych elementów", + empty_state: "Zostaną wyświetleni współpracownicy oraz liczba utworzonych przez nich elementów.", + }, + most_work_items_closed: { + title: "Najwięcej zamkniętych elementów", + empty_state: "Zostaną wyświetleni współpracownicy oraz liczba zamkniętych przez nich elementów.", + }, + tabs: { + scope_and_demand: "Zakres i zapotrzebowanie", + custom: "Analizy niestandardowe", + }, + empty_state: { + customized_insights: { + description: "Przypisane do Ciebie elementy pracy, podzielone według stanu, pojawią się tutaj.", + title: "Brak danych", + }, + created_vs_resolved: { + description: "Elementy pracy utworzone i rozwiązane w czasie pojawią się tutaj.", + title: "Brak danych", + }, + project_insights: { + title: "Brak danych", + description: "Przypisane do Ciebie elementy pracy, podzielone według stanu, pojawią się tutaj.", + }, + general: { + title: "Śledź postęp, obciążenie pracą i alokacje. Wykrywaj trendy, usuwaj blokady i pracuj szybciej", + description: + "Zobacz zakres vs zapotrzebowanie, oszacowania i rozrost zakresu. Uzyskaj wydajność członków zespołu i zespołów, upewniając się, że projekt jest realizowany na czas.", + primary_button: { + text: "Rozpocznij swój pierwszy projekt", + comic: { + title: "Analityka działa najlepiej z Cyklami + Modułami", + description: + "Najpierw umieść swoje elementy pracy w Cyklach, a jeśli można, pogrupuj elementy obejmujące więcej niż jeden cykl w Moduły. Sprawdź oba w lewej nawigacji.", + }, + }, + }, + }, + created_vs_resolved: "Utworzone vs Rozwiązane", + customized_insights: "Dostosowane informacje", + backlog_work_items: "{entity} w backlogu", + active_projects: "Aktywne projekty", + trend_on_charts: "Trend na wykresach", + all_projects: "Wszystkie projekty", + summary_of_projects: "Podsumowanie projektów", + project_insights: "Wgląd w projekt", + started_work_items: "Rozpoczęte {entity}", + total_work_items: "Łączna liczba {entity}", + total_projects: "Łączna liczba projektów", + total_admins: "Łączna liczba administratorów", + total_users: "Łączna liczba użytkowników", + total_intake: "Całkowity dochód", + un_started_work_items: "Nierozpoczęte {entity}", + total_guests: "Łączna liczba gości", + completed_work_items: "Ukończone {entity}", + total: "Łączna liczba {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Projekt} few {Projekty} other {Projektów}}", + create: { + label: "Dodaj projekt", + }, + network: { + label: "Sieć", + private: { + title: "Prywatny", + description: "Dostęp tylko na zaproszenie", + }, + public: { + title: "Publiczny", + description: "Każdy w przestrzeni, poza gośćmi, może dołączyć", + }, + }, + error: { + permission: "Nie masz uprawnień do wykonania tej akcji.", + cycle_delete: "Nie udało się usunąć cyklu", + module_delete: "Nie udało się usunąć modułu", + issue_delete: "Nie udało się usunąć elementu pracy", + }, + state: { + backlog: "Backlog", + unstarted: "Nierozpoczęty", + started: "Rozpoczęty", + completed: "Ukończony", + cancelled: "Anulowany", + }, + sort: { + manual: "Ręcznie", + name: "Nazwa", + created_at: "Data utworzenia", + members_length: "Liczba członków", + }, + scope: { + my_projects: "Moje projekty", + archived_projects: "Zarchiwizowane", + }, + common: { + months_count: "{months, plural, one{# miesiąc} few{# miesiące} other{# miesięcy}}", + }, + empty_state: { + general: { + title: "Brak aktywnych projektów", + description: + "Projekt to główny cel. Zawiera zadania, cykle i moduły. Utwórz nowy lub poszukaj zarchiwizowanych.", + primary_button: { + text: "Rozpocznij pierwszy projekt", + comic: { + title: "Wszystko zaczyna się od projektu w Plane", + description: + "Projekt może dotyczyć planu produktu, kampanii marketingowej lub uruchomienia nowego samochodu.", + }, + }, + }, + no_projects: { + title: "Brak projektów", + description: "Aby tworzyć elementy pracy, musisz utworzyć lub dołączyć do projektu.", + primary_button: { + text: "Rozpocznij pierwszy projekt", + comic: { + title: "Wszystko zaczyna się od projektu w Plane", + description: + "Projekt może dotyczyć planu produktu, kampanii marketingowej lub uruchomienia nowego samochodu.", + }, + }, + }, + filter: { + title: "Brak pasujących projektów", + description: "Nie znaleziono projektów spełniających kryteria.\nUtwórz nowy.", + }, + search: { + description: "Nie znaleziono projektów spełniających kryteria.\nUtwórz nowy.", + }, + }, + }, + workspace_views: { + add_view: "Dodaj widok", + empty_state: { + "all-issues": { + title: "Brak elementów pracy w projekcie", + description: "Utwórz pierwszy element i śledź postępy!", + primary_button: { + text: "Utwórz element pracy", + }, + }, + assigned: { + title: "Brak przypisanych elementów", + description: "Tutaj zobaczysz elementy przypisane Tobie.", + primary_button: { + text: "Utwórz element pracy", + }, + }, + created: { + title: "Brak utworzonych elementów", + description: "Tutaj pojawiają się elementy, które utworzyłeś(aś).", + primary_button: { + text: "Utwórz element pracy", + }, + }, + subscribed: { + title: "Brak subskrybowanych elementów", + description: "Subskrybuj elementy, które Cię interesują.", + }, + "custom-view": { + title: "Brak pasujących elementów", + description: "Wyświetlane są elementy spełniające filtr.", + }, + }, + }, + workspace_settings: { + label: "Ustawienia przestrzeni roboczej", + page_label: "{workspace} - Ustawienia ogólne", + key_created: "Klucz utworzony", + copy_key: + "Skopiuj i zapisz ten klucz w Plane Pages. Po zamknięciu nie będzie widoczny ponownie. Plik CSV z kluczem został pobrany.", + token_copied: "Token skopiowano do schowka.", + settings: { + general: { + title: "Ogólne", + upload_logo: "Prześlij logo", + edit_logo: "Edytuj logo", + name: "Nazwa przestrzeni roboczej", + company_size: "Rozmiar firmy", + url: "URL przestrzeni roboczej", + update_workspace: "Zaktualizuj przestrzeń", + delete_workspace: "Usuń tę przestrzeń", + delete_workspace_description: + "Usunięcie przestrzeni spowoduje wymazanie wszystkich danych i zasobów. Ta akcja jest nieodwracalna.", + delete_btn: "Usuń przestrzeń", + delete_modal: { + title: "Czy na pewno chcesz usunąć tę przestrzeń?", + description: "Masz aktywną wersję próbną. Najpierw ją anuluj.", + dismiss: "Zamknij", + cancel: "Anuluj wersję próbną", + success_title: "Przestrzeń usunięta.", + success_message: "Zostaniesz przekierowany do profilu.", + error_title: "Nie udało się.", + error_message: "Spróbuj ponownie.", + }, + errors: { + name: { + required: "Nazwa jest wymagana", + max_length: "Nazwa przestrzeni nie może przekraczać 80 znaków", + }, + company_size: { + required: "Rozmiar firmy jest wymagany", + }, + }, + }, + members: { + title: "Członkowie", + add_member: "Dodaj członka", + pending_invites: "Oczekujące zaproszenia", + invitations_sent_successfully: "Zaproszenia wysłano pomyślnie", + leave_confirmation: "Czy na pewno chcesz opuścić przestrzeń? Stracisz dostęp. Ta akcja jest nieodwracalna.", + details: { + full_name: "Imię i nazwisko", + display_name: "Nazwa wyświetlana", + email_address: "Adres e-mail", + account_type: "Typ konta", + authentication: "Uwierzytelnianie", + joining_date: "Data dołączenia", + }, + modal: { + title: "Zaproś współpracowników", + description: "Zaproś osoby do współpracy.", + button: "Wyślij zaproszenia", + button_loading: "Wysyłanie zaproszeń", + placeholder: "imię@firma.pl", + errors: { + required: "Wymagany jest adres e-mail.", + invalid: "E-mail jest nieprawidłowy", + }, + }, + }, + billing_and_plans: { + title: "Rozliczenia i plany", + current_plan: "Obecny plan", + free_plan: "Używasz bezpłatnego planu", + view_plans: "Wyświetl plany", + }, + exports: { + title: "Eksporty", + exporting: "Eksportowanie", + previous_exports: "Poprzednie eksporty", + export_separate_files: "Eksportuj dane do oddzielnych plików", + modal: { + title: "Eksport do", + toasts: { + success: { + title: "Eksport zakończony sukcesem", + message: "Wyeksportowane {entity} można pobrać z poprzednich eksportów.", + }, + error: { + title: "Eksport nie powiódł się", + message: "Spróbuj ponownie.", + }, + }, + }, + }, + webhooks: { + title: "Webhooki", + add_webhook: "Dodaj webhook", + modal: { + title: "Utwórz webhook", + details: "Szczegóły webhooka", + payload: "URL payloadu", + question: "Które zdarzenia mają uruchamiać ten webhook?", + error: "URL jest wymagany", + }, + secret_key: { + title: "Klucz tajny", + message: "Wygeneruj token do logowania webhooka", + }, + options: { + all: "Wysyłaj wszystko", + individual: "Wybierz pojedyncze zdarzenia", + }, + toasts: { + created: { + title: "Webhook utworzony", + message: "Webhook został pomyślnie utworzony", + }, + not_created: { + title: "Webhook nie został utworzony", + message: "Nie udało się utworzyć webhooka", + }, + updated: { + title: "Webhook zaktualizowany", + message: "Webhook został pomyślnie zaktualizowany", + }, + not_updated: { + title: "Aktualizacja webhooka nie powiodła się", + message: "Nie udało się zaktualizować webhooka", + }, + removed: { + title: "Webhook usunięty", + message: "Webhook został pomyślnie usunięty", + }, + not_removed: { + title: "Usunięcie webhooka nie powiodło się", + message: "Nie udało się usunąć webhooka", + }, + secret_key_copied: { + message: "Klucz tajny skopiowany do schowka.", + }, + secret_key_not_copied: { + message: "Błąd podczas kopiowania klucza.", + }, + }, + }, + api_tokens: { + title: "Tokeny API", + add_token: "Dodaj token API", + create_token: "Utwórz token", + never_expires: "Nigdy nie wygasa", + generate_token: "Wygeneruj token", + generating: "Generowanie", + delete: { + title: "Usuń token API", + description: "Aplikacje używające tego tokena stracą dostęp. Ta akcja jest nieodwracalna.", + success: { + title: "Sukces!", + message: "Token pomyślnie usunięto", + }, + error: { + title: "Błąd!", + message: "Usunięcie tokena nie powiodło się", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Brak tokenów API", + description: "Używaj API, aby zintegrować Plane z zewnętrznymi systemami.", + }, + webhooks: { + title: "Brak webhooków", + description: "Utwórz webhooki, aby zautomatyzować działania.", + }, + exports: { + title: "Brak eksportów", + description: "Znajdziesz tu historię swoich eksportów.", + }, + imports: { + title: "Brak importów", + description: "Znajdziesz tu historię swoich importów.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Twoja praca", + work: "Praca", + details: { + joined_on: "Dołączył(a) dnia", + time_zone: "Strefa czasowa", + }, + stats: { + workload: "Obciążenie", + overview: "Przegląd", + created: "Utworzone elementy", + assigned: "Przypisane elementy", + subscribed: "Subskrybowane elementy", + state_distribution: { + title: "Elementy według stanu", + empty: "Twórz elementy, aby móc analizować stany.", + }, + priority_distribution: { + title: "Elementy według priorytetu", + empty: "Twórz elementy, aby móc analizować priorytety.", + }, + recent_activity: { + title: "Ostatnia aktywność", + empty: "Brak aktywności.", + button: "Pobierz dzisiejszą aktywność", + button_loading: "Pobieranie", + }, + }, + actions: { + profile: "Profil", + security: "Bezpieczeństwo", + activity: "Aktywność", + appearance: "Wygląd", + notifications: "Powiadomienia", + }, + tabs: { + summary: "Podsumowanie", + assigned: "Przypisane", + created: "Utworzone", + subscribed: "Subskrybowane", + activity: "Aktywność", + }, + empty_state: { + activity: { + title: "Brak aktywności", + description: "Utwórz element pracy, aby zacząć.", + }, + assigned: { + title: "Brak przypisanych elementów pracy", + description: "Tutaj zobaczysz elementy pracy przypisane do Ciebie.", + }, + created: { + title: "Brak utworzonych elementów pracy", + description: "Tutaj są elementy pracy, które utworzyłeś(aś).", + }, + subscribed: { + title: "Brak subskrybowanych elementów pracy", + description: "Subskrybuj interesujące Cię elementy pracy, a pojawią się tutaj.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Wpisz ID projektu", + please_select_a_timezone: "Wybierz strefę czasową", + archive_project: { + title: "Archiwizuj projekt", + description: "Archiwizacja ukryje projekt w menu. Dostęp będzie możliwy przez stronę projektów.", + button: "Archiwizuj projekt", + }, + delete_project: { + title: "Usuń projekt", + description: "Usunięcie projektu spowoduje trwałe wymazanie wszystkich danych. Ta akcja jest nieodwracalna.", + button: "Usuń projekt", + }, + toast: { + success: "Projekt zaktualizowano", + error: "Aktualizacja nie powiodła się. Spróbuj ponownie.", + }, + }, + members: { + label: "Członkowie", + project_lead: "Lider projektu", + default_assignee: "Domyślnie przypisany", + guest_super_permissions: { + title: "Nadaj gościom dostęp do wszystkich elementów:", + sub_heading: "Goście zobaczą wszystkie elementy w projekcie.", + }, + invite_members: { + title: "Zaproś członków", + sub_heading: "Zaproś członków do projektu.", + select_co_worker: "Wybierz współpracownika", + }, + }, + states: { + describe_this_state_for_your_members: "Opisz ten stan członkom projektu.", + empty_state: { + title: "Brak stanów w grupie {groupKey}", + description: "Utwórz nowy stan", + }, + }, + labels: { + label_title: "Nazwa etykiety", + label_title_is_required: "Nazwa etykiety jest wymagana", + label_max_char: "Nazwa etykiety nie może mieć więcej niż 255 znaków", + toast: { + error: "Błąd podczas aktualizacji etykiety", + }, + }, + estimates: { + label: "Szacunki", + title: "Włącz szacunki dla mojego projektu", + description: "Pomagają w komunikacji o złożoności i obciążeniu zespołu.", + no_estimate: "Bez szacunku", + new: "Nowy system szacowania", + create: { + custom: "Niestandardowy", + start_from_scratch: "Zacznij od zera", + choose_template: "Wybierz szablon", + choose_estimate_system: "Wybierz system szacowania", + enter_estimate_point: "Wprowadź punkt szacunkowy", + step: "Krok {step} z {total}", + label: "Utwórz szacunek", + }, + toasts: { + created: { + success: { + title: "Utworzono szacunek", + message: "Szacunek został utworzony pomyślnie", + }, + error: { + title: "Błąd tworzenia szacunku", + message: "Nie udało się utworzyć nowego szacunku, spróbuj ponownie.", + }, + }, + updated: { + success: { + title: "Zaktualizowano szacunek", + message: "Szacunek został zaktualizowany w Twoim projekcie.", + }, + error: { + title: "Błąd aktualizacji szacunku", + message: "Nie udało się zaktualizować szacunku, spróbuj ponownie", + }, + }, + enabled: { + success: { + title: "Sukces!", + message: "Szacunki zostały włączone.", + }, + }, + disabled: { + success: { + title: "Sukces!", + message: "Szacunki zostały wyłączone.", + }, + error: { + title: "Błąd!", + message: "Nie udało się wyłączyć szacunków. Spróbuj ponownie", + }, + }, + }, + validation: { + min_length: "Punkt szacunkowy musi być większy niż 0.", + unable_to_process: "Nie możemy przetworzyć Twojego żądania, spróbuj ponownie.", + numeric: "Punkt szacunkowy musi być wartością liczbową.", + character: "Punkt szacunkowy musi być znakiem.", + empty: "Wartość szacunku nie może być pusta.", + already_exists: "Wartość szacunku już istnieje.", + unsaved_changes: "Masz niezapisane zmiany. Zapisz je przed kliknięciem 'gotowe'", + remove_empty: + "Szacunek nie może być pusty. Wprowadź wartość w każde pole lub usuń te, dla których nie masz wartości.", + }, + systems: { + points: { + label: "Punkty", + fibonacci: "Fibonacci", + linear: "Liniowy", + squares: "Kwadraty", + custom: "Własny", + }, + categories: { + label: "Kategorie", + t_shirt_sizes: "Rozmiary koszulek", + easy_to_hard: "Od łatwego do trudnego", + custom: "Własne", + }, + time: { + label: "Czas", + hours: "Godziny", + }, + }, + }, + automations: { + label: "Automatyzacja", + "auto-archive": { + title: "Automatyczna archiwizacja zamkniętych elementów", + description: "Plane będzie automatycznie archiwizował elementy, które zostały ukończone lub anulowane.", + duration: "Archiwizuj elementy zamknięte dłużej niż", + }, + "auto-close": { + title: "Automatyczne zamykanie elementów", + description: "Plane będzie automatycznie zamykał elementy, które nie zostały ukończone lub anulowane.", + duration: "Zamknij elementy nieaktywne dłużej niż", + auto_close_status: "Status automatycznego zamknięcia", + }, + }, + empty_state: { + labels: { + title: "Brak etykiet", + description: "Utwórz etykiety, aby organizować elementy pracy.", + }, + estimates: { + title: "Brak systemów szacowania", + description: "Utwórz system szacowania, aby komunikować obciążenie.", + primary_button: "Dodaj system szacowania", + }, + }, + }, + project_cycles: { + add_cycle: "Dodaj cykl", + more_details: "Więcej szczegółów", + cycle: "Cykl", + update_cycle: "Zaktualizuj cykl", + create_cycle: "Utwórz cykl", + no_matching_cycles: "Brak pasujących cykli", + remove_filters_to_see_all_cycles: "Usuń filtry, aby wyświetlić wszystkie cykle", + remove_search_criteria_to_see_all_cycles: "Usuń kryteria wyszukiwania, aby wyświetlić wszystkie cykle", + only_completed_cycles_can_be_archived: "Można archiwizować tylko ukończone cykle", + start_date: "Data początku", + end_date: "Data końca", + in_your_timezone: "W Twojej strefie czasowej", + transfer_work_items: "Przenieś {count} elementów pracy", + date_range: "Zakres dat", + add_date: "Dodaj datę", + active_cycle: { + label: "Aktywny cykl", + progress: "Postęp", + chart: "Wykres burndown", + priority_issue: "Elementy o wysokim priorytecie", + assignees: "Przypisani", + issue_burndown: "Burndown elementów pracy", + ideal: "Idealny", + current: "Obecny", + labels: "Etykiety", + }, + upcoming_cycle: { + label: "Nadchodzący cykl", + }, + completed_cycle: { + label: "Ukończony cykl", + }, + status: { + days_left: "Pozostało dni", + completed: "Ukończono", + yet_to_start: "Jeszcze nierozpoczęty", + in_progress: "W trakcie", + draft: "Szkic", + }, + action: { + restore: { + title: "Przywróć cykl", + success: { + title: "Cykl przywrócony", + description: "Cykl został przywrócony.", + }, + failed: { + title: "Przywracanie nie powiodło się", + description: "Nie udało się przywrócić cyklu.", + }, + }, + favorite: { + loading: "Dodawanie do ulubionych", + success: { + description: "Cykl dodano do ulubionych.", + title: "Sukces!", + }, + failed: { + description: "Nie udało się dodać do ulubionych.", + title: "Błąd!", + }, + }, + unfavorite: { + loading: "Usuwanie z ulubionych", + success: { + description: "Cykl usunięto z ulubionych.", + title: "Sukces!", + }, + failed: { + description: "Nie udało się usunąć z ulubionych.", + title: "Błąd!", + }, + }, + update: { + loading: "Aktualizowanie cyklu", + success: { + description: "Cykl zaktualizowano.", + title: "Sukces!", + }, + failed: { + description: "Aktualizacja nie powiodła się.", + title: "Błąd!", + }, + error: { + already_exists: "Cykl o tych datach już istnieje. Aby mieć szkic, usuń daty.", + }, + }, + }, + empty_state: { + general: { + title: "Grupuj pracę w cykle.", + description: "Ograniczaj pracę w czasie, śledź terminy i monitoruj postępy.", + primary_button: { + text: "Utwórz pierwszy cykl", + comic: { + title: "Cykle to powtarzalne okresy czasu.", + description: "Sprint, iteracja lub inny okres, w którym śledzisz pracę.", + }, + }, + }, + no_issues: { + title: "Brak elementów w cyklu", + description: "Dodaj elementy, które chcesz śledzić.", + primary_button: { + text: "Utwórz element", + }, + secondary_button: { + text: "Dodaj istniejący element", + }, + }, + completed_no_issues: { + title: "Brak elementów w cyklu", + description: "Elementy zostały przeniesione lub ukryte. Aby je zobaczyć, zmień właściwości.", + }, + active: { + title: "Brak aktywnego cyklu", + description: "Aktywny cykl obejmuje aktualną datę. Będzie wyświetlany tutaj.", + }, + archived: { + title: "Brak zarchiwizowanych cykli", + description: "Archiwizuj ukończone cykle, aby zachować porządek.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Utwórz i przypisz element pracy", + description: "Elementy to zadania, które przypisujesz sobie lub zespołowi. Śledź ich postęp.", + primary_button: { + text: "Utwórz pierwszy element", + comic: { + title: "Elementy to podstawowe zadania", + description: "Przykłady: przeprojektowanie interfejsu, rebranding, nowy system.", + }, + }, + }, + no_archived_issues: { + title: "Brak zarchiwizowanych elementów", + description: "Archiwizuj elementy ukończone lub anulowane. Skonfiguruj automatyzację.", + primary_button: { + text: "Skonfiguruj automatyzację", + }, + }, + issues_empty_filter: { + title: "Brak pasujących elementów", + secondary_button: { + text: "Wyczyść filtry", + }, + }, + }, + }, + project_module: { + add_module: "Dodaj moduł", + update_module: "Zaktualizuj moduł", + create_module: "Utwórz moduł", + archive_module: "Archiwizuj moduł", + restore_module: "Przywróć moduł", + delete_module: "Usuń moduł", + empty_state: { + general: { + title: "Grupuj etapy w moduły.", + description: "Moduły grupują elementy pod wspólnym nadrzędnym celem. Śledź terminy i postępy.", + primary_button: { + text: "Utwórz pierwszy moduł", + comic: { + title: "Moduły grupują elementy hierarchicznie.", + description: "Przykłady: moduł koszyka, podwozia, magazynu.", + }, + }, + }, + no_issues: { + title: "Brak elementów w module", + description: "Dodaj elementy do modułu.", + primary_button: { + text: "Utwórz elementy", + }, + secondary_button: { + text: "Dodaj istniejący element", + }, + }, + archived: { + title: "Brak zarchiwizowanych modułów", + description: "Archiwizuj moduły ukończone lub anulowane.", + }, + sidebar: { + in_active: "Moduł nie jest aktywny.", + invalid_date: "Nieprawidłowa data. Wpisz prawidłową.", + }, + }, + quick_actions: { + archive_module: "Archiwizuj moduł", + archive_module_description: "Można archiwizować tylko ukończone/anulowane moduły.", + delete_module: "Usuń moduł", + }, + toast: { + copy: { + success: "Link do modułu skopiowano", + }, + delete: { + success: "Moduł usunięto", + error: "Nie udało się usunąć modułu", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Zapisuj filtry jako widoki.", + description: "Widoki to zapisane filtry zapewniające łatwy dostęp. Udostępnij je zespołowi.", + primary_button: { + text: "Utwórz pierwszy widok", + comic: { + title: "Widoki działają z właściwościami elementów pracy.", + description: "Utwórz widok z żądanymi filtrami.", + }, + }, + }, + filter: { + title: "Brak pasujących widoków", + description: "Utwórz nowy widok.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "Notuj, dokumentuj lub twórz bazę wiedzy. Użyj AI Galileo.", + description: "Strony to obszar na Twoje myśli. Pisz, formatuj, osadzaj elementy i używaj komponentów.", + primary_button: { + text: "Utwórz pierwszą stronę", + }, + }, + private: { + title: "Brak prywatnych stron", + description: "Przechowuj prywatne notatki. Udostępnij je później, gdy będziesz gotowy.", + primary_button: { + text: "Utwórz stronę", + }, + }, + public: { + title: "Brak publicznych stron", + description: "Tutaj zobaczysz strony udostępnione w projekcie.", + primary_button: { + text: "Utwórz stronę", + }, + }, + archived: { + title: "Brak zarchiwizowanych stron", + description: "Archiwizuj strony do późniejszego użytku.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Nie znaleziono wyników", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Brak pasujących elementów", + }, + no_issues: { + title: "Brak elementów", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Brak komentarzy", + description: "Komentarze służą do dyskusji i śledzenia elementów.", + }, + }, + }, + notification: { + label: "Skrzynka", + page_label: "{workspace} - Skrzynka", + options: { + mark_all_as_read: "Oznacz wszystko jako przeczytane", + mark_read: "Oznacz jako przeczytane", + mark_unread: "Oznacz jako nieprzeczytane", + refresh: "Odśwież", + filters: "Filtry skrzynki", + show_unread: "Pokaż nieprzeczytane", + show_snoozed: "Pokaż odłożone", + show_archived: "Pokaż zarchiwizowane", + mark_archive: "Archiwizuj", + mark_unarchive: "Przywróć z archiwum", + mark_snooze: "Odłóż", + mark_unsnooze: "Anuluj odłożenie", + }, + toasts: { + read: "Powiadomienie oznaczono jako przeczytane", + unread: "Oznaczono jako nieprzeczytane", + archived: "Zarchiwizowano", + unarchived: "Przywrócono z archiwum", + snoozed: "Odłożono", + unsnoozed: "Anulowano odłożenie", + }, + empty_state: { + detail: { + title: "Wybierz, aby zobaczyć szczegóły.", + }, + all: { + title: "Brak przypisanych elementów", + description: "Aktualizacje przypisanych elementów pojawią się tutaj.", + }, + mentions: { + title: "Brak wzmianek", + description: "Twoje wzmianki pojawią się tutaj.", + }, + }, + tabs: { + all: "Wszystko", + mentions: "Wzmianki", + }, + filter: { + assigned: "Przypisano mnie", + created: "Utworzyłem(am)", + subscribed: "Subskrybuję", + }, + snooze: { + "1_day": "1 dzień", + "3_days": "3 dni", + "5_days": "5 dni", + "1_week": "1 tydzień", + "2_weeks": "2 tygodnie", + custom: "Niestandardowe", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Dodaj elementy pracy, aby śledzić postęp", + }, + chart: { + title: "Dodaj elementy pracy, aby wyświetlić wykres burndown.", + }, + priority_issue: { + title: "Tutaj pojawią się elementy o wysokim priorytecie.", + }, + assignee: { + title: "Przypisz elementy, aby zobaczyć podział przypisania.", + }, + label: { + title: "Dodaj etykiety, aby przeprowadzić analizę według etykiet.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Zgłoszenia nie są włączone", + description: "Włącz zgłoszenia w ustawieniach projektu, aby zarządzać prośbami.", + primary_button: { + text: "Zarządzaj funkcjami", + }, + }, + cycle: { + title: "Cykle nie są włączone", + description: "Włącz cykle, aby ograniczać pracę w czasie.", + primary_button: { + text: "Zarządzaj funkcjami", + }, + }, + module: { + title: "Moduły nie są włączone", + description: "Włącz moduły w ustawieniach projektu.", + primary_button: { + text: "Zarządzaj funkcjami", + }, + }, + page: { + title: "Strony nie są włączone", + description: "Włącz strony w ustawieniach projektu.", + primary_button: { + text: "Zarządzaj funkcjami", + }, + }, + view: { + title: "Widoki nie są włączone", + description: "Włącz widoki w ustawieniach projektu.", + primary_button: { + text: "Zarządzaj funkcjami", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Utwórz szkic elementu pracy", + empty_state: { + title: "Robocze elementy pracy i komentarze pojawią się tutaj.", + description: "Rozpocznij tworzenie elementu pracy i zostaw go w formie szkicu.", + primary_button: { + text: "Utwórz pierwszy szkic", + }, + }, + delete_modal: { + title: "Usuń szkic", + description: "Czy na pewno chcesz usunąć ten szkic? Ta akcja jest nieodwracalna.", + }, + toasts: { + created: { + success: "Szkic utworzono", + error: "Nie udało się utworzyć", + }, + deleted: { + success: "Szkic usunięto", + }, + }, + }, + stickies: { + title: "Twoje notatki", + placeholder: "kliknij, aby zacząć pisać", + all: "Wszystkie notatki", + "no-data": "Zapisuj pomysły i myśli. Dodaj pierwszą notatkę.", + add: "Dodaj notatkę", + search_placeholder: "Szukaj według nazwy", + delete: "Usuń notatkę", + delete_confirmation: "Czy na pewno chcesz usunąć tę notatkę?", + empty_state: { + simple: "Zapisuj pomysły i myśli. Dodaj pierwszą notatkę.", + general: { + title: "Notatki to szybkie zapiski.", + description: "Zapisuj pomysły i uzyskuj do nich dostęp z dowolnego miejsca.", + primary_button: { + text: "Dodaj notatkę", + }, + }, + search: { + title: "Nie znaleziono żadnych notatek.", + description: "Spróbuj innego wyrażenia lub utwórz nową notatkę.", + primary_button: { + text: "Dodaj notatkę", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Nazwa notatki może mieć maks. 100 znaków.", + already_exists: "Notatka bez opisu już istnieje", + }, + created: { + title: "Notatkę utworzono", + message: "Notatkę utworzono pomyślnie", + }, + not_created: { + title: "Nie udało się utworzyć", + message: "Nie można utworzyć notatki", + }, + updated: { + title: "Notatkę zaktualizowano", + message: "Notatkę zaktualizowano pomyślnie", + }, + not_updated: { + title: "Aktualizacja się nie powiodła", + message: "Nie można zaktualizować notatki", + }, + removed: { + title: "Notatkę usunięto", + message: "Notatkę usunięto pomyślnie", + }, + not_removed: { + title: "Usunięcie się nie powiodło", + message: "Nie można usunąć notatki", + }, + }, + }, + role_details: { + guest: { + title: "Gość", + description: "Użytkownicy zewnętrzni mogą być zapraszani jako goście.", + }, + member: { + title: "Członek", + description: "Może czytać, tworzyć, edytować i usuwać encje.", + }, + admin: { + title: "Administrator", + description: "Posiada wszystkie uprawnienia w przestrzeni.", + }, + }, + user_roles: { + product_or_project_manager: "Menadżer produktu/projektu", + development_or_engineering: "Deweloper/Inżynier", + founder_or_executive: "Założyciel/Dyrektor", + freelancer_or_consultant: "Freelancer/Konsultant", + marketing_or_growth: "Marketing/Rozwój", + sales_or_business_development: "Sprzedaż/Business Development", + support_or_operations: "Wsparcie/Operacje", + student_or_professor: "Student/Profesor", + human_resources: "Zasoby ludzkie", + other: "Inne", + }, + importer: { + github: { + title: "GitHub", + description: "Importuj elementy z repozytoriów GitHub.", + }, + jira: { + title: "Jira", + description: "Importuj elementy i epiki z Jiry.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Eksportuj elementy do pliku CSV.", + short_description: "Eksportuj jako CSV", + }, + excel: { + title: "Excel", + description: "Eksportuj elementy do pliku Excel.", + short_description: "Eksportuj jako Excel", + }, + xlsx: { + title: "Excel", + description: "Eksportuj elementy do pliku Excel.", + short_description: "Eksportuj jako Excel", + }, + json: { + title: "JSON", + description: "Eksportuj elementy do pliku JSON.", + short_description: "Eksportuj jako JSON", + }, + }, + default_global_view: { + all_issues: "Wszystkie elementy", + assigned: "Przypisane", + created: "Utworzone", + subscribed: "Subskrybowane", + }, + themes: { + theme_options: { + system_preference: { + label: "Preferencje systemowe", + }, + light: { + label: "Jasny", + }, + dark: { + label: "Ciemny", + }, + light_contrast: { + label: "Jasny wysoki kontrast", + }, + dark_contrast: { + label: "Ciemny wysoki kontrast", + }, + custom: { + label: "Motyw niestandardowy", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Planowane", + in_progress: "W trakcie", + paused: "Wstrzymane", + completed: "Ukończone", + cancelled: "Anulowane", + }, + layout: { + list: "Lista", + board: "Tablica", + timeline: "Oś czasu", + }, + order_by: { + name: "Nazwa", + progress: "Postęp", + issues: "Liczba elementów", + due_date: "Termin", + created_at: "Data utworzenia", + manual: "Ręcznie", + }, + }, + cycle: { + label: "{count, plural, one {Cykl} few {Cykle} other {Cyklów}}", + no_cycle: "Brak cyklu", + }, + module: { + label: "{count, plural, one {Moduł} few {Moduły} other {Modułów}}", + no_module: "Brak modułu", + }, + description_versions: { + last_edited_by: "Ostatnio edytowane przez", + previously_edited_by: "Wcześniej edytowane przez", + edited_by: "Edytowane przez", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane nie uruchomił się. Może to być spowodowane tym, że jedna lub więcej usług Plane nie mogła się uruchomić.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Wybierz View Logs z setup.sh i logów Docker, aby mieć pewność.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Konspekt", + empty_state: { + title: "Brakuje nagłówków", + description: "Dodajmy kilka nagłówków na tej stronie, aby je tutaj zobaczyć.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Słowa", + characters: "Znaki", + paragraphs: "Akapity", + read_time: "Czas czytania", + }, + actors_info: { + edited_by: "Edytowane przez", + created_by: "Utworzone przez", + }, + version_history: { + label: "Historia wersji", + current_version: "Bieżąca wersja", + }, + }, + assets: { + label: "Zasoby", + download_button: "Pobierz", + empty_state: { + title: "Brakuje obrazów", + description: "Dodaj obrazy, aby je tutaj zobaczyć.", + }, + }, + }, + open_button: "Otwórz panel nawigacji", + close_button: "Zamknij panel nawigacji", + outline_floating_button: "Otwórz konspekt", + }, +} as const; diff --git a/packages/i18n/src/locales/pt-BR/accessibility.json b/packages/i18n/src/locales/pt-BR/accessibility.json deleted file mode 100644 index de90eeb36d..0000000000 --- a/packages/i18n/src/locales/pt-BR/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo do espaço de trabalho", - "open_workspace_switcher": "Abrir seletor de espaço de trabalho", - "open_user_menu": "Abrir menu do usuário", - "open_command_palette": "Abrir paleta de comandos", - "open_extended_sidebar": "Abrir barra lateral estendida", - "close_extended_sidebar": "Fechar barra lateral estendida", - "create_favorites_folder": "Criar pasta de favoritos", - "open_folder": "Abrir pasta", - "close_folder": "Fechar pasta", - "open_favorites_menu": "Abrir menu de favoritos", - "close_favorites_menu": "Fechar menu de favoritos", - "enter_folder_name": "Digite o nome da pasta", - "create_new_project": "Criar novo projeto", - "open_projects_menu": "Abrir menu de projetos", - "close_projects_menu": "Fechar menu de projetos", - "toggle_quick_actions_menu": "Alternar menu de ações rápidas", - "open_project_menu": "Abrir menu do projeto", - "close_project_menu": "Fechar menu do projeto", - "collapse_sidebar": "Recolher barra lateral", - "expand_sidebar": "Expandir barra lateral", - "edition_badge": "Abrir modal de planos pagos" - }, - "auth_forms": { - "clear_email": "Limpar e-mail", - "show_password": "Mostrar senha", - "hide_password": "Ocultar senha", - "close_alert": "Fechar alerta", - "close_popover": "Fechar popover" - } - } -} diff --git a/packages/i18n/src/locales/pt-BR/accessibility.ts b/packages/i18n/src/locales/pt-BR/accessibility.ts new file mode 100644 index 0000000000..41238b8cc8 --- /dev/null +++ b/packages/i18n/src/locales/pt-BR/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo do espaço de trabalho", + open_workspace_switcher: "Abrir seletor de espaço de trabalho", + open_user_menu: "Abrir menu do usuário", + open_command_palette: "Abrir paleta de comandos", + open_extended_sidebar: "Abrir barra lateral estendida", + close_extended_sidebar: "Fechar barra lateral estendida", + create_favorites_folder: "Criar pasta de favoritos", + open_folder: "Abrir pasta", + close_folder: "Fechar pasta", + open_favorites_menu: "Abrir menu de favoritos", + close_favorites_menu: "Fechar menu de favoritos", + enter_folder_name: "Digite o nome da pasta", + create_new_project: "Criar novo projeto", + open_projects_menu: "Abrir menu de projetos", + close_projects_menu: "Fechar menu de projetos", + toggle_quick_actions_menu: "Alternar menu de ações rápidas", + open_project_menu: "Abrir menu do projeto", + close_project_menu: "Fechar menu do projeto", + collapse_sidebar: "Recolher barra lateral", + expand_sidebar: "Expandir barra lateral", + edition_badge: "Abrir modal de planos pagos", + }, + auth_forms: { + clear_email: "Limpar e-mail", + show_password: "Mostrar senha", + hide_password: "Ocultar senha", + close_alert: "Fechar alerta", + close_popover: "Fechar popover", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/pt-BR/editor.json b/packages/i18n/src/locales/pt-BR/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/pt-BR/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/pt-BR/editor.ts b/packages/i18n/src/locales/pt-BR/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/pt-BR/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/pt-BR/translations.json b/packages/i18n/src/locales/pt-BR/translations.json deleted file mode 100644 index f52a220fc4..0000000000 --- a/packages/i18n/src/locales/pt-BR/translations.json +++ /dev/null @@ -1,2529 +0,0 @@ -{ - "sidebar": { - "projects": "Projetos", - "pages": "Páginas", - "new_work_item": "Novo item", - "home": "Home", - "your_work": "Seu trabalho", - "inbox": "Inbox", - "workspace": "Workspace", - "views": "Visualizações", - "analytics": "Analytics", - "work_items": "Itens", - "cycles": "Ciclos", - "modules": "Módulos", - "intake": "Intake", - "drafts": "Rascunhos", - "favorites": "Favoritos", - "pro": "Pro", - "upgrade": "Upgrade" - }, - "auth": { - "common": { - "email": { - "label": "Email", - "placeholder": "nome@empresa.com", - "errors": { - "required": "Email é obrigatório", - "invalid": "Email inválido" - } - }, - "password": { - "label": "Senha", - "set_password": "Definir senha", - "placeholder": "Digite a senha", - "confirm_password": { - "label": "Confirmar senha", - "placeholder": "Confirmar senha" - }, - "current_password": { - "label": "Senha atual" - }, - "new_password": { - "label": "Nova senha", - "placeholder": "Digite a nova senha" - }, - "change_password": { - "label": { - "default": "Alterar senha", - "submitting": "Alterando senha" - } - }, - "errors": { - "match": "As senhas não coincidem", - "empty": "Por favor digite sua senha", - "length": "A senha deve ter mais de 8 caracteres", - "strength": { - "weak": "Senha fraca", - "strong": "Senha forte" - } - }, - "submit": "Definir senha", - "toast": { - "change_password": { - "success": { - "title": "Sucesso!", - "message": "Senha alterada com sucesso." - }, - "error": { - "title": "Erro!", - "message": "Algo deu errado. Por favor, tente novamente." - } - } - } - }, - "unique_code": { - "label": "Código único", - "placeholder": "gets-sets-flys", - "paste_code": "Cole o código enviado para seu email", - "requesting_new_code": "Solicitando novo código", - "sending_code": "Enviando código" - }, - "already_have_an_account": "Já tem uma conta?", - "login": "Login", - "create_account": "Criar conta", - "new_to_plane": "Novo no Plane?", - "back_to_sign_in": "Voltar ao login", - "resend_in": "Reenviar em {seconds} segundos", - "sign_in_with_unique_code": "Login com código único", - "forgot_password": "Esqueceu sua senha?" - }, - "sign_up": { - "header": { - "label": "Crie uma conta para começar a gerenciar trabalho com sua equipe.", - "step": { - "email": { - "header": "Cadastro", - "sub_header": "" - }, - "password": { - "header": "Cadastro", - "sub_header": "Cadastre-se usando email e senha." - }, - "unique_code": { - "header": "Cadastro", - "sub_header": "Cadastre-se usando um código único enviado para o email acima." - } - } - }, - "errors": { - "password": { - "strength": "Tente definir uma senha forte para continuar" - } - } - }, - "sign_in": { - "header": { - "label": "Faça login para começar a gerenciar trabalho com sua equipe.", - "step": { - "email": { - "header": "Login ou cadastro", - "sub_header": "" - }, - "password": { - "header": "Login ou cadastro", - "sub_header": "Use seu email e senha para fazer login." - }, - "unique_code": { - "header": "Login ou cadastro", - "sub_header": "Faça login usando um código único enviado para o email acima." - } - } - } - }, - "forgot_password": { - "title": "Redefinir sua senha", - "description": "Digite o email verificado da sua conta e enviaremos um link para redefinir sua senha.", - "email_sent": "Enviamos o link de redefinição para seu email", - "send_reset_link": "Enviar link de redefinição", - "errors": { - "smtp_not_enabled": "Vemos que seu administrador não habilitou SMTP, não poderemos enviar um link de redefinição de senha" - }, - "toast": { - "success": { - "title": "Email enviado", - "message": "Verifique sua caixa de entrada para um link de redefinição de senha. Se não aparecer em alguns minutos, verifique sua pasta de spam." - }, - "error": { - "title": "Erro!", - "message": "Algo deu errado. Por favor, tente novamente." - } - } - }, - "reset_password": { - "title": "Definir nova senha", - "description": "Proteja sua conta com uma senha forte" - }, - "set_password": { - "title": "Proteja sua conta", - "description": "Definir uma senha ajuda você a fazer login com segurança" - }, - "sign_out": { - "toast": { - "error": { - "title": "Erro!", - "message": "Falha ao sair. Por favor, tente novamente." - } - } - } - }, - "submit": "Enviar", - "cancel": "Cancelar", - "loading": "Carregando", - "error": "Erro", - "success": "Sucesso", - "warning": "Aviso", - "info": "Informação", - "close": "Fechar", - "yes": "Sim", - "no": "Não", - "ok": "OK", - "name": "Nome", - "description": "Descrição", - "search": "Pesquisar", - "add_member": "Adicionar membro", - "adding_members": "Adicionando membros", - "remove_member": "Remover membro", - "add_members": "Adicionar membros", - "adding_member": "Adicionando membro", - "remove_members": "Remover membros", - "add": "Adicionar", - "adding": "Adicionando", - "remove": "Remover", - "add_new": "Adicionar novo", - "remove_selected": "Remover selecionado", - "first_name": "Primeiro nome", - "last_name": "Sobrenome", - "email": "E-mail", - "display_name": "Nome de exibição", - "role": "Cargo", - "timezone": "Fuso horário", - "avatar": "Avatar", - "cover_image": "Imagem de capa", - "password": "Senha", - "change_cover": "Alterar capa", - "language": "Idioma", - "saving": "Salvando", - "save_changes": "Salvar alterações", - "deactivate_account": "Desativar conta", - "deactivate_account_description": "Ao desativar uma conta, todos os dados e recursos dessa conta serão removidos permanentemente e não poderão ser recuperados.", - "profile_settings": "Configurações de perfil", - "your_account": "Sua conta", - "security": "Segurança", - "activity": "Atividade", - "appearance": "Aparência", - "notifications": "Notificações", - "workspaces": "Espaços de trabalho", - "create_workspace": "Criar espaço de trabalho", - "invitations": "Convites", - "summary": "Resumo", - "assigned": "Atribuído", - "created": "Criado", - "subscribed": "Inscrito", - "you_do_not_have_the_permission_to_access_this_page": "Você não tem permissão para acessar esta página.", - "something_went_wrong_please_try_again": "Algo deu errado. Por favor, tente novamente.", - "load_more": "Carregar mais", - "select_or_customize_your_interface_color_scheme": "Selecione ou personalize o esquema de cores da sua interface.", - "theme": "Tema", - "system_preference": "Preferência do sistema", - "light": "Claro", - "dark": "Escuro", - "light_contrast": "Alto contraste claro", - "dark_contrast": "Alto contraste escuro", - "custom": "Personalizado", - "select_your_theme": "Selecione seu tema", - "customize_your_theme": "Personalize seu tema", - "background_color": "Cor de fundo", - "text_color": "Cor do texto", - "primary_color": "Cor primária (Tema)", - "sidebar_background_color": "Cor de fundo da barra lateral", - "sidebar_text_color": "Cor do texto da barra lateral", - "set_theme": "Definir tema", - "enter_a_valid_hex_code_of_6_characters": "Insira um código hexadecimal válido de 6 caracteres", - "background_color_is_required": "A cor de fundo é obrigatória", - "text_color_is_required": "A cor do texto é obrigatória", - "primary_color_is_required": "A cor primária é obrigatória", - "sidebar_background_color_is_required": "A cor de fundo da barra lateral é obrigatória", - "sidebar_text_color_is_required": "A cor do texto da barra lateral é obrigatória", - "updating_theme": "Atualizando tema", - "theme_updated_successfully": "Tema atualizado com sucesso", - "failed_to_update_the_theme": "Falha ao atualizar o tema", - "email_notifications": "Notificações por e-mail", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Mantenha-se informado sobre os itens de trabalho aos quais você está inscrito. Ative isso para ser notificado.", - "email_notification_setting_updated_successfully": "Configuração de notificação por e-mail atualizada com sucesso", - "failed_to_update_email_notification_setting": "Falha ao atualizar a configuração de notificação por e-mail", - "notify_me_when": "Notifique-me quando", - "property_changes": "Alterações de propriedade", - "property_changes_description": "Notifique-me quando as propriedades dos itens de trabalho, como responsáveis, prioridade, estimativas ou qualquer outra coisa, mudarem.", - "state_change": "Mudança de estado", - "state_change_description": "Notifique-me quando os itens de trabalho mudarem para um estado diferente", - "issue_completed": "Item de trabalho concluído", - "issue_completed_description": "Notifique-me apenas quando um item de trabalho for concluído", - "comments": "Comentários", - "comments_description": "Notifique-me quando alguém deixar um comentário no item de trabalho", - "mentions": "Menções", - "mentions_description": "Notifique-me apenas quando alguém me mencionar nos comentários ou na descrição", - "old_password": "Senha antiga", - "general_settings": "Configurações gerais", - "sign_out": "Sair", - "signing_out": "Saindo", - "active_cycles": "Ciclos ativos", - "active_cycles_description": "Monitore os ciclos entre os projetos, rastreie os itens de trabalho de alta prioridade e amplie os ciclos que precisam de atenção.", - "on_demand_snapshots_of_all_your_cycles": "Snapshots sob demanda de todos os seus ciclos", - "upgrade": "Upgrade", - "10000_feet_view": "Visão geral de todos os ciclos ativos.", - "10000_feet_view_description": "Reduza o zoom para ver os ciclos em execução em todos os seus projetos de uma só vez, em vez de ir de ciclo para ciclo em cada projeto.", - "get_snapshot_of_each_active_cycle": "Obtenha um snapshot de cada ciclo ativo.", - "get_snapshot_of_each_active_cycle_description": "Rastreie as métricas de alto nível para todos os ciclos ativos, veja seu estado de progresso e tenha uma noção do escopo em relação aos prazos.", - "compare_burndowns": "Compare burndowns.", - "compare_burndowns_description": "Monitore o desempenho de cada uma de suas equipes com uma olhada no relatório de burndown de cada ciclo.", - "quickly_see_make_or_break_issues": "Veja rapidamente os itens de trabalho decisivos.", - "quickly_see_make_or_break_issues_description": "Visualize os itens de trabalho de alta prioridade para cada ciclo em relação aos prazos. Veja todos eles por ciclo com um clique.", - "zoom_into_cycles_that_need_attention": "Amplie os ciclos que precisam de atenção.", - "zoom_into_cycles_that_need_attention_description": "Investigue o estado de qualquer ciclo que não esteja em conformidade com as expectativas com um clique.", - "stay_ahead_of_blockers": "Fique à frente dos bloqueios.", - "stay_ahead_of_blockers_description": "Identifique desafios de um projeto para outro e veja as dependências entre ciclos que não são óbvias em nenhuma outra visualização.", - "analytics": "Análises", - "workspace_invites": "Convites para o espaço de trabalho", - "enter_god_mode": "Entrar no God Mode", - "workspace_logo": "Logo do espaço de trabalho", - "new_issue": "Novo item de trabalho", - "your_work": "Seu trabalho", - "drafts": "Rascunhos", - "projects": "Projetos", - "views": "Visualizações", - "workspace": "Espaço de trabalho", - "archives": "Arquivos", - "settings": "Configurações", - "failed_to_move_favorite": "Falha ao mover o favorito", - "favorites": "Favoritos", - "no_favorites_yet": "Nenhum favorito ainda", - "create_folder": "Criar pasta", - "new_folder": "Nova pasta", - "favorite_updated_successfully": "Favorito atualizado com sucesso", - "favorite_created_successfully": "Favorito criado com sucesso", - "folder_already_exists": "A pasta já existe", - "folder_name_cannot_be_empty": "O nome da pasta não pode estar vazio", - "something_went_wrong": "Algo deu errado", - "failed_to_reorder_favorite": "Falha ao reordenar o favorito", - "favorite_removed_successfully": "Favorito removido com sucesso", - "failed_to_create_favorite": "Falha ao criar favorito", - "failed_to_rename_favorite": "Falha ao renomear favorito", - "project_link_copied_to_clipboard": "Link do projeto copiado para a área de transferência", - "link_copied": "Link copiado", - "add_project": "Adicionar projeto", - "create_project": "Criar projeto", - "failed_to_remove_project_from_favorites": "Não foi possível remover o projeto dos favoritos. Por favor, tente novamente.", - "project_created_successfully": "Projeto criado com sucesso", - "project_created_successfully_description": "Projeto criado com sucesso. Agora você pode começar a adicionar itens de trabalho a ele.", - "project_name_already_taken": "O nome do projeto já está em uso.", - "project_identifier_already_taken": "O identificador do projeto já está em uso.", - "project_cover_image_alt": "Imagem de capa do projeto", - "name_is_required": "Nome é obrigatório", - "title_should_be_less_than_255_characters": "O título deve ter menos de 255 caracteres", - "project_name": "Nome do projeto", - "project_id_must_be_at_least_1_character": "O ID do projeto deve ter pelo menos 1 caractere", - "project_id_must_be_at_most_5_characters": "O ID do projeto deve ter no máximo 5 caracteres", - "project_id": "ID do projeto", - "project_id_tooltip_content": "Ajuda você a identificar itens de trabalho no projeto de forma exclusiva. Máximo de 5 caracteres.", - "description_placeholder": "Descrição", - "only_alphanumeric_non_latin_characters_allowed": "Apenas caracteres alfanuméricos e não latinos são permitidos.", - "project_id_is_required": "O ID do projeto é obrigatório", - "project_id_allowed_char": "Apenas caracteres alfanuméricos e não latinos são permitidos.", - "project_id_min_char": "O ID do projeto deve ter pelo menos 1 caractere", - "project_id_max_char": "O ID do projeto deve ter no máximo 5 caracteres", - "project_description_placeholder": "Insira a descrição do projeto", - "select_network": "Selecione a rede", - "lead": "Líder", - "date_range": "Intervalo de datas", - "private": "Privado", - "public": "Público", - "accessible_only_by_invite": "Acessível apenas por convite", - "anyone_in_the_workspace_except_guests_can_join": "Qualquer pessoa no espaço de trabalho, exceto convidados, pode participar", - "creating": "Criando", - "creating_project": "Criando projeto", - "adding_project_to_favorites": "Adicionando projeto aos favoritos", - "project_added_to_favorites": "Projeto adicionado aos favoritos", - "couldnt_add_the_project_to_favorites": "Não foi possível adicionar o projeto aos favoritos. Por favor, tente novamente.", - "removing_project_from_favorites": "Removendo projeto dos favoritos", - "project_removed_from_favorites": "Projeto removido dos favoritos", - "couldnt_remove_the_project_from_favorites": "Não foi possível remover o projeto dos favoritos. Por favor, tente novamente.", - "add_to_favorites": "Adicionar aos favoritos", - "remove_from_favorites": "Remover dos favoritos", - "publish_project": "Publicar projeto", - "publish": "Publicar", - "copy_link": "Copiar link", - "leave_project": "Sair do projeto", - "join_the_project_to_rearrange": "Participe do projeto para reorganizar", - "drag_to_rearrange": "Arraste para reorganizar", - "congrats": "Parabéns!", - "open_project": "Abrir projeto", - "issues": "Itens de trabalho", - "cycles": "Ciclos", - "modules": "Módulos", - "pages": "Páginas", - "intake": "Admissão", - "time_tracking": "Rastreamento de tempo", - "work_management": "Gerenciamento de trabalho", - "projects_and_issues": "Projetos e itens de trabalho", - "projects_and_issues_description": "Ative ou desative estes neste projeto.", - "cycles_description": "Defina o tempo de trabalho por projeto e ajuste o período conforme necessário. Um ciclo pode durar 2 semanas, o próximo 1 semana.", - "modules_description": "Organize o trabalho em subprojetos com líderes e responsáveis dedicados.", - "views_description": "Salve classificações, filtros e opções de exibição personalizadas ou compartilhe com sua equipe.", - "pages_description": "Crie e edite conteúdo livre – anotações, documentos, qualquer coisa.", - "intake_description": "Permita que não membros compartilhem bugs, feedbacks e sugestões sem interromper seu fluxo de trabalho.", - "time_tracking_description": "Registre o tempo gasto em itens de trabalho e projetos.", - "work_management_description": "Gerencie seu trabalho e projetos com facilidade.", - "documentation": "Documentação", - "message_support": "Suporte por mensagem", - "contact_sales": "Contatar vendas", - "hyper_mode": "Modo Hyper", - "keyboard_shortcuts": "Atalhos do teclado", - "whats_new": "O que há de novo?", - "version": "Versão", - "we_are_having_trouble_fetching_the_updates": "Estamos tendo problemas para buscar as atualizações.", - "our_changelogs": "nossos changelogs", - "for_the_latest_updates": "para as últimas atualizações.", - "please_visit": "Por favor, visite", - "docs": "Documentos", - "full_changelog": "Changelog completo", - "support": "Suporte", - "discord": "Discord", - "powered_by_plane_pages": "Desenvolvido por Plane Pages", - "please_select_at_least_one_invitation": "Selecione pelo menos um convite.", - "please_select_at_least_one_invitation_description": "Selecione pelo menos um convite para entrar no espaço de trabalho.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Vemos que alguém convidou você para entrar em um espaço de trabalho", - "join_a_workspace": "Entrar em um espaço de trabalho", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Vemos que alguém convidou você para entrar em um espaço de trabalho", - "join_a_workspace_description": "Entrar em um espaço de trabalho", - "accept_and_join": "Aceitar e entrar", - "go_home": "Ir para a página inicial", - "no_pending_invites": "Nenhum convite pendente", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Você pode ver aqui se alguém convida você para um espaço de trabalho", - "back_to_home": "Voltar para a página inicial", - "workspace_name": "nome-do-espaço-de-trabalho", - "deactivate_your_account": "Desativar sua conta", - "deactivate_your_account_description": "Uma vez desativada, você não poderá ser atribuído a itens de trabalho e ser cobrado pelo seu espaço de trabalho. Para reativar sua conta, você precisará de um convite para um espaço de trabalho neste endereço de e-mail.", - "deactivating": "Desativando", - "confirm": "Confirmar", - "confirming": "Confirmando", - "draft_created": "Rascunho criado", - "issue_created_successfully": "Item de trabalho criado com sucesso", - "draft_creation_failed": "Falha na criação do rascunho", - "issue_creation_failed": "Falha na criação do item de trabalho", - "draft_issue": "Rascunhar item de trabalho", - "issue_updated_successfully": "Item de trabalho atualizado com sucesso", - "issue_could_not_be_updated": "Não foi possível atualizar o item de trabalho", - "create_a_draft": "Criar um rascunho", - "save_to_drafts": "Salvar em rascunhos", - "save": "Salvar", - "update": "Atualizar", - "updating": "Atualizando", - "create_new_issue": "Criar novo item de trabalho", - "editor_is_not_ready_to_discard_changes": "O editor não está pronto para descartar as alterações", - "failed_to_move_issue_to_project": "Falha ao mover o item de trabalho para o projeto", - "create_more": "Criar mais", - "add_to_project": "Adicionar ao projeto", - "discard": "Descartar", - "duplicate_issue_found": "Item de trabalho duplicado encontrado", - "duplicate_issues_found": "Itens de trabalho duplicados encontrados", - "no_matching_results": "Nenhum resultado correspondente", - "title_is_required": "O título é obrigatório", - "title": "Título", - "state": "Estado", - "priority": "Prioridade", - "none": "Nenhum", - "urgent": "Urgente", - "high": "Alta", - "medium": "Média", - "low": "Baixa", - "members": "Membros", - "assignee": "Responsável", - "assignees": "Responsáveis", - "you": "Você", - "labels": "Etiquetas", - "create_new_label": "Criar nova etiqueta", - "start_date": "Data de início", - "end_date": "Data de término", - "due_date": "Data de vencimento", - "estimate": "Estimativa", - "change_parent_issue": "Alterar item de trabalho pai", - "remove_parent_issue": "Remover item de trabalho pai", - "add_parent": "Adicionar pai", - "loading_members": "Carregando membros", - "view_link_copied_to_clipboard": "Link de visualização copiado para a área de transferência.", - "required": "Obrigatório", - "optional": "Opcional", - "Cancel": "Cancelar", - "edit": "Editar", - "archive": "Arquivar", - "restore": "Restaurar", - "open_in_new_tab": "Abrir em nova aba", - "delete": "Excluir", - "deleting": "Excluindo", - "make_a_copy": "Fazer uma cópia", - "move_to_project": "Mover para o projeto", - "good": "Bom", - "morning": "manhã", - "afternoon": "tarde", - "evening": "noite", - "show_all": "Mostrar tudo", - "show_less": "Mostrar menos", - "no_data_yet": "Nenhum dado ainda", - "syncing": "Sincronizando", - "add_work_item": "Adicionar item de trabalho", - "advanced_description_placeholder": "Pressione '/' para comandos", - "create_work_item": "Criar item de trabalho", - "attachments": "Anexos", - "declining": "Recusando", - "declined": "Recusado", - "decline": "Recusar", - "unassigned": "Não atribuído", - "work_items": "Itens de trabalho", - "add_link": "Adicionar link", - "points": "Pontos", - "no_assignee": "Sem responsável", - "no_assignees_yet": "Nenhum responsável ainda", - "no_labels_yet": "Nenhuma etiqueta ainda", - "ideal": "Ideal", - "current": "Atual", - "no_matching_members": "Nenhum membro correspondente", - "leaving": "Saindo", - "removing": "Removendo", - "leave": "Sair", - "refresh": "Atualizar", - "refreshing": "Atualizando", - "refresh_status": "Status da atualização", - "prev": "Anterior", - "next": "Próximo", - "re_generating": "Regerando", - "re_generate": "Regerar", - "re_generate_key": "Regerar chave", - "export": "Exportar", - "member": "{count, plural, one{# membro} other{# membros}}", - "new_password_must_be_different_from_old_password": "Nova senha deve ser diferente da senha antiga", - "edited": "editado", - "bot": "robô", - "project_view": { - "sort_by": { - "created_at": "Criado em", - "updated_at": "Atualizado em", - "name": "Nome" - } - }, - "toast": { - "success": "Sucesso!", - "error": "Erro!" - }, - "links": { - "toasts": { - "created": { - "title": "Link criado", - "message": "O link foi criado com sucesso" - }, - "not_created": { - "title": "Link não criado", - "message": "O link não pôde ser criado" - }, - "updated": { - "title": "Link atualizado", - "message": "O link foi atualizado com sucesso" - }, - "not_updated": { - "title": "Link não atualizado", - "message": "O link não pôde ser atualizado" - }, - "removed": { - "title": "Link removido", - "message": "O link foi removido com sucesso" - }, - "not_removed": { - "title": "Link não removido", - "message": "O link não pôde ser removido" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Seu guia de início rápido", - "not_right_now": "Agora não", - "create_project": { - "title": "Criar um projeto", - "description": "A maioria das coisas começa com um projeto no Plane.", - "cta": "Começar" - }, - "invite_team": { - "title": "Convide sua equipe", - "description": "Construa, entregue e gerencie com colegas de trabalho.", - "cta": "Convidar" - }, - "configure_workspace": { - "title": "Configure seu espaço de trabalho.", - "description": "Ative ou desative recursos ou vá além disso.", - "cta": "Configurar este espaço de trabalho" - }, - "personalize_account": { - "title": "Personalize o Plane.", - "description": "Escolha sua foto, cores e muito mais.", - "cta": "Personalizar agora" - }, - "widgets": { - "title": "Está quieto sem widgets, ative-os", - "description": "Parece que todos os seus widgets estão desativados. Ative-os\nagora para melhorar sua experiência!", - "primary_button": { - "text": "Gerenciar widgets" - } - } - }, - "quick_links": { - "empty": "Salve links para os itens de trabalho que você gostaria de ter à mão.", - "add": "Adicionar link rápido", - "title": "Link rápido", - "title_plural": "Links rápidos" - }, - "recents": { - "title": "Recentes", - "empty": { - "project": "Seus projetos recentes aparecerão aqui quando você visitar um.", - "page": "Suas páginas recentes aparecerão aqui quando você visitar uma.", - "issue": "Seus itens de trabalho recentes aparecerão aqui quando você visitar um.", - "default": "Você não tem nenhum item recente ainda." - }, - "filters": { - "all": "Todos", - "projects": "Projetos", - "pages": "Páginas", - "issues": "Itens de trabalho" - } - }, - "new_at_plane": { - "title": "Novidades no Plane" - }, - "quick_tutorial": { - "title": "Tutorial rápido" - }, - "widget": { - "reordered_successfully": "Widget reordenado com sucesso.", - "reordering_failed": "Ocorreu um erro ao reordenar o widget." - }, - "manage_widgets": "Gerenciar widgets", - "title": "Página inicial", - "star_us_on_github": "Nos dê uma estrela no GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL inválido", - "placeholder": "Digite ou cole um URL" - }, - "title": { - "text": "Título de exibição", - "placeholder": "Como você gostaria de ver este link" - } - } - }, - "common": { - "all": "Todos", - "states": "Estados", - "state": "Estado", - "state_groups": "Grupos de estado", - "state_group": "Grupo de estado", - "priorities": "Prioridades", - "priority": "Prioridade", - "team_project": "Projeto de equipe", - "project": "Projeto", - "cycle": "Ciclo", - "cycles": "Ciclos", - "module": "Módulo", - "modules": "Módulos", - "labels": "Etiquetas", - "label": "Etiqueta", - "assignees": "Responsáveis", - "assignee": "Responsável", - "created_by": "Criado por", - "none": "Nenhum", - "link": "Link", - "estimates": "Estimativas", - "estimate": "Estimativa", - "created_at": "Criado em", - "completed_at": "Concluído em", - "layout": "Layout", - "filters": "Filtros", - "display": "Exibir", - "load_more": "Carregar mais", - "activity": "Atividade", - "analytics": "Análises", - "dates": "Datas", - "success": "Sucesso!", - "something_went_wrong": "Algo deu errado", - "error": { - "label": "Erro!", - "message": "Ocorreu algum erro. Por favor, tente novamente." - }, - "group_by": "Agrupar por", - "epic": "Épico", - "epics": "Épicos", - "work_item": "Item de trabalho", - "work_items": "Itens de trabalho", - "sub_work_item": "Sub-item de trabalho", - "add": "Adicionar", - "warning": "Aviso", - "updating": "Atualizando", - "adding": "Adicionando", - "update": "Atualizar", - "creating": "Criando", - "create": "Criar", - "cancel": "Cancelar", - "description": "Descrição", - "title": "Título", - "attachment": "Anexo", - "general": "Geral", - "features": "Funcionalidades", - "automation": "Automação", - "project_name": "Nome do projeto", - "project_id": "ID do projeto", - "project_timezone": "Fuso horário do projeto", - "created_on": "Criado em", - "update_project": "Atualizar projeto", - "identifier_already_exists": "O identificador já existe", - "add_more": "Adicionar mais", - "defaults": "Padrões", - "add_label": "Adicionar etiqueta", - "customize_time_range": "Personalizar intervalo de tempo", - "loading": "Carregando", - "attachments": "Anexos", - "property": "Propriedade", - "properties": "Propriedades", - "parent": "Pai", - "page": "Página", - "remove": "Remover", - "archiving": "Arquivando", - "archive": "Arquivar", - "access": { - "public": "Público", - "private": "Privado" - }, - "done": "Concluído", - "sub_work_items": "Sub-itens de trabalho", - "comment": "Comentário", - "workspace_level": "Nível do espaço de trabalho", - "order_by": { - "label": "Ordenar por", - "manual": "Manual", - "last_created": "Último criado", - "last_updated": "Último atualizado", - "start_date": "Data de início", - "due_date": "Data de vencimento", - "asc": "Ascendente", - "desc": "Descendente", - "updated_on": "Atualizado em" - }, - "sort": { - "asc": "Ascendente", - "desc": "Descendente", - "created_on": "Criado em", - "updated_on": "Atualizado em" - }, - "comments": "Comentários", - "updates": "Atualizações", - "clear_all": "Limpar tudo", - "copied": "Copiado!", - "link_copied": "Link copiado!", - "link_copied_to_clipboard": "Link copiado para a área de transferência", - "copied_to_clipboard": "Link do item de trabalho copiado para a área de transferência", - "is_copied_to_clipboard": "O link do item de trabalho foi copiado para a área de transferência", - "no_links_added_yet": "Nenhum link adicionado ainda", - "add_link": "Adicionar link", - "links": "Links", - "go_to_workspace": "Ir para o espaço de trabalho", - "progress": "Progresso", - "optional": "Opcional", - "join": "Participar", - "go_back": "Voltar", - "continue": "Continuar", - "resend": "Reenviar", - "relations": "Relações", - "errors": { - "default": { - "title": "Erro!", - "message": "Algo deu errado. Por favor, tente novamente." - }, - "required": "Este campo é obrigatório", - "entity_required": "{entity} é obrigatório", - "restricted_entity": "{entity} está restrito" - }, - "update_link": "Atualizar link", - "attach": "Anexar", - "create_new": "Criar novo", - "add_existing": "Adicionar existente", - "type_or_paste_a_url": "Digite ou cole uma URL", - "url_is_invalid": "URL inválida", - "display_title": "Título de exibição", - "link_title_placeholder": "Como você gostaria de ver este link", - "url": "URL", - "side_peek": "Visualização lateral", - "modal": "Modal", - "full_screen": "Tela cheia", - "close_peek_view": "Fechar a visualização", - "toggle_peek_view_layout": "Alternar layout de visualização rápida", - "options": "Opções", - "duration": "Duração", - "today": "Hoje", - "week": "Semana", - "month": "Mês", - "quarter": "Trimestre", - "press_for_commands": "Pressione '/' para comandos", - "click_to_add_description": "Clique para adicionar descrição", - "search": { - "label": "Buscar", - "placeholder": "Digite para buscar", - "no_matches_found": "Nenhum resultado encontrado", - "no_matching_results": "Nenhum resultado correspondente" - }, - "actions": { - "edit": "Editar", - "make_a_copy": "Fazer uma cópia", - "open_in_new_tab": "Abrir em nova aba", - "copy_link": "Copiar link", - "archive": "Arquivar", - "restore": "Restaurar", - "delete": "Excluir", - "remove_relation": "Remover relação", - "subscribe": "Inscrever-se", - "unsubscribe": "Cancelar inscrição", - "clear_sorting": "Limpar ordenação", - "show_weekends": "Mostrar fins de semana", - "enable": "Habilitar", - "disable": "Desabilitar" - }, - "name": "Nome", - "discard": "Descartar", - "confirm": "Confirmar", - "confirming": "Confirmando", - "read_the_docs": "Ler a documentação", - "default": "Padrão", - "active": "Ativo", - "enabled": "Habilitado", - "disabled": "Desabilitado", - "mandate": "Mandato", - "mandatory": "Obrigatório", - "yes": "Sim", - "no": "Não", - "please_wait": "Por favor, aguarde", - "enabling": "Habilitando", - "disabling": "Desabilitando", - "beta": "Beta", - "or": "ou", - "next": "Próximo", - "back": "Voltar", - "cancelling": "Cancelando", - "configuring": "Configurando", - "clear": "Limpar", - "import": "Importar", - "connect": "Conectar", - "authorizing": "Autorizando", - "processing": "Processando", - "no_data_available": "Nenhum dado disponível", - "from": "de {name}", - "authenticated": "Autenticado", - "select": "Selecionar", - "upgrade": "Upgrade", - "add_seats": "Adicionar lugares", - "projects": "Projetos", - "workspace": "Espaço de trabalho", - "workspaces": "Espaços de trabalho", - "team": "Equipe", - "teams": "Equipes", - "entity": "Entidade", - "entities": "Entidades", - "task": "Tarefa", - "tasks": "Tarefas", - "section": "Seção", - "sections": "Seções", - "edit": "Editar", - "connecting": "Conectando", - "connected": "Conectado", - "disconnect": "Desconectar", - "disconnecting": "Desconectando", - "installing": "Instalando", - "install": "Instalar", - "reset": "Redefinir", - "live": "Ao vivo", - "change_history": "Histórico de alterações", - "coming_soon": "Em breve", - "member": "Membro", - "members": "Membros", - "you": "Você", - "upgrade_cta": { - "higher_subscription": "Faça upgrade para uma assinatura superior", - "talk_to_sales": "Fale com o departamento de vendas" - }, - "category": "Categoria", - "categories": "Categorias", - "saving": "Salvando", - "save_changes": "Salvar alterações", - "delete": "Excluir", - "deleting": "Excluindo", - "pending": "Pendente", - "invite": "Convidar", - "view": "Visualizar", - "deactivated_user": "Usuário desativado", - "apply": "Aplicar", - "applying": "Aplicando", - "users": "Usuários", - "admins": "Administradores", - "guests": "Convidados", - "on_track": "No caminho certo", - "off_track": "Fora do caminho", - "at_risk": "Em risco", - "timeline": "Linha do tempo", - "completion": "Conclusão", - "upcoming": "Próximo", - "completed": "Concluído", - "in_progress": "Em andamento", - "planned": "Planejado", - "paused": "Pausado", - "no_of": "Nº de {entity}", - "resolved": "Resolvido" - }, - "chart": { - "x_axis": "Eixo X", - "y_axis": "Eixo Y", - "metric": "Métrica" - }, - "form": { - "title": { - "required": "Título é obrigatório", - "max_length": "O título deve ter menos de {length} caracteres" - } - }, - "entity": { - "grouping_title": "Agrupamento de {entity}", - "priority": "Prioridade de {entity}", - "all": "Todos os {entity}", - "drop_here_to_move": "Solte aqui para mover o {entity}", - "delete": { - "label": "Excluir {entity}", - "success": "{entity} excluído com sucesso", - "failed": "Falha ao excluir {entity}" - }, - "update": { - "failed": "Falha ao atualizar {entity}", - "success": "{entity} atualizado com sucesso" - }, - "link_copied_to_clipboard": "Link de {entity} copiado para a área de transferência", - "fetch": { - "failed": "Erro ao buscar {entity}" - }, - "add": { - "success": "{entity} adicionado com sucesso", - "failed": "Erro ao adicionar {entity}" - }, - "remove": { - "success": "{entity} removido com sucesso", - "failed": "Erro ao remover {entity}" - } - }, - "epic": { - "all": "Todos os Épicos", - "label": "{count, plural, one {Épico} other {Épicos}}", - "new": "Novo Épico", - "adding": "Adicionando épico", - "create": { - "success": "Épico criado com sucesso" - }, - "add": { - "press_enter": "Pressione 'Enter' para adicionar outro épico", - "label": "Adicionar Épico" - }, - "title": { - "label": "Título do Épico", - "required": "O título do épico é obrigatório." - } - }, - "issue": { - "label": "{count, plural, one {Item de trabalho} other {Itens de trabalho}}", - "all": "Todos os Itens de trabalho", - "edit": "Editar item de trabalho", - "title": { - "label": "Título do item de trabalho", - "required": "O título do item de trabalho é obrigatório." - }, - "add": { - "press_enter": "Pressione 'Enter' para adicionar outro item de trabalho", - "label": "Adicionar item de trabalho", - "cycle": { - "failed": "Não foi possível adicionar o item de trabalho ao ciclo. Por favor, tente novamente.", - "success": "{count, plural, one {Item de trabalho} other {Itens de trabalho}} adicionado(s) ao ciclo com sucesso.", - "loading": "Adicionando {count, plural, one {item de trabalho} other {itens de trabalho}} ao ciclo" - }, - "assignee": "Adicionar responsáveis", - "start_date": "Adicionar data de início", - "due_date": "Adicionar data de vencimento", - "parent": "Adicionar item de trabalho pai", - "sub_issue": "Adicionar sub-item de trabalho", - "relation": "Adicionar relação", - "link": "Adicionar link", - "existing": "Adicionar item de trabalho existente" - }, - "remove": { - "label": "Remover item de trabalho", - "cycle": { - "loading": "Removendo item de trabalho do ciclo", - "success": "Item de trabalho removido do ciclo com sucesso.", - "failed": "Não foi possível remover o item de trabalho do ciclo. Por favor, tente novamente." - }, - "module": { - "loading": "Removendo item de trabalho do módulo", - "success": "Item de trabalho removido do módulo com sucesso.", - "failed": "Não foi possível remover o item de trabalho do módulo. Por favor, tente novamente." - }, - "parent": { - "label": "Remover item de trabalho pai" - } - }, - "new": "Novo Item de trabalho", - "adding": "Adicionando item de trabalho", - "create": { - "success": "Item de trabalho criado com sucesso" - }, - "priority": { - "urgent": "Urgente", - "high": "Alta", - "medium": "Média", - "low": "Baixa" - }, - "display": { - "properties": { - "label": "Exibir Propriedades", - "id": "ID", - "issue_type": "Tipo de Item de Trabalho", - "sub_issue_count": "Contagem de sub-itens de trabalho", - "attachment_count": "Contagem de anexos", - "created_on": "Criado em", - "sub_issue": "Sub-item de trabalho", - "work_item_count": "Contagem de itens de trabalho" - }, - "extra": { - "show_sub_issues": "Mostrar sub-itens de trabalho", - "show_empty_groups": "Mostrar grupos vazios" - } - }, - "layouts": { - "ordered_by_label": "Este layout é ordenado por", - "list": "Lista", - "kanban": "Quadro", - "calendar": "Calendário", - "spreadsheet": "Tabela", - "gantt": "Cronograma", - "title": { - "list": "Layout de Lista", - "kanban": "Layout de Quadro", - "calendar": "Layout de Calendário", - "spreadsheet": "Layout de Tabela", - "gantt": "Layout de Cronograma" - } - }, - "states": { - "active": "Ativo", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Adicionar comentário", - "switch": { - "private": "Alternar para comentário privado", - "public": "Alternar para comentário público" - }, - "create": { - "success": "Comentário criado com sucesso", - "error": "Falha ao criar o comentário. Por favor, tente novamente mais tarde." - }, - "update": { - "success": "Comentário atualizado com sucesso", - "error": "Falha ao atualizar o comentário. Por favor, tente novamente mais tarde." - }, - "remove": { - "success": "Comentário removido com sucesso", - "error": "Falha ao remover o comentário. Por favor, tente novamente mais tarde." - }, - "upload": { - "error": "Falha ao carregar o recurso. Por favor, tente novamente mais tarde." - }, - "copy_link": { - "success": "Link do comentário copiado para a área de transferência", - "error": "Erro ao copiar o link do comentário. Tente novamente mais tarde." - } - }, - "empty_state": { - "issue_detail": { - "title": "O item de trabalho não existe", - "description": "O item de trabalho que você está procurando não existe, foi arquivado ou foi excluído.", - "primary_button": { - "text": "Visualizar outros itens de trabalho" - } - } - }, - "sibling": { - "label": "Itens de trabalho irmãos" - }, - "archive": { - "description": "Apenas itens de trabalho concluídos ou cancelados\npodem ser arquivados", - "label": "Arquivar Item de Trabalho", - "confirm_message": "Tem certeza de que deseja arquivar o item de trabalho? Todos os seus itens de trabalho arquivados podem ser restaurados posteriormente.", - "success": { - "label": "Sucesso ao arquivar", - "message": "Seus arquivos podem ser encontrados nos arquivos do projeto." - }, - "failed": { - "message": "Não foi possível arquivar o item de trabalho. Por favor, tente novamente." - } - }, - "restore": { - "success": { - "title": "Sucesso ao restaurar", - "message": "Seu item de trabalho pode ser encontrado nos itens de trabalho do projeto." - }, - "failed": { - "message": "Não foi possível restaurar o item de trabalho. Por favor, tente novamente." - } - }, - "relation": { - "relates_to": "Relacionado a", - "duplicate": "Duplicado de", - "blocked_by": "Bloqueado por", - "blocking": "Bloqueando" - }, - "copy_link": "Copiar link do item de trabalho", - "delete": { - "label": "Excluir item de trabalho", - "error": "Erro ao excluir item de trabalho" - }, - "subscription": { - "actions": { - "subscribed": "Item de trabalho inscrito com sucesso", - "unsubscribed": "Item de trabalho não inscrito com sucesso" - } - }, - "select": { - "error": "Selecione pelo menos um item de trabalho", - "empty": "Nenhum item de trabalho selecionado", - "add_selected": "Adicionar itens de trabalho selecionados", - "select_all": "Selecionar tudo", - "deselect_all": "Desmarcar tudo" - }, - "open_in_full_screen": "Abrir item de trabalho em tela cheia" - }, - "attachment": { - "error": "Não foi possível anexar o arquivo. Tente enviar novamente.", - "only_one_file_allowed": "Apenas um arquivo pode ser enviado por vez.", - "file_size_limit": "O arquivo deve ter {size}MB ou menos.", - "drag_and_drop": "Arraste e solte em qualquer lugar para enviar", - "delete": "Excluir anexo" - }, - "label": { - "select": "Selecionar etiqueta", - "create": { - "success": "Etiqueta criada com sucesso", - "failed": "Falha ao criar etiqueta", - "already_exists": "Etiqueta já existe", - "type": "Digite para adicionar uma nova etiqueta" - } - }, - "sub_work_item": { - "update": { - "success": "Sub-item de trabalho atualizado com sucesso", - "error": "Erro ao atualizar sub-item de trabalho" - }, - "remove": { - "success": "Sub-item de trabalho removido com sucesso", - "error": "Erro ao remover sub-item de trabalho" - }, - "empty_state": { - "sub_list_filters": { - "title": "Você não tem sub-itens de trabalho que correspondem aos filtros que você aplicou.", - "description": "Para ver todos os sub-itens de trabalho, limpe todos os filtros aplicados.", - "action": "Limpar filtros" - }, - "list_filters": { - "title": "Você não tem itens de trabalho que correspondem aos filtros que você aplicou.", - "description": "Para ver todos os itens de trabalho, limpe todos os filtros aplicados.", - "action": "Limpar filtros" - } - } - }, - "view": { - "label": "{count, plural, one {Visualização} other {Visualizações}}", - "create": { - "label": "Criar Visualização" - }, - "update": { - "label": "Atualizar Visualização" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Pendente", - "description": "Pendente" - }, - "declined": { - "title": "Recusado", - "description": "Recusado" - }, - "snoozed": { - "title": "Adiado", - "description": "{days, plural, one{Falta # dia} other{Faltam # dias}}" - }, - "accepted": { - "title": "Aceito", - "description": "Aceito" - }, - "duplicate": { - "title": "Duplicado", - "description": "Duplicado" - } - }, - "modals": { - "decline": { - "title": "Recusar item de trabalho", - "content": "Tem certeza de que deseja recusar o item de trabalho {value}?" - }, - "delete": { - "title": "Excluir item de trabalho", - "content": "Tem certeza de que deseja excluir o item de trabalho {value}?", - "success": "Item de trabalho excluído com sucesso" - } - }, - "errors": { - "snooze_permission": "Apenas administradores do projeto podem adiar/reativar itens de trabalho", - "accept_permission": "Apenas administradores do projeto podem aceitar itens de trabalho", - "decline_permission": "Apenas administradores do projeto podem recusar itens de trabalho" - }, - "actions": { - "accept": "Aceitar", - "decline": "Recusar", - "snooze": "Adiar", - "unsnooze": "Reativar", - "copy": "Copiar link do item de trabalho", - "delete": "Excluir", - "open": "Abrir item de trabalho", - "mark_as_duplicate": "Marcar como duplicado", - "move": "Mover {value} para os itens de trabalho do projeto" - }, - "source": { - "in-app": "no aplicativo" - }, - "order_by": { - "created_at": "Criado em", - "updated_at": "Atualizado em", - "id": "ID" - }, - "label": "Admissão", - "page_label": "{workspace} - Admissão", - "modal": { - "title": "Criar item de trabalho de admissão" - }, - "tabs": { - "open": "Aberto", - "closed": "Fechado" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Nenhum item de trabalho aberto", - "description": "Encontre itens de trabalho abertos aqui. Crie um novo item de trabalho." - }, - "sidebar_closed_tab": { - "title": "Nenhum item de trabalho fechado", - "description": "Todos os itens de trabalho, sejam aceitos ou recusados, podem ser encontrados aqui." - }, - "sidebar_filter": { - "title": "Nenhum item de trabalho correspondente", - "description": "Nenhum item de trabalho corresponde ao filtro aplicado na admissão. Crie um novo item de trabalho." - }, - "detail": { - "title": "Selecione um item de trabalho para visualizar seus detalhes." - } - } - }, - "workspace_creation": { - "heading": "Crie seu espaço de trabalho", - "subheading": "Para começar a usar o Plane, você precisa criar ou entrar em um espaço de trabalho.", - "form": { - "name": { - "label": "Nomeie seu espaço de trabalho", - "placeholder": "Algo familiar e reconhecível é sempre melhor." - }, - "url": { - "label": "Defina o URL do seu espaço de trabalho", - "placeholder": "Digite ou cole um URL", - "edit_slug": "Você só pode editar o slug do URL" - }, - "organization_size": { - "label": "Quantas pessoas usarão este espaço de trabalho?", - "placeholder": "Selecione um intervalo" - } - }, - "errors": { - "creation_disabled": { - "title": "Apenas o administrador da sua instância pode criar espaços de trabalho", - "description": "Se você souber o endereço de e-mail do administrador da sua instância, clique no botão abaixo para entrar em contato com ele.", - "request_button": "Solicitar administrador da instância" - }, - "validation": { - "name_alphanumeric": "Os nomes dos espaços de trabalho podem conter apenas (' '), ('-'), ('_') e caracteres alfanuméricos.", - "name_length": "Limite seu nome a 80 caracteres.", - "url_alphanumeric": "Os URLs podem conter apenas ('-') e caracteres alfanuméricos.", - "url_length": "Limite seu URL a 48 caracteres.", - "url_already_taken": "O URL do espaço de trabalho já está em uso!" - } - }, - "request_email": { - "subject": "Solicitando um novo espaço de trabalho", - "body": "Olá, administrador(es) da instância,\n\nPor favor, crie um novo espaço de trabalho com o URL [/nome-do-espaço-de-trabalho] para [finalidade de criar o espaço de trabalho].\n\nObrigado,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Criar espaço de trabalho", - "loading": "Criando espaço de trabalho" - }, - "toast": { - "success": { - "title": "Sucesso", - "message": "Espaço de trabalho criado com sucesso" - }, - "error": { - "title": "Erro", - "message": "Não foi possível criar o espaço de trabalho. Por favor, tente novamente." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Visão geral dos seus projetos, atividades e métricas", - "description": "Bem-vindo ao Plane, estamos animados por tê-lo aqui. Crie seu primeiro projeto e rastreie seus itens de trabalho, e esta página se transformará em um espaço que ajuda você a progredir. Os administradores também verão itens que ajudam sua equipe a progredir.", - "primary_button": { - "text": "Construa seu primeiro projeto", - "comic": { - "title": "Tudo começa com um projeto no Plane", - "description": "Um projeto pode ser o planejamento de um produto, uma campanha de marketing ou o lançamento de um novo carro." - } - } - } - } - }, - "workspace_analytics": { - "label": "Análises", - "page_label": "{workspace} - Análises", - "open_tasks": "Total de tarefas abertas", - "error": "Ocorreu algum erro ao buscar os dados.", - "work_items_closed_in": "Itens de trabalho fechados em", - "selected_projects": "Projetos selecionados", - "total_members": "Total de membros", - "total_cycles": "Total de ciclos", - "total_modules": "Total de módulos", - "pending_work_items": { - "title": "Itens de trabalho pendentes", - "empty_state": "A análise de itens de trabalho pendentes por colegas de trabalho aparece aqui." - }, - "work_items_closed_in_a_year": { - "title": "Itens de trabalho fechados em um ano", - "empty_state": "Feche os itens de trabalho para visualizar a análise dos mesmos na forma de um gráfico." - }, - "most_work_items_created": { - "title": "Itens de trabalho mais criados", - "empty_state": "Colegas de trabalho e o número de itens de trabalho criados por eles aparecem aqui." - }, - "most_work_items_closed": { - "title": "Itens de trabalho mais fechados", - "empty_state": "Colegas de trabalho e o número de itens de trabalho fechados por eles aparecem aqui." - }, - "tabs": { - "scope_and_demand": "Escopo e Demanda", - "custom": "Análises Personalizadas" - }, - "empty_state": { - "customized_insights": { - "description": "Os itens de trabalho atribuídos a você, divididos por estado, aparecerão aqui.", - "title": "Ainda não há dados" - }, - "created_vs_resolved": { - "description": "Os itens de trabalho criados e resolvidos ao longo do tempo aparecerão aqui.", - "title": "Ainda não há dados" - }, - "project_insights": { - "title": "Ainda não há dados", - "description": "Os itens de trabalho atribuídos a você, divididos por estado, aparecerão aqui." - }, - "general": { - "title": "Acompanhe progresso, cargas de trabalho e alocações. Identifique tendências, remova bloqueios e trabalhe mais rápido", - "description": "Veja escopo versus demanda, estimativas e expansão de escopo. Obtenha desempenho por membros da equipe e equipes, garantindo que seu projeto seja executado no prazo.", - "primary_button": { - "text": "Comece seu primeiro projeto", - "comic": { - "title": "Analytics funciona melhor com Ciclos + Módulos", - "description": "Primeiro, defina um tempo limite para seus itens de trabalho em Ciclos e, se possível, agrupe itens que abrangem mais de um ciclo em Módulos. Confira ambos na navegação esquerda." - } - } - } - }, - "created_vs_resolved": "Criado vs Resolvido", - "customized_insights": "Insights personalizados", - "backlog_work_items": "{entity} no backlog", - "active_projects": "Projetos ativos", - "trend_on_charts": "Tendência nos gráficos", - "all_projects": "Todos os projetos", - "summary_of_projects": "Resumo dos projetos", - "project_insights": "Insights do projeto", - "started_work_items": "{entity} iniciados", - "total_work_items": "Total de {entity}", - "total_projects": "Total de projetos", - "total_admins": "Total de administradores", - "total_users": "Total de usuários", - "total_intake": "Receita total", - "un_started_work_items": "{entity} não iniciados", - "total_guests": "Total de convidados", - "completed_work_items": "{entity} concluídos", - "total": "Total de {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Projeto} other {Projetos}}", - "create": { - "label": "Adicionar Projeto" - }, - "network": { - "label": "Rede", - "private": { - "title": "Privado", - "description": "Acessível apenas por convite" - }, - "public": { - "title": "Público", - "description": "Qualquer pessoa no espaço de trabalho, exceto convidados, pode participar" - } - }, - "error": { - "permission": "Você não tem permissão para realizar esta ação.", - "cycle_delete": "Falha ao excluir o ciclo", - "module_delete": "Falha ao excluir o módulo", - "issue_delete": "Falha ao excluir o item de trabalho" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Não iniciado", - "started": "Iniciado", - "completed": "Concluído", - "cancelled": "Cancelado" - }, - "sort": { - "manual": "Manual", - "name": "Nome", - "created_at": "Data de criação", - "members_length": "Número de membros" - }, - "scope": { - "my_projects": "Meus projetos", - "archived_projects": "Arquivados" - }, - "common": { - "months_count": "{months, plural, one{# mês} other{# meses}}" - }, - "empty_state": { - "general": { - "title": "Nenhum projeto ativo", - "description": "Pense em cada projeto como o pai do trabalho orientado a objetivos. Os projetos são onde os Trabalhos, Ciclos e Módulos vivem e, junto com seus colegas, ajudam você a atingir esse objetivo. Crie um novo projeto ou filtre os projetos arquivados.", - "primary_button": { - "text": "Comece seu primeiro projeto", - "comic": { - "title": "Tudo começa com um projeto no Plane", - "description": "Um projeto pode ser o roteiro de um produto, uma campanha de marketing ou o lançamento de um novo carro." - } - } - }, - "no_projects": { - "title": "Nenhum projeto", - "description": "Para criar itens de trabalho ou gerenciar seu trabalho, você precisa criar um projeto ou fazer parte de um.", - "primary_button": { - "text": "Comece seu primeiro projeto", - "comic": { - "title": "Tudo começa com um projeto no Plane", - "description": "Um projeto pode ser o roteiro de um produto, uma campanha de marketing ou o lançamento de um novo carro." - } - } - }, - "filter": { - "title": "Nenhum projeto correspondente", - "description": "Nenhum projeto detectado com os critérios correspondentes. \n Crie um novo projeto em vez disso." - }, - "search": { - "description": "Nenhum projeto detectado com os critérios correspondentes.\nCrie um novo projeto em vez disso" - } - } - }, - "workspace_views": { - "add_view": "Adicionar visualização", - "empty_state": { - "all-issues": { - "title": "Nenhum item de trabalho no projeto", - "description": "Primeiro projeto concluído! Agora, divida seu trabalho em partes rastreáveis com itens de trabalho. Vamos lá!", - "primary_button": { - "text": "Criar novo item de trabalho" - } - }, - "assigned": { - "title": "Nenhum item de trabalho ainda", - "description": "Os itens de trabalho atribuídos a você podem ser rastreados aqui.", - "primary_button": { - "text": "Criar novo item de trabalho" - } - }, - "created": { - "title": "Nenhum item de trabalho ainda", - "description": "Todos os itens de trabalho criados por você vêm aqui, rastreie-os aqui diretamente.", - "primary_button": { - "text": "Criar novo item de trabalho" - } - }, - "subscribed": { - "title": "Nenhum item de trabalho ainda", - "description": "Inscreva-se nos itens de trabalho nos quais você está interessado, rastreie todos eles aqui." - }, - "custom-view": { - "title": "Nenhum item de trabalho ainda", - "description": "Itens de trabalho que se aplicam aos filtros, rastreie todos eles aqui." - } - } - }, - "workspace_settings": { - "label": "Configurações do espaço de trabalho", - "page_label": "{workspace} - Configurações gerais", - "key_created": "Chave criada", - "copy_key": "Copie e salve esta chave secreta no Páginas do Plane. Você não pode ver esta chave depois de clicar em Fechar. Um arquivo CSV contendo a chave foi baixado.", - "token_copied": "Token copiado para a área de transferência.", - "settings": { - "general": { - "title": "Geral", - "upload_logo": "Carregar logo", - "edit_logo": "Editar logo", - "name": "Nome do espaço de trabalho", - "company_size": "Tamanho da empresa", - "url": "URL do espaço de trabalho", - "update_workspace": "Atualizar espaço de trabalho", - "delete_workspace": "Excluir este espaço de trabalho", - "delete_workspace_description": "Ao excluir um espaço de trabalho, todos os dados e recursos dentro desse espaço de trabalho serão permanentemente removidos e não poderão ser recuperados.", - "delete_btn": "Excluir este espaço de trabalho", - "delete_modal": { - "title": "Tem certeza de que deseja excluir este espaço de trabalho?", - "description": "Você tem uma avaliação ativa para um de nossos planos pagos. Cancele-o primeiro para prosseguir.", - "dismiss": "Dispensar", - "cancel": "Cancelar avaliação", - "success_title": "Espaço de trabalho excluído.", - "success_message": "Em breve, você irá para a página do seu perfil.", - "error_title": "Isso não funcionou.", - "error_message": "Tente novamente, por favor." - }, - "errors": { - "name": { - "required": "O nome é obrigatório", - "max_length": "O nome do espaço de trabalho não deve exceder 80 caracteres" - }, - "company_size": { - "required": "O tamanho da empresa é obrigatório", - "select_a_range": "Selecione o tamanho da organização" - } - } - }, - "members": { - "title": "Membros", - "add_member": "Adicionar membro", - "pending_invites": "Convites pendentes", - "invitations_sent_successfully": "Convites enviados com sucesso", - "leave_confirmation": "Tem certeza de que deseja sair do espaço de trabalho? Você não terá mais acesso a este espaço de trabalho. Esta ação não pode ser desfeita.", - "details": { - "full_name": "Nome completo", - "display_name": "Nome de exibição", - "email_address": "Endereço de e-mail", - "account_type": "Tipo de conta", - "authentication": "Autenticação", - "joining_date": "Data de adesão" - }, - "modal": { - "title": "Convidar pessoas para colaborar", - "description": "Convide pessoas para colaborar em seu espaço de trabalho.", - "button": "Enviar convites", - "button_loading": "Enviando convites", - "placeholder": "nome@empresa.com", - "errors": { - "required": "Precisamos de um endereço de e-mail para convidá-los.", - "invalid": "E-mail inválido" - } - } - }, - "billing_and_plans": { - "title": "Faturamento e planos", - "current_plan": "Plano atual", - "free_plan": "Você está usando o plano gratuito atualmente", - "view_plans": "Ver planos" - }, - "exports": { - "title": "Exportações", - "exporting": "Exportando", - "previous_exports": "Exportações anteriores", - "export_separate_files": "Exporte os dados em arquivos separados", - "modal": { - "title": "Exportar para", - "toasts": { - "success": { - "title": "Exportação bem-sucedida", - "message": "Você poderá baixar o(a) {entity} exportado(a) na exportação anterior." - }, - "error": { - "title": "Falha na exportação", - "message": "A exportação não foi bem-sucedida. Tente novamente." - } - } - } - }, - "webhooks": { - "title": "Webhooks", - "add_webhook": "Adicionar webhook", - "modal": { - "title": "Criar webhook", - "details": "Detalhes do webhook", - "payload": "URL do payload", - "question": "Quais eventos você gostaria de acionar este webhook?", - "error": "URL é obrigatório" - }, - "secret_key": { - "title": "Chave secreta", - "message": "Gere um token para fazer login no payload do webhook" - }, - "options": { - "all": "Envie-me tudo", - "individual": "Selecionar eventos individuais" - }, - "toasts": { - "created": { - "title": "Webhook criado", - "message": "O webhook foi criado com sucesso" - }, - "not_created": { - "title": "Webhook não criado", - "message": "O webhook não pôde ser criado" - }, - "updated": { - "title": "Webhook atualizado", - "message": "O webhook foi atualizado com sucesso" - }, - "not_updated": { - "title": "Webhook não atualizado", - "message": "O webhook não pôde ser atualizado" - }, - "removed": { - "title": "Webhook removido", - "message": "O webhook foi removido com sucesso" - }, - "not_removed": { - "title": "Webhook não removido", - "message": "O webhook não pôde ser removido" - }, - "secret_key_copied": { - "message": "Chave secreta copiada para a área de transferência." - }, - "secret_key_not_copied": { - "message": "Ocorreu um erro ao copiar a chave secreta." - } - } - }, - "api_tokens": { - "title": "Tokens de API", - "add_token": "Adicionar token de API", - "create_token": "Criar token", - "never_expires": "Nunca expira", - "generate_token": "Gerar token", - "generating": "Gerando", - "delete": { - "title": "Excluir token de API", - "description": "Qualquer aplicativo que use este token não terá mais acesso aos dados do Plane. Esta ação não pode ser desfeita.", - "success": { - "title": "Sucesso!", - "message": "O token de API foi excluído com sucesso" - }, - "error": { - "title": "Erro!", - "message": "O token de API não pôde ser excluído" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Nenhum token de API criado", - "description": "As APIs do Plane podem ser usadas para integrar seus dados no Plane com qualquer sistema externo. Crie um token para começar." - }, - "webhooks": { - "title": "Nenhum webhook adicionado", - "description": "Crie webhooks para receber atualizações em tempo real e automatizar ações." - }, - "exports": { - "title": "Nenhuma exportação ainda", - "description": "Sempre que você exportar, você também terá uma cópia aqui para referência." - }, - "imports": { - "title": "Nenhuma importação ainda", - "description": "Encontre todas as suas importações anteriores aqui e baixe-as." - } - } - }, - "profile": { - "label": "Perfil", - "page_label": "Seu trabalho", - "work": "Trabalho", - "details": { - "joined_on": "Entrou em", - "time_zone": "Fuso horário" - }, - "stats": { - "workload": "Carga de trabalho", - "overview": "Visão geral", - "created": "Itens de trabalho criados", - "assigned": "Itens de trabalho atribuídos", - "subscribed": "Itens de trabalho inscritos", - "state_distribution": { - "title": "Itens de trabalho por estado", - "empty": "Crie itens de trabalho para visualizá-los por estado no gráfico para uma melhor análise." - }, - "priority_distribution": { - "title": "Itens de trabalho por prioridade", - "empty": "Crie itens de trabalho para visualizá-los por prioridade no gráfico para uma melhor análise." - }, - "recent_activity": { - "title": "Atividade recente", - "empty": "Não foi possível encontrar dados. Por favor, verifique suas entradas", - "button": "Baixar atividade de hoje", - "button_loading": "Baixando" - } - }, - "actions": { - "profile": "Perfil", - "security": "Segurança", - "activity": "Atividade", - "appearance": "Aparência", - "notifications": "Notificações" - }, - "tabs": { - "summary": "Resumo", - "assigned": "Atribuído", - "created": "Criado", - "subscribed": "Inscrito", - "activity": "Atividade" - }, - "empty_state": { - "activity": { - "title": "Nenhuma atividade ainda", - "description": "Comece criando um novo item de trabalho! Adicione detalhes e propriedades a ele. Explore mais no Plane para ver sua atividade." - }, - "assigned": { - "title": "Nenhum item de trabalho atribuído a você", - "description": "Os itens de trabalho atribuídos a você podem ser rastreados aqui." - }, - "created": { - "title": "Nenhum item de trabalho ainda", - "description": "Todos os itens de trabalho criados por você vêm aqui, rastreie-os aqui diretamente." - }, - "subscribed": { - "title": "Nenhum item de trabalho ainda", - "description": "Inscreva-se nos itens de trabalho nos quais você está interessado, rastreie todos eles aqui." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Inserir ID do projeto", - "please_select_a_timezone": "Por favor, selecione um fuso horário", - "archive_project": { - "title": "Arquivar projeto", - "description": "Arquivar um projeto removerá seu projeto da navegação lateral, embora você ainda possa acessá-lo na página de projetos. Você pode restaurar o projeto ou excluí-lo quando quiser.", - "button": "Arquivar projeto" - }, - "delete_project": { - "title": "Excluir projeto", - "description": "Ao excluir um projeto, todos os dados e recursos dentro desse projeto serão removidos permanentemente e não poderão ser recuperados.", - "button": "Excluir meu projeto" - }, - "toast": { - "success": "Projeto atualizado com sucesso", - "error": "Não foi possível atualizar o projeto. Por favor, tente novamente." - } - }, - "members": { - "label": "Membros", - "project_lead": "Líder do projeto", - "default_assignee": "Responsável padrão", - "guest_super_permissions": { - "title": "Conceder acesso de visualização a todos os itens de trabalho para usuários convidados:", - "sub_heading": "Isso permitirá que os convidados tenham acesso de visualização a todos os itens de trabalho do projeto." - }, - "invite_members": { - "title": "Convidar membros", - "sub_heading": "Convide membros para trabalhar em seu projeto.", - "select_co_worker": "Selecionar colega de trabalho" - } - }, - "states": { - "describe_this_state_for_your_members": "Descreva este estado para seus membros.", - "empty_state": { - "title": "Nenhum estado disponível para o grupo {groupKey}", - "description": "Por favor, crie um novo estado" - } - }, - "labels": { - "label_title": "Título da etiqueta", - "label_title_is_required": "O título da etiqueta é obrigatório", - "label_max_char": "O nome da etiqueta não deve exceder 255 caracteres", - "toast": { - "error": "Erro ao atualizar a etiqueta" - } - }, - "estimates": { - "label": "Estimativas", - "title": "Habilitar estimativas para meu projeto", - "description": "Elas ajudam você a comunicar a complexidade e a carga de trabalho da equipe.", - "no_estimate": "Sem estimativa", - "new": "Novo sistema de estimativa", - "create": { - "custom": "Personalizado", - "start_from_scratch": "Começar do zero", - "choose_template": "Escolher um modelo", - "choose_estimate_system": "Escolher um sistema de estimativa", - "enter_estimate_point": "Inserir estimativa", - "step": "Passo {step} de {total}", - "label": "Criar estimativa" - }, - "toasts": { - "created": { - "success": { - "title": "Estimativa criada", - "message": "A estimativa foi criada com sucesso" - }, - "error": { - "title": "Falha na criação da estimativa", - "message": "Não foi possível criar a nova estimativa, por favor tente novamente." - } - }, - "updated": { - "success": { - "title": "Estimativa modificada", - "message": "A estimativa foi atualizada em seu projeto." - }, - "error": { - "title": "Falha na modificação da estimativa", - "message": "Não foi possível modificar a estimativa, por favor tente novamente" - } - }, - "enabled": { - "success": { - "title": "Sucesso!", - "message": "As estimativas foram habilitadas." - } - }, - "disabled": { - "success": { - "title": "Sucesso!", - "message": "As estimativas foram desabilitadas." - }, - "error": { - "title": "Erro!", - "message": "Não foi possível desabilitar a estimativa. Por favor, tente novamente" - } - } - }, - "validation": { - "min_length": "A estimativa precisa ser maior que 0.", - "unable_to_process": "Não foi possível processar sua solicitação, por favor tente novamente.", - "numeric": "A estimativa precisa ser um valor numérico.", - "character": "A estimativa precisa ser um valor em caracteres.", - "empty": "O valor da estimativa não pode estar vazio.", - "already_exists": "O valor da estimativa já existe.", - "unsaved_changes": "Você tem algumas alterações não salvas. Por favor, salve-as antes de clicar em concluir", - "remove_empty": "A estimativa não pode estar vazia. Insira um valor em cada campo ou remova aqueles para os quais você não tem valores." - }, - "systems": { - "points": { - "label": "Pontos", - "fibonacci": "Fibonacci", - "linear": "Linear", - "squares": "Quadrados", - "custom": "Personalizado" - }, - "categories": { - "label": "Categorias", - "t_shirt_sizes": "Tamanhos de Camiseta", - "easy_to_hard": "Fácil a difícil", - "custom": "Personalizado" - }, - "time": { - "label": "Tempo", - "hours": "Horas" - } - } - }, - "automations": { - "label": "Automações", - "auto-archive": { - "title": "Arquivar automaticamente itens de trabalho fechados", - "description": "O Plane arquivará automaticamente os itens de trabalho que foram concluídos ou cancelados.", - "duration": "Arquivar automaticamente itens de trabalho que estão fechados por" - }, - "auto-close": { - "title": "Fechar automaticamente itens de trabalho", - "description": "O Plane fechará automaticamente os itens de trabalho que não foram concluídos ou cancelados.", - "duration": "Fechar automaticamente itens de trabalho que estão inativos por", - "auto_close_status": "Status de fechamento automático" - } - }, - "empty_state": { - "labels": { - "title": "Nenhuma etiqueta ainda", - "description": "Crie etiquetas para ajudar a organizar e filtrar itens de trabalho em seu projeto." - }, - "estimates": { - "title": "Nenhum sistema de estimativa ainda", - "description": "Crie um conjunto de estimativas para comunicar a quantidade de trabalho por item de trabalho.", - "primary_button": "Adicionar sistema de estimativa" - } - } - }, - "project_cycles": { - "add_cycle": "Adicionar ciclo", - "more_details": "Mais detalhes", - "cycle": "Ciclo", - "update_cycle": "Atualizar ciclo", - "create_cycle": "Criar ciclo", - "no_matching_cycles": "Nenhum ciclo correspondente", - "remove_filters_to_see_all_cycles": "Remova os filtros para ver todos os ciclos", - "remove_search_criteria_to_see_all_cycles": "Remova os critérios de pesquisa para ver todos os ciclos", - "only_completed_cycles_can_be_archived": "Apenas ciclos concluídos podem ser arquivados", - "active_cycle": { - "label": "Ciclo ativo", - "progress": "Progresso", - "chart": "Gráfico de burndown", - "priority_issue": "Itens de trabalho prioritários", - "assignees": "Responsáveis", - "issue_burndown": "Burndown de itens de trabalho", - "ideal": "Ideal", - "current": "Atual", - "labels": "Etiquetas" - }, - "upcoming_cycle": { - "label": "Próximo ciclo" - }, - "completed_cycle": { - "label": "Ciclo concluído" - }, - "status": { - "days_left": "Dias restantes", - "completed": "Concluído", - "yet_to_start": "Ainda não começou", - "in_progress": "Em progresso", - "draft": "Rascunho" - }, - "action": { - "restore": { - "title": "Restaurar ciclo", - "success": { - "title": "Ciclo restaurado", - "description": "O ciclo foi restaurado." - }, - "failed": { - "title": "Falha ao restaurar o ciclo", - "description": "Não foi possível restaurar o ciclo. Por favor, tente novamente." - } - }, - "favorite": { - "loading": "Adicionando ciclo aos favoritos", - "success": { - "description": "Ciclo adicionado aos favoritos.", - "title": "Sucesso!" - }, - "failed": { - "description": "Não foi possível adicionar o ciclo aos favoritos. Por favor, tente novamente.", - "title": "Erro!" - } - }, - "unfavorite": { - "loading": "Removendo ciclo dos favoritos", - "success": { - "description": "Ciclo removido dos favoritos.", - "title": "Sucesso!" - }, - "failed": { - "description": "Não foi possível remover o ciclo dos favoritos. Por favor, tente novamente.", - "title": "Erro!" - } - }, - "update": { - "loading": "Atualizando ciclo", - "success": { - "description": "Ciclo atualizado com sucesso.", - "title": "Sucesso!" - }, - "failed": { - "description": "Erro ao atualizar o ciclo. Por favor, tente novamente.", - "title": "Erro!" - }, - "error": { - "already_exists": "Você já tem um ciclo nas datas fornecidas, se você quiser criar um ciclo de rascunho, você pode fazer isso removendo ambas as datas." - } - } - }, - "empty_state": { - "general": { - "title": "Agrupe e defina prazos para seu trabalho em Ciclos.", - "description": "Divida o trabalho em partes com prazos definidos, trabalhe de trás para frente a partir do prazo do seu projeto para definir datas e faça um progresso tangível como equipe.", - "primary_button": { - "text": "Defina seu primeiro ciclo", - "comic": { - "title": "Ciclos são caixas de tempo repetitivas.", - "description": "Uma sprint, uma iteração ou qualquer outro termo que você use para rastreamento semanal ou quinzenal do trabalho é um ciclo." - } - } - }, - "no_issues": { - "title": "Nenhum item de trabalho adicionado ao ciclo", - "description": "Adicione ou crie itens de trabalho que você deseja definir prazos e entregar dentro deste ciclo", - "primary_button": { - "text": "Criar novo item de trabalho" - }, - "secondary_button": { - "text": "Adicionar item de trabalho existente" - } - }, - "completed_no_issues": { - "title": "Nenhum item de trabalho no ciclo", - "description": "Nenhum item de trabalho no ciclo. Os itens de trabalho são transferidos ou ocultos. Para ver os itens de trabalho ocultos, se houver, atualize suas propriedades de exibição de acordo." - }, - "active": { - "title": "Nenhum ciclo ativo", - "description": "Um ciclo ativo inclui qualquer período que abranja a data de hoje dentro de seu intervalo. Encontre o progresso e os detalhes do ciclo ativo aqui." - }, - "archived": { - "title": "Nenhum ciclo arquivado ainda", - "description": "Para organizar seu projeto, arquive os ciclos concluídos. Encontre-os aqui quando forem arquivados." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Crie um item de trabalho e atribua-o a alguém, mesmo a você mesmo", - "description": "Pense nos itens de trabalho como tarefas, trabalhos ou JTBD. O que nós gostamos. Um item de trabalho e seus subitens de trabalho são geralmente acionáveis ​​baseados no tempo atribuídos aos membros de sua equipe. Sua equipe cria, atribui e conclui itens de trabalho para mover seu projeto em direção à sua meta.", - "primary_button": { - "text": "Crie seu primeiro item de trabalho", - "comic": { - "title": "Os itens de trabalho são blocos de construção no Plane.", - "description": "Redesenhar a interface do usuário do Plane, reformular a marca da empresa ou lançar o novo sistema de injeção de combustível são exemplos de itens de trabalho que provavelmente têm subitens de trabalho." - } - } - }, - "no_archived_issues": { - "title": "Nenhum item de trabalho arquivado ainda", - "description": "Manualmente ou por meio de automação, você pode arquivar itens de trabalho que foram concluídos ou cancelados. Encontre-os aqui quando forem arquivados.", - "primary_button": { - "text": "Definir automação" - } - }, - "issues_empty_filter": { - "title": "Nenhum item de trabalho encontrado correspondendo aos filtros aplicados", - "secondary_button": { - "text": "Limpar todos os filtros" - } - } - } - }, - "project_module": { - "add_module": "Adicionar Módulo", - "update_module": "Atualizar Módulo", - "create_module": "Criar Módulo", - "archive_module": "Arquivar Módulo", - "restore_module": "Restaurar Módulo", - "delete_module": "Excluir módulo", - "empty_state": { - "general": { - "title": "Mapeie os marcos do seu projeto para Módulos e rastreie o trabalho agregado facilmente.", - "description": "Um grupo de itens de trabalho que pertencem a um pai lógico e hierárquico forma um módulo. Pense neles como uma forma de rastrear o trabalho por marcos do projeto. Eles têm seus próprios períodos e prazos, bem como análises para ajudá-lo a ver o quão perto ou longe você está de um marco.", - "primary_button": { - "text": "Construa seu primeiro módulo", - "comic": { - "title": "Os módulos ajudam a agrupar o trabalho por hierarquia.", - "description": "Um módulo de carrinho, um módulo de chassi e um módulo de armazém são todos bons exemplos desse agrupamento." - } - } - }, - "no_issues": { - "title": "Nenhum item de trabalho no módulo", - "description": "Crie ou adicione itens de trabalho que você deseja realizar como parte deste módulo", - "primary_button": { - "text": "Criar novos itens de trabalho" - }, - "secondary_button": { - "text": "Adicionar um item de trabalho existente" - } - }, - "archived": { - "title": "Nenhum Módulo arquivado ainda", - "description": "Para organizar seu projeto, arquive os módulos concluídos ou cancelados. Encontre-os aqui quando forem arquivados." - }, - "sidebar": { - "in_active": "Este módulo ainda não está ativo.", - "invalid_date": "Data inválida. Por favor, insira uma data válida." - } - }, - "quick_actions": { - "archive_module": "Arquivar módulo", - "archive_module_description": "Apenas módulos concluídos ou cancelados\npodem ser arquivados.", - "delete_module": "Excluir módulo" - }, - "toast": { - "copy": { - "success": "Link do módulo copiado para a área de transferência" - }, - "delete": { - "success": "Módulo excluído com sucesso", - "error": "Falha ao excluir o módulo" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Salve visualizações filtradas para o seu projeto. Crie quantas precisar", - "description": "As visualizações são um conjunto de filtros salvos que você usa com frequência ou deseja acesso fácil. Todos os seus colegas em um projeto podem ver as visualizações de todos e escolher o que melhor se adapta às suas necessidades.", - "primary_button": { - "text": "Crie sua primeira visualização", - "comic": { - "title": "As visualizações funcionam sobre as propriedades do item de trabalho.", - "description": "Você pode criar uma visualização a partir daqui com quantas propriedades como filtros que você achar adequado." - } - } - }, - "filter": { - "title": "Nenhuma visualização correspondente", - "description": "Nenhuma visualização corresponde aos critérios de pesquisa.\nCrie uma nova visualização em vez disso." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Escreva uma nota, um documento ou uma base de conhecimento completa. Peça a Galileo, o assistente de IA do Plane, para ajudá-lo a começar", - "description": "As páginas são espaço para registrar pensamentos no Plane. Anote notas de reunião, formate-as facilmente, incorpore itens de trabalho, organize-os usando uma biblioteca de componentes e mantenha-os todos no contexto do seu projeto. Para facilitar qualquer documento, invoque Galileo, a IA do Plane, com um atalho ou o clique de um botão.", - "primary_button": { - "text": "Crie sua primeira página" - } - }, - "private": { - "title": "Nenhuma página privada ainda", - "description": "Mantenha seus pensamentos privados aqui. Quando estiver pronto para compartilhar, a equipe está a apenas um clique de distância.", - "primary_button": { - "text": "Crie sua primeira página" - } - }, - "public": { - "title": "Nenhuma página pública ainda", - "description": "Veja as páginas compartilhadas com todos em seu projeto aqui mesmo.", - "primary_button": { - "text": "Crie sua primeira página" - } - }, - "archived": { - "title": "Nenhuma página arquivada ainda", - "description": "Arquive as páginas que não estão no seu radar. Acesse-as aqui quando necessário." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Nenhum resultado encontrado" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Nenhum item de trabalho correspondente encontrado" - }, - "no_issues": { - "title": "Nenhum item de trabalho encontrado" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Nenhum comentário ainda", - "description": "Os comentários podem ser usados como um espaço de discussão e acompanhamento para os itens de trabalho" - } - } - }, - "notification": { - "label": "Caixa de entrada", - "page_label": "{workspace} - Caixa de entrada", - "options": { - "mark_all_as_read": "Marcar tudo como lido", - "mark_read": "Marcar como lido", - "mark_unread": "Marcar como não lido", - "refresh": "Atualizar", - "filters": "Filtros da caixa de entrada", - "show_unread": "Mostrar não lidos", - "show_snoozed": "Mostrar adiados", - "show_archived": "Mostrar arquivados", - "mark_archive": "Arquivar", - "mark_unarchive": "Desarquivar", - "mark_snooze": "Adiar", - "mark_unsnooze": "Reativar" - }, - "toasts": { - "read": "Notificação marcada como lida", - "unread": "Notificação marcada como não lida", - "archived": "Notificação marcada como arquivada", - "unarchived": "Notificação marcada como não arquivada", - "snoozed": "Notificação adiada", - "unsnoozed": "Notificação reativada" - }, - "empty_state": { - "detail": { - "title": "Selecione para ver os detalhes." - }, - "all": { - "title": "Nenhum item de trabalho atribuído", - "description": "As atualizações para itens de trabalho atribuídos a você podem ser\nvistas aqui" - }, - "mentions": { - "title": "Nenhum item de trabalho atribuído", - "description": "As atualizações para itens de trabalho atribuídos a você podem ser\nvistas aqui" - } - }, - "tabs": { - "all": "Todos", - "mentions": "Menções" - }, - "filter": { - "assigned": "Atribuído a mim", - "created": "Criado por mim", - "subscribed": "Inscrito por mim" - }, - "snooze": { - "1_day": "1 dia", - "3_days": "3 dias", - "5_days": "5 dias", - "1_week": "1 semana", - "2_weeks": "2 semanas", - "custom": "Personalizado" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Adicione itens de trabalho ao ciclo para visualizar seu progresso" - }, - "chart": { - "title": "Adicione itens de trabalho ao ciclo para visualizar o gráfico de burndown." - }, - "priority_issue": { - "title": "Observe os itens de trabalho de alta prioridade abordados no ciclo rapidamente." - }, - "assignee": { - "title": "Adicione responsáveis aos itens de trabalho para ver uma divisão do trabalho por responsáveis." - }, - "label": { - "title": "Adicione etiquetas aos itens de trabalho para ver a divisão do trabalho por etiquetas." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "A Admissão não está habilitado para o projeto.", - "description": "A Admissão ajuda você a gerenciar as solicitações recebidas para o seu projeto e adicioná-las como itens de trabalho em seu fluxo de trabalho. Habilite a admissão nas configurações do projeto para gerenciar as solicitações.", - "primary_button": { - "text": "Gerenciar funcionalidades" - } - }, - "cycle": { - "title": "Os ciclos não estão habilitados para este projeto.", - "description": "Divida o trabalho em partes com prazos definidos, trabalhe de trás para frente a partir do prazo do seu projeto para definir datas e faça um progresso tangível como equipe. Habilite o recurso de ciclos para o seu projeto para começar a usá-los.", - "primary_button": { - "text": "Gerenciar funcionalidades" - } - }, - "module": { - "title": "Os módulos não estão habilitados para o projeto.", - "description": "Os módulos são os blocos de construção do seu projeto. Habilite os módulos nas configurações do projeto para começar a usá-los.", - "primary_button": { - "text": "Gerenciar funcionalidades" - } - }, - "page": { - "title": "As páginas não estão habilitadas para o projeto.", - "description": "As páginas são os blocos de construção do seu projeto. Habilite as páginas nas configurações do projeto para começar a usá-las.", - "primary_button": { - "text": "Gerenciar funcionalidades" - } - }, - "view": { - "title": "As visualizações não estão habilitadas para o projeto.", - "description": "As visualizações são os blocos de construção do seu projeto. Habilite as visualizações nas configurações do projeto para começar a usá-las.", - "primary_button": { - "text": "Gerenciar funcionalidades" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Rascunhar um item de trabalho", - "empty_state": { - "title": "Itens de trabalho semi-escritos e, em breve, os comentários aparecerão aqui.", - "description": "Para experimentar, comece a adicionar um item de trabalho e deixe-o no meio do caminho ou crie seu primeiro rascunho abaixo. 😉", - "primary_button": { - "text": "Criar seu primeiro rascunho" - } - }, - "delete_modal": { - "title": "Excluir rascunho", - "description": "Tem certeza de que deseja excluir este rascunho? Isso não pode ser desfeito." - }, - "toasts": { - "created": { - "success": "Rascunho criado", - "error": "Não foi possível criar o item de trabalho. Por favor, tente novamente." - }, - "deleted": { - "success": "Rascunho excluído" - } - } - }, - "stickies": { - "title": "Suas anotações", - "placeholder": "clique para digitar aqui", - "all": "Todas as anotações", - "no-data": "Anote uma ideia, capture um insight ou registre uma onda cerebral. Adicione uma anotação para começar.", - "add": "Adicionar anotação", - "search_placeholder": "Pesquisar por título", - "delete": "Excluir anotação", - "delete_confirmation": "Tem certeza de que deseja excluir esta anotação?", - "empty_state": { - "simple": "Anote uma ideia, capture um insight ou registre uma onda cerebral. Adicione uma anotação para começar.", - "general": { - "title": "As anotações são notas rápidas e tarefas que você anota rapidamente.", - "description": "Capture seus pensamentos e ideias sem esforço, criando anotações que você pode acessar a qualquer momento e de qualquer lugar.", - "primary_button": { - "text": "Adicionar anotação" - } - }, - "search": { - "title": "Isso não corresponde a nenhuma de suas anotações.", - "description": "Tente um termo diferente ou nos informe\nse você tem certeza de que sua pesquisa está correta.", - "primary_button": { - "text": "Adicionar anotação" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "O nome da anotação não pode ter mais de 100 caracteres.", - "already_exists": "Já existe uma anotação sem descrição" - }, - "created": { - "title": "Anotação criada", - "message": "A anotação foi criada com sucesso" - }, - "not_created": { - "title": "Anotação não criada", - "message": "A anotação não pôde ser criada" - }, - "updated": { - "title": "Anotação atualizada", - "message": "A anotação foi atualizada com sucesso" - }, - "not_updated": { - "title": "Anotação não atualizada", - "message": "A anotação não pôde ser atualizada" - }, - "removed": { - "title": "Anotação removida", - "message": "A anotação foi removida com sucesso" - }, - "not_removed": { - "title": "Anotação não removida", - "message": "A anotação não pôde ser removida" - } - } - }, - "role_details": { - "guest": { - "title": "Convidado", - "description": "Membros externos de organizações podem ser convidados como convidados." - }, - "member": { - "title": "Membro", - "description": "Capacidade de ler, escrever, editar e excluir entidades dentro de projetos, ciclos e módulos" - }, - "admin": { - "title": "Administrador", - "description": "Todas as permissões definidas como verdadeiras dentro do espaço de trabalho." - } - }, - "user_roles": { - "product_or_project_manager": "Gerente de Produto / Projeto", - "development_or_engineering": "Desenvolvimento / Engenharia", - "founder_or_executive": "Fundador / Executivo", - "freelancer_or_consultant": "Freelancer / Consultor", - "marketing_or_growth": "Marketing / Crescimento", - "sales_or_business_development": "Vendas / Desenvolvimento de Negócios", - "support_or_operations": "Suporte / Operações", - "student_or_professor": "Estudante / Professor", - "human_resources": "Recursos Humanos", - "other": "Outro" - }, - "importer": { - "github": { - "title": "Github", - "description": "Importe itens de trabalho de repositórios do GitHub e sincronize-os." - }, - "jira": { - "title": "Jira", - "description": "Importe itens de trabalho e épicos de projetos e épicos do Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Exporte itens de trabalho para um arquivo CSV.", - "short_description": "Exportar como CSV" - }, - "excel": { - "title": "Excel", - "description": "Exporte itens de trabalho para um arquivo Excel.", - "short_description": "Exportar como Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Exporte itens de trabalho para um arquivo Excel.", - "short_description": "Exportar como Excel" - }, - "json": { - "title": "JSON", - "description": "Exporte itens de trabalho para um arquivo JSON.", - "short_description": "Exportar como JSON" - } - }, - "default_global_view": { - "all_issues": "Todos os itens de trabalho", - "assigned": "Atribuído", - "created": "Criado", - "subscribed": "Inscrito" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Preferência do sistema" - }, - "light": { - "label": "Claro" - }, - "dark": { - "label": "Escuro" - }, - "light_contrast": { - "label": "Alto contraste claro" - }, - "dark_contrast": { - "label": "Alto contraste escuro" - }, - "custom": { - "label": "Tema personalizado" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Planejado", - "in_progress": "Em Andamento", - "paused": "Pausado", - "completed": "Concluído", - "cancelled": "Cancelado" - }, - "layout": { - "list": "Layout de lista", - "board": "Layout de galeria", - "timeline": "Layout de linha do tempo" - }, - "order_by": { - "name": "Nome", - "progress": "Progresso", - "issues": "Número de itens de trabalho", - "due_date": "Data de vencimento", - "created_at": "Data de criação", - "manual": "Manual" - } - }, - "cycle": { - "label": "{count, plural, one {Ciclo} other {Ciclos}}", - "no_cycle": "Nenhum ciclo" - }, - "module": { - "label": "{count, plural, one {Módulo} other {Módulos}}", - "no_module": "Nenhum módulo" - }, - "description_versions": { - "last_edited_by": "Última edição por", - "previously_edited_by": "Anteriormente editado por", - "edited_by": "Editado por" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "O Plane não inicializou. Isso pode ser porque um ou mais serviços do Plane falharam ao iniciar.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Escolha View Logs do setup.sh e logs do Docker para ter certeza." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Estrutura", - "empty_state": { - "title": "Cabeçalhos ausentes", - "description": "Vamos adicionar alguns cabeçalhos nesta página para vê-los aqui." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Palavras", - "characters": "Caracteres", - "paragraphs": "Parágrafos", - "read_time": "Tempo de leitura" - }, - "actors_info": { - "edited_by": "Editado por", - "created_by": "Criado por" - }, - "version_history": { - "label": "Histórico de versões", - "current_version": "Versão atual" - } - }, - "assets": { - "label": "Recursos", - "download_button": "Baixar", - "empty_state": { - "title": "Imagens ausentes", - "description": "Adicione imagens para vê-las aqui." - } - } - }, - "open_button": "Abrir painel de navegação", - "close_button": "Fechar painel de navegação", - "outline_floating_button": "Abrir estrutura" - } -} diff --git a/packages/i18n/src/locales/pt-BR/translations.ts b/packages/i18n/src/locales/pt-BR/translations.ts new file mode 100644 index 0000000000..31a083c1ed --- /dev/null +++ b/packages/i18n/src/locales/pt-BR/translations.ts @@ -0,0 +1,2609 @@ +export default { + sidebar: { + projects: "Projetos", + pages: "Páginas", + new_work_item: "Novo item", + home: "Home", + your_work: "Seu trabalho", + inbox: "Inbox", + workspace: "Workspace", + views: "Visualizações", + analytics: "Analytics", + work_items: "Itens", + cycles: "Ciclos", + modules: "Módulos", + intake: "Intake", + drafts: "Rascunhos", + favorites: "Favoritos", + pro: "Pro", + upgrade: "Upgrade", + }, + auth: { + common: { + email: { + label: "Email", + placeholder: "nome@empresa.com", + errors: { + required: "Email é obrigatório", + invalid: "Email inválido", + }, + }, + password: { + label: "Senha", + set_password: "Definir senha", + placeholder: "Digite a senha", + confirm_password: { + label: "Confirmar senha", + placeholder: "Confirmar senha", + }, + current_password: { + label: "Senha atual", + }, + new_password: { + label: "Nova senha", + placeholder: "Digite a nova senha", + }, + change_password: { + label: { + default: "Alterar senha", + submitting: "Alterando senha", + }, + }, + errors: { + match: "As senhas não coincidem", + empty: "Por favor digite sua senha", + length: "A senha deve ter mais de 8 caracteres", + strength: { + weak: "Senha fraca", + strong: "Senha forte", + }, + }, + submit: "Definir senha", + toast: { + change_password: { + success: { + title: "Sucesso!", + message: "Senha alterada com sucesso.", + }, + error: { + title: "Erro!", + message: "Algo deu errado. Por favor, tente novamente.", + }, + }, + }, + }, + unique_code: { + label: "Código único", + placeholder: "gets-sets-flys", + paste_code: "Cole o código enviado para seu email", + requesting_new_code: "Solicitando novo código", + sending_code: "Enviando código", + }, + already_have_an_account: "Já tem uma conta?", + login: "Login", + create_account: "Criar conta", + new_to_plane: "Novo no Plane?", + back_to_sign_in: "Voltar ao login", + resend_in: "Reenviar em {seconds} segundos", + sign_in_with_unique_code: "Login com código único", + forgot_password: "Esqueceu sua senha?", + }, + sign_up: { + header: { + label: "Crie uma conta para começar a gerenciar trabalho com sua equipe.", + step: { + email: { + header: "Cadastro", + sub_header: "", + }, + password: { + header: "Cadastro", + sub_header: "Cadastre-se usando email e senha.", + }, + unique_code: { + header: "Cadastro", + sub_header: "Cadastre-se usando um código único enviado para o email acima.", + }, + }, + }, + errors: { + password: { + strength: "Tente definir uma senha forte para continuar", + }, + }, + }, + sign_in: { + header: { + label: "Faça login para começar a gerenciar trabalho com sua equipe.", + step: { + email: { + header: "Login ou cadastro", + sub_header: "", + }, + password: { + header: "Login ou cadastro", + sub_header: "Use seu email e senha para fazer login.", + }, + unique_code: { + header: "Login ou cadastro", + sub_header: "Faça login usando um código único enviado para o email acima.", + }, + }, + }, + }, + forgot_password: { + title: "Redefinir sua senha", + description: "Digite o email verificado da sua conta e enviaremos um link para redefinir sua senha.", + email_sent: "Enviamos o link de redefinição para seu email", + send_reset_link: "Enviar link de redefinição", + errors: { + smtp_not_enabled: + "Vemos que seu administrador não habilitou SMTP, não poderemos enviar um link de redefinição de senha", + }, + toast: { + success: { + title: "Email enviado", + message: + "Verifique sua caixa de entrada para um link de redefinição de senha. Se não aparecer em alguns minutos, verifique sua pasta de spam.", + }, + error: { + title: "Erro!", + message: "Algo deu errado. Por favor, tente novamente.", + }, + }, + }, + reset_password: { + title: "Definir nova senha", + description: "Proteja sua conta com uma senha forte", + }, + set_password: { + title: "Proteja sua conta", + description: "Definir uma senha ajuda você a fazer login com segurança", + }, + sign_out: { + toast: { + error: { + title: "Erro!", + message: "Falha ao sair. Por favor, tente novamente.", + }, + }, + }, + }, + submit: "Enviar", + cancel: "Cancelar", + loading: "Carregando", + error: "Erro", + success: "Sucesso", + warning: "Aviso", + info: "Informação", + close: "Fechar", + yes: "Sim", + no: "Não", + ok: "OK", + name: "Nome", + description: "Descrição", + search: "Pesquisar", + add_member: "Adicionar membro", + adding_members: "Adicionando membros", + remove_member: "Remover membro", + add_members: "Adicionar membros", + adding_member: "Adicionando membro", + remove_members: "Remover membros", + add: "Adicionar", + adding: "Adicionando", + remove: "Remover", + add_new: "Adicionar novo", + remove_selected: "Remover selecionado", + first_name: "Primeiro nome", + last_name: "Sobrenome", + email: "E-mail", + display_name: "Nome de exibição", + role: "Cargo", + timezone: "Fuso horário", + avatar: "Avatar", + cover_image: "Imagem de capa", + password: "Senha", + change_cover: "Alterar capa", + language: "Idioma", + saving: "Salvando", + save_changes: "Salvar alterações", + deactivate_account: "Desativar conta", + deactivate_account_description: + "Ao desativar uma conta, todos os dados e recursos dessa conta serão removidos permanentemente e não poderão ser recuperados.", + profile_settings: "Configurações de perfil", + your_account: "Sua conta", + security: "Segurança", + activity: "Atividade", + appearance: "Aparência", + notifications: "Notificações", + workspaces: "Espaços de trabalho", + create_workspace: "Criar espaço de trabalho", + invitations: "Convites", + summary: "Resumo", + assigned: "Atribuído", + created: "Criado", + subscribed: "Inscrito", + you_do_not_have_the_permission_to_access_this_page: "Você não tem permissão para acessar esta página.", + something_went_wrong_please_try_again: "Algo deu errado. Por favor, tente novamente.", + load_more: "Carregar mais", + select_or_customize_your_interface_color_scheme: "Selecione ou personalize o esquema de cores da sua interface.", + theme: "Tema", + system_preference: "Preferência do sistema", + light: "Claro", + dark: "Escuro", + light_contrast: "Alto contraste claro", + dark_contrast: "Alto contraste escuro", + custom: "Personalizado", + select_your_theme: "Selecione seu tema", + customize_your_theme: "Personalize seu tema", + background_color: "Cor de fundo", + text_color: "Cor do texto", + primary_color: "Cor primária (Tema)", + sidebar_background_color: "Cor de fundo da barra lateral", + sidebar_text_color: "Cor do texto da barra lateral", + set_theme: "Definir tema", + enter_a_valid_hex_code_of_6_characters: "Insira um código hexadecimal válido de 6 caracteres", + background_color_is_required: "A cor de fundo é obrigatória", + text_color_is_required: "A cor do texto é obrigatória", + primary_color_is_required: "A cor primária é obrigatória", + sidebar_background_color_is_required: "A cor de fundo da barra lateral é obrigatória", + sidebar_text_color_is_required: "A cor do texto da barra lateral é obrigatória", + updating_theme: "Atualizando tema", + theme_updated_successfully: "Tema atualizado com sucesso", + failed_to_update_the_theme: "Falha ao atualizar o tema", + email_notifications: "Notificações por e-mail", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Mantenha-se informado sobre os itens de trabalho aos quais você está inscrito. Ative isso para ser notificado.", + email_notification_setting_updated_successfully: "Configuração de notificação por e-mail atualizada com sucesso", + failed_to_update_email_notification_setting: "Falha ao atualizar a configuração de notificação por e-mail", + notify_me_when: "Notifique-me quando", + property_changes: "Alterações de propriedade", + property_changes_description: + "Notifique-me quando as propriedades dos itens de trabalho, como responsáveis, prioridade, estimativas ou qualquer outra coisa, mudarem.", + state_change: "Mudança de estado", + state_change_description: "Notifique-me quando os itens de trabalho mudarem para um estado diferente", + issue_completed: "Item de trabalho concluído", + issue_completed_description: "Notifique-me apenas quando um item de trabalho for concluído", + comments: "Comentários", + comments_description: "Notifique-me quando alguém deixar um comentário no item de trabalho", + mentions: "Menções", + mentions_description: "Notifique-me apenas quando alguém me mencionar nos comentários ou na descrição", + old_password: "Senha antiga", + general_settings: "Configurações gerais", + sign_out: "Sair", + signing_out: "Saindo", + active_cycles: "Ciclos ativos", + active_cycles_description: + "Monitore os ciclos entre os projetos, rastreie os itens de trabalho de alta prioridade e amplie os ciclos que precisam de atenção.", + on_demand_snapshots_of_all_your_cycles: "Snapshots sob demanda de todos os seus ciclos", + upgrade: "Upgrade", + "10000_feet_view": "Visão geral de todos os ciclos ativos.", + "10000_feet_view_description": + "Reduza o zoom para ver os ciclos em execução em todos os seus projetos de uma só vez, em vez de ir de ciclo para ciclo em cada projeto.", + get_snapshot_of_each_active_cycle: "Obtenha um snapshot de cada ciclo ativo.", + get_snapshot_of_each_active_cycle_description: + "Rastreie as métricas de alto nível para todos os ciclos ativos, veja seu estado de progresso e tenha uma noção do escopo em relação aos prazos.", + compare_burndowns: "Compare burndowns.", + compare_burndowns_description: + "Monitore o desempenho de cada uma de suas equipes com uma olhada no relatório de burndown de cada ciclo.", + quickly_see_make_or_break_issues: "Veja rapidamente os itens de trabalho decisivos.", + quickly_see_make_or_break_issues_description: + "Visualize os itens de trabalho de alta prioridade para cada ciclo em relação aos prazos. Veja todos eles por ciclo com um clique.", + zoom_into_cycles_that_need_attention: "Amplie os ciclos que precisam de atenção.", + zoom_into_cycles_that_need_attention_description: + "Investigue o estado de qualquer ciclo que não esteja em conformidade com as expectativas com um clique.", + stay_ahead_of_blockers: "Fique à frente dos bloqueios.", + stay_ahead_of_blockers_description: + "Identifique desafios de um projeto para outro e veja as dependências entre ciclos que não são óbvias em nenhuma outra visualização.", + analytics: "Análises", + workspace_invites: "Convites para o espaço de trabalho", + enter_god_mode: "Entrar no God Mode", + workspace_logo: "Logo do espaço de trabalho", + new_issue: "Novo item de trabalho", + your_work: "Seu trabalho", + drafts: "Rascunhos", + projects: "Projetos", + views: "Visualizações", + workspace: "Espaço de trabalho", + archives: "Arquivos", + settings: "Configurações", + failed_to_move_favorite: "Falha ao mover o favorito", + favorites: "Favoritos", + no_favorites_yet: "Nenhum favorito ainda", + create_folder: "Criar pasta", + new_folder: "Nova pasta", + favorite_updated_successfully: "Favorito atualizado com sucesso", + favorite_created_successfully: "Favorito criado com sucesso", + folder_already_exists: "A pasta já existe", + folder_name_cannot_be_empty: "O nome da pasta não pode estar vazio", + something_went_wrong: "Algo deu errado", + failed_to_reorder_favorite: "Falha ao reordenar o favorito", + favorite_removed_successfully: "Favorito removido com sucesso", + failed_to_create_favorite: "Falha ao criar favorito", + failed_to_rename_favorite: "Falha ao renomear favorito", + project_link_copied_to_clipboard: "Link do projeto copiado para a área de transferência", + link_copied: "Link copiado", + add_project: "Adicionar projeto", + create_project: "Criar projeto", + failed_to_remove_project_from_favorites: + "Não foi possível remover o projeto dos favoritos. Por favor, tente novamente.", + project_created_successfully: "Projeto criado com sucesso", + project_created_successfully_description: + "Projeto criado com sucesso. Agora você pode começar a adicionar itens de trabalho a ele.", + project_name_already_taken: "O nome do projeto já está em uso.", + project_identifier_already_taken: "O identificador do projeto já está em uso.", + project_cover_image_alt: "Imagem de capa do projeto", + name_is_required: "Nome é obrigatório", + title_should_be_less_than_255_characters: "O título deve ter menos de 255 caracteres", + project_name: "Nome do projeto", + project_id_must_be_at_least_1_character: "O ID do projeto deve ter pelo menos 1 caractere", + project_id_must_be_at_most_5_characters: "O ID do projeto deve ter no máximo 5 caracteres", + project_id: "ID do projeto", + project_id_tooltip_content: + "Ajuda você a identificar itens de trabalho no projeto de forma exclusiva. Máximo de 5 caracteres.", + description_placeholder: "Descrição", + only_alphanumeric_non_latin_characters_allowed: "Apenas caracteres alfanuméricos e não latinos são permitidos.", + project_id_is_required: "O ID do projeto é obrigatório", + project_id_allowed_char: "Apenas caracteres alfanuméricos e não latinos são permitidos.", + project_id_min_char: "O ID do projeto deve ter pelo menos 1 caractere", + project_id_max_char: "O ID do projeto deve ter no máximo 5 caracteres", + project_description_placeholder: "Insira a descrição do projeto", + select_network: "Selecione a rede", + lead: "Líder", + date_range: "Intervalo de datas", + private: "Privado", + public: "Público", + accessible_only_by_invite: "Acessível apenas por convite", + anyone_in_the_workspace_except_guests_can_join: + "Qualquer pessoa no espaço de trabalho, exceto convidados, pode participar", + creating: "Criando", + creating_project: "Criando projeto", + adding_project_to_favorites: "Adicionando projeto aos favoritos", + project_added_to_favorites: "Projeto adicionado aos favoritos", + couldnt_add_the_project_to_favorites: + "Não foi possível adicionar o projeto aos favoritos. Por favor, tente novamente.", + removing_project_from_favorites: "Removendo projeto dos favoritos", + project_removed_from_favorites: "Projeto removido dos favoritos", + couldnt_remove_the_project_from_favorites: + "Não foi possível remover o projeto dos favoritos. Por favor, tente novamente.", + add_to_favorites: "Adicionar aos favoritos", + remove_from_favorites: "Remover dos favoritos", + publish_project: "Publicar projeto", + publish: "Publicar", + copy_link: "Copiar link", + leave_project: "Sair do projeto", + join_the_project_to_rearrange: "Participe do projeto para reorganizar", + drag_to_rearrange: "Arraste para reorganizar", + congrats: "Parabéns!", + open_project: "Abrir projeto", + issues: "Itens de trabalho", + cycles: "Ciclos", + modules: "Módulos", + pages: "Páginas", + intake: "Admissão", + time_tracking: "Rastreamento de tempo", + work_management: "Gerenciamento de trabalho", + projects_and_issues: "Projetos e itens de trabalho", + projects_and_issues_description: "Ative ou desative estes neste projeto.", + cycles_description: + "Defina o tempo de trabalho por projeto e ajuste o período conforme necessário. Um ciclo pode durar 2 semanas, o próximo 1 semana.", + modules_description: "Organize o trabalho em subprojetos com líderes e responsáveis dedicados.", + views_description: "Salve classificações, filtros e opções de exibição personalizadas ou compartilhe com sua equipe.", + pages_description: "Crie e edite conteúdo livre – anotações, documentos, qualquer coisa.", + intake_description: + "Permita que não membros compartilhem bugs, feedbacks e sugestões sem interromper seu fluxo de trabalho.", + time_tracking_description: "Registre o tempo gasto em itens de trabalho e projetos.", + work_management_description: "Gerencie seu trabalho e projetos com facilidade.", + documentation: "Documentação", + message_support: "Suporte por mensagem", + contact_sales: "Contatar vendas", + hyper_mode: "Modo Hyper", + keyboard_shortcuts: "Atalhos do teclado", + whats_new: "O que há de novo?", + version: "Versão", + we_are_having_trouble_fetching_the_updates: "Estamos tendo problemas para buscar as atualizações.", + our_changelogs: "nossos changelogs", + for_the_latest_updates: "para as últimas atualizações.", + please_visit: "Por favor, visite", + docs: "Documentos", + full_changelog: "Changelog completo", + support: "Suporte", + discord: "Discord", + powered_by_plane_pages: "Desenvolvido por Plane Pages", + please_select_at_least_one_invitation: "Selecione pelo menos um convite.", + please_select_at_least_one_invitation_description: + "Selecione pelo menos um convite para entrar no espaço de trabalho.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Vemos que alguém convidou você para entrar em um espaço de trabalho", + join_a_workspace: "Entrar em um espaço de trabalho", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Vemos que alguém convidou você para entrar em um espaço de trabalho", + join_a_workspace_description: "Entrar em um espaço de trabalho", + accept_and_join: "Aceitar e entrar", + go_home: "Ir para a página inicial", + no_pending_invites: "Nenhum convite pendente", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Você pode ver aqui se alguém convida você para um espaço de trabalho", + back_to_home: "Voltar para a página inicial", + workspace_name: "nome-do-espaço-de-trabalho", + deactivate_your_account: "Desativar sua conta", + deactivate_your_account_description: + "Uma vez desativada, você não poderá ser atribuído a itens de trabalho e ser cobrado pelo seu espaço de trabalho. Para reativar sua conta, você precisará de um convite para um espaço de trabalho neste endereço de e-mail.", + deactivating: "Desativando", + confirm: "Confirmar", + confirming: "Confirmando", + draft_created: "Rascunho criado", + issue_created_successfully: "Item de trabalho criado com sucesso", + draft_creation_failed: "Falha na criação do rascunho", + issue_creation_failed: "Falha na criação do item de trabalho", + draft_issue: "Rascunhar item de trabalho", + issue_updated_successfully: "Item de trabalho atualizado com sucesso", + issue_could_not_be_updated: "Não foi possível atualizar o item de trabalho", + create_a_draft: "Criar um rascunho", + save_to_drafts: "Salvar em rascunhos", + save: "Salvar", + update: "Atualizar", + updating: "Atualizando", + create_new_issue: "Criar novo item de trabalho", + editor_is_not_ready_to_discard_changes: "O editor não está pronto para descartar as alterações", + failed_to_move_issue_to_project: "Falha ao mover o item de trabalho para o projeto", + create_more: "Criar mais", + add_to_project: "Adicionar ao projeto", + discard: "Descartar", + duplicate_issue_found: "Item de trabalho duplicado encontrado", + duplicate_issues_found: "Itens de trabalho duplicados encontrados", + no_matching_results: "Nenhum resultado correspondente", + title_is_required: "O título é obrigatório", + title: "Título", + state: "Estado", + priority: "Prioridade", + none: "Nenhum", + urgent: "Urgente", + high: "Alta", + medium: "Média", + low: "Baixa", + members: "Membros", + assignee: "Responsável", + assignees: "Responsáveis", + you: "Você", + labels: "Etiquetas", + create_new_label: "Criar nova etiqueta", + start_date: "Data de início", + end_date: "Data de término", + due_date: "Data de vencimento", + estimate: "Estimativa", + change_parent_issue: "Alterar item de trabalho pai", + remove_parent_issue: "Remover item de trabalho pai", + add_parent: "Adicionar pai", + loading_members: "Carregando membros", + view_link_copied_to_clipboard: "Link de visualização copiado para a área de transferência.", + required: "Obrigatório", + optional: "Opcional", + Cancel: "Cancelar", + edit: "Editar", + archive: "Arquivar", + restore: "Restaurar", + open_in_new_tab: "Abrir em nova aba", + delete: "Excluir", + deleting: "Excluindo", + make_a_copy: "Fazer uma cópia", + move_to_project: "Mover para o projeto", + good: "Bom", + morning: "manhã", + afternoon: "tarde", + evening: "noite", + show_all: "Mostrar tudo", + show_less: "Mostrar menos", + no_data_yet: "Nenhum dado ainda", + syncing: "Sincronizando", + add_work_item: "Adicionar item de trabalho", + advanced_description_placeholder: "Pressione '/' para comandos", + create_work_item: "Criar item de trabalho", + attachments: "Anexos", + declining: "Recusando", + declined: "Recusado", + decline: "Recusar", + unassigned: "Não atribuído", + work_items: "Itens de trabalho", + add_link: "Adicionar link", + points: "Pontos", + no_assignee: "Sem responsável", + no_assignees_yet: "Nenhum responsável ainda", + no_labels_yet: "Nenhuma etiqueta ainda", + ideal: "Ideal", + current: "Atual", + no_matching_members: "Nenhum membro correspondente", + leaving: "Saindo", + removing: "Removendo", + leave: "Sair", + refresh: "Atualizar", + refreshing: "Atualizando", + refresh_status: "Status da atualização", + prev: "Anterior", + next: "Próximo", + re_generating: "Regerando", + re_generate: "Regerar", + re_generate_key: "Regerar chave", + export: "Exportar", + member: "{count, plural, one{# membro} other{# membros}}", + new_password_must_be_different_from_old_password: "Nova senha deve ser diferente da senha antiga", + edited: "editado", + bot: "robô", + project_view: { + sort_by: { + created_at: "Criado em", + updated_at: "Atualizado em", + name: "Nome", + }, + }, + toast: { + success: "Sucesso!", + error: "Erro!", + }, + links: { + toasts: { + created: { + title: "Link criado", + message: "O link foi criado com sucesso", + }, + not_created: { + title: "Link não criado", + message: "O link não pôde ser criado", + }, + updated: { + title: "Link atualizado", + message: "O link foi atualizado com sucesso", + }, + not_updated: { + title: "Link não atualizado", + message: "O link não pôde ser atualizado", + }, + removed: { + title: "Link removido", + message: "O link foi removido com sucesso", + }, + not_removed: { + title: "Link não removido", + message: "O link não pôde ser removido", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Seu guia de início rápido", + not_right_now: "Agora não", + create_project: { + title: "Criar um projeto", + description: "A maioria das coisas começa com um projeto no Plane.", + cta: "Começar", + }, + invite_team: { + title: "Convide sua equipe", + description: "Construa, entregue e gerencie com colegas de trabalho.", + cta: "Convidar", + }, + configure_workspace: { + title: "Configure seu espaço de trabalho.", + description: "Ative ou desative recursos ou vá além disso.", + cta: "Configurar este espaço de trabalho", + }, + personalize_account: { + title: "Personalize o Plane.", + description: "Escolha sua foto, cores e muito mais.", + cta: "Personalizar agora", + }, + widgets: { + title: "Está quieto sem widgets, ative-os", + description: + "Parece que todos os seus widgets estão desativados. Ative-os\nagora para melhorar sua experiência!", + primary_button: { + text: "Gerenciar widgets", + }, + }, + }, + quick_links: { + empty: "Salve links para os itens de trabalho que você gostaria de ter à mão.", + add: "Adicionar link rápido", + title: "Link rápido", + title_plural: "Links rápidos", + }, + recents: { + title: "Recentes", + empty: { + project: "Seus projetos recentes aparecerão aqui quando você visitar um.", + page: "Suas páginas recentes aparecerão aqui quando você visitar uma.", + issue: "Seus itens de trabalho recentes aparecerão aqui quando você visitar um.", + default: "Você não tem nenhum item recente ainda.", + }, + filters: { + all: "Todos", + projects: "Projetos", + pages: "Páginas", + issues: "Itens de trabalho", + }, + }, + new_at_plane: { + title: "Novidades no Plane", + }, + quick_tutorial: { + title: "Tutorial rápido", + }, + widget: { + reordered_successfully: "Widget reordenado com sucesso.", + reordering_failed: "Ocorreu um erro ao reordenar o widget.", + }, + manage_widgets: "Gerenciar widgets", + title: "Página inicial", + star_us_on_github: "Nos dê uma estrela no GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL inválido", + placeholder: "Digite ou cole um URL", + }, + title: { + text: "Título de exibição", + placeholder: "Como você gostaria de ver este link", + }, + }, + }, + common: { + all: "Todos", + states: "Estados", + state: "Estado", + state_groups: "Grupos de estado", + state_group: "Grupo de estado", + priorities: "Prioridades", + priority: "Prioridade", + team_project: "Projeto de equipe", + project: "Projeto", + cycle: "Ciclo", + cycles: "Ciclos", + module: "Módulo", + modules: "Módulos", + labels: "Etiquetas", + label: "Etiqueta", + assignees: "Responsáveis", + assignee: "Responsável", + created_by: "Criado por", + none: "Nenhum", + link: "Link", + estimates: "Estimativas", + estimate: "Estimativa", + created_at: "Criado em", + completed_at: "Concluído em", + layout: "Layout", + filters: "Filtros", + display: "Exibir", + load_more: "Carregar mais", + activity: "Atividade", + analytics: "Análises", + dates: "Datas", + success: "Sucesso!", + something_went_wrong: "Algo deu errado", + error: { + label: "Erro!", + message: "Ocorreu algum erro. Por favor, tente novamente.", + }, + group_by: "Agrupar por", + epic: "Épico", + epics: "Épicos", + work_item: "Item de trabalho", + work_items: "Itens de trabalho", + sub_work_item: "Sub-item de trabalho", + add: "Adicionar", + warning: "Aviso", + updating: "Atualizando", + adding: "Adicionando", + update: "Atualizar", + creating: "Criando", + create: "Criar", + cancel: "Cancelar", + description: "Descrição", + title: "Título", + attachment: "Anexo", + general: "Geral", + features: "Funcionalidades", + automation: "Automação", + project_name: "Nome do projeto", + project_id: "ID do projeto", + project_timezone: "Fuso horário do projeto", + created_on: "Criado em", + update_project: "Atualizar projeto", + identifier_already_exists: "O identificador já existe", + add_more: "Adicionar mais", + defaults: "Padrões", + add_label: "Adicionar etiqueta", + customize_time_range: "Personalizar intervalo de tempo", + loading: "Carregando", + attachments: "Anexos", + property: "Propriedade", + properties: "Propriedades", + parent: "Pai", + page: "Página", + remove: "Remover", + archiving: "Arquivando", + archive: "Arquivar", + access: { + public: "Público", + private: "Privado", + }, + done: "Concluído", + sub_work_items: "Sub-itens de trabalho", + comment: "Comentário", + workspace_level: "Nível do espaço de trabalho", + order_by: { + label: "Ordenar por", + manual: "Manual", + last_created: "Último criado", + last_updated: "Último atualizado", + start_date: "Data de início", + due_date: "Data de vencimento", + asc: "Ascendente", + desc: "Descendente", + updated_on: "Atualizado em", + }, + sort: { + asc: "Ascendente", + desc: "Descendente", + created_on: "Criado em", + updated_on: "Atualizado em", + }, + comments: "Comentários", + updates: "Atualizações", + clear_all: "Limpar tudo", + copied: "Copiado!", + link_copied: "Link copiado!", + link_copied_to_clipboard: "Link copiado para a área de transferência", + copied_to_clipboard: "Link do item de trabalho copiado para a área de transferência", + is_copied_to_clipboard: "O link do item de trabalho foi copiado para a área de transferência", + no_links_added_yet: "Nenhum link adicionado ainda", + add_link: "Adicionar link", + links: "Links", + go_to_workspace: "Ir para o espaço de trabalho", + progress: "Progresso", + optional: "Opcional", + join: "Participar", + go_back: "Voltar", + continue: "Continuar", + resend: "Reenviar", + relations: "Relações", + errors: { + default: { + title: "Erro!", + message: "Algo deu errado. Por favor, tente novamente.", + }, + required: "Este campo é obrigatório", + entity_required: "{entity} é obrigatório", + restricted_entity: "{entity} está restrito", + }, + update_link: "Atualizar link", + attach: "Anexar", + create_new: "Criar novo", + add_existing: "Adicionar existente", + type_or_paste_a_url: "Digite ou cole uma URL", + url_is_invalid: "URL inválida", + display_title: "Título de exibição", + link_title_placeholder: "Como você gostaria de ver este link", + url: "URL", + side_peek: "Visualização lateral", + modal: "Modal", + full_screen: "Tela cheia", + close_peek_view: "Fechar a visualização", + toggle_peek_view_layout: "Alternar layout de visualização rápida", + options: "Opções", + duration: "Duração", + today: "Hoje", + week: "Semana", + month: "Mês", + quarter: "Trimestre", + press_for_commands: "Pressione '/' para comandos", + click_to_add_description: "Clique para adicionar descrição", + search: { + label: "Buscar", + placeholder: "Digite para buscar", + no_matches_found: "Nenhum resultado encontrado", + no_matching_results: "Nenhum resultado correspondente", + }, + actions: { + edit: "Editar", + make_a_copy: "Fazer uma cópia", + open_in_new_tab: "Abrir em nova aba", + copy_link: "Copiar link", + archive: "Arquivar", + restore: "Restaurar", + delete: "Excluir", + remove_relation: "Remover relação", + subscribe: "Inscrever-se", + unsubscribe: "Cancelar inscrição", + clear_sorting: "Limpar ordenação", + show_weekends: "Mostrar fins de semana", + enable: "Habilitar", + disable: "Desabilitar", + }, + name: "Nome", + discard: "Descartar", + confirm: "Confirmar", + confirming: "Confirmando", + read_the_docs: "Ler a documentação", + default: "Padrão", + active: "Ativo", + enabled: "Habilitado", + disabled: "Desabilitado", + mandate: "Mandato", + mandatory: "Obrigatório", + yes: "Sim", + no: "Não", + please_wait: "Por favor, aguarde", + enabling: "Habilitando", + disabling: "Desabilitando", + beta: "Beta", + or: "ou", + next: "Próximo", + back: "Voltar", + cancelling: "Cancelando", + configuring: "Configurando", + clear: "Limpar", + import: "Importar", + connect: "Conectar", + authorizing: "Autorizando", + processing: "Processando", + no_data_available: "Nenhum dado disponível", + from: "de {name}", + authenticated: "Autenticado", + select: "Selecionar", + upgrade: "Upgrade", + add_seats: "Adicionar lugares", + projects: "Projetos", + workspace: "Espaço de trabalho", + workspaces: "Espaços de trabalho", + team: "Equipe", + teams: "Equipes", + entity: "Entidade", + entities: "Entidades", + task: "Tarefa", + tasks: "Tarefas", + section: "Seção", + sections: "Seções", + edit: "Editar", + connecting: "Conectando", + connected: "Conectado", + disconnect: "Desconectar", + disconnecting: "Desconectando", + installing: "Instalando", + install: "Instalar", + reset: "Redefinir", + live: "Ao vivo", + change_history: "Histórico de alterações", + coming_soon: "Em breve", + member: "Membro", + members: "Membros", + you: "Você", + upgrade_cta: { + higher_subscription: "Faça upgrade para uma assinatura superior", + talk_to_sales: "Fale com o departamento de vendas", + }, + category: "Categoria", + categories: "Categorias", + saving: "Salvando", + save_changes: "Salvar alterações", + delete: "Excluir", + deleting: "Excluindo", + pending: "Pendente", + invite: "Convidar", + view: "Visualizar", + deactivated_user: "Usuário desativado", + apply: "Aplicar", + applying: "Aplicando", + users: "Usuários", + admins: "Administradores", + guests: "Convidados", + on_track: "No caminho certo", + off_track: "Fora do caminho", + at_risk: "Em risco", + timeline: "Linha do tempo", + completion: "Conclusão", + upcoming: "Próximo", + completed: "Concluído", + in_progress: "Em andamento", + planned: "Planejado", + paused: "Pausado", + no_of: "Nº de {entity}", + resolved: "Resolvido", + }, + chart: { + x_axis: "Eixo X", + y_axis: "Eixo Y", + metric: "Métrica", + }, + form: { + title: { + required: "Título é obrigatório", + max_length: "O título deve ter menos de {length} caracteres", + }, + }, + entity: { + grouping_title: "Agrupamento de {entity}", + priority: "Prioridade de {entity}", + all: "Todos os {entity}", + drop_here_to_move: "Solte aqui para mover o {entity}", + delete: { + label: "Excluir {entity}", + success: "{entity} excluído com sucesso", + failed: "Falha ao excluir {entity}", + }, + update: { + failed: "Falha ao atualizar {entity}", + success: "{entity} atualizado com sucesso", + }, + link_copied_to_clipboard: "Link de {entity} copiado para a área de transferência", + fetch: { + failed: "Erro ao buscar {entity}", + }, + add: { + success: "{entity} adicionado com sucesso", + failed: "Erro ao adicionar {entity}", + }, + remove: { + success: "{entity} removido com sucesso", + failed: "Erro ao remover {entity}", + }, + }, + epic: { + all: "Todos os Épicos", + label: "{count, plural, one {Épico} other {Épicos}}", + new: "Novo Épico", + adding: "Adicionando épico", + create: { + success: "Épico criado com sucesso", + }, + add: { + press_enter: "Pressione 'Enter' para adicionar outro épico", + label: "Adicionar Épico", + }, + title: { + label: "Título do Épico", + required: "O título do épico é obrigatório.", + }, + }, + issue: { + label: "{count, plural, one {Item de trabalho} other {Itens de trabalho}}", + all: "Todos os Itens de trabalho", + edit: "Editar item de trabalho", + title: { + label: "Título do item de trabalho", + required: "O título do item de trabalho é obrigatório.", + }, + add: { + press_enter: "Pressione 'Enter' para adicionar outro item de trabalho", + label: "Adicionar item de trabalho", + cycle: { + failed: "Não foi possível adicionar o item de trabalho ao ciclo. Por favor, tente novamente.", + success: + "{count, plural, one {Item de trabalho} other {Itens de trabalho}} adicionado(s) ao ciclo com sucesso.", + loading: "Adicionando {count, plural, one {item de trabalho} other {itens de trabalho}} ao ciclo", + }, + assignee: "Adicionar responsáveis", + start_date: "Adicionar data de início", + due_date: "Adicionar data de vencimento", + parent: "Adicionar item de trabalho pai", + sub_issue: "Adicionar sub-item de trabalho", + relation: "Adicionar relação", + link: "Adicionar link", + existing: "Adicionar item de trabalho existente", + }, + remove: { + label: "Remover item de trabalho", + cycle: { + loading: "Removendo item de trabalho do ciclo", + success: "Item de trabalho removido do ciclo com sucesso.", + failed: "Não foi possível remover o item de trabalho do ciclo. Por favor, tente novamente.", + }, + module: { + loading: "Removendo item de trabalho do módulo", + success: "Item de trabalho removido do módulo com sucesso.", + failed: "Não foi possível remover o item de trabalho do módulo. Por favor, tente novamente.", + }, + parent: { + label: "Remover item de trabalho pai", + }, + }, + new: "Novo Item de trabalho", + adding: "Adicionando item de trabalho", + create: { + success: "Item de trabalho criado com sucesso", + }, + priority: { + urgent: "Urgente", + high: "Alta", + medium: "Média", + low: "Baixa", + }, + display: { + properties: { + label: "Exibir Propriedades", + id: "ID", + issue_type: "Tipo de Item de Trabalho", + sub_issue_count: "Contagem de sub-itens de trabalho", + attachment_count: "Contagem de anexos", + created_on: "Criado em", + sub_issue: "Sub-item de trabalho", + work_item_count: "Contagem de itens de trabalho", + }, + extra: { + show_sub_issues: "Mostrar sub-itens de trabalho", + show_empty_groups: "Mostrar grupos vazios", + }, + }, + layouts: { + ordered_by_label: "Este layout é ordenado por", + list: "Lista", + kanban: "Quadro", + calendar: "Calendário", + spreadsheet: "Tabela", + gantt: "Cronograma", + title: { + list: "Layout de Lista", + kanban: "Layout de Quadro", + calendar: "Layout de Calendário", + spreadsheet: "Layout de Tabela", + gantt: "Layout de Cronograma", + }, + }, + states: { + active: "Ativo", + backlog: "Backlog", + }, + comments: { + placeholder: "Adicionar comentário", + switch: { + private: "Alternar para comentário privado", + public: "Alternar para comentário público", + }, + create: { + success: "Comentário criado com sucesso", + error: "Falha ao criar o comentário. Por favor, tente novamente mais tarde.", + }, + update: { + success: "Comentário atualizado com sucesso", + error: "Falha ao atualizar o comentário. Por favor, tente novamente mais tarde.", + }, + remove: { + success: "Comentário removido com sucesso", + error: "Falha ao remover o comentário. Por favor, tente novamente mais tarde.", + }, + upload: { + error: "Falha ao carregar o recurso. Por favor, tente novamente mais tarde.", + }, + copy_link: { + success: "Link do comentário copiado para a área de transferência", + error: "Erro ao copiar o link do comentário. Tente novamente mais tarde.", + }, + }, + empty_state: { + issue_detail: { + title: "O item de trabalho não existe", + description: "O item de trabalho que você está procurando não existe, foi arquivado ou foi excluído.", + primary_button: { + text: "Visualizar outros itens de trabalho", + }, + }, + }, + sibling: { + label: "Itens de trabalho irmãos", + }, + archive: { + description: "Apenas itens de trabalho concluídos ou cancelados\npodem ser arquivados", + label: "Arquivar Item de Trabalho", + confirm_message: + "Tem certeza de que deseja arquivar o item de trabalho? Todos os seus itens de trabalho arquivados podem ser restaurados posteriormente.", + success: { + label: "Sucesso ao arquivar", + message: "Seus arquivos podem ser encontrados nos arquivos do projeto.", + }, + failed: { + message: "Não foi possível arquivar o item de trabalho. Por favor, tente novamente.", + }, + }, + restore: { + success: { + title: "Sucesso ao restaurar", + message: "Seu item de trabalho pode ser encontrado nos itens de trabalho do projeto.", + }, + failed: { + message: "Não foi possível restaurar o item de trabalho. Por favor, tente novamente.", + }, + }, + relation: { + relates_to: "Relacionado a", + duplicate: "Duplicado de", + blocked_by: "Bloqueado por", + blocking: "Bloqueando", + }, + copy_link: "Copiar link do item de trabalho", + delete: { + label: "Excluir item de trabalho", + error: "Erro ao excluir item de trabalho", + }, + subscription: { + actions: { + subscribed: "Item de trabalho inscrito com sucesso", + unsubscribed: "Item de trabalho não inscrito com sucesso", + }, + }, + select: { + error: "Selecione pelo menos um item de trabalho", + empty: "Nenhum item de trabalho selecionado", + add_selected: "Adicionar itens de trabalho selecionados", + select_all: "Selecionar tudo", + deselect_all: "Desmarcar tudo", + }, + open_in_full_screen: "Abrir item de trabalho em tela cheia", + }, + attachment: { + error: "Não foi possível anexar o arquivo. Tente enviar novamente.", + only_one_file_allowed: "Apenas um arquivo pode ser enviado por vez.", + file_size_limit: "O arquivo deve ter {size}MB ou menos.", + drag_and_drop: "Arraste e solte em qualquer lugar para enviar", + delete: "Excluir anexo", + }, + label: { + select: "Selecionar etiqueta", + create: { + success: "Etiqueta criada com sucesso", + failed: "Falha ao criar etiqueta", + already_exists: "Etiqueta já existe", + type: "Digite para adicionar uma nova etiqueta", + }, + }, + sub_work_item: { + update: { + success: "Sub-item de trabalho atualizado com sucesso", + error: "Erro ao atualizar sub-item de trabalho", + }, + remove: { + success: "Sub-item de trabalho removido com sucesso", + error: "Erro ao remover sub-item de trabalho", + }, + empty_state: { + sub_list_filters: { + title: "Você não tem sub-itens de trabalho que correspondem aos filtros que você aplicou.", + description: "Para ver todos os sub-itens de trabalho, limpe todos os filtros aplicados.", + action: "Limpar filtros", + }, + list_filters: { + title: "Você não tem itens de trabalho que correspondem aos filtros que você aplicou.", + description: "Para ver todos os itens de trabalho, limpe todos os filtros aplicados.", + action: "Limpar filtros", + }, + }, + }, + view: { + label: "{count, plural, one {Visualização} other {Visualizações}}", + create: { + label: "Criar Visualização", + }, + update: { + label: "Atualizar Visualização", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Pendente", + description: "Pendente", + }, + declined: { + title: "Recusado", + description: "Recusado", + }, + snoozed: { + title: "Adiado", + description: "{days, plural, one{Falta # dia} other{Faltam # dias}}", + }, + accepted: { + title: "Aceito", + description: "Aceito", + }, + duplicate: { + title: "Duplicado", + description: "Duplicado", + }, + }, + modals: { + decline: { + title: "Recusar item de trabalho", + content: "Tem certeza de que deseja recusar o item de trabalho {value}?", + }, + delete: { + title: "Excluir item de trabalho", + content: "Tem certeza de que deseja excluir o item de trabalho {value}?", + success: "Item de trabalho excluído com sucesso", + }, + }, + errors: { + snooze_permission: "Apenas administradores do projeto podem adiar/reativar itens de trabalho", + accept_permission: "Apenas administradores do projeto podem aceitar itens de trabalho", + decline_permission: "Apenas administradores do projeto podem recusar itens de trabalho", + }, + actions: { + accept: "Aceitar", + decline: "Recusar", + snooze: "Adiar", + unsnooze: "Reativar", + copy: "Copiar link do item de trabalho", + delete: "Excluir", + open: "Abrir item de trabalho", + mark_as_duplicate: "Marcar como duplicado", + move: "Mover {value} para os itens de trabalho do projeto", + }, + source: { + "in-app": "no aplicativo", + }, + order_by: { + created_at: "Criado em", + updated_at: "Atualizado em", + id: "ID", + }, + label: "Admissão", + page_label: "{workspace} - Admissão", + modal: { + title: "Criar item de trabalho de admissão", + }, + tabs: { + open: "Aberto", + closed: "Fechado", + }, + empty_state: { + sidebar_open_tab: { + title: "Nenhum item de trabalho aberto", + description: "Encontre itens de trabalho abertos aqui. Crie um novo item de trabalho.", + }, + sidebar_closed_tab: { + title: "Nenhum item de trabalho fechado", + description: "Todos os itens de trabalho, sejam aceitos ou recusados, podem ser encontrados aqui.", + }, + sidebar_filter: { + title: "Nenhum item de trabalho correspondente", + description: + "Nenhum item de trabalho corresponde ao filtro aplicado na admissão. Crie um novo item de trabalho.", + }, + detail: { + title: "Selecione um item de trabalho para visualizar seus detalhes.", + }, + }, + }, + workspace_creation: { + heading: "Crie seu espaço de trabalho", + subheading: "Para começar a usar o Plane, você precisa criar ou entrar em um espaço de trabalho.", + form: { + name: { + label: "Nomeie seu espaço de trabalho", + placeholder: "Algo familiar e reconhecível é sempre melhor.", + }, + url: { + label: "Defina o URL do seu espaço de trabalho", + placeholder: "Digite ou cole um URL", + edit_slug: "Você só pode editar o slug do URL", + }, + organization_size: { + label: "Quantas pessoas usarão este espaço de trabalho?", + placeholder: "Selecione um intervalo", + }, + }, + errors: { + creation_disabled: { + title: "Apenas o administrador da sua instância pode criar espaços de trabalho", + description: + "Se você souber o endereço de e-mail do administrador da sua instância, clique no botão abaixo para entrar em contato com ele.", + request_button: "Solicitar administrador da instância", + }, + validation: { + name_alphanumeric: + "Os nomes dos espaços de trabalho podem conter apenas (' '), ('-'), ('_') e caracteres alfanuméricos.", + name_length: "Limite seu nome a 80 caracteres.", + url_alphanumeric: "Os URLs podem conter apenas ('-') e caracteres alfanuméricos.", + url_length: "Limite seu URL a 48 caracteres.", + url_already_taken: "O URL do espaço de trabalho já está em uso!", + }, + }, + request_email: { + subject: "Solicitando um novo espaço de trabalho", + body: "Olá, administrador(es) da instância,\n\nPor favor, crie um novo espaço de trabalho com o URL [/nome-do-espaço-de-trabalho] para [finalidade de criar o espaço de trabalho].\n\nObrigado,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Criar espaço de trabalho", + loading: "Criando espaço de trabalho", + }, + toast: { + success: { + title: "Sucesso", + message: "Espaço de trabalho criado com sucesso", + }, + error: { + title: "Erro", + message: "Não foi possível criar o espaço de trabalho. Por favor, tente novamente.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Visão geral dos seus projetos, atividades e métricas", + description: + "Bem-vindo ao Plane, estamos animados por tê-lo aqui. Crie seu primeiro projeto e rastreie seus itens de trabalho, e esta página se transformará em um espaço que ajuda você a progredir. Os administradores também verão itens que ajudam sua equipe a progredir.", + primary_button: { + text: "Construa seu primeiro projeto", + comic: { + title: "Tudo começa com um projeto no Plane", + description: + "Um projeto pode ser o planejamento de um produto, uma campanha de marketing ou o lançamento de um novo carro.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Análises", + page_label: "{workspace} - Análises", + open_tasks: "Total de tarefas abertas", + error: "Ocorreu algum erro ao buscar os dados.", + work_items_closed_in: "Itens de trabalho fechados em", + selected_projects: "Projetos selecionados", + total_members: "Total de membros", + total_cycles: "Total de ciclos", + total_modules: "Total de módulos", + pending_work_items: { + title: "Itens de trabalho pendentes", + empty_state: "A análise de itens de trabalho pendentes por colegas de trabalho aparece aqui.", + }, + work_items_closed_in_a_year: { + title: "Itens de trabalho fechados em um ano", + empty_state: "Feche os itens de trabalho para visualizar a análise dos mesmos na forma de um gráfico.", + }, + most_work_items_created: { + title: "Itens de trabalho mais criados", + empty_state: "Colegas de trabalho e o número de itens de trabalho criados por eles aparecem aqui.", + }, + most_work_items_closed: { + title: "Itens de trabalho mais fechados", + empty_state: "Colegas de trabalho e o número de itens de trabalho fechados por eles aparecem aqui.", + }, + tabs: { + scope_and_demand: "Escopo e Demanda", + custom: "Análises Personalizadas", + }, + empty_state: { + customized_insights: { + description: "Os itens de trabalho atribuídos a você, divididos por estado, aparecerão aqui.", + title: "Ainda não há dados", + }, + created_vs_resolved: { + description: "Os itens de trabalho criados e resolvidos ao longo do tempo aparecerão aqui.", + title: "Ainda não há dados", + }, + project_insights: { + title: "Ainda não há dados", + description: "Os itens de trabalho atribuídos a você, divididos por estado, aparecerão aqui.", + }, + general: { + title: + "Acompanhe progresso, cargas de trabalho e alocações. Identifique tendências, remova bloqueios e trabalhe mais rápido", + description: + "Veja escopo versus demanda, estimativas e expansão de escopo. Obtenha desempenho por membros da equipe e equipes, garantindo que seu projeto seja executado no prazo.", + primary_button: { + text: "Comece seu primeiro projeto", + comic: { + title: "Analytics funciona melhor com Ciclos + Módulos", + description: + "Primeiro, defina um tempo limite para seus itens de trabalho em Ciclos e, se possível, agrupe itens que abrangem mais de um ciclo em Módulos. Confira ambos na navegação esquerda.", + }, + }, + }, + }, + created_vs_resolved: "Criado vs Resolvido", + customized_insights: "Insights personalizados", + backlog_work_items: "{entity} no backlog", + active_projects: "Projetos ativos", + trend_on_charts: "Tendência nos gráficos", + all_projects: "Todos os projetos", + summary_of_projects: "Resumo dos projetos", + project_insights: "Insights do projeto", + started_work_items: "{entity} iniciados", + total_work_items: "Total de {entity}", + total_projects: "Total de projetos", + total_admins: "Total de administradores", + total_users: "Total de usuários", + total_intake: "Receita total", + un_started_work_items: "{entity} não iniciados", + total_guests: "Total de convidados", + completed_work_items: "{entity} concluídos", + total: "Total de {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Projeto} other {Projetos}}", + create: { + label: "Adicionar Projeto", + }, + network: { + label: "Rede", + private: { + title: "Privado", + description: "Acessível apenas por convite", + }, + public: { + title: "Público", + description: "Qualquer pessoa no espaço de trabalho, exceto convidados, pode participar", + }, + }, + error: { + permission: "Você não tem permissão para realizar esta ação.", + cycle_delete: "Falha ao excluir o ciclo", + module_delete: "Falha ao excluir o módulo", + issue_delete: "Falha ao excluir o item de trabalho", + }, + state: { + backlog: "Backlog", + unstarted: "Não iniciado", + started: "Iniciado", + completed: "Concluído", + cancelled: "Cancelado", + }, + sort: { + manual: "Manual", + name: "Nome", + created_at: "Data de criação", + members_length: "Número de membros", + }, + scope: { + my_projects: "Meus projetos", + archived_projects: "Arquivados", + }, + common: { + months_count: "{months, plural, one{# mês} other{# meses}}", + }, + empty_state: { + general: { + title: "Nenhum projeto ativo", + description: + "Pense em cada projeto como o pai do trabalho orientado a objetivos. Os projetos são onde os Trabalhos, Ciclos e Módulos vivem e, junto com seus colegas, ajudam você a atingir esse objetivo. Crie um novo projeto ou filtre os projetos arquivados.", + primary_button: { + text: "Comece seu primeiro projeto", + comic: { + title: "Tudo começa com um projeto no Plane", + description: + "Um projeto pode ser o roteiro de um produto, uma campanha de marketing ou o lançamento de um novo carro.", + }, + }, + }, + no_projects: { + title: "Nenhum projeto", + description: + "Para criar itens de trabalho ou gerenciar seu trabalho, você precisa criar um projeto ou fazer parte de um.", + primary_button: { + text: "Comece seu primeiro projeto", + comic: { + title: "Tudo começa com um projeto no Plane", + description: + "Um projeto pode ser o roteiro de um produto, uma campanha de marketing ou o lançamento de um novo carro.", + }, + }, + }, + filter: { + title: "Nenhum projeto correspondente", + description: "Nenhum projeto detectado com os critérios correspondentes. \n Crie um novo projeto em vez disso.", + }, + search: { + description: "Nenhum projeto detectado com os critérios correspondentes.\nCrie um novo projeto em vez disso", + }, + }, + }, + workspace_views: { + add_view: "Adicionar visualização", + empty_state: { + "all-issues": { + title: "Nenhum item de trabalho no projeto", + description: + "Primeiro projeto concluído! Agora, divida seu trabalho em partes rastreáveis com itens de trabalho. Vamos lá!", + primary_button: { + text: "Criar novo item de trabalho", + }, + }, + assigned: { + title: "Nenhum item de trabalho ainda", + description: "Os itens de trabalho atribuídos a você podem ser rastreados aqui.", + primary_button: { + text: "Criar novo item de trabalho", + }, + }, + created: { + title: "Nenhum item de trabalho ainda", + description: "Todos os itens de trabalho criados por você vêm aqui, rastreie-os aqui diretamente.", + primary_button: { + text: "Criar novo item de trabalho", + }, + }, + subscribed: { + title: "Nenhum item de trabalho ainda", + description: "Inscreva-se nos itens de trabalho nos quais você está interessado, rastreie todos eles aqui.", + }, + "custom-view": { + title: "Nenhum item de trabalho ainda", + description: "Itens de trabalho que se aplicam aos filtros, rastreie todos eles aqui.", + }, + }, + }, + workspace_settings: { + label: "Configurações do espaço de trabalho", + page_label: "{workspace} - Configurações gerais", + key_created: "Chave criada", + copy_key: + "Copie e salve esta chave secreta no Páginas do Plane. Você não pode ver esta chave depois de clicar em Fechar. Um arquivo CSV contendo a chave foi baixado.", + token_copied: "Token copiado para a área de transferência.", + settings: { + general: { + title: "Geral", + upload_logo: "Carregar logo", + edit_logo: "Editar logo", + name: "Nome do espaço de trabalho", + company_size: "Tamanho da empresa", + url: "URL do espaço de trabalho", + update_workspace: "Atualizar espaço de trabalho", + delete_workspace: "Excluir este espaço de trabalho", + delete_workspace_description: + "Ao excluir um espaço de trabalho, todos os dados e recursos dentro desse espaço de trabalho serão permanentemente removidos e não poderão ser recuperados.", + delete_btn: "Excluir este espaço de trabalho", + delete_modal: { + title: "Tem certeza de que deseja excluir este espaço de trabalho?", + description: + "Você tem uma avaliação ativa para um de nossos planos pagos. Cancele-o primeiro para prosseguir.", + dismiss: "Dispensar", + cancel: "Cancelar avaliação", + success_title: "Espaço de trabalho excluído.", + success_message: "Em breve, você irá para a página do seu perfil.", + error_title: "Isso não funcionou.", + error_message: "Tente novamente, por favor.", + }, + errors: { + name: { + required: "O nome é obrigatório", + max_length: "O nome do espaço de trabalho não deve exceder 80 caracteres", + }, + company_size: { + required: "O tamanho da empresa é obrigatório", + select_a_range: "Selecione o tamanho da organização", + }, + }, + }, + members: { + title: "Membros", + add_member: "Adicionar membro", + pending_invites: "Convites pendentes", + invitations_sent_successfully: "Convites enviados com sucesso", + leave_confirmation: + "Tem certeza de que deseja sair do espaço de trabalho? Você não terá mais acesso a este espaço de trabalho. Esta ação não pode ser desfeita.", + details: { + full_name: "Nome completo", + display_name: "Nome de exibição", + email_address: "Endereço de e-mail", + account_type: "Tipo de conta", + authentication: "Autenticação", + joining_date: "Data de adesão", + }, + modal: { + title: "Convidar pessoas para colaborar", + description: "Convide pessoas para colaborar em seu espaço de trabalho.", + button: "Enviar convites", + button_loading: "Enviando convites", + placeholder: "nome@empresa.com", + errors: { + required: "Precisamos de um endereço de e-mail para convidá-los.", + invalid: "E-mail inválido", + }, + }, + }, + billing_and_plans: { + title: "Faturamento e planos", + current_plan: "Plano atual", + free_plan: "Você está usando o plano gratuito atualmente", + view_plans: "Ver planos", + }, + exports: { + title: "Exportações", + exporting: "Exportando", + previous_exports: "Exportações anteriores", + export_separate_files: "Exporte os dados em arquivos separados", + modal: { + title: "Exportar para", + toasts: { + success: { + title: "Exportação bem-sucedida", + message: "Você poderá baixar o(a) {entity} exportado(a) na exportação anterior.", + }, + error: { + title: "Falha na exportação", + message: "A exportação não foi bem-sucedida. Tente novamente.", + }, + }, + }, + }, + webhooks: { + title: "Webhooks", + add_webhook: "Adicionar webhook", + modal: { + title: "Criar webhook", + details: "Detalhes do webhook", + payload: "URL do payload", + question: "Quais eventos você gostaria de acionar este webhook?", + error: "URL é obrigatório", + }, + secret_key: { + title: "Chave secreta", + message: "Gere um token para fazer login no payload do webhook", + }, + options: { + all: "Envie-me tudo", + individual: "Selecionar eventos individuais", + }, + toasts: { + created: { + title: "Webhook criado", + message: "O webhook foi criado com sucesso", + }, + not_created: { + title: "Webhook não criado", + message: "O webhook não pôde ser criado", + }, + updated: { + title: "Webhook atualizado", + message: "O webhook foi atualizado com sucesso", + }, + not_updated: { + title: "Webhook não atualizado", + message: "O webhook não pôde ser atualizado", + }, + removed: { + title: "Webhook removido", + message: "O webhook foi removido com sucesso", + }, + not_removed: { + title: "Webhook não removido", + message: "O webhook não pôde ser removido", + }, + secret_key_copied: { + message: "Chave secreta copiada para a área de transferência.", + }, + secret_key_not_copied: { + message: "Ocorreu um erro ao copiar a chave secreta.", + }, + }, + }, + api_tokens: { + title: "Tokens de API", + add_token: "Adicionar token de API", + create_token: "Criar token", + never_expires: "Nunca expira", + generate_token: "Gerar token", + generating: "Gerando", + delete: { + title: "Excluir token de API", + description: + "Qualquer aplicativo que use este token não terá mais acesso aos dados do Plane. Esta ação não pode ser desfeita.", + success: { + title: "Sucesso!", + message: "O token de API foi excluído com sucesso", + }, + error: { + title: "Erro!", + message: "O token de API não pôde ser excluído", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Nenhum token de API criado", + description: + "As APIs do Plane podem ser usadas para integrar seus dados no Plane com qualquer sistema externo. Crie um token para começar.", + }, + webhooks: { + title: "Nenhum webhook adicionado", + description: "Crie webhooks para receber atualizações em tempo real e automatizar ações.", + }, + exports: { + title: "Nenhuma exportação ainda", + description: "Sempre que você exportar, você também terá uma cópia aqui para referência.", + }, + imports: { + title: "Nenhuma importação ainda", + description: "Encontre todas as suas importações anteriores aqui e baixe-as.", + }, + }, + }, + profile: { + label: "Perfil", + page_label: "Seu trabalho", + work: "Trabalho", + details: { + joined_on: "Entrou em", + time_zone: "Fuso horário", + }, + stats: { + workload: "Carga de trabalho", + overview: "Visão geral", + created: "Itens de trabalho criados", + assigned: "Itens de trabalho atribuídos", + subscribed: "Itens de trabalho inscritos", + state_distribution: { + title: "Itens de trabalho por estado", + empty: "Crie itens de trabalho para visualizá-los por estado no gráfico para uma melhor análise.", + }, + priority_distribution: { + title: "Itens de trabalho por prioridade", + empty: "Crie itens de trabalho para visualizá-los por prioridade no gráfico para uma melhor análise.", + }, + recent_activity: { + title: "Atividade recente", + empty: "Não foi possível encontrar dados. Por favor, verifique suas entradas", + button: "Baixar atividade de hoje", + button_loading: "Baixando", + }, + }, + actions: { + profile: "Perfil", + security: "Segurança", + activity: "Atividade", + appearance: "Aparência", + notifications: "Notificações", + }, + tabs: { + summary: "Resumo", + assigned: "Atribuído", + created: "Criado", + subscribed: "Inscrito", + activity: "Atividade", + }, + empty_state: { + activity: { + title: "Nenhuma atividade ainda", + description: + "Comece criando um novo item de trabalho! Adicione detalhes e propriedades a ele. Explore mais no Plane para ver sua atividade.", + }, + assigned: { + title: "Nenhum item de trabalho atribuído a você", + description: "Os itens de trabalho atribuídos a você podem ser rastreados aqui.", + }, + created: { + title: "Nenhum item de trabalho ainda", + description: "Todos os itens de trabalho criados por você vêm aqui, rastreie-os aqui diretamente.", + }, + subscribed: { + title: "Nenhum item de trabalho ainda", + description: "Inscreva-se nos itens de trabalho nos quais você está interessado, rastreie todos eles aqui.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Inserir ID do projeto", + please_select_a_timezone: "Por favor, selecione um fuso horário", + archive_project: { + title: "Arquivar projeto", + description: + "Arquivar um projeto removerá seu projeto da navegação lateral, embora você ainda possa acessá-lo na página de projetos. Você pode restaurar o projeto ou excluí-lo quando quiser.", + button: "Arquivar projeto", + }, + delete_project: { + title: "Excluir projeto", + description: + "Ao excluir um projeto, todos os dados e recursos dentro desse projeto serão removidos permanentemente e não poderão ser recuperados.", + button: "Excluir meu projeto", + }, + toast: { + success: "Projeto atualizado com sucesso", + error: "Não foi possível atualizar o projeto. Por favor, tente novamente.", + }, + }, + members: { + label: "Membros", + project_lead: "Líder do projeto", + default_assignee: "Responsável padrão", + guest_super_permissions: { + title: "Conceder acesso de visualização a todos os itens de trabalho para usuários convidados:", + sub_heading: + "Isso permitirá que os convidados tenham acesso de visualização a todos os itens de trabalho do projeto.", + }, + invite_members: { + title: "Convidar membros", + sub_heading: "Convide membros para trabalhar em seu projeto.", + select_co_worker: "Selecionar colega de trabalho", + }, + }, + states: { + describe_this_state_for_your_members: "Descreva este estado para seus membros.", + empty_state: { + title: "Nenhum estado disponível para o grupo {groupKey}", + description: "Por favor, crie um novo estado", + }, + }, + labels: { + label_title: "Título da etiqueta", + label_title_is_required: "O título da etiqueta é obrigatório", + label_max_char: "O nome da etiqueta não deve exceder 255 caracteres", + toast: { + error: "Erro ao atualizar a etiqueta", + }, + }, + estimates: { + label: "Estimativas", + title: "Habilitar estimativas para meu projeto", + description: "Elas ajudam você a comunicar a complexidade e a carga de trabalho da equipe.", + no_estimate: "Sem estimativa", + new: "Novo sistema de estimativa", + create: { + custom: "Personalizado", + start_from_scratch: "Começar do zero", + choose_template: "Escolher um modelo", + choose_estimate_system: "Escolher um sistema de estimativa", + enter_estimate_point: "Inserir estimativa", + step: "Passo {step} de {total}", + label: "Criar estimativa", + }, + toasts: { + created: { + success: { + title: "Estimativa criada", + message: "A estimativa foi criada com sucesso", + }, + error: { + title: "Falha na criação da estimativa", + message: "Não foi possível criar a nova estimativa, por favor tente novamente.", + }, + }, + updated: { + success: { + title: "Estimativa modificada", + message: "A estimativa foi atualizada em seu projeto.", + }, + error: { + title: "Falha na modificação da estimativa", + message: "Não foi possível modificar a estimativa, por favor tente novamente", + }, + }, + enabled: { + success: { + title: "Sucesso!", + message: "As estimativas foram habilitadas.", + }, + }, + disabled: { + success: { + title: "Sucesso!", + message: "As estimativas foram desabilitadas.", + }, + error: { + title: "Erro!", + message: "Não foi possível desabilitar a estimativa. Por favor, tente novamente", + }, + }, + }, + validation: { + min_length: "A estimativa precisa ser maior que 0.", + unable_to_process: "Não foi possível processar sua solicitação, por favor tente novamente.", + numeric: "A estimativa precisa ser um valor numérico.", + character: "A estimativa precisa ser um valor em caracteres.", + empty: "O valor da estimativa não pode estar vazio.", + already_exists: "O valor da estimativa já existe.", + unsaved_changes: "Você tem algumas alterações não salvas. Por favor, salve-as antes de clicar em concluir", + remove_empty: + "A estimativa não pode estar vazia. Insira um valor em cada campo ou remova aqueles para os quais você não tem valores.", + }, + systems: { + points: { + label: "Pontos", + fibonacci: "Fibonacci", + linear: "Linear", + squares: "Quadrados", + custom: "Personalizado", + }, + categories: { + label: "Categorias", + t_shirt_sizes: "Tamanhos de Camiseta", + easy_to_hard: "Fácil a difícil", + custom: "Personalizado", + }, + time: { + label: "Tempo", + hours: "Horas", + }, + }, + }, + automations: { + label: "Automações", + "auto-archive": { + title: "Arquivar automaticamente itens de trabalho fechados", + description: "O Plane arquivará automaticamente os itens de trabalho que foram concluídos ou cancelados.", + duration: "Arquivar automaticamente itens de trabalho que estão fechados por", + }, + "auto-close": { + title: "Fechar automaticamente itens de trabalho", + description: "O Plane fechará automaticamente os itens de trabalho que não foram concluídos ou cancelados.", + duration: "Fechar automaticamente itens de trabalho que estão inativos por", + auto_close_status: "Status de fechamento automático", + }, + }, + empty_state: { + labels: { + title: "Nenhuma etiqueta ainda", + description: "Crie etiquetas para ajudar a organizar e filtrar itens de trabalho em seu projeto.", + }, + estimates: { + title: "Nenhum sistema de estimativa ainda", + description: "Crie um conjunto de estimativas para comunicar a quantidade de trabalho por item de trabalho.", + primary_button: "Adicionar sistema de estimativa", + }, + }, + }, + project_cycles: { + add_cycle: "Adicionar ciclo", + more_details: "Mais detalhes", + cycle: "Ciclo", + update_cycle: "Atualizar ciclo", + create_cycle: "Criar ciclo", + no_matching_cycles: "Nenhum ciclo correspondente", + remove_filters_to_see_all_cycles: "Remova os filtros para ver todos os ciclos", + remove_search_criteria_to_see_all_cycles: "Remova os critérios de pesquisa para ver todos os ciclos", + only_completed_cycles_can_be_archived: "Apenas ciclos concluídos podem ser arquivados", + active_cycle: { + label: "Ciclo ativo", + progress: "Progresso", + chart: "Gráfico de burndown", + priority_issue: "Itens de trabalho prioritários", + assignees: "Responsáveis", + issue_burndown: "Burndown de itens de trabalho", + ideal: "Ideal", + current: "Atual", + labels: "Etiquetas", + }, + upcoming_cycle: { + label: "Próximo ciclo", + }, + completed_cycle: { + label: "Ciclo concluído", + }, + status: { + days_left: "Dias restantes", + completed: "Concluído", + yet_to_start: "Ainda não começou", + in_progress: "Em progresso", + draft: "Rascunho", + }, + action: { + restore: { + title: "Restaurar ciclo", + success: { + title: "Ciclo restaurado", + description: "O ciclo foi restaurado.", + }, + failed: { + title: "Falha ao restaurar o ciclo", + description: "Não foi possível restaurar o ciclo. Por favor, tente novamente.", + }, + }, + favorite: { + loading: "Adicionando ciclo aos favoritos", + success: { + description: "Ciclo adicionado aos favoritos.", + title: "Sucesso!", + }, + failed: { + description: "Não foi possível adicionar o ciclo aos favoritos. Por favor, tente novamente.", + title: "Erro!", + }, + }, + unfavorite: { + loading: "Removendo ciclo dos favoritos", + success: { + description: "Ciclo removido dos favoritos.", + title: "Sucesso!", + }, + failed: { + description: "Não foi possível remover o ciclo dos favoritos. Por favor, tente novamente.", + title: "Erro!", + }, + }, + update: { + loading: "Atualizando ciclo", + success: { + description: "Ciclo atualizado com sucesso.", + title: "Sucesso!", + }, + failed: { + description: "Erro ao atualizar o ciclo. Por favor, tente novamente.", + title: "Erro!", + }, + error: { + already_exists: + "Você já tem um ciclo nas datas fornecidas, se você quiser criar um ciclo de rascunho, você pode fazer isso removendo ambas as datas.", + }, + }, + }, + empty_state: { + general: { + title: "Agrupe e defina prazos para seu trabalho em Ciclos.", + description: + "Divida o trabalho em partes com prazos definidos, trabalhe de trás para frente a partir do prazo do seu projeto para definir datas e faça um progresso tangível como equipe.", + primary_button: { + text: "Defina seu primeiro ciclo", + comic: { + title: "Ciclos são caixas de tempo repetitivas.", + description: + "Uma sprint, uma iteração ou qualquer outro termo que você use para rastreamento semanal ou quinzenal do trabalho é um ciclo.", + }, + }, + }, + no_issues: { + title: "Nenhum item de trabalho adicionado ao ciclo", + description: "Adicione ou crie itens de trabalho que você deseja definir prazos e entregar dentro deste ciclo", + primary_button: { + text: "Criar novo item de trabalho", + }, + secondary_button: { + text: "Adicionar item de trabalho existente", + }, + }, + completed_no_issues: { + title: "Nenhum item de trabalho no ciclo", + description: + "Nenhum item de trabalho no ciclo. Os itens de trabalho são transferidos ou ocultos. Para ver os itens de trabalho ocultos, se houver, atualize suas propriedades de exibição de acordo.", + }, + active: { + title: "Nenhum ciclo ativo", + description: + "Um ciclo ativo inclui qualquer período que abranja a data de hoje dentro de seu intervalo. Encontre o progresso e os detalhes do ciclo ativo aqui.", + }, + archived: { + title: "Nenhum ciclo arquivado ainda", + description: + "Para organizar seu projeto, arquive os ciclos concluídos. Encontre-os aqui quando forem arquivados.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Crie um item de trabalho e atribua-o a alguém, mesmo a você mesmo", + description: + "Pense nos itens de trabalho como tarefas, trabalhos ou JTBD. O que nós gostamos. Um item de trabalho e seus subitens de trabalho são geralmente acionáveis ​​baseados no tempo atribuídos aos membros de sua equipe. Sua equipe cria, atribui e conclui itens de trabalho para mover seu projeto em direção à sua meta.", + primary_button: { + text: "Crie seu primeiro item de trabalho", + comic: { + title: "Os itens de trabalho são blocos de construção no Plane.", + description: + "Redesenhar a interface do usuário do Plane, reformular a marca da empresa ou lançar o novo sistema de injeção de combustível são exemplos de itens de trabalho que provavelmente têm subitens de trabalho.", + }, + }, + }, + no_archived_issues: { + title: "Nenhum item de trabalho arquivado ainda", + description: + "Manualmente ou por meio de automação, você pode arquivar itens de trabalho que foram concluídos ou cancelados. Encontre-os aqui quando forem arquivados.", + primary_button: { + text: "Definir automação", + }, + }, + issues_empty_filter: { + title: "Nenhum item de trabalho encontrado correspondendo aos filtros aplicados", + secondary_button: { + text: "Limpar todos os filtros", + }, + }, + }, + }, + project_module: { + add_module: "Adicionar Módulo", + update_module: "Atualizar Módulo", + create_module: "Criar Módulo", + archive_module: "Arquivar Módulo", + restore_module: "Restaurar Módulo", + delete_module: "Excluir módulo", + empty_state: { + general: { + title: "Mapeie os marcos do seu projeto para Módulos e rastreie o trabalho agregado facilmente.", + description: + "Um grupo de itens de trabalho que pertencem a um pai lógico e hierárquico forma um módulo. Pense neles como uma forma de rastrear o trabalho por marcos do projeto. Eles têm seus próprios períodos e prazos, bem como análises para ajudá-lo a ver o quão perto ou longe você está de um marco.", + primary_button: { + text: "Construa seu primeiro módulo", + comic: { + title: "Os módulos ajudam a agrupar o trabalho por hierarquia.", + description: + "Um módulo de carrinho, um módulo de chassi e um módulo de armazém são todos bons exemplos desse agrupamento.", + }, + }, + }, + no_issues: { + title: "Nenhum item de trabalho no módulo", + description: "Crie ou adicione itens de trabalho que você deseja realizar como parte deste módulo", + primary_button: { + text: "Criar novos itens de trabalho", + }, + secondary_button: { + text: "Adicionar um item de trabalho existente", + }, + }, + archived: { + title: "Nenhum Módulo arquivado ainda", + description: + "Para organizar seu projeto, arquive os módulos concluídos ou cancelados. Encontre-os aqui quando forem arquivados.", + }, + sidebar: { + in_active: "Este módulo ainda não está ativo.", + invalid_date: "Data inválida. Por favor, insira uma data válida.", + }, + }, + quick_actions: { + archive_module: "Arquivar módulo", + archive_module_description: "Apenas módulos concluídos ou cancelados\npodem ser arquivados.", + delete_module: "Excluir módulo", + }, + toast: { + copy: { + success: "Link do módulo copiado para a área de transferência", + }, + delete: { + success: "Módulo excluído com sucesso", + error: "Falha ao excluir o módulo", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Salve visualizações filtradas para o seu projeto. Crie quantas precisar", + description: + "As visualizações são um conjunto de filtros salvos que você usa com frequência ou deseja acesso fácil. Todos os seus colegas em um projeto podem ver as visualizações de todos e escolher o que melhor se adapta às suas necessidades.", + primary_button: { + text: "Crie sua primeira visualização", + comic: { + title: "As visualizações funcionam sobre as propriedades do item de trabalho.", + description: + "Você pode criar uma visualização a partir daqui com quantas propriedades como filtros que você achar adequado.", + }, + }, + }, + filter: { + title: "Nenhuma visualização correspondente", + description: + "Nenhuma visualização corresponde aos critérios de pesquisa.\nCrie uma nova visualização em vez disso.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Escreva uma nota, um documento ou uma base de conhecimento completa. Peça a Galileo, o assistente de IA do Plane, para ajudá-lo a começar", + description: + "As páginas são espaço para registrar pensamentos no Plane. Anote notas de reunião, formate-as facilmente, incorpore itens de trabalho, organize-os usando uma biblioteca de componentes e mantenha-os todos no contexto do seu projeto. Para facilitar qualquer documento, invoque Galileo, a IA do Plane, com um atalho ou o clique de um botão.", + primary_button: { + text: "Crie sua primeira página", + }, + }, + private: { + title: "Nenhuma página privada ainda", + description: + "Mantenha seus pensamentos privados aqui. Quando estiver pronto para compartilhar, a equipe está a apenas um clique de distância.", + primary_button: { + text: "Crie sua primeira página", + }, + }, + public: { + title: "Nenhuma página pública ainda", + description: "Veja as páginas compartilhadas com todos em seu projeto aqui mesmo.", + primary_button: { + text: "Crie sua primeira página", + }, + }, + archived: { + title: "Nenhuma página arquivada ainda", + description: "Arquive as páginas que não estão no seu radar. Acesse-as aqui quando necessário.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Nenhum resultado encontrado", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Nenhum item de trabalho correspondente encontrado", + }, + no_issues: { + title: "Nenhum item de trabalho encontrado", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Nenhum comentário ainda", + description: + "Os comentários podem ser usados como um espaço de discussão e acompanhamento para os itens de trabalho", + }, + }, + }, + notification: { + label: "Caixa de entrada", + page_label: "{workspace} - Caixa de entrada", + options: { + mark_all_as_read: "Marcar tudo como lido", + mark_read: "Marcar como lido", + mark_unread: "Marcar como não lido", + refresh: "Atualizar", + filters: "Filtros da caixa de entrada", + show_unread: "Mostrar não lidos", + show_snoozed: "Mostrar adiados", + show_archived: "Mostrar arquivados", + mark_archive: "Arquivar", + mark_unarchive: "Desarquivar", + mark_snooze: "Adiar", + mark_unsnooze: "Reativar", + }, + toasts: { + read: "Notificação marcada como lida", + unread: "Notificação marcada como não lida", + archived: "Notificação marcada como arquivada", + unarchived: "Notificação marcada como não arquivada", + snoozed: "Notificação adiada", + unsnoozed: "Notificação reativada", + }, + empty_state: { + detail: { + title: "Selecione para ver os detalhes.", + }, + all: { + title: "Nenhum item de trabalho atribuído", + description: "As atualizações para itens de trabalho atribuídos a você podem ser\nvistas aqui", + }, + mentions: { + title: "Nenhum item de trabalho atribuído", + description: "As atualizações para itens de trabalho atribuídos a você podem ser\nvistas aqui", + }, + }, + tabs: { + all: "Todos", + mentions: "Menções", + }, + filter: { + assigned: "Atribuído a mim", + created: "Criado por mim", + subscribed: "Inscrito por mim", + }, + snooze: { + "1_day": "1 dia", + "3_days": "3 dias", + "5_days": "5 dias", + "1_week": "1 semana", + "2_weeks": "2 semanas", + custom: "Personalizado", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Adicione itens de trabalho ao ciclo para visualizar seu progresso", + }, + chart: { + title: "Adicione itens de trabalho ao ciclo para visualizar o gráfico de burndown.", + }, + priority_issue: { + title: "Observe os itens de trabalho de alta prioridade abordados no ciclo rapidamente.", + }, + assignee: { + title: "Adicione responsáveis aos itens de trabalho para ver uma divisão do trabalho por responsáveis.", + }, + label: { + title: "Adicione etiquetas aos itens de trabalho para ver a divisão do trabalho por etiquetas.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "A Admissão não está habilitado para o projeto.", + description: + "A Admissão ajuda você a gerenciar as solicitações recebidas para o seu projeto e adicioná-las como itens de trabalho em seu fluxo de trabalho. Habilite a admissão nas configurações do projeto para gerenciar as solicitações.", + primary_button: { + text: "Gerenciar funcionalidades", + }, + }, + cycle: { + title: "Os ciclos não estão habilitados para este projeto.", + description: + "Divida o trabalho em partes com prazos definidos, trabalhe de trás para frente a partir do prazo do seu projeto para definir datas e faça um progresso tangível como equipe. Habilite o recurso de ciclos para o seu projeto para começar a usá-los.", + primary_button: { + text: "Gerenciar funcionalidades", + }, + }, + module: { + title: "Os módulos não estão habilitados para o projeto.", + description: + "Os módulos são os blocos de construção do seu projeto. Habilite os módulos nas configurações do projeto para começar a usá-los.", + primary_button: { + text: "Gerenciar funcionalidades", + }, + }, + page: { + title: "As páginas não estão habilitadas para o projeto.", + description: + "As páginas são os blocos de construção do seu projeto. Habilite as páginas nas configurações do projeto para começar a usá-las.", + primary_button: { + text: "Gerenciar funcionalidades", + }, + }, + view: { + title: "As visualizações não estão habilitadas para o projeto.", + description: + "As visualizações são os blocos de construção do seu projeto. Habilite as visualizações nas configurações do projeto para começar a usá-las.", + primary_button: { + text: "Gerenciar funcionalidades", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Rascunhar um item de trabalho", + empty_state: { + title: "Itens de trabalho semi-escritos e, em breve, os comentários aparecerão aqui.", + description: + "Para experimentar, comece a adicionar um item de trabalho e deixe-o no meio do caminho ou crie seu primeiro rascunho abaixo. 😉", + primary_button: { + text: "Criar seu primeiro rascunho", + }, + }, + delete_modal: { + title: "Excluir rascunho", + description: "Tem certeza de que deseja excluir este rascunho? Isso não pode ser desfeito.", + }, + toasts: { + created: { + success: "Rascunho criado", + error: "Não foi possível criar o item de trabalho. Por favor, tente novamente.", + }, + deleted: { + success: "Rascunho excluído", + }, + }, + }, + stickies: { + title: "Suas anotações", + placeholder: "clique para digitar aqui", + all: "Todas as anotações", + "no-data": "Anote uma ideia, capture um insight ou registre uma onda cerebral. Adicione uma anotação para começar.", + add: "Adicionar anotação", + search_placeholder: "Pesquisar por título", + delete: "Excluir anotação", + delete_confirmation: "Tem certeza de que deseja excluir esta anotação?", + empty_state: { + simple: "Anote uma ideia, capture um insight ou registre uma onda cerebral. Adicione uma anotação para começar.", + general: { + title: "As anotações são notas rápidas e tarefas que você anota rapidamente.", + description: + "Capture seus pensamentos e ideias sem esforço, criando anotações que você pode acessar a qualquer momento e de qualquer lugar.", + primary_button: { + text: "Adicionar anotação", + }, + }, + search: { + title: "Isso não corresponde a nenhuma de suas anotações.", + description: "Tente um termo diferente ou nos informe\nse você tem certeza de que sua pesquisa está correta.", + primary_button: { + text: "Adicionar anotação", + }, + }, + }, + toasts: { + errors: { + wrong_name: "O nome da anotação não pode ter mais de 100 caracteres.", + already_exists: "Já existe uma anotação sem descrição", + }, + created: { + title: "Anotação criada", + message: "A anotação foi criada com sucesso", + }, + not_created: { + title: "Anotação não criada", + message: "A anotação não pôde ser criada", + }, + updated: { + title: "Anotação atualizada", + message: "A anotação foi atualizada com sucesso", + }, + not_updated: { + title: "Anotação não atualizada", + message: "A anotação não pôde ser atualizada", + }, + removed: { + title: "Anotação removida", + message: "A anotação foi removida com sucesso", + }, + not_removed: { + title: "Anotação não removida", + message: "A anotação não pôde ser removida", + }, + }, + }, + role_details: { + guest: { + title: "Convidado", + description: "Membros externos de organizações podem ser convidados como convidados.", + }, + member: { + title: "Membro", + description: "Capacidade de ler, escrever, editar e excluir entidades dentro de projetos, ciclos e módulos", + }, + admin: { + title: "Administrador", + description: "Todas as permissões definidas como verdadeiras dentro do espaço de trabalho.", + }, + }, + user_roles: { + product_or_project_manager: "Gerente de Produto / Projeto", + development_or_engineering: "Desenvolvimento / Engenharia", + founder_or_executive: "Fundador / Executivo", + freelancer_or_consultant: "Freelancer / Consultor", + marketing_or_growth: "Marketing / Crescimento", + sales_or_business_development: "Vendas / Desenvolvimento de Negócios", + support_or_operations: "Suporte / Operações", + student_or_professor: "Estudante / Professor", + human_resources: "Recursos Humanos", + other: "Outro", + }, + importer: { + github: { + title: "Github", + description: "Importe itens de trabalho de repositórios do GitHub e sincronize-os.", + }, + jira: { + title: "Jira", + description: "Importe itens de trabalho e épicos de projetos e épicos do Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Exporte itens de trabalho para um arquivo CSV.", + short_description: "Exportar como CSV", + }, + excel: { + title: "Excel", + description: "Exporte itens de trabalho para um arquivo Excel.", + short_description: "Exportar como Excel", + }, + xlsx: { + title: "Excel", + description: "Exporte itens de trabalho para um arquivo Excel.", + short_description: "Exportar como Excel", + }, + json: { + title: "JSON", + description: "Exporte itens de trabalho para um arquivo JSON.", + short_description: "Exportar como JSON", + }, + }, + default_global_view: { + all_issues: "Todos os itens de trabalho", + assigned: "Atribuído", + created: "Criado", + subscribed: "Inscrito", + }, + themes: { + theme_options: { + system_preference: { + label: "Preferência do sistema", + }, + light: { + label: "Claro", + }, + dark: { + label: "Escuro", + }, + light_contrast: { + label: "Alto contraste claro", + }, + dark_contrast: { + label: "Alto contraste escuro", + }, + custom: { + label: "Tema personalizado", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Planejado", + in_progress: "Em Andamento", + paused: "Pausado", + completed: "Concluído", + cancelled: "Cancelado", + }, + layout: { + list: "Layout de lista", + board: "Layout de galeria", + timeline: "Layout de linha do tempo", + }, + order_by: { + name: "Nome", + progress: "Progresso", + issues: "Número de itens de trabalho", + due_date: "Data de vencimento", + created_at: "Data de criação", + manual: "Manual", + }, + }, + cycle: { + label: "{count, plural, one {Ciclo} other {Ciclos}}", + no_cycle: "Nenhum ciclo", + }, + module: { + label: "{count, plural, one {Módulo} other {Módulos}}", + no_module: "Nenhum módulo", + }, + description_versions: { + last_edited_by: "Última edição por", + previously_edited_by: "Anteriormente editado por", + edited_by: "Editado por", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "O Plane não inicializou. Isso pode ser porque um ou mais serviços do Plane falharam ao iniciar.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Escolha View Logs do setup.sh e logs do Docker para ter certeza.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Estrutura", + empty_state: { + title: "Cabeçalhos ausentes", + description: "Vamos adicionar alguns cabeçalhos nesta página para vê-los aqui.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Palavras", + characters: "Caracteres", + paragraphs: "Parágrafos", + read_time: "Tempo de leitura", + }, + actors_info: { + edited_by: "Editado por", + created_by: "Criado por", + }, + version_history: { + label: "Histórico de versões", + current_version: "Versão atual", + }, + }, + assets: { + label: "Recursos", + download_button: "Baixar", + empty_state: { + title: "Imagens ausentes", + description: "Adicione imagens para vê-las aqui.", + }, + }, + }, + open_button: "Abrir painel de navegação", + close_button: "Fechar painel de navegação", + outline_floating_button: "Abrir estrutura", + }, +} as const; diff --git a/packages/i18n/src/locales/ro/accessibility.json b/packages/i18n/src/locales/ro/accessibility.json deleted file mode 100644 index 52f5554815..0000000000 --- a/packages/i18n/src/locales/ro/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo spațiu de lucru", - "open_workspace_switcher": "Deschide comutator spațiu de lucru", - "open_user_menu": "Deschide meniul utilizatorului", - "open_command_palette": "Deschide paleta de comenzi", - "open_extended_sidebar": "Deschide bara laterală extinsă", - "close_extended_sidebar": "Închide bara laterală extinsă", - "create_favorites_folder": "Creează folder de favorite", - "open_folder": "Deschide folderul", - "close_folder": "Închide folderul", - "open_favorites_menu": "Deschide meniul de favorite", - "close_favorites_menu": "Închide meniul de favorite", - "enter_folder_name": "Introduceți numele folderului", - "create_new_project": "Creează proiect nou", - "open_projects_menu": "Deschide meniul de proiecte", - "close_projects_menu": "Închide meniul de proiecte", - "toggle_quick_actions_menu": "Comută meniul de acțiuni rapide", - "open_project_menu": "Deschide meniul proiectului", - "close_project_menu": "Închide meniul proiectului", - "collapse_sidebar": "Restrânge bara laterală", - "expand_sidebar": "Extinde bara laterală", - "edition_badge": "Deschide modalul planurilor plătite" - }, - "auth_forms": { - "clear_email": "Șterge e-mailul", - "show_password": "Afișează parola", - "hide_password": "Ascunde parola", - "close_alert": "Închide alerta", - "close_popover": "Închide popover-ul" - } - } -} diff --git a/packages/i18n/src/locales/ro/accessibility.ts b/packages/i18n/src/locales/ro/accessibility.ts new file mode 100644 index 0000000000..992467931a --- /dev/null +++ b/packages/i18n/src/locales/ro/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo spațiu de lucru", + open_workspace_switcher: "Deschide comutator spațiu de lucru", + open_user_menu: "Deschide meniul utilizatorului", + open_command_palette: "Deschide paleta de comenzi", + open_extended_sidebar: "Deschide bara laterală extinsă", + close_extended_sidebar: "Închide bara laterală extinsă", + create_favorites_folder: "Creează folder de favorite", + open_folder: "Deschide folderul", + close_folder: "Închide folderul", + open_favorites_menu: "Deschide meniul de favorite", + close_favorites_menu: "Închide meniul de favorite", + enter_folder_name: "Introduceți numele folderului", + create_new_project: "Creează proiect nou", + open_projects_menu: "Deschide meniul de proiecte", + close_projects_menu: "Închide meniul de proiecte", + toggle_quick_actions_menu: "Comută meniul de acțiuni rapide", + open_project_menu: "Deschide meniul proiectului", + close_project_menu: "Închide meniul proiectului", + collapse_sidebar: "Restrânge bara laterală", + expand_sidebar: "Extinde bara laterală", + edition_badge: "Deschide modalul planurilor plătite", + }, + auth_forms: { + clear_email: "Șterge e-mailul", + show_password: "Afișează parola", + hide_password: "Ascunde parola", + close_alert: "Închide alerta", + close_popover: "Închide popover-ul", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/ro/editor.json b/packages/i18n/src/locales/ro/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/ro/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/ro/editor.ts b/packages/i18n/src/locales/ro/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/ro/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/ro/translations.json b/packages/i18n/src/locales/ro/translations.json deleted file mode 100644 index 46c42f683a..0000000000 --- a/packages/i18n/src/locales/ro/translations.json +++ /dev/null @@ -1,2527 +0,0 @@ -{ - "sidebar": { - "projects": "Proiecte", - "pages": "Documentație", - "new_work_item": "Activitate nouă", - "home": "Acasă", - "your_work": "Munca ta", - "inbox": "Căsuță de mesaje", - "workspace": "Spațiu de lucru", - "views": "Perspective", - "analytics": "Statistici", - "work_items": "Activități", - "cycles": "Cicluri", - "modules": "Module", - "intake": "Cereri", - "drafts": "Schițe", - "favorites": "Favorite", - "pro": "Pro", - "upgrade": "Treci la versiunea superioară" - }, - "auth": { - "common": { - "email": { - "label": "Email", - "placeholder": "nume@companie.ro", - "errors": { - "required": "Email-ul este obligatoriu", - "invalid": "Email-ul nu este valid" - } - }, - "password": { - "label": "Parolă", - "set_password": "Setează o parolă", - "placeholder": "Introdu parola", - "confirm_password": { - "label": "Confirmă parola", - "placeholder": "Confirmă parola" - }, - "current_password": { - "label": "Parola curentă" - }, - "new_password": { - "label": "Parolă nouă", - "placeholder": "Introdu parola nouă" - }, - "change_password": { - "label": { - "default": "Schimbă parola", - "submitting": "Se schimbă parola" - } - }, - "errors": { - "match": "Parolele nu se potrivesc", - "empty": "Te rugăm să introduci parola", - "length": "Parola trebuie să aibă mai mult de 8 caractere", - "strength": { - "weak": "Parola este slabă", - "strong": "Parola este puternică" - } - }, - "submit": "Setează parola", - "toast": { - "change_password": { - "success": { - "title": "Succes!", - "message": "Parola a fost schimbată cu succes." - }, - "error": { - "title": "Eroare!", - "message": "Ceva nu a funcționat. Te rugăm să încerci din nou." - } - } - } - }, - "unique_code": { - "label": "Cod unic", - "placeholder": "exemplu-cod-unic", - "paste_code": "Introdu codul trimis pe email", - "requesting_new_code": "Se solicită un cod nou", - "sending_code": "Se trimite codul" - }, - "already_have_an_account": "Ai deja un cont?", - "login": "Autentificare", - "create_account": "Creează un cont", - "new_to_plane": "Ești nou în Plane?", - "back_to_sign_in": "Înapoi la autentificare", - "resend_in": "Retrimite în {seconds} secunde", - "sign_in_with_unique_code": "Autentificare cu cod unic", - "forgot_password": "Ți-ai uitat parola?" - }, - "sign_up": { - "header": { - "label": "Creează un cont pentru a începe să-ți gestionezi activitatea împreună cu echipa ta.", - "step": { - "email": { - "header": "Înregistrare", - "sub_header": "" - }, - "password": { - "header": "Înregistrare", - "sub_header": "Înregistrează-te folosind o combinație email-parolă." - }, - "unique_code": { - "header": "Înregistrare", - "sub_header": "Înregistrează-te folosind un cod unic trimis pe adresa de email de mai sus." - } - } - }, - "errors": { - "password": { - "strength": "Setează o parolă puternică pentru a continua" - } - } - }, - "sign_in": { - "header": { - "label": "Autentifică-te pentru a începe să-ți gestionezi activitatea împreună cu echipa ta.", - "step": { - "email": { - "header": "Autentificare sau înregistrare", - "sub_header": "" - }, - "password": { - "header": "Autentificare sau înregistrare", - "sub_header": "Folosește combinația email-parolă pentru a te autentifica." - }, - "unique_code": { - "header": "Autentificare sau înregistrare", - "sub_header": "Autentifică-te folosind un cod unic trimis pe adresa de email de mai sus." - } - } - } - }, - "forgot_password": { - "title": "Resetează-ți parola", - "description": "Introdu adresa de email verificată a contului tău și îți vom trimite un link pentru resetarea parolei.", - "email_sent": "Am trimis link-ul de resetare pe adresa ta de email", - "send_reset_link": "Trimite link-ul de resetare", - "errors": { - "smtp_not_enabled": "Se pare că administratorul nu a activat SMTP, nu putem trimite link-ul de resetare a parolei" - }, - "toast": { - "success": { - "title": "Email trimis", - "message": "Verifică-ți căsuța de mesaje pentru link-ul de resetare a parolei. Dacă nu apare în câteva minute, verifică folderul de spam." - }, - "error": { - "title": "Eroare!", - "message": "Ceva nu a funcționat. Te rugăm să încerci din nou." - } - } - }, - "reset_password": { - "title": "Setează o parolă nouă", - "description": "Protejează-ți contul cu o parolă puternică" - }, - "set_password": { - "title": "Protejează-ți contul", - "description": "Setarea parolei te ajută să te autentifici în siguranță" - }, - "sign_out": { - "toast": { - "error": { - "title": "Eroare!", - "message": "Deconectarea a eșuat. Te rugăm să încerci din nou." - } - } - } - }, - "submit": "Trimite", - "cancel": "Anulează", - "loading": "Se încarcă", - "error": "Eroare", - "success": "Succes", - "warning": "Avertisment", - "info": "Informații", - "close": "Închide", - "yes": "Da", - "no": "Nu", - "ok": "OK", - "name": "Nume", - "description": "Descriere", - "search": "Caută", - "add_member": "Adaugă membru", - "adding_members": "Se adaugă membri", - "remove_member": "Elimină membru", - "add_members": "Adaugă membri", - "adding_member": "Se adaugă membru", - "remove_members": "Elimină membri", - "add": "Adaugă", - "adding": "Se adaugă", - "remove": "Elimină", - "add_new": "Adaugă nou", - "remove_selected": "Elimină selecția", - "first_name": "Prenume", - "last_name": "Nume de familie", - "email": "Email", - "display_name": "Nume afișat", - "role": "Rol", - "timezone": "Fus orar", - "avatar": "Imagine de profil", - "cover_image": "Copertă", - "password": "Parolă", - "change_cover": "Schimbă coperta", - "language": "Limbă", - "saving": "Se salvează", - "save_changes": "Salvează modificările", - "deactivate_account": "Dezactivează contul", - "deactivate_account_description": "Când dezactivezi un cont, toate datele și activitățile din acel cont vor fi șterse permanent și nu pot fi recuperate.", - "profile_settings": "Setări profil", - "your_account": "Contul tău", - "security": "Securitate", - "activity": "Activitate", - "appearance": "Aspect", - "notifications": "Notificări", - "workspaces": "Spații de lucru", - "create_workspace": "Creează spațiu de lucru", - "invitations": "Invitații", - "summary": "Rezumat", - "assigned": "Responsabil", - "created": "Creat", - "subscribed": "Abonat", - "you_do_not_have_the_permission_to_access_this_page": "Nu ai permisiunea de a accesa această pagină.", - "something_went_wrong_please_try_again": "Ceva nu a funcționat. Te rugăm să încerci din nou.", - "load_more": "Încarcă mai mult", - "select_or_customize_your_interface_color_scheme": "Selectează sau personalizează schema de culori a interfeței.", - "theme": "Temă", - "system_preference": "Preferință de sistem", - "light": "Luminos", - "dark": "Întunecat", - "light_contrast": "Luminos - contrast ridicat", - "dark_contrast": "Întunecat - contrast ridicat", - "custom": "Temă personalizată", - "select_your_theme": "Selectează tema", - "customize_your_theme": "Personalizează tema", - "background_color": "Culoare fundal", - "text_color": "Culoare text", - "primary_color": "Culoare principală (temă)", - "sidebar_background_color": "Culoare fundal bară laterală", - "sidebar_text_color": "Culoare text bară laterală", - "set_theme": "Setează tema", - "enter_a_valid_hex_code_of_6_characters": "Introdu un cod hexadecimal valid de 6 caractere", - "background_color_is_required": "Culoarea de fundal este obligatorie", - "text_color_is_required": "Culoarea textului este obligatorie", - "primary_color_is_required": "Culoarea principală este obligatorie", - "sidebar_background_color_is_required": "Culoarea de fundal a barei laterale este obligatorie", - "sidebar_text_color_is_required": "Culoarea textului din bara laterală este obligatorie", - "updating_theme": "Se actualizează tema", - "theme_updated_successfully": "Tema a fost actualizată cu succes", - "failed_to_update_the_theme": "Eroare la actualizarea temei", - "email_notifications": "Notificări prin email", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Rămâi la curent cu activitățile la care ești abonat. Activează această opțiune pentru a primi notificări.", - "email_notification_setting_updated_successfully": "Setarea notificărilor prin email a fost actualizată cu succes", - "failed_to_update_email_notification_setting": "Eroare la actualizarea setării notificărilor prin email", - "notify_me_when": "Notifică-mă când", - "property_changes": "Se modifică proprietățile", - "property_changes_description": "Notifică-mă când proprietăți precum responsabilii, prioritatea, estimările sau altele se modifică.", - "state_change": "Se schimbă starea", - "state_change_description": "Notifică-mă când activitățile trec într-o stare diferită", - "issue_completed": "Activitate finalizată", - "issue_completed_description": "Notifică-mă doar când o activitate este finalizată", - "comments": "Comentarii", - "comments_description": "Notifică-mă când cineva lasă un comentariu la o activitate", - "mentions": "Mențiuni", - "mentions_description": "Notifică-mă doar când cineva mă menționează în comentarii sau descriere", - "old_password": "Parolă veche", - "general_settings": "Setări generale", - "sign_out": "Deconectează-te", - "signing_out": "Se deconectează", - "active_cycles": "Cicluri active", - "active_cycles_description": "Monitorizează ciclurile din proiecte, urmărește activitățile prioritare și focalizează-te pe ciclurile care necesită atenție.", - "on_demand_snapshots_of_all_your_cycles": "Instantanee la cerere ale tuturor ciclurilor tale", - "upgrade": "Treci la o versiune superioră", - "10000_feet_view": "Vedere de ansamblu asupra tuturor ciclurilor active.", - "10000_feet_view_description": "Vezi în ansamblu și simultan toate ciclurile active din proiectele tale, fără a naviga individual la fiecare ciclu.", - "get_snapshot_of_each_active_cycle": "Obține un instantaneu al fiecărui ciclu activ.", - "get_snapshot_of_each_active_cycle_description": "Urmărește statisticile generale pentru toate ciclurile active, vezi progresul și estimează volumul de muncă în raport cu termenele limită.", - "compare_burndowns": "Compară graficele de finalizare a activităților ", - "compare_burndowns_description": "Monitorizează performanța echipelor tale, analizând graficul de finalizare a activităților ale fiecărui ciclu.", - "quickly_see_make_or_break_issues": "Vezi rapid activitățile critice.", - "quickly_see_make_or_break_issues_description": "Previzualizează activitățile prioritare pentru fiecare ciclu în funcție de termene. Vizualizează-le pe toate dintr-un singur click.", - "zoom_into_cycles_that_need_attention": "Concentrează-te pe ciclurile care necesită atenție.", - "zoom_into_cycles_that_need_attention_description": "Analizează starea oricărui ciclu care nu corespunde așteptărilor, dintr-un singur click.", - "stay_ahead_of_blockers": "Anticipează blocajele.", - "stay_ahead_of_blockers_description": "Identifică provocările între proiecte și vezi dependențele între cicluri care altfel nu sunt evidente.", - "analytics": "Statistici", - "workspace_invites": "Invitațiile din spațiul de lucru", - "enter_god_mode": "Activează modul Dumnezeu", - "workspace_logo": "Sigla spațiului de lucru", - "new_issue": "Activitate nouă", - "your_work": "Munca ta", - "drafts": "Schițe", - "projects": "Proiecte", - "views": "Perspective", - "workspace": "Spațiu de lucru", - "archives": "Arhive", - "settings": "Setări", - "failed_to_move_favorite": "Nu s-a putut muta favorita", - "favorites": "Favorite", - "no_favorites_yet": "Nicio favorită încă", - "create_folder": "Creează dosar", - "new_folder": "Dosar nou", - "favorite_updated_successfully": "Favorita a fost actualizată cu succes", - "favorite_created_successfully": "Favorita a fost creată cu succes", - "folder_already_exists": "Dosarul există deja", - "folder_name_cannot_be_empty": "Numele dosarului nu poate fi gol", - "something_went_wrong": "Ceva nu a funcționat", - "failed_to_reorder_favorite": "Nu s-a putut reordona favorita", - "favorite_removed_successfully": "Favorita a fost eliminată cu succes", - "failed_to_create_favorite": "Nu s-a putut crea favorita", - "failed_to_rename_favorite": "Nu s-a putut redenumi favorita", - "project_link_copied_to_clipboard": "Link-ul proiectului a fost copiat în memoria temporară", - "link_copied": "Link copiat", - "add_project": "Adaugă proiect", - "create_project": "Creează proiect", - "failed_to_remove_project_from_favorites": "Nu s-a putut elimina proiectul din favorite. Încearcă din nou.", - "project_created_successfully": "Proiect creat cu succes", - "project_created_successfully_description": "Proiect creat cu succes. Poți începe să adaugi activități în el.", - "project_name_already_taken": "Numele proiectului este deja folosit.", - "project_identifier_already_taken": "Identificatorul proiectului este deja folosit.", - "project_cover_image_alt": "Coperta proiectului", - "name_is_required": "Numele este obligatoriu", - "title_should_be_less_than_255_characters": "Titlul trebuie să conțină mai puțin de 255 de caractere", - "project_name": "Numele proiectului", - "project_id_must_be_at_least_1_character": "ID-ul proiectului trebuie să conțină cel puțin 1 caracter", - "project_id_must_be_at_most_5_characters": "ID-ul proiectului trebuie să conțină cel mult 5 caractere", - "project_id": "ID-ul Proiectului", - "project_id_tooltip_content": "Te ajută să identifici unic activitățile din proiect. Maxim 5 caractere.", - "description_placeholder": "Descriere", - "only_alphanumeric_non_latin_characters_allowed": "Sunt permise doar caractere alfanumerice și non-latine.", - "project_id_is_required": "ID-ul proiectului este obligatoriu", - "project_id_allowed_char": "Sunt permise doar caractere alfanumerice și non-latine.", - "project_id_min_char": "ID-ul proiectului trebuie să aibă cel puțin 1 caracter", - "project_id_max_char": "ID-ul proiectului trebuie să aibă cel mult 5 caractere", - "project_description_placeholder": "Introdu descrierea proiectului", - "select_network": "Selectează rețeaua", - "lead": "Lider", - "date_range": "Interval de date", - "private": "Privat", - "public": "Public", - "accessible_only_by_invite": "Accesibil doar prin invitație", - "anyone_in_the_workspace_except_guests_can_join": "Oricine din spațiul de lucru, cu excepția celor de tip Invitat, se poate alătura", - "creating": "Se creează", - "creating_project": "Se creează proiectul", - "adding_project_to_favorites": "Se adaugă proiectul la favorite", - "project_added_to_favorites": "Proiectul a fost adăugat la favorite", - "couldnt_add_the_project_to_favorites": "Nu s-a putut adăuga proiectul la favorite. Încearcă din nou.", - "removing_project_from_favorites": "Se elimină proiectul din favorite", - "project_removed_from_favorites": "Proiectul a fost eliminat din favorite", - "couldnt_remove_the_project_from_favorites": "Nu s-a putut elimina proiectul din favorite. Încearcă din nou.", - "add_to_favorites": "Adaugă la favorite", - "remove_from_favorites": "Elimină din favorite", - "publish_project": "Publică proiectul", - "publish": "Publică", - "copy_link": "Copiază link-ul", - "leave_project": "Părăsește proiectul", - "join_the_project_to_rearrange": "Alătură-te proiectului pentru a rearanja", - "drag_to_rearrange": "Trage pentru a rearanja", - "congrats": "Felicitări!", - "open_project": "Deschide proiectul", - "issues": "Activități", - "cycles": "Cicluri", - "modules": "Module", - "pages": "Documentație", - "intake": "Cereri", - "time_tracking": "Monitorizare timp", - "work_management": "Gestionare muncă", - "projects_and_issues": "Proiecte și activități", - "projects_and_issues_description": "Activează sau dezactivează aceste opțiuni pentru proiect.", - "cycles_description": "Stabilește perioade de timp pentru fiecare proiect și ajustează-le după cum este necesar. Un ciclu poate dura 2 săptămâni, următorul 1 săptămână.", - "modules_description": "Organizează munca în sub-proiecte cu lideri și responsabili dedicați.", - "views_description": "Salvează sortările, filtrele și opțiunile de afișare personalizate sau distribuie-le echipei tale.", - "pages_description": "Creează și editează conținut liber: note, documente, orice.", - "intake_description": "Permite utilizatorilor care nu sunt membri să trimită erori, feedback și sugestii fără a perturba fluxul de lucru.", - "time_tracking_description": "Înregistrează timpul petrecut pe activități și proiecte.", - "work_management_description": "Gestionează-ți munca și proiectele cu ușurință.", - "documentation": "Documentație", - "message_support": "Trimite mesaj la suport", - "contact_sales": "Contactează vânzările", - "hyper_mode": "Mod Hyper", - "keyboard_shortcuts": "Scurtături tastatură", - "whats_new": "Ce e nou?", - "version": "Versiune", - "we_are_having_trouble_fetching_the_updates": "Avem probleme în a prelua actualizările.", - "our_changelogs": "jurnalele noastre de modificări", - "for_the_latest_updates": "pentru cele mai recente actualizări.", - "please_visit": "Te rugăm să vizitezi", - "docs": "Documentație", - "full_changelog": "Jurnal complet al modificărilor", - "support": "Suport", - "discord": "Discord", - "powered_by_plane_pages": "Oferit de Plane Documentație", - "please_select_at_least_one_invitation": "Te rugăm să selectezi cel puțin o invitație.", - "please_select_at_least_one_invitation_description": "Te rugăm să selectezi cel puțin o invitație pentru a te alătura spațiului de lucru.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Se pare că cineva te-a invitat să te alături unui spațiu de lucru", - "join_a_workspace": "Alătură-te unui spațiu de lucru", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Se pare că cineva te-a invitat să te alături unui spațiu de lucru", - "join_a_workspace_description": "Alătură-te unui spațiu de lucru", - "accept_and_join": "Acceptă și alătură-te", - "go_home": "Mergi la început", - "no_pending_invites": "Nicio invitație în așteptare", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Aici vei vedea dacă cineva te-a invitat într-un spațiu de lucru", - "back_to_home": "Înapoi la început", - "workspace_name": "nume-spațiu-de-lucru", - "deactivate_your_account": "Dezactivează-ți contul", - "deactivate_your_account_description": "Odată dezactivat, nu vei mai putea primi activități sau fi taxat pentru spațiul tău de lucru. Pentru a-ți reactiva contul, vei avea nevoie de o invitație către un spațiu de lucru la această adresă de email.", - "deactivating": "Se dezactivează", - "confirm": "Confirmă", - "confirming": "Se confirmă", - "draft_created": "Schiță creată", - "issue_created_successfully": "Activitate creată cu succes", - "draft_creation_failed": "Crearea schiței a eșuat", - "issue_creation_failed": "Crearea activității a eșuat", - "draft_issue": "Schiță activitate", - "issue_updated_successfully": "Activitate actualizată cu succes", - "issue_could_not_be_updated": "Activitatea nu a putut fi actualizată", - "create_a_draft": "Creează o schiță", - "save_to_drafts": "Salvează în schițe", - "save": "Salvează", - "update": "Actualizează", - "updating": "Se actualizează", - "create_new_issue": "Creează activate nouă", - "editor_is_not_ready_to_discard_changes": "Editorul nu este pregătit să renunțe la modificări", - "failed_to_move_issue_to_project": "Nu s-a putut muta activitatea în proiect", - "create_more": "Creează mai multe", - "add_to_project": "Adaugă la proiect", - "discard": "Renunță", - "duplicate_issue_found": "Activitate duplicată găsită", - "duplicate_issues_found": "Activități duplicate găsite", - "no_matching_results": "Nu există rezultate potrivite", - "title_is_required": "Titlul este obligatoriu", - "title": "Titlu", - "state": "Stare", - "priority": "Prioritate", - "none": "Niciuna", - "urgent": "Urgentă", - "high": "Importantă", - "medium": "Medie", - "low": "Scăzută", - "members": "Membri", - "assignee": "Responsabil", - "assignees": "Responsabili", - "you": "Tu", - "labels": "Etichete", - "create_new_label": "Creează etichetă nouă", - "start_date": "Data de început", - "end_date": "Data de sfârșit", - "due_date": "Data limită", - "estimate": "Estimare", - "change_parent_issue": "Schimbă activitatea părinte", - "remove_parent_issue": "Elimină activitatea părinte", - "add_parent": "Adaugă părinte", - "loading_members": "Se încarcă membrii", - "view_link_copied_to_clipboard": "Link-ul de perspectivă a fost copiat în memoria temporară.", - "required": "Obligatoriu", - "optional": "Opțional", - "Cancel": "Anulează", - "edit": "Editează", - "archive": "Arhivează", - "restore": "Restaurează", - "open_in_new_tab": "Deschide într-un nou tab", - "delete": "Șterge", - "deleting": "Se șterge", - "make_a_copy": "Creează o copie", - "move_to_project": "Mută în proiect", - "good": "Bună", - "morning": "dimineața", - "afternoon": "după-amiaza", - "evening": "seara", - "show_all": "Arată tot", - "show_less": "Arată mai puțin", - "no_data_yet": "Nicio dată încă", - "syncing": "Se sincronizează", - "add_work_item": "Adaugă activitate", - "advanced_description_placeholder": "Apasă '/' pentru comenzi", - "create_work_item": "Creează activitate", - "attachments": "Atașamente", - "declining": "Se refuză", - "declined": "Refuzat", - "decline": "Refuză", - "unassigned": "Fără responsabil", - "work_items": "Activități", - "add_link": "Adaugă link", - "points": "Puncte", - "no_assignee": "Fără responsabil", - "no_assignees_yet": "Niciun responsabil încă", - "no_labels_yet": "Nicio etichetă încă", - "ideal": "Ideal", - "current": "Curent", - "no_matching_members": "Niciun membru potrivit", - "leaving": "Se părăsește", - "removing": "Se elimină", - "leave": "Părăsește", - "refresh": "Reîncarcă", - "refreshing": "Se reîncarcă", - "refresh_status": "Reîncarcă statusul", - "prev": "Înapoi", - "next": "Înainte", - "re_generating": "Se regenerează", - "re_generate": "Regenerează", - "re_generate_key": "Regenerează cheia", - "export": "Exportă", - "member": "{count, plural, one{# membru} other{# membri}}", - "new_password_must_be_different_from_old_password": "Parola nouă trebuie să fie diferită de parola veche", - "project_view": { - "sort_by": { - "created_at": "Creat la", - "updated_at": "Actualizat la", - "name": "Nume" - } - }, - "toast": { - "success": "Succes!", - "error": "Eroare!" - }, - "links": { - "toasts": { - "created": { - "title": "Link creat", - "message": "Link-ul a fost creat cu succes" - }, - "not_created": { - "title": "Link-ul nu a fost creat", - "message": "Link-ul nu a putut fi creat" - }, - "updated": { - "title": "Link actualizat", - "message": "Link-ul a fost actualizat cu succes" - }, - "not_updated": { - "title": "Link-ul nu a fost actualizat", - "message": "Link-ul nu a putut fi actualizat" - }, - "removed": { - "title": "Link eliminat", - "message": "Link-ul a fost eliminat cu succes" - }, - "not_removed": { - "title": "Link-ul nu a fost eliminat", - "message": "Link-ul nu a putut fi eliminat" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Ghid de pornire rapidă", - "not_right_now": "Nu acum", - "create_project": { - "title": "Creează un proiect", - "description": "Majoritatea lucrurilor încep cu un proiect în Plane.", - "cta": "Începe acum" - }, - "invite_team": { - "title": "Invită-ți echipa", - "description": "Construiește, livrează și gestionează împreună cu colegii.", - "cta": "Invită-i" - }, - "configure_workspace": { - "title": "Configurează-ți spațiul de lucru.", - "description": "Activează sau dezactivează opțiuni sau mergi mai departe.", - "cta": "Configurează acest spațiu de lucru" - }, - "personalize_account": { - "title": "Personalizează Plane.", - "description": "Alege-ți poza de profil, culorile și multe altele.", - "cta": "Personalizează acum" - }, - "widgets": { - "title": "Este liniște fără mini-aplicații, activează-le", - "description": "Se pare că toate mini-aplicațiile tale sunt dezactivate. Activează-le acum pentru a-ți îmbunătăți experiența!", - "primary_button": { - "text": "Gestionează mini-aplicațiile" - } - } - }, - "quick_links": { - "empty": "Salvează link-uri către elementele utile pe care vrei să le ai la îndemână.", - "add": "Adaugă link rapid", - "title": "Link rapid", - "title_plural": "Linkuri rapide" - }, - "recents": { - "title": "Recente", - "empty": { - "project": "Proiectele vizitate recent vor apărea aici.", - "page": "Documentele din Documentație vizitate recent vor apărea aici.", - "issue": "Activitățile vizitate recent vor apărea aici.", - "default": "Nu ai nimic recent încă." - }, - "filters": { - "all": "Toate", - "projects": "Proiecte", - "pages": "Documentație", - "issues": "Activități" - } - }, - "new_at_plane": { - "title": "Noutăți în Plane" - }, - "quick_tutorial": { - "title": "Tutorial rapid" - }, - "widget": { - "reordered_successfully": "Mini-aplicație reordonată cu succes.", - "reordering_failed": "Eroare la reordonarea mini-aplicației." - }, - "manage_widgets": "Gestionează mini-aplicațiile", - "title": "Acasă", - "star_us_on_github": "Dă-ne o stea pe GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL-ul nu este valid", - "placeholder": "Tastează sau lipește un URL" - }, - "title": { - "text": "Titlu afișat", - "placeholder": "Cum vrei să se vadă acest link" - } - } - }, - "common": { - "all": "Toate", - "states": "Stări", - "state": "Stare", - "state_groups": "Grupuri de stări", - "state_group": "Grup de stare", - "priorities": "Priorități", - "priority": "Prioritate", - "team_project": "Proiect de echipă", - "project": "Proiect", - "cycle": "Ciclu", - "cycles": "Cicluri", - "module": "Modul", - "modules": "Module", - "labels": "Etichete", - "label": "Etichetă", - "assignees": "Responsabili", - "assignee": "Responsabil", - "created_by": "Creat de", - "none": "Niciuna", - "link": "Link", - "estimates": "Estimări", - "estimate": "Estimare", - "created_at": "Creat la", - "completed_at": "Finalizat la", - "layout": "Aspect", - "filters": "Filtre", - "display": "Afișare", - "load_more": "Încarcă mai mult", - "activity": "Activitate", - "analytics": "Analitice", - "dates": "Date", - "success": "Succes!", - "something_went_wrong": "Ceva a mers greșit", - "error": { - "label": "Eroare!", - "message": "A apărut o eroare. Te rugăm să încerci din nou." - }, - "group_by": "Grupează după", - "epic": "Sarcină majoră", - "epics": "Sarcini majore", - "work_item": "Activitate", - "work_items": "Activități", - "sub_work_item": "Sub-activitate", - "add": "Adaugă", - "warning": "Avertisment", - "updating": "Se actualizează", - "adding": "Se adaugă", - "update": "Actualizează", - "creating": "Se creează", - "create": "Creează", - "cancel": "Anulează", - "description": "Descriere", - "title": "Titlu", - "attachment": "Atașament", - "general": "General", - "features": "Funcționalități", - "automation": "Automatizare", - "project_name": "Nume proiect", - "project_id": "ID Proiect", - "project_timezone": "Fus orar proiect", - "created_on": "Creat la", - "update_project": "Actualizează proiectul", - "identifier_already_exists": "Identificatorul există deja", - "add_more": "Adaugă mai mult", - "defaults": "Implicit", - "add_label": "Adaugă etichetă", - "customize_time_range": "Personalizează intervalul de timp", - "loading": "Se încarcă", - "attachments": "Atașamente", - "property": "Proprietate", - "properties": "Proprietăți", - "parent": "Părinte", - "page": "Document", - "remove": "Elimină", - "archiving": "Se arhivează", - "archive": "Arhivează", - "access": { - "public": "Public", - "private": "Privat" - }, - "done": "Gata", - "sub_work_items": "Sub-activități", - "comment": "Comentariu", - "workspace_level": "La nivel de spațiu de lucru", - "order_by": { - "label": "Ordonează după", - "manual": "Manual", - "last_created": "Ultima creată", - "last_updated": "Ultima actualizată", - "start_date": "Data de început", - "due_date": "Data limită", - "asc": "Crescător", - "desc": "Descrescător", - "updated_on": "Actualizat la" - }, - "sort": { - "asc": "Crescător", - "desc": "Descrescător", - "created_on": "Creată la", - "updated_on": "Actualizată la" - }, - "comments": "Comentarii", - "updates": "Actualizări", - "clear_all": "Șterge tot", - "copied": "Copiat!", - "link_copied": "Link copiat!", - "link_copied_to_clipboard": "Link-ul a fost copiat în memoria temporară", - "copied_to_clipboard": "Link-ul activității copiat în memoria temporară", - "is_copied_to_clipboard": "Activitatea a fost copiată în memoria temporară", - "no_links_added_yet": "Niciun link adăugat încă", - "add_link": "Adaugă link", - "links": "Linkuri", - "go_to_workspace": "Mergi la spațiul de lucru", - "progress": "Progres", - "optional": "Opțional", - "join": "Alătură-te", - "go_back": "Înapoi", - "continue": "Continuă", - "resend": "Retrimite", - "relations": "Relații", - "errors": { - "default": { - "title": "Eroare!", - "message": "Ceva a funcționat greșit. Te rugăm să încerci din nou." - }, - "required": "Acest câmp este obligatoriu", - "entity_required": "{entity} este obligatoriu", - "restricted_entity": "{entity} este restricționat" - }, - "update_link": "Actualizează link-ul", - "attach": "Atașează", - "create_new": "Creează nou", - "add_existing": "Adaugă existent", - "type_or_paste_a_url": "Tastează sau lipește un URL", - "url_is_invalid": "URL-ul nu este valid", - "display_title": "Titlu afișat", - "link_title_placeholder": "Cum vrei să se vadă acest link", - "url": "URL", - "side_peek": "Previzualizare laterală", - "modal": "Fereastră modală", - "full_screen": "Ecran complet", - "close_peek_view": "Închide previzualizarea", - "toggle_peek_view_layout": "Comută aspectul previzualizării", - "options": "Opțiuni", - "duration": "Durată", - "today": "Astăzi", - "week": "Săptămână", - "month": "Lună", - "quarter": "Trimestru", - "press_for_commands": "Apasă '/' pentru comenzi", - "click_to_add_description": "Apasă pentru a adăuga descriere", - "search": { - "label": "Caută", - "placeholder": "Tastează pentru a căuta", - "no_matches_found": "Nu s-au găsit rezultate", - "no_matching_results": "Nicio potrivire găsită" - }, - "actions": { - "edit": "Editează", - "make_a_copy": "Fă o copie", - "open_in_new_tab": "Deschide într-un nou tab", - "copy_link": "Copiază link-ul", - "archive": "Arhivează", - "restore": "Restaurează", - "delete": "Șterge", - "remove_relation": "Elimină relația", - "subscribe": "Abonează-te", - "unsubscribe": "Dezabonează-te", - "clear_sorting": "Șterge sortarea", - "show_weekends": "Arată sfârșiturile de săptămână", - "enable": "Activează", - "disable": "Dezactivează" - }, - "name": "Nume", - "discard": "Renunță", - "confirm": "Confirmă", - "confirming": "Se confirmă", - "read_the_docs": "Citește documentația", - "default": "Implicit", - "active": "Activ", - "enabled": "Activat", - "disabled": "Dezactivat", - "mandate": "Împuternicire", - "mandatory": "Obligatoriu", - "yes": "Da", - "no": "Nu", - "please_wait": "Te rog așteaptă", - "enabling": "Se activează", - "disabling": "Se dezactivează", - "beta": "Testare", - "or": "sau", - "next": "Înainte", - "back": "Înapoi", - "cancelling": "Se anulează", - "configuring": "Se configurează", - "clear": "Șterge", - "import": "Importă", - "connect": "Conectează", - "authorizing": "Se autorizează", - "processing": "Se procesează", - "no_data_available": "Nicio dată disponibilă", - "from": "de la {name}", - "authenticated": "Autentificat", - "select": "Selectează", - "upgrade": "Treci la o versiune superioră", - "add_seats": "Adaugă locuri", - "projects": "Proiecte", - "workspace": "Spațiu de lucru", - "workspaces": "Spații de lucru", - "team": "Echipă", - "teams": "Echipe", - "entity": "Entitate", - "entities": "Entități", - "task": "Sarcină", - "tasks": "Sarcini", - "section": "Secțiune", - "sections": "Secțiuni", - "edit": "Editează", - "connecting": "Se conectează", - "connected": "Conectat", - "disconnect": "Deconectează", - "disconnecting": "Se deconectează", - "installing": "Se instalează", - "install": "Instalează", - "reset": "Resetează", - "live": "În direct", - "change_history": "Istoric modificări", - "coming_soon": "În curând", - "member": "Membru", - "members": "Membri", - "you": "Tu", - "upgrade_cta": { - "higher_subscription": "Treci la un abonament superior", - "talk_to_sales": "Discută cu vânzările" - }, - "category": "Categorie", - "categories": "Categorii", - "saving": "Se salvează", - "save_changes": "Salvează modificările", - "delete": "Șterge", - "deleting": "Se șterge", - "pending": "În așteptare", - "invite": "Invită", - "view": "Vizualizează", - "deactivated_user": "Utilizator dezactivat", - "apply": "Aplică", - "applying": "Aplicând", - "users": "Utilizatori", - "admins": "Administratori", - "guests": "Invitați", - "on_track": "Pe drumul cel bun", - "off_track": "În afara traiectoriei", - "at_risk": "În pericol", - "timeline": "Cronologie", - "completion": "Finalizare", - "upcoming": "Viitor", - "completed": "Finalizat", - "in_progress": "În desfășurare", - "planned": "Planificat", - "paused": "Pauzat", - "no_of": "Nr. de {entity}", - "resolved": "Rezolvat" - }, - "chart": { - "x_axis": "axa-X", - "y_axis": "axa-Y", - "metric": "Indicator" - }, - "form": { - "title": { - "required": "Titlul este obligatoriu", - "max_length": "Titlul trebuie să conțină mai puțin de {length} caractere" - } - }, - "entity": { - "grouping_title": "Grupare {entity}", - "priority": "Prioritate {entity}", - "all": "Toate {entity}", - "drop_here_to_move": "Trage aici pentru a muta {entity}", - "delete": { - "label": "Șterge {entity}", - "success": "{entity} a fost ștearsă cu succes", - "failed": "Ștergerea {entity} a eșuat" - }, - "update": { - "failed": "Actualizarea {entity} a eșuat", - "success": "{entity} a fost actualizată cu succes" - }, - "link_copied_to_clipboard": "Link-ul {entity} a fost copiat în memoria temporară", - "fetch": { - "failed": "Eroare la preluarea {entity}" - }, - "add": { - "success": "{entity} a fost adăugată cu succes", - "failed": "Eroare la adăugarea {entity}" - }, - "remove": { - "success": "{entity} a fost eliminată cu succes", - "failed": "Eroare la eliminarea {entity}" - } - }, - "epic": { - "all": "Toate Sarcinile majore", - "label": "{count, plural, one {Sarcină majoră} other {Sarcini majore}}", - "new": "Sarcină majoră", - "adding": "Se adaugă sarcină majoră", - "create": { - "success": "Sarcină majoră creată cu succes" - }, - "add": { - "press_enter": "Apasă 'Enter' pentru a adăuga o altă sarcină majoră", - "label": "Adaugă sarcină majoră" - }, - "title": { - "label": "Titlu sarcină majoră", - "required": "Titlul sarcinii majore este obligatoriu." - } - }, - "issue": { - "label": "{count, plural, one {Activitate} other {Activități}}", - "all": "Toate activitățile", - "edit": "Editează activitatea", - "title": { - "label": "Titlul activității", - "required": "Titlul activității este obligatoriu." - }, - "add": { - "press_enter": "Apasă 'Enter' pentru a adăuga o altă activitate", - "label": "Adaugă activitate", - "cycle": { - "failed": "Activitatea nu a putut fi adăugată în ciclu. Te rugăm să încerci din nou.", - "success": "{count, plural, one {Activitate} other {Activități}} adăugată(e) în ciclu cu succes.", - "loading": "Se adaugă {count, plural, one {activitate} other {activități}} în ciclu" - }, - "assignee": "Adaugă responsabili", - "start_date": "Adaugă data de început", - "due_date": "Adaugă termenul limită", - "parent": "Adaugă activitate părinte", - "sub_issue": "Adaugă sub-activitate", - "relation": "Adaugă relație", - "link": "Adaugă link", - "existing": "Adaugă activitate existentă" - }, - "remove": { - "label": "Elimină activitatea", - "cycle": { - "loading": "Se elimină activitatea din ciclu", - "success": "Activitatea a fost eliminată din ciclu cu succes.", - "failed": "Activitatea nu a putut fi eliminată din ciclu. Te rugăm să încerci din nou." - }, - "module": { - "loading": "Se elimină activitatea din modul", - "success": "Activitatea a fost eliminată din modul cu succes.", - "failed": "Activitatea nu a putut fi eliminată din modul. Te rugăm să încerci din nou." - }, - "parent": { - "label": "Elimină activitatea părinte" - } - }, - "new": "Activitate nouă", - "adding": "Se adaugă activitatea", - "create": { - "success": "Activitatea a fost creată cu succes" - }, - "priority": { - "urgent": "Urgentă", - "high": "Ridicată", - "medium": "Medie", - "low": "Scăzută" - }, - "display": { - "properties": { - "label": "Afișează proprietățile", - "id": "ID", - "issue_type": "Tipul activității", - "sub_issue_count": "Număr de sub-activități", - "attachment_count": "Număr de atașamente", - "created_on": "Creată la", - "sub_issue": "Sub-activitate", - "work_item_count": "Număr de activități" - }, - "extra": { - "show_sub_issues": "Afișează sub-activitățile", - "show_empty_groups": "Afișează grupurile goale" - } - }, - "layouts": { - "ordered_by_label": "Această vizualizare este ordonată după", - "list": "Listă", - "kanban": "Tablă", - "calendar": "Calendar", - "spreadsheet": "Tabel", - "gantt": "Cronologic", - "title": { - "list": "Vizualizare tip Listă", - "kanban": "Vizualizare tip Tablă", - "calendar": "Vizualizare tip Calendar", - "spreadsheet": "Vizualizare tip Tabel", - "gantt": "Vizualizare tip Cronologic" - } - }, - "states": { - "active": "Active", - "backlog": "Restante" - }, - "comments": { - "placeholder": "Adaugă comentariu", - "switch": { - "private": "Comută pe comentariu privat", - "public": "Comută pe comentariu public" - }, - "create": { - "success": "Comentariu adăugat cu succes", - "error": "Adăugarea comentariului a eșuat. Te rugăm să încerci mai târziu." - }, - "update": { - "success": "Comentariu actualizat cu succes", - "error": "Actualizarea comentariului a eșuat. Te rugăm să încerci mai târziu." - }, - "remove": { - "success": "Comentariu șters cu succes", - "error": "Ștergerea comentariului a eșuat. Te rugăm să încerci mai târziu." - }, - "upload": { - "error": "Încărcarea fișierului a eșuat. Te rugăm să încerci mai târziu." - }, - "copy_link": { - "success": "Linkul comentariului a fost copiat în clipboard", - "error": "Eroare la copierea linkului comentariului. Încercați din nou mai târziu." - } - }, - "empty_state": { - "issue_detail": { - "title": "Activitatea nu există", - "description": "Activitatea căutată nu există, a fost arhivată sau ștearsă.", - "primary_button": { - "text": "Vezi alte activități" - } - } - }, - "sibling": { - "label": "Activități înrudite" - }, - "archive": { - "description": "Doar activitățile finalizate sau anulate\npot fi arhivate", - "label": "Arhivează activitatea", - "confirm_message": "Ești sigur că vrei să arhivezi această activitate? Toate activitățile arhivate pot fi restaurate ulterior.", - "success": { - "label": "Arhivare reușită", - "message": "Arhivele tale pot fi găsite în arhiva proiectului." - }, - "failed": { - "message": "Activitatea nu a putut fi arhivată. Te rugăm să încerci din nou." - } - }, - "restore": { - "success": { - "title": "Restaurare reușită", - "message": "Activitatea poate fi găsită în lista de activități ale proiectului." - }, - "failed": { - "message": "Activitatea nu a putut fi restaurată. Te rugăm să încerci din nou." - } - }, - "relation": { - "relates_to": "Este legată de", - "duplicate": "Duplicată a", - "blocked_by": "Blocată de", - "blocking": "Blochează" - }, - "copy_link": "Copiază link-ul activității", - "delete": { - "label": "Șterge activitatea", - "error": "Eroare la ștergerea activității" - }, - "subscription": { - "actions": { - "subscribed": "Abonarea la activitate realizată cu succes", - "unsubscribed": "Dezabonarea de la activitate realizată cu succes" - } - }, - "select": { - "error": "Selectează cel puțin o activitate", - "empty": "Nicio activitate selectată", - "add_selected": "Adaugă activitățile selectate", - "select_all": "Selectează tot", - "deselect_all": "Deselează tot" - }, - "open_in_full_screen": "Deschide activitatea pe tot ecranul" - }, - "attachment": { - "error": "Fișierul nu a putut fi atașat. Încearcă să încarci din nou.", - "only_one_file_allowed": "Se poate încărca doar un fișier o dată.", - "file_size_limit": "Fișierul trebuie să aibă {size}MB sau mai puțin.", - "drag_and_drop": "Trage și plasează oriunde pentru a încărca", - "delete": "Șterge atașamentul" - }, - "label": { - "select": "Selectează eticheta", - "create": { - "success": "Etichetă creată cu succes", - "failed": "Crearea etichetei a eșuat", - "already_exists": "Eticheta există deja", - "type": "Tastează pentru a adăuga o etichetă nouă" - } - }, - "sub_work_item": { - "update": { - "success": "Sub-activitatea a fost actualizată cu succes", - "error": "Eroare la actualizarea sub-activității" - }, - "remove": { - "success": "Sub-activitatea a fost eliminată cu succes", - "error": "Eroare la eliminarea sub-activității" - }, - "empty_state": { - "sub_list_filters": { - "title": "Nu ai sub-elemente de lucru care corespund filtrelor pe care le-ai aplicat.", - "description": "Pentru a vedea toate sub-elementele de lucru, șterge toate filtrele aplicate.", - "action": "Șterge filtrele" - }, - "list_filters": { - "title": "Nu ai elemente de lucru care corespund filtrelor pe care le-ai aplicat.", - "description": "Pentru a vedea toate elementele de lucru, șterge toate filtrele aplicate.", - "action": "Șterge filtrele" - } - } - }, - "view": { - "label": "{count, plural, one {Perspectivă} other {Perspective}}", - "create": { - "label": "Creează perspectivă" - }, - "update": { - "label": "Actualizează perspectiva" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "În așteptare", - "description": "În așteptare" - }, - "declined": { - "title": "Respinse", - "description": "Respinse" - }, - "snoozed": { - "title": "Amânate", - "description": "{days, plural, one{# zi} other{# zile}} rămase" - }, - "accepted": { - "title": "Acceptate", - "description": "Acceptate" - }, - "duplicate": { - "title": "Duplicate", - "description": "Duplicate" - } - }, - "modals": { - "decline": { - "title": "Respinge activitatea", - "content": "Ești sigur că vrei să respingi activitatea {value}?" - }, - "delete": { - "title": "Șterge activitatea", - "content": "Ești sigur că vrei să ștergi activitatea {value}?", - "success": "Activitatea a fost ștersă cu succes" - } - }, - "errors": { - "snooze_permission": "Doar administratorii proiectului pot amâna/dezactiva amânarea activităților", - "accept_permission": "Doar administratorii proiectului pot accepta activități", - "decline_permission": "Doar administratorii proiectului pot respinge activități" - }, - "actions": { - "accept": "Acceptă", - "decline": "Respinge", - "snooze": "Amână", - "unsnooze": "Dezactivează amânarea", - "copy": "Copiază link-ul activității", - "delete": "Șterge", - "open": "Deschide activitatea", - "mark_as_duplicate": "Marchează ca duplicat", - "move": "Mută {value} în activitățile proiectului" - }, - "source": { - "in-app": "în aplicație" - }, - "order_by": { - "created_at": "Creată la", - "updated_at": "Actualizată la", - "id": "ID" - }, - "label": "Cereri", - "page_label": "{workspace} - Cereri", - "modal": { - "title": "Creează o cerere în Cereri" - }, - "tabs": { - "open": "Deschise", - "closed": "Închise" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Nicio cerere deschisă", - "description": "Găsește aici cererile primite. Creează o cerere nouă." - }, - "sidebar_closed_tab": { - "title": "Nicio cerere închisă", - "description": "Toate cererile, fie acceptate, fie respinse, pot fi găsite aici." - }, - "sidebar_filter": { - "title": "Nicio cerere gasită", - "description": "Nicio cerere nu se potrivește cu filtrul aplicat în Cereri. Creează o cerere nouă." - }, - "detail": { - "title": "Selectează o cerere pentru a-i vedea detaliile." - } - } - }, - "workspace_creation": { - "heading": "Creează spațiul tău de lucru", - "subheading": "Pentru a începe să folosești Plane, trebuie să creezi sau să te alături unui spațiu de lucru.", - "form": { - "name": { - "label": "Denumește-ți spațiul de lucru", - "placeholder": "Cel mai bine este să alegi ceva familiar și ușor de recunoscut." - }, - "url": { - "label": "Setează URL-ul spațiului de lucru", - "placeholder": "Tastează sau lipește un URL", - "edit_slug": "Poți edita doar identificatorul URL-ului" - }, - "organization_size": { - "label": "Câți oameni vor folosi acest spațiu de lucru?", - "placeholder": "Selectează un interval" - } - }, - "errors": { - "creation_disabled": { - "title": "Doar administratorul instanței poate crea spații de lucru", - "description": "Dacă știi adresa de email a administratorului instanței tale, apasă butonul de mai jos pentru a-l contacta.", - "request_button": "Solicită administratorul instanței" - }, - "validation": { - "name_alphanumeric": "Numele spațiilor de lucru pot conține doar (' '), ('-'), ('_') și caractere alfanumerice.", - "name_length": "Limitează numele la 80 de caractere.", - "url_alphanumeric": "URL-urile pot conține doar ('-') și caractere alfanumerice.", - "url_length": "Limitează URL-ul la 48 de caractere.", - "url_already_taken": "URL-ul spațiului de lucru este deja folosit!" - } - }, - "request_email": { - "subject": "Solicitare creare spațiu de lucru nou", - "body": "Salut administrator(i) instanței,\n\nVă rog să creați un nou spațiu de lucru cu URL-ul [/workspace-name] pentru [scopul creării spațiului de lucru].\n\nMulțumesc,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Creează spațiu de lucru", - "loading": "Se creează spațiul de lucru" - }, - "toast": { - "success": { - "title": "Succes", - "message": "Spațiul de lucru a fost creat cu succes" - }, - "error": { - "title": "Eroare", - "message": "Spațiul de lucru nu a putut fi creat. Te rugăm să încerci din nou." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Prezentare generală a proiectelor, activităților și statisticilor tale", - "description": "Bine ai venit în Plane, suntem încântați să te avem aici. Creează primul tău proiect și urmărește activitățile, iar această pagină se va transforma într-un spațiu care te ajută să progresezi. Administratorii vor vedea și elementele care ajută echipa lor să progreseze.", - "primary_button": { - "text": "Creează primul tău proiect", - "comic": { - "title": "Totul începe cu un proiect în Plane", - "description": "Un proiect poate fi planul de dezvoltare a unui produs, o campanie de marketing sau lansarea unei noi mașini." - } - } - } - } - }, - "workspace_analytics": { - "label": "Statistici", - "page_label": "{workspace} - Statistici", - "open_tasks": "Total activități deschise", - "error": "A apărut o eroare la preluarea datelor.", - "work_items_closed_in": "Activități finalizate în", - "selected_projects": "Proiecte selectate", - "total_members": "Total membri", - "total_cycles": "Total cicluri", - "total_modules": "Total module", - "pending_work_items": { - "title": "Activități în așteptare", - "empty_state": "Aici apare analiza activităților în așteptare atribuite colegilor." - }, - "work_items_closed_in_a_year": { - "title": "Activități finalizate într-un an", - "empty_state": "Închide activități pentru a vedea statisticile sub formă de grafic." - }, - "most_work_items_created": { - "title": "Cele mai multe activități create", - "empty_state": "Aici vor apărea colegii și numărul de activități create de aceștia." - }, - "most_work_items_closed": { - "title": "Cele mai multe activități finalizate", - "empty_state": "Aici vor apărea colegii și numărul de activități finalizate de aceștia." - }, - "tabs": { - "scope_and_demand": "Activități asumate și cerere", - "custom": "Analitice personalizate" - }, - "empty_state": { - "customized_insights": { - "description": "Elementele de lucru atribuite ție, împărțite pe stări, vor apărea aici.", - "title": "Nu există date încă" - }, - "created_vs_resolved": { - "description": "Elementele de lucru create și rezolvate în timp vor apărea aici.", - "title": "Nu există date încă" - }, - "project_insights": { - "title": "Nu există date încă", - "description": "Elementele de lucru atribuite ție, împărțite pe stări, vor apărea aici." - }, - "general": { - "title": "Urmărește progresul, sarcinile și alocările. Identifică tendințele, elimină blocajele și accelerează munca", - "description": "Vezi domeniul versus cererea, estimările și extinderea domeniului. Obține performanțe pe membrii echipei și echipe, și asigură-te că proiectul tău rulează la timp.", - "primary_button": { - "text": "Începe primul tău proiect", - "comic": { - "title": "Analitica funcționează cel mai bine cu Cicluri + Module", - "description": "Întâi, limitează-ți problemele în Cicluri și, dacă poți, grupează problemele care durează mai mult de un ciclu în Module. Verifică ambele în navigarea din stânga." - } - } - } - }, - "created_vs_resolved": "Creat vs Rezolvat", - "customized_insights": "Perspective personalizate", - "backlog_work_items": "{entity} din backlog", - "active_projects": "Proiecte active", - "trend_on_charts": "Tendință în grafice", - "all_projects": "Toate proiectele", - "summary_of_projects": "Sumarul proiectelor", - "project_insights": "Informații despre proiect", - "started_work_items": "{entity} începute", - "total_work_items": "Totalul {entity}", - "total_projects": "Total proiecte", - "total_admins": "Total administratori", - "total_users": "Total utilizatori", - "total_intake": "Venit total", - "un_started_work_items": "{entity} neîncepute", - "total_guests": "Total invitați", - "completed_work_items": "{entity} finalizate", - "total": "Totalul {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Proiect} other {Proiecte}}", - "create": { - "label": "Adaugă proiect" - }, - "network": { - "label": "Rețea", - "private": { - "title": "Privat", - "description": "Accesibil doar pe bază de invitație" - }, - "public": { - "title": "Public", - "description": "Oricine din spațiul de lucru, cu excepția celor din categoria Invitați, se poate alătura" - } - }, - "error": { - "permission": "Nu ai permisiunea să efectuezi această acțiune.", - "cycle_delete": "Ștergerea ciclului a eșuat", - "module_delete": "Ștergerea modulului a eșuat", - "issue_delete": "Ștergerea activității a eșuat" - }, - "state": { - "backlog": "Restante", - "unstarted": "Neîncepute", - "started": "În desfășurare", - "completed": "Finalizate", - "cancelled": "Anulate" - }, - "sort": { - "manual": "Manual", - "name": "Nume", - "created_at": "Data creării", - "members_length": "Număr de membri" - }, - "scope": { - "my_projects": "Proiectele mele", - "archived_projects": "Arhivate" - }, - "common": { - "months_count": "{months, plural, one{# lună} other{# luni}}" - }, - "empty_state": { - "general": { - "title": "Niciun proiect activ", - "description": "Gândește-te la fiecare proiect ca la părintele muncii orientate pe obiectiv. Proiectele sunt locul unde trăiesc Activitățile, Ciclurile și Modulele și, împreună cu colegii tăi, te ajută să îți atingi obiectivul. Creează un proiect nou sau filtrează pentru a vedea proiectele arhivate.", - "primary_button": { - "text": "Începe primul tău proiect", - "comic": { - "title": "Totul începe cu un proiect în Plane", - "description": "Un proiect poate fi o foaie de parcurs pentru un produs, o campanie de marketing sau lansarea unei noi mașini." - } - } - }, - "no_projects": { - "title": "Niciun proiect", - "description": "Pentru a crea activități sau a-ți gestiona activitatea, trebuie să creezi un proiect sau să faci parte dintr-unul.", - "primary_button": { - "text": "Începe primul tău proiect", - "comic": { - "title": "Totul începe cu un proiect în Plane", - "description": "Un proiect poate fi o foaie de parcurs pentru un produs, o campanie de marketing sau lansarea unei noi mașini." - } - } - }, - "filter": { - "title": "Niciun proiect care să corespundă filtrului", - "description": "Nu s-au găsit proiecte care să corespundă criteriilor aplicate.\n Creează un proiect nou." - }, - "search": { - "description": "Nu s-au găsit proiecte care să corespundă criteriilor.\nCreează un proiect nou." - } - } - }, - "workspace_views": { - "add_view": "Adaugă perspectivă", - "empty_state": { - "all-issues": { - "title": "Nicio activitate în proiect", - "description": "Primul proiect este gata! Acum împarte-ți munca în bucăți gestionabile prin activități. Hai să începem!", - "primary_button": { - "text": "Creează o nouă activitate" - } - }, - "assigned": { - "title": "Nicio activitate încă", - "description": "Activitățile care ți-au fost atribuite pot fi urmărite de aici.", - "primary_button": { - "text": "Creează o nouă activitate" - } - }, - "created": { - "title": "Nicio activitate încă", - "description": "Toate activitățile create de tine vor apărea aici. Le poți urmări direct din această pagină.", - "primary_button": { - "text": "Creează o nouă activitate" - } - }, - "subscribed": { - "title": "Nicio activitate încă", - "description": "Abonează-te la activitățile care te interesează și urmărește-le pe toate aici." - }, - "custom-view": { - "title": "Nicio activitate încă", - "description": "Elementele de lucru care corespund filtrelor aplicate vor fi afișate aici." - } - } - }, - "workspace_settings": { - "label": "Setări spațiu de lucru", - "page_label": "{workspace} - Setări generale", - "key_created": "Cheie creată", - "copy_key": "Copiază și salvează această cheie secretă în Plane Documentație. Nu vei mai putea vedea această cheie după ce închizi. Un fișier CSV care conține cheia a fost descărcat.", - "token_copied": "Token-ul a fost copiat în memoria temporară.", - "settings": { - "general": { - "title": "General", - "upload_logo": "Încarcă siglă", - "edit_logo": "Editează siglă", - "name": "Numele spațiului de lucru", - "company_size": "Dimensiunea companiei", - "url": "URL-ul spațiului de lucru", - "update_workspace": "Actualizează spațiul de lucru", - "delete_workspace": "Șterge acest spațiu de lucru", - "delete_workspace_description": "La ștergerea spațiului de lucru, toate datele și resursele din cadrul acestuia vor fi eliminate definitiv și nu vor putea fi recuperate.", - "delete_btn": "Șterge acest spațiu de lucru", - "delete_modal": { - "title": "Ești sigur că vrei să ștergi acest spațiu de lucru?", - "description": "Ai o perioadă de probă activă pentru unul dintre planurile noastre plătite. Te rugăm să o anulezi înainte de a continua.", - "dismiss": "Renunță", - "cancel": "Anulează perioadă de probă", - "success_title": "Spațiul de lucru a fost șters.", - "success_message": "Vei fi redirecționat în curând către pagina de profil.", - "error_title": "Ceva nu a funcționat.", - "error_message": "Încearcă din nou, te rog." - }, - "errors": { - "name": { - "required": "Numele este obligatoriu", - "max_length": "Numele spațiului de lucru nu trebuie să depășească 80 de caractere" - }, - "company_size": { - "required": "Dimensiunea companiei este obligatorie", - "select_a_range": "Selectează dimensiunea companiei" - } - } - }, - "members": { - "title": "Membri", - "add_member": "Adaugă membru", - "pending_invites": "Invitații în așteptare", - "invitations_sent_successfully": "Invitațiile au fost trimise cu succes", - "leave_confirmation": "Ești sigur că vrei să părăsești spațiul de lucru? Nu vei mai avea acces la acest spațiu. Această acțiune este ireversibilă.", - "details": { - "full_name": "Nume complet", - "display_name": "Nume afișat", - "email_address": "Adresă de email", - "account_type": "Tip cont", - "authentication": "Autentificare", - "joining_date": "Data înscrierii" - }, - "modal": { - "title": "Invită persoane cu care să colaborezi", - "description": "Invită persoane cu care să colaborezi în spațiul tău de lucru.", - "button": "Trimite invitațiile", - "button_loading": "Se trimit invitațiile", - "placeholder": "nume@companie.ro", - "errors": { - "required": "Avem nevoie de o adresă de email pentru a trimite invitația.", - "invalid": "Adresa de email este invalidă" - } - } - }, - "billing_and_plans": { - "title": "Facturare și Abonamente", - "current_plan": "Abonament curent", - "free_plan": "Folosești în prezent abonamentul gratuit", - "view_plans": "Vezi abonamentele" - }, - "exports": { - "title": "Exporturi", - "exporting": "Se exportă", - "previous_exports": "Exporturi anterioare", - "export_separate_files": "Exportă datele în fișiere separate", - "modal": { - "title": "Exportă în", - "toasts": { - "success": { - "title": "Export reușit", - "message": "Vei putea descărca exportul {entity} din secțiunea de exporturi anterioare." - }, - "error": { - "title": "Export eșuat", - "message": "Exportul a eșuat. Te rugăm să încerci din nou." - } - } - } - }, - "webhooks": { - "title": "Puncte de notificare (Webhooks)", - "add_webhook": "Adaugă punct de notificare (webhook)", - "modal": { - "title": "Creează punct de notificare (webhook)", - "details": "Detalii punct de notificare (webhook)", - "payload": " URL-ul de trimitere a datelor", - "question": "La ce evenimente vrei să activezi acest punct de notificare (webhook)?", - "error": "URL-ul este obligatoriu" - }, - "secret_key": { - "title": "Cheie secretă", - "message": "Generează o cheie de acces pentru a semna datele trimise la punctul de notificare (webhook)" - }, - "options": { - "all": "Trimite-mi tot", - "individual": "Selectează evenimente individuale" - }, - "toasts": { - "created": { - "title": "Punct de notificare (webhook) creat", - "message": "Punctul de notificare (webhook) a fost creat cu succes" - }, - "not_created": { - "title": "Punctul de notificare (webhook) nu a fost creat", - "message": "Punctul de notificare (webhook) nu a putut fi creat" - }, - "updated": { - "title": "Punctul de notificare (webhook) actualizat", - "message": "Punctul de notificare (webhook) a fost actualizat cu succes" - }, - "not_updated": { - "title": "Punctul de notificare (webhook) nu a fost actualizat", - "message": "Punctul de notificare (webhook) nu a putut fi actualizat" - }, - "removed": { - "title": "Punct de notificare (webhook) șters", - "message": "Punctul de notificare (webhook) a fost șters cu succes" - }, - "not_removed": { - "title": "Punctul de notificare (webhook) nu a fost șters", - "message": "Punctul de notificare (webhook) nu a putut fi șters" - }, - "secret_key_copied": { - "message": "Cheia secretă a fost copiată în memoria temporară." - }, - "secret_key_not_copied": { - "message": "A apărut o eroare la copierea cheii secrete." - } - } - }, - "api_tokens": { - "title": "Chei secrete API", - "add_token": "Adaugă cheie secretă API", - "create_token": "Creează cheie secretă", - "never_expires": "Nu expiră niciodată", - "generate_token": "Generează cheie secretă", - "generating": "Se generează", - "delete": { - "title": "Șterge cheia secretă API", - "description": "Orice aplicație care folosește această cheie secretă nu va mai avea acces la datele Plane. Această acțiune este ireversibilă.", - "success": { - "title": "Succes!", - "message": "Cheia secretă API a fost ștearsă cu succes" - }, - "error": { - "title": "Eroare!", - "message": "Cheia secretă API nu a putut fi ștearsă" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Nicio cheie secretă API creată", - "description": "API-ul Plane poate fi folosit pentru a integra datele tale din Plane cu orice sistem extern. Creează o cheie secretă pentru a începe." - }, - "webhooks": { - "title": "Niciun punctul de notificare (webhook) adăugat", - "description": "Creează puncte de notificare (webhooks) pentru a primi actualizări în timp real și a automatiza acțiuni." - }, - "exports": { - "title": "Niciun export efectuat", - "description": "Ori de câte ori exporți, vei avea o copie și aici pentru referință." - }, - "imports": { - "title": "Niciun import efectuat", - "description": "Găsește aici toate importurile anterioare și descarcă-le." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Munca ta", - "work": "Muncă", - "details": { - "joined_on": "S-a înscris la", - "time_zone": "Fus orar" - }, - "stats": { - "workload": "Volum de muncă", - "overview": "Prezentare generală", - "created": "Activități create", - "assigned": "Activități atribuite", - "subscribed": "Activități urmărite", - "state_distribution": { - "title": "Activități după stare", - "empty": "Creează activități pentru a le vedea distribuite pe stări în grafic, pentru o analiză mai bună." - }, - "priority_distribution": { - "title": "Activități după prioritate", - "empty": "Creează activități pentru a le vedea distribuite pe priorități în grafic, pentru o analiză mai bună." - }, - "recent_activity": { - "title": "Activitate recentă", - "empty": "Nu am găsit date. Te rugăm să verifici activitățile tale.", - "button": "Descarcă activitatea de azi", - "button_loading": "Se descarcă" - } - }, - "actions": { - "profile": "Profil", - "security": "Securitate", - "activity": "Activitate", - "appearance": "Aspect", - "notifications": "Notificări" - }, - "tabs": { - "summary": "Sumar", - "assigned": "Atribuite", - "created": "Create", - "subscribed": "Urmărite", - "activity": "Activitate" - }, - "empty_state": { - "activity": { - "title": "Nicio activitate încă", - "description": "Începe prin a crea o nouă activitate! Adaugă detalii și proprietăți. Explorează mai mult în Plane pentru a-ți vedea activitatea." - }, - "assigned": { - "title": "Nicio activitate atribuită ție", - "description": "Elementele de lucru care ți-au fost atribuite pot fi urmărite de aici." - }, - "created": { - "title": "Nicio activitate creată", - "description": "Toate activitățile create de tine vor apărea aici. Le poți urmări direct din această pagină." - }, - "subscribed": { - "title": "Nicio activitate urmărită", - "description": "Abonează-te la activitățile care te interesează și urmărește-le pe toate aici." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Introdu ID-ul proiectului", - "please_select_a_timezone": "Te rugăm să selectezi un fus orar", - "archive_project": { - "title": "Arhivează proiectul", - "description": "Arhivarea unui proiect îl va elimina din navigarea laterală, dar vei putea accesa proiectul din pagina ta de proiecte. Poți restaura sau șterge proiectul oricând dorești.", - "button": "Arhivează proiectul" - }, - "delete_project": { - "title": "Șterge proiectul", - "description": "La ștergerea unui proiect, toate datele și resursele din cadrul proiectului vor fi eliminate definitiv și nu vor putea fi recuperate.", - "button": "Șterge proiectul meu" - }, - "toast": { - "success": "Proiect actualizat cu succes", - "error": "Proiectul nu a putut fi actualizat. Te rugăm să încerci din nou." - } - }, - "members": { - "label": "Membri", - "project_lead": "Lider de proiect", - "default_assignee": "Persoană atribuită implicit", - "guest_super_permissions": { - "title": "Acordă acces la perspectivă pentru toți utilizatorii de tip Invitat:", - "sub_heading": "Aceasta va permite utilizatorilor din categoria Invitați să vadă toate activitățile din proiect." - }, - "invite_members": { - "title": "Invită membri", - "sub_heading": "Invită membri să lucreze la proiectul tău.", - "select_co_worker": "Selectează colegul de echipă" - } - }, - "states": { - "describe_this_state_for_your_members": "Descrie această stare pentru membrii tăi.", - "empty_state": { - "title": "Nicio stare disponibilă pentru grupul {groupKey}", - "description": "Te rog să creezi o stare nouă" - } - }, - "labels": { - "label_title": "Titlu etichetă", - "label_title_is_required": "Titlul etichetei este obligatoriu", - "label_max_char": "Numele etichetei nu trebuie să depășească 255 de caractere", - "toast": { - "error": "Eroare la actualizarea etichetei" - } - }, - "estimates": { - "label": "Estimări", - "title": "Activează estimările pentru proiectul meu", - "description": "Te ajută să comunici complexitatea și volumul de muncă al echipei.", - "no_estimate": "Fără estimare", - "new": "Noul sistem de estimare", - "create": { - "custom": "Personalizat", - "start_from_scratch": "Începe de la zero", - "choose_template": "Alege un șablon", - "choose_estimate_system": "Alege un sistem de estimare", - "enter_estimate_point": "Introdu estimarea", - "step": "Pasul {step} de {total}", - "label": "Creează estimare" - }, - "toasts": { - "created": { - "success": { - "title": "Estimare creată", - "message": "Estimarea a fost creată cu succes" - }, - "error": { - "title": "Crearea estimării a eșuat", - "message": "Nu am putut crea noua estimare, te rugăm să încerci din nou." - } - }, - "updated": { - "success": { - "title": "Estimare modificată", - "message": "Estimarea a fost actualizată în proiectul tău." - }, - "error": { - "title": "Modificarea estimării a eșuat", - "message": "Nu am putut modifica estimarea, te rugăm să încerci din nou" - } - }, - "enabled": { - "success": { - "title": "Succes!", - "message": "Estimările au fost activate." - } - }, - "disabled": { - "success": { - "title": "Succes!", - "message": "Estimările au fost dezactivate." - }, - "error": { - "title": "Eroare!", - "message": "Estimarea nu a putut fi dezactivată. Te rugăm să încerci din nou" - } - } - }, - "validation": { - "min_length": "Estimarea trebuie să fie mai mare decât 0.", - "unable_to_process": "Nu putem procesa cererea ta, te rugăm să încerci din nou.", - "numeric": "Estimarea trebuie să fie o valoare numerică.", - "character": "Estimarea trebuie să fie o valoare de tip caracter.", - "empty": "Valoarea estimării nu poate fi goală.", - "already_exists": "Valoarea estimării există deja.", - "unsaved_changes": "Ai modificări nesalvate, te rugăm să le salvezi înainte de a finaliza", - "remove_empty": "Estimarea nu poate fi goală. Introdu o valoare în fiecare câmp sau elimină câmpurile pentru care nu ai valori." - }, - "systems": { - "points": { - "label": "Puncte", - "fibonacci": "Fibonacci", - "linear": "Linear", - "squares": "Pătrate", - "custom": "Personalizat" - }, - "categories": { - "label": "Categorii", - "t_shirt_sizes": "Mărimi tricou", - "easy_to_hard": "De la ușor la greu", - "custom": "Personalizat" - }, - "time": { - "label": "Timp", - "hours": "Ore" - } - } - }, - "automations": { - "label": "Automatizări", - "auto-archive": { - "title": "Auto-arhivează activitățile finalizate", - "description": "Plane va arhiva automat activitățile care au fost finalizate sau anulate.", - "duration": "Auto-arhivează activitățile finalizate de" - }, - "auto-close": { - "title": "Închide automat activitățile", - "description": "Plane va închide automat activitățile care nu au fost finalizate sau anulate.", - "duration": "Închide automat activitățile inactive de", - "auto_close_status": "Stare închidere automată" - } - }, - "empty_state": { - "labels": { - "title": "Nicio etichetă încă", - "description": "Creează etichete pentru a organiza și filtra activitățile din proiect." - }, - "estimates": { - "title": "Nicio estimare configurată", - "description": "Creează un set de estimări pentru a comunica volumul de muncă pentru fiecare activitate.", - "primary_button": "Adaugă sistem de estimare" - } - } - }, - "project_cycles": { - "add_cycle": "Adaugă ciclu", - "more_details": "Mai multe detalii", - "cycle": "Ciclu", - "update_cycle": "Actualizează ciclul", - "create_cycle": "Creează ciclu", - "no_matching_cycles": "Niciun ciclu găsit", - "remove_filters_to_see_all_cycles": "Elimină filtrele pentru a vedea toate ciclurile", - "remove_search_criteria_to_see_all_cycles": "Elimină criteriile de căutare pentru a vedea toate ciclurile", - "only_completed_cycles_can_be_archived": "Doar ciclurile finalizate pot fi arhivate", - "active_cycle": { - "label": "Ciclu activ", - "progress": "Progres", - "chart": "Ritmul de finalizare a activităților", - "priority_issue": "Activități prioritare", - "assignees": "Persoane atribuite", - "issue_burndown": "Grafic de finalizare a activităților", - "ideal": "Ideal", - "current": "Curent", - "labels": "Etichete" - }, - "upcoming_cycle": { - "label": "Ciclu viitor" - }, - "completed_cycle": { - "label": "Ciclu finalizat" - }, - "status": { - "days_left": "Zile rămase", - "completed": "Finalizat", - "yet_to_start": "Nu a început", - "in_progress": "În desfășurare", - "draft": "Schiță" - }, - "action": { - "restore": { - "title": "Restaurează ciclul", - "success": { - "title": "Ciclu restaurat", - "description": "Ciclul a fost restaurat." - }, - "failed": { - "title": "Restaurarea ciclului a eșuat", - "description": "Ciclul nu a putut fi restaurat. Te rugăm să încerci din nou." - } - }, - "favorite": { - "loading": "Se adaugă ciclul la favorite", - "success": { - "description": "Ciclul a fost adăugat la favorite.", - "title": "Succes!" - }, - "failed": { - "description": "Nu s-a putut adăuga ciclul la favorite. Te rugăm să încerci din nou.", - "title": "Eroare!" - } - }, - "unfavorite": { - "loading": "Se elimină ciclul din favorite", - "success": { - "description": "Ciclul a fost eliminat din favorite.", - "title": "Succes!" - }, - "failed": { - "description": "Nu s-a putut elimina ciclul din favorite. Te rugăm să încerci din nou.", - "title": "Eroare!" - } - }, - "update": { - "loading": "Se actualizează ciclul", - "success": { - "description": "Ciclul a fost actualizat cu succes.", - "title": "Succes!" - }, - "failed": { - "description": "Eroare la actualizarea ciclului. Te rugăm să încerci din nou.", - "title": "Eroare!" - }, - "error": { - "already_exists": "Ai deja un ciclu în datele selectate. Dacă vrei să creezi o schiță, poți face asta eliminând ambele date." - } - } - }, - "empty_state": { - "general": { - "title": "Grupează și delimitează în timp munca ta în Cicluri.", - "description": "Împarte munca în intervale de timp, stabilește datele în funcție de termenul limită al proiectului și progresează vizibil ca echipă.", - "primary_button": { - "text": "Setează primul tău ciclu", - "comic": { - "title": "Ciclurile sunt intervale repetitive de timp.", - "description": "O iterație sau orice alt termen folosit pentru urmărirea săptămânală sau bilunară a muncii este un ciclu." - } - } - }, - "no_issues": { - "title": "Nicio activitate adăugată în ciclu", - "description": "Adaugă sau creează activități pe care vrei să le implementezi în acest ciclu", - "primary_button": { - "text": "Creează o activitate nouă" - }, - "secondary_button": { - "text": "Adaugă o activitate existentă" - } - }, - "completed_no_issues": { - "title": "Nicio activitate în ciclu", - "description": "Nu există activități în ciclu. Acestea au fost fie transferate, fie ascunse. Pentru a vedea activitățile ascunse, actualizează proprietățile de afișare." - }, - "active": { - "title": "Niciun ciclu activ", - "description": "Un ciclu activ include orice perioadă care conține data de azi în intervalul său. Progresul și detaliile ciclului activ apar aici." - }, - "archived": { - "title": "Niciun ciclu arhivat încă", - "description": "Pentru a păstra proiectul ordonat, arhivează ciclurile completate. Le vei găsi aici după arhivare." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Creează o activitate și atribuie-o cuiva, chiar și ție", - "description": "Gândește-te la activități ca la sarcini sau lucruri care trebuie făcute. O activitate și sub-activitățile sale sunt acțiuni care trebuie realizate într-un interval de timp de către membrii echipei tale. Echipa creează, atribuie și finalizează activități pentru a duce proiectul spre obiectivul său.", - "primary_button": { - "text": "Creează prima ta activitate", - "comic": { - "title": "Activitățile sunt elemente de bază în Plane.", - "description": "Reproiectarea interfeței Plane, modernizarea imaginii companiei sau lansarea noului sistem de injecție sunt exemple de activități care au, cel mai probabil, sub-activități." - } - } - }, - "no_archived_issues": { - "title": "Nicio activitate arhivată încă", - "description": "Manual sau automat, poți arhiva activitățile care sunt finalizate sau anulate. Le vei găsi aici după arhivare.", - "primary_button": { - "text": "Setează automatizarea" - } - }, - "issues_empty_filter": { - "title": "Nicio activitate găsită conform filtrelor aplicate", - "secondary_button": { - "text": "Șterge toate filtrele" - } - } - } - }, - "project_module": { - "add_module": "Adaugă Modul", - "update_module": "Actualizează Modul", - "create_module": "Creează Modul", - "archive_module": "Arhivează Modul", - "restore_module": "Restaurează Modul", - "delete_module": "Șterge modulul", - "empty_state": { - "general": { - "title": "Mapează etapele proiectului în Module și urmărește munca agregată cu ușurință.", - "description": "Un grup de activități care aparțin unui părinte logic și ierarhic formează un modul. Gândește-te la module ca la un mod de a urmări munca în funcție de etapele proiectului. Au propriile perioade, termene limită și statistici pentru a-ți arăta cât de aproape sau departe ești de un reper.", - "primary_button": { - "text": "Construiește primul tău modul", - "comic": { - "title": "Modulele ajută la organizarea muncii pe niveluri ierarhice.", - "description": "Un modul pentru caroserie, un modul pentru șasiu sau un modul pentru depozit sunt exemple bune de astfel de grupare." - } - } - }, - "no_issues": { - "title": "Nicio activitate în modul", - "description": "Creează sau adaugă activități pe care vrei să le finalizezi ca parte a acestui modul", - "primary_button": { - "text": "Creează activități noi" - }, - "secondary_button": { - "text": "Adaugă o activitate existentă" - } - }, - "archived": { - "title": "Niciun modul arhivat încă", - "description": "Pentru a păstra proiectul ordonat, arhivează modulele finalizate sau anulate. Le vei găsi aici după arhivare." - }, - "sidebar": { - "in_active": "Acest modul nu este încă activ.", - "invalid_date": "Dată invalidă. Te rugăm să introduci o dată validă." - } - }, - "quick_actions": { - "archive_module": "Arhivează modulul", - "archive_module_description": "Doar modulele finalizate sau anulate pot fi arhivate.", - "delete_module": "Șterge modulul" - }, - "toast": { - "copy": { - "success": "Link-ul modulului a fost copiat în memoria temporară" - }, - "delete": { - "success": "Modulul a fost șters cu succes", - "error": "Ștergerea modulului a eșuat" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Salvează perspective filtrate pentru proiectul tău. Creează câte ai nevoie", - "description": "Perspectivele sunt seturi de filtre salvate pe care le folosești frecvent sau la care vrei acces rapid. Toți colegii tăi dintr-un proiect pot vedea perspectivele tuturor și pot alege ce li se potrivește cel mai bine.", - "primary_button": { - "text": "Creează prima ta perspectivă", - "comic": { - "title": "Perspectivele funcționează pe baza proprietăților activităților.", - "description": "Poți crea o perspectivă de aici, cu oricâte proprietăți și filtre consideri necesare." - } - } - }, - "filter": { - "title": "Nicio perspectivă potrivită", - "description": "Nicio perspectivă nu se potrivește criteriilor de căutare.\n Creează o nouă perspectivă în schimb." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Scrie o notiță, un document sau o bază completă de cunoștințe. Folosește-l pe Galileo, Inteligența Artificială a Plane, ca să te ajute să începi", - "description": "Documentația e spațiul în care îți notezi gândurile în Plane. Ia notițe de la ședințe, formatează-le ușor, inserează activități, așază-le folosind o bibliotecă de componente și păstrează-le pe toate în contextul proiectului tău. Pentru a redacta rapid orice document, apelează la Galileo, Inteligența Artificială a Plane, cu un shortcut sau un click.", - "primary_button": { - "text": "Creează primul tău document" - } - }, - "private": { - "title": "Niciun document privată încă", - "description": "Păstrează-ți gândurile private aici. Când ești gata să le împarți, echipa e la un click distanță.", - "primary_button": { - "text": "Creează primul tău document" - } - }, - "public": { - "title": "Niciun document public încă", - "description": "Vezi aici documentele distribuite cu toată echipa ta din proiect.", - "primary_button": { - "text": "Creează primul tău document" - } - }, - "archived": { - "title": "Niciun document arhivat încă", - "description": "Arhivează documentele de care nu mai ai nevoie. Le poți accesa de aici oricând." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Niciun rezultat găsit" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Nu au fost găsite activități potrivite" - }, - "no_issues": { - "title": "Nu au fost găsite activități" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Niciun comentariu încă", - "description": "Comentariile pot fi folosite ca spațiu de discuții și urmărire pentru activități" - } - } - }, - "notification": { - "label": "Căsuță de mesaje", - "page_label": "{workspace} - Căsuță de mesaje", - "options": { - "mark_all_as_read": "Marchează toate ca citite", - "mark_read": "Marchează ca citit", - "mark_unread": "Marchează ca necitit", - "refresh": "Reîmprospătează", - "filters": "Filtre Căsuță de mesaje", - "show_unread": "Afișează necitite", - "show_snoozed": "Afișează amânate", - "show_archived": "Afișează arhivate", - "mark_archive": "Arhivează", - "mark_unarchive": "Dezarhivează", - "mark_snooze": "Amână", - "mark_unsnooze": "Dezactivează amânarea" - }, - "toasts": { - "read": "Notificare marcată ca citită", - "unread": "Notificare marcată ca necitită", - "archived": "Notificare arhivată", - "unarchived": "Notificare dezarhivată", - "snoozed": "Notificare amânată", - "unsnoozed": "Notificare reactivată" - }, - "empty_state": { - "detail": { - "title": "Selectează pentru a vedea detalii." - }, - "all": { - "title": "Nicio activitate atribuită", - "description": "Actualizările pentru activitățile atribuite ție pot fi\nvăzute aici" - }, - "mentions": { - "title": "Nicio activitate atribuită", - "description": "Actualizările pentru activitățile atribuite ție pot fi\nvăzute aici" - } - }, - "tabs": { - "all": "Toate", - "mentions": "Mențiuni" - }, - "filter": { - "assigned": "Atribuite mie", - "created": "Create de mine", - "subscribed": "Urmărite de mine" - }, - "snooze": { - "1_day": "1 zi", - "3_days": "3 zile", - "5_days": "5 zile", - "1_week": "1 săptămână", - "2_weeks": "2 săptămâni", - "custom": "Personalizat" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Adaugă activități în ciclu pentru a vedea progresul" - }, - "chart": { - "title": "Adaugă activități în ciclu pentru a vedea graficul de finalizare a activităților." - }, - "priority_issue": { - "title": "Observă rapid activitățile cu prioritate ridicată abordate în ciclu." - }, - "assignee": { - "title": "Adaugă responsabili pentru a vedea repartizarea muncii pe persoane." - }, - "label": { - "title": "Adaugă etichete activităților pentru a vedea repartizarea muncii pe etichete." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Funcția Cereri nu este activată pentru proiect.", - "description": "Funcția Cereri te ajută să gestionezi cererile care vin în proiectul tău și să le adaugi ca activități în fluxul tău. Activează Cereri din setările proiectului pentru a gestiona cererile.", - "primary_button": { - "text": "Gestionează funcțiile" - } - }, - "cycle": { - "title": "Funcția Cicluri nu este activată pentru acest proiect.", - "description": "Împarte munca în intervale de timp, pleacă de la termenul limită al proiectului pentru a seta date și progresează vizibil ca echipă. Activează funcția de cicluri pentru a începe să o folosești.", - "primary_button": { - "text": "Gestionează funcțiile" - } - }, - "module": { - "title": "Funcția Module nu este activată pentru proiect.", - "description": "Modulele sunt componentele de bază ale proiectului tău. Activează modulele din setările proiectului pentru a începe să le folosești.", - "primary_button": { - "text": "Gestionează funcțiile" - } - }, - "page": { - "title": "Funcția Documentație nu este activată pentru proiect.", - "description": "Paginile sunt componentele de bază ale proiectului tău. Activează paginile din setările proiectului pentru a începe să le folosești.", - "primary_button": { - "text": "Gestionează funcțiile" - } - }, - "view": { - "title": "Funcția Perspective nu este activată pentru proiect.", - "description": "Perspectivele sunt componentele de bază ale proiectului tău. Activează perspectivele din setările proiectului pentru a începe să le folosești.", - "primary_button": { - "text": "Gestionează funcțiile" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Salvează o activitate ca schiță", - "empty_state": { - "title": "Elementele de lucru scrise pe jumătate, și în curând și comentariile, vor apărea aici.", - "description": "Ca să testezi, începe să adaugi o activitate și las-o nefinalizată sau creează prima ta schiță mai jos. 😉", - "primary_button": { - "text": "Creează prima ta schiță" - } - }, - "delete_modal": { - "title": "Șterge schița", - "description": "Ești sigur că vrei să ștergi această schiță? Această acțiune este ireversibilă." - }, - "toasts": { - "created": { - "success": "Schiță creată", - "error": "Activitatea nu a putut fi creată. Te rugăm să încerci din nou." - }, - "deleted": { - "success": "Schiță ștearsă" - } - } - }, - "stickies": { - "title": "Notițele tale", - "placeholder": "click pentru a scrie aici", - "all": "Toate notițele", - "no-data": "Notează o idee, surprinde un moment de inspirație sau înregistrează o idee. Adaugă o notiță pentru a începe.", - "add": "Adaugă notiță", - "search_placeholder": "Caută după titlu", - "delete": "Șterge notița", - "delete_confirmation": "Ești sigur că vrei să ștergi această notiță?", - "empty_state": { - "simple": "Notează o idee, surprinde un moment de inspirație sau înregistrează o idee. Adaugă o notiță pentru a începe.", - "general": { - "title": "Notițele sunt observații rapide și lucruri de făcut pe care le notezi din mers.", - "description": "Surprinde-ți gândurile și ideile fără efort, creând notițe la care poți avea acces oricând și de oriunde.", - "primary_button": { - "text": "Adaugă notiță" - } - }, - "search": { - "title": "Nu se potrivește cu nicio notiță existentă.", - "description": "Încearcă un alt termen sau anunță-ne\n dacă ești sigur că ai căutat corect.", - "primary_button": { - "text": "Adaugă notiță" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Numele notiței nu poate depăși 100 de caractere.", - "already_exists": "Există deja o notiță fără descriere" - }, - "created": { - "title": "Notiță creată", - "message": "Notița a fost creată cu succes" - }, - "not_created": { - "title": "Notiță necreată", - "message": "Notița nu a putut fi creată" - }, - "updated": { - "title": "Notiță actualizată", - "message": "Notița a fost actualizată cu succes" - }, - "not_updated": { - "title": "Notiță neactualizată", - "message": "Notița nu a putut fi actualizată" - }, - "removed": { - "title": "Notiță ștearsă", - "message": "Notița a fost ștearsă cu succes" - }, - "not_removed": { - "title": "Notiță neștearsă", - "message": "Notița nu a putut fi ștearsă" - } - } - }, - "role_details": { - "guest": { - "title": "Invitat", - "description": "Membrii externi ai organizațiilor pot fi incluși ca invitați." - }, - "member": { - "title": "Membru", - "description": "Poate citi, scrie, edita și șterge entități în proiecte, cicluri și module" - }, - "admin": { - "title": "Administrator", - "description": "Toate permisiunile setate pe adevărat în cadrul workspace-ului." - } - }, - "user_roles": { - "product_or_project_manager": "Manager de produs / proiect", - "development_or_engineering": "Dezvoltare / Inginerie", - "founder_or_executive": "Fondator / Director executiv", - "freelancer_or_consultant": "Liber profesionist / Consultant", - "marketing_or_growth": "Marketing / Creștere", - "sales_or_business_development": "Vânzări / Dezvoltare afaceri", - "support_or_operations": "Suport / Operațiuni", - "student_or_professor": "Student / Profesor", - "human_resources": "Resurse umane", - "other": "Altceva" - }, - "importer": { - "github": { - "title": "Github", - "description": "Importă activități din arhivele de cod GitHub și sincronizează-le." - }, - "jira": { - "title": "Jira", - "description": "Importă activități și episoade din proiectele și episoadele Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Exportă activitățile într-un fișier CSV.", - "short_description": "Exportă ca CSV" - }, - "excel": { - "title": "Excel", - "description": "Exportă activitățile într-un fișier Excel.", - "short_description": "Exportă ca Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Exportă activitățile într-un fișier Excel.", - "short_description": "Exportă ca Excel" - }, - "json": { - "title": "JSON", - "description": "Exportă activitățile într-un fișier JSON.", - "short_description": "Exportă ca JSON" - } - }, - "default_global_view": { - "all_issues": "Toate activitățile", - "assigned": "Atribuite", - "created": "Create", - "subscribed": "Urmărite" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Preferință sistem" - }, - "light": { - "label": "Luminos" - }, - "dark": { - "label": "Întunecat" - }, - "light_contrast": { - "label": "Luminos cu contrast ridicat" - }, - "dark_contrast": { - "label": "Întunecat cu contrast ridicat" - }, - "custom": { - "label": "Temă personalizată" - } - } - }, - "project_modules": { - "status": { - "backlog": "Restante", - "planned": "Planificate", - "in_progress": "În desfășurare", - "paused": "În pauză", - "completed": "Finalizat", - "cancelled": "Anulat" - }, - "layout": { - "list": "Aspect listă", - "board": "Aspect galerie", - "timeline": "Aspect cronologic" - }, - "order_by": { - "name": "Nume", - "progress": "Progres", - "issues": "Număr de activități", - "due_date": "Termen limită", - "created_at": "Dată creare", - "manual": "Manual" - } - }, - "cycle": { - "label": "{count, plural, one {Ciclu} other {Cicluri}}", - "no_cycle": "Niciun ciclu" - }, - "module": { - "label": "{count, plural, one {Modul} other {Module}}", - "no_module": "Niciun modul" - }, - "description_versions": { - "last_edited_by": "Ultima editare de către", - "previously_edited_by": "Editat anterior de către", - "edited_by": "Editat de" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane nu a pornit. Aceasta ar putea fi din cauza că unul sau mai multe servicii Plane au eșuat să pornească.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Alegeți View Logs din setup.sh și logurile Docker pentru a fi siguri." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Contur", - "empty_state": { - "title": "Titluri lipsă", - "description": "Să punem câteva titluri în această pagină pentru a le vedea aici." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Cuvinte", - "characters": "Caractere", - "paragraphs": "Paragrafe", - "read_time": "Timp de citire" - }, - "actors_info": { - "edited_by": "Editat de", - "created_by": "Creat de" - }, - "version_history": { - "label": "Istoricul versiunilor", - "current_version": "Versiunea curentă" - } - }, - "assets": { - "label": "Resurse", - "download_button": "Descarcă", - "empty_state": { - "title": "Imagini lipsă", - "description": "Adăugați imagini pentru a le vedea aici." - } - } - }, - "open_button": "Deschide panoul de navigare", - "close_button": "Închide panoul de navigare", - "outline_floating_button": "Deschide conturul" - } -} diff --git a/packages/i18n/src/locales/ro/translations.ts b/packages/i18n/src/locales/ro/translations.ts new file mode 100644 index 0000000000..76f300202b --- /dev/null +++ b/packages/i18n/src/locales/ro/translations.ts @@ -0,0 +1,2601 @@ +export default { + sidebar: { + projects: "Proiecte", + pages: "Documentație", + new_work_item: "Activitate nouă", + home: "Acasă", + your_work: "Munca ta", + inbox: "Căsuță de mesaje", + workspace: "Spațiu de lucru", + views: "Perspective", + analytics: "Statistici", + work_items: "Activități", + cycles: "Cicluri", + modules: "Module", + intake: "Cereri", + drafts: "Schițe", + favorites: "Favorite", + pro: "Pro", + upgrade: "Treci la versiunea superioară", + }, + auth: { + common: { + email: { + label: "Email", + placeholder: "nume@companie.ro", + errors: { + required: "Email-ul este obligatoriu", + invalid: "Email-ul nu este valid", + }, + }, + password: { + label: "Parolă", + set_password: "Setează o parolă", + placeholder: "Introdu parola", + confirm_password: { + label: "Confirmă parola", + placeholder: "Confirmă parola", + }, + current_password: { + label: "Parola curentă", + }, + new_password: { + label: "Parolă nouă", + placeholder: "Introdu parola nouă", + }, + change_password: { + label: { + default: "Schimbă parola", + submitting: "Se schimbă parola", + }, + }, + errors: { + match: "Parolele nu se potrivesc", + empty: "Te rugăm să introduci parola", + length: "Parola trebuie să aibă mai mult de 8 caractere", + strength: { + weak: "Parola este slabă", + strong: "Parola este puternică", + }, + }, + submit: "Setează parola", + toast: { + change_password: { + success: { + title: "Succes!", + message: "Parola a fost schimbată cu succes.", + }, + error: { + title: "Eroare!", + message: "Ceva nu a funcționat. Te rugăm să încerci din nou.", + }, + }, + }, + }, + unique_code: { + label: "Cod unic", + placeholder: "exemplu-cod-unic", + paste_code: "Introdu codul trimis pe email", + requesting_new_code: "Se solicită un cod nou", + sending_code: "Se trimite codul", + }, + already_have_an_account: "Ai deja un cont?", + login: "Autentificare", + create_account: "Creează un cont", + new_to_plane: "Ești nou în Plane?", + back_to_sign_in: "Înapoi la autentificare", + resend_in: "Retrimite în {seconds} secunde", + sign_in_with_unique_code: "Autentificare cu cod unic", + forgot_password: "Ți-ai uitat parola?", + }, + sign_up: { + header: { + label: "Creează un cont pentru a începe să-ți gestionezi activitatea împreună cu echipa ta.", + step: { + email: { + header: "Înregistrare", + sub_header: "", + }, + password: { + header: "Înregistrare", + sub_header: "Înregistrează-te folosind o combinație email-parolă.", + }, + unique_code: { + header: "Înregistrare", + sub_header: "Înregistrează-te folosind un cod unic trimis pe adresa de email de mai sus.", + }, + }, + }, + errors: { + password: { + strength: "Setează o parolă puternică pentru a continua", + }, + }, + }, + sign_in: { + header: { + label: "Autentifică-te pentru a începe să-ți gestionezi activitatea împreună cu echipa ta.", + step: { + email: { + header: "Autentificare sau înregistrare", + sub_header: "", + }, + password: { + header: "Autentificare sau înregistrare", + sub_header: "Folosește combinația email-parolă pentru a te autentifica.", + }, + unique_code: { + header: "Autentificare sau înregistrare", + sub_header: "Autentifică-te folosind un cod unic trimis pe adresa de email de mai sus.", + }, + }, + }, + }, + forgot_password: { + title: "Resetează-ți parola", + description: + "Introdu adresa de email verificată a contului tău și îți vom trimite un link pentru resetarea parolei.", + email_sent: "Am trimis link-ul de resetare pe adresa ta de email", + send_reset_link: "Trimite link-ul de resetare", + errors: { + smtp_not_enabled: + "Se pare că administratorul nu a activat SMTP, nu putem trimite link-ul de resetare a parolei", + }, + toast: { + success: { + title: "Email trimis", + message: + "Verifică-ți căsuța de mesaje pentru link-ul de resetare a parolei. Dacă nu apare în câteva minute, verifică folderul de spam.", + }, + error: { + title: "Eroare!", + message: "Ceva nu a funcționat. Te rugăm să încerci din nou.", + }, + }, + }, + reset_password: { + title: "Setează o parolă nouă", + description: "Protejează-ți contul cu o parolă puternică", + }, + set_password: { + title: "Protejează-ți contul", + description: "Setarea parolei te ajută să te autentifici în siguranță", + }, + sign_out: { + toast: { + error: { + title: "Eroare!", + message: "Deconectarea a eșuat. Te rugăm să încerci din nou.", + }, + }, + }, + }, + submit: "Trimite", + cancel: "Anulează", + loading: "Se încarcă", + error: "Eroare", + success: "Succes", + warning: "Avertisment", + info: "Informații", + close: "Închide", + yes: "Da", + no: "Nu", + ok: "OK", + name: "Nume", + description: "Descriere", + search: "Caută", + add_member: "Adaugă membru", + adding_members: "Se adaugă membri", + remove_member: "Elimină membru", + add_members: "Adaugă membri", + adding_member: "Se adaugă membru", + remove_members: "Elimină membri", + add: "Adaugă", + adding: "Se adaugă", + remove: "Elimină", + add_new: "Adaugă nou", + remove_selected: "Elimină selecția", + first_name: "Prenume", + last_name: "Nume de familie", + email: "Email", + display_name: "Nume afișat", + role: "Rol", + timezone: "Fus orar", + avatar: "Imagine de profil", + cover_image: "Copertă", + password: "Parolă", + change_cover: "Schimbă coperta", + language: "Limbă", + saving: "Se salvează", + save_changes: "Salvează modificările", + deactivate_account: "Dezactivează contul", + deactivate_account_description: + "Când dezactivezi un cont, toate datele și activitățile din acel cont vor fi șterse permanent și nu pot fi recuperate.", + profile_settings: "Setări profil", + your_account: "Contul tău", + security: "Securitate", + activity: "Activitate", + appearance: "Aspect", + notifications: "Notificări", + workspaces: "Spații de lucru", + create_workspace: "Creează spațiu de lucru", + invitations: "Invitații", + summary: "Rezumat", + assigned: "Responsabil", + created: "Creat", + subscribed: "Abonat", + you_do_not_have_the_permission_to_access_this_page: "Nu ai permisiunea de a accesa această pagină.", + something_went_wrong_please_try_again: "Ceva nu a funcționat. Te rugăm să încerci din nou.", + load_more: "Încarcă mai mult", + select_or_customize_your_interface_color_scheme: "Selectează sau personalizează schema de culori a interfeței.", + theme: "Temă", + system_preference: "Preferință de sistem", + light: "Luminos", + dark: "Întunecat", + light_contrast: "Luminos - contrast ridicat", + dark_contrast: "Întunecat - contrast ridicat", + custom: "Temă personalizată", + select_your_theme: "Selectează tema", + customize_your_theme: "Personalizează tema", + background_color: "Culoare fundal", + text_color: "Culoare text", + primary_color: "Culoare principală (temă)", + sidebar_background_color: "Culoare fundal bară laterală", + sidebar_text_color: "Culoare text bară laterală", + set_theme: "Setează tema", + enter_a_valid_hex_code_of_6_characters: "Introdu un cod hexadecimal valid de 6 caractere", + background_color_is_required: "Culoarea de fundal este obligatorie", + text_color_is_required: "Culoarea textului este obligatorie", + primary_color_is_required: "Culoarea principală este obligatorie", + sidebar_background_color_is_required: "Culoarea de fundal a barei laterale este obligatorie", + sidebar_text_color_is_required: "Culoarea textului din bara laterală este obligatorie", + updating_theme: "Se actualizează tema", + theme_updated_successfully: "Tema a fost actualizată cu succes", + failed_to_update_the_theme: "Eroare la actualizarea temei", + email_notifications: "Notificări prin email", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Rămâi la curent cu activitățile la care ești abonat. Activează această opțiune pentru a primi notificări.", + email_notification_setting_updated_successfully: "Setarea notificărilor prin email a fost actualizată cu succes", + failed_to_update_email_notification_setting: "Eroare la actualizarea setării notificărilor prin email", + notify_me_when: "Notifică-mă când", + property_changes: "Se modifică proprietățile", + property_changes_description: + "Notifică-mă când proprietăți precum responsabilii, prioritatea, estimările sau altele se modifică.", + state_change: "Se schimbă starea", + state_change_description: "Notifică-mă când activitățile trec într-o stare diferită", + issue_completed: "Activitate finalizată", + issue_completed_description: "Notifică-mă doar când o activitate este finalizată", + comments: "Comentarii", + comments_description: "Notifică-mă când cineva lasă un comentariu la o activitate", + mentions: "Mențiuni", + mentions_description: "Notifică-mă doar când cineva mă menționează în comentarii sau descriere", + old_password: "Parolă veche", + general_settings: "Setări generale", + sign_out: "Deconectează-te", + signing_out: "Se deconectează", + active_cycles: "Cicluri active", + active_cycles_description: + "Monitorizează ciclurile din proiecte, urmărește activitățile prioritare și focalizează-te pe ciclurile care necesită atenție.", + on_demand_snapshots_of_all_your_cycles: "Instantanee la cerere ale tuturor ciclurilor tale", + upgrade: "Treci la o versiune superioră", + "10000_feet_view": "Vedere de ansamblu asupra tuturor ciclurilor active.", + "10000_feet_view_description": + "Vezi în ansamblu și simultan toate ciclurile active din proiectele tale, fără a naviga individual la fiecare ciclu.", + get_snapshot_of_each_active_cycle: "Obține un instantaneu al fiecărui ciclu activ.", + get_snapshot_of_each_active_cycle_description: + "Urmărește statisticile generale pentru toate ciclurile active, vezi progresul și estimează volumul de muncă în raport cu termenele limită.", + compare_burndowns: "Compară graficele de finalizare a activităților ", + compare_burndowns_description: + "Monitorizează performanța echipelor tale, analizând graficul de finalizare a activităților ale fiecărui ciclu.", + quickly_see_make_or_break_issues: "Vezi rapid activitățile critice.", + quickly_see_make_or_break_issues_description: + "Previzualizează activitățile prioritare pentru fiecare ciclu în funcție de termene. Vizualizează-le pe toate dintr-un singur click.", + zoom_into_cycles_that_need_attention: "Concentrează-te pe ciclurile care necesită atenție.", + zoom_into_cycles_that_need_attention_description: + "Analizează starea oricărui ciclu care nu corespunde așteptărilor, dintr-un singur click.", + stay_ahead_of_blockers: "Anticipează blocajele.", + stay_ahead_of_blockers_description: + "Identifică provocările între proiecte și vezi dependențele între cicluri care altfel nu sunt evidente.", + analytics: "Statistici", + workspace_invites: "Invitațiile din spațiul de lucru", + enter_god_mode: "Activează modul Dumnezeu", + workspace_logo: "Sigla spațiului de lucru", + new_issue: "Activitate nouă", + your_work: "Munca ta", + drafts: "Schițe", + projects: "Proiecte", + views: "Perspective", + workspace: "Spațiu de lucru", + archives: "Arhive", + settings: "Setări", + failed_to_move_favorite: "Nu s-a putut muta favorita", + favorites: "Favorite", + no_favorites_yet: "Nicio favorită încă", + create_folder: "Creează dosar", + new_folder: "Dosar nou", + favorite_updated_successfully: "Favorita a fost actualizată cu succes", + favorite_created_successfully: "Favorita a fost creată cu succes", + folder_already_exists: "Dosarul există deja", + folder_name_cannot_be_empty: "Numele dosarului nu poate fi gol", + something_went_wrong: "Ceva nu a funcționat", + failed_to_reorder_favorite: "Nu s-a putut reordona favorita", + favorite_removed_successfully: "Favorita a fost eliminată cu succes", + failed_to_create_favorite: "Nu s-a putut crea favorita", + failed_to_rename_favorite: "Nu s-a putut redenumi favorita", + project_link_copied_to_clipboard: "Link-ul proiectului a fost copiat în memoria temporară", + link_copied: "Link copiat", + add_project: "Adaugă proiect", + create_project: "Creează proiect", + failed_to_remove_project_from_favorites: "Nu s-a putut elimina proiectul din favorite. Încearcă din nou.", + project_created_successfully: "Proiect creat cu succes", + project_created_successfully_description: "Proiect creat cu succes. Poți începe să adaugi activități în el.", + project_name_already_taken: "Numele proiectului este deja folosit.", + project_identifier_already_taken: "Identificatorul proiectului este deja folosit.", + project_cover_image_alt: "Coperta proiectului", + name_is_required: "Numele este obligatoriu", + title_should_be_less_than_255_characters: "Titlul trebuie să conțină mai puțin de 255 de caractere", + project_name: "Numele proiectului", + project_id_must_be_at_least_1_character: "ID-ul proiectului trebuie să conțină cel puțin 1 caracter", + project_id_must_be_at_most_5_characters: "ID-ul proiectului trebuie să conțină cel mult 5 caractere", + project_id: "ID-ul Proiectului", + project_id_tooltip_content: "Te ajută să identifici unic activitățile din proiect. Maxim 5 caractere.", + description_placeholder: "Descriere", + only_alphanumeric_non_latin_characters_allowed: "Sunt permise doar caractere alfanumerice și non-latine.", + project_id_is_required: "ID-ul proiectului este obligatoriu", + project_id_allowed_char: "Sunt permise doar caractere alfanumerice și non-latine.", + project_id_min_char: "ID-ul proiectului trebuie să aibă cel puțin 1 caracter", + project_id_max_char: "ID-ul proiectului trebuie să aibă cel mult 5 caractere", + project_description_placeholder: "Introdu descrierea proiectului", + select_network: "Selectează rețeaua", + lead: "Lider", + date_range: "Interval de date", + private: "Privat", + public: "Public", + accessible_only_by_invite: "Accesibil doar prin invitație", + anyone_in_the_workspace_except_guests_can_join: + "Oricine din spațiul de lucru, cu excepția celor de tip Invitat, se poate alătura", + creating: "Se creează", + creating_project: "Se creează proiectul", + adding_project_to_favorites: "Se adaugă proiectul la favorite", + project_added_to_favorites: "Proiectul a fost adăugat la favorite", + couldnt_add_the_project_to_favorites: "Nu s-a putut adăuga proiectul la favorite. Încearcă din nou.", + removing_project_from_favorites: "Se elimină proiectul din favorite", + project_removed_from_favorites: "Proiectul a fost eliminat din favorite", + couldnt_remove_the_project_from_favorites: "Nu s-a putut elimina proiectul din favorite. Încearcă din nou.", + add_to_favorites: "Adaugă la favorite", + remove_from_favorites: "Elimină din favorite", + publish_project: "Publică proiectul", + publish: "Publică", + copy_link: "Copiază link-ul", + leave_project: "Părăsește proiectul", + join_the_project_to_rearrange: "Alătură-te proiectului pentru a rearanja", + drag_to_rearrange: "Trage pentru a rearanja", + congrats: "Felicitări!", + open_project: "Deschide proiectul", + issues: "Activități", + cycles: "Cicluri", + modules: "Module", + pages: "Documentație", + intake: "Cereri", + time_tracking: "Monitorizare timp", + work_management: "Gestionare muncă", + projects_and_issues: "Proiecte și activități", + projects_and_issues_description: "Activează sau dezactivează aceste opțiuni pentru proiect.", + cycles_description: + "Stabilește perioade de timp pentru fiecare proiect și ajustează-le după cum este necesar. Un ciclu poate dura 2 săptămâni, următorul 1 săptămână.", + modules_description: "Organizează munca în sub-proiecte cu lideri și responsabili dedicați.", + views_description: + "Salvează sortările, filtrele și opțiunile de afișare personalizate sau distribuie-le echipei tale.", + pages_description: "Creează și editează conținut liber: note, documente, orice.", + intake_description: + "Permite utilizatorilor care nu sunt membri să trimită erori, feedback și sugestii fără a perturba fluxul de lucru.", + time_tracking_description: "Înregistrează timpul petrecut pe activități și proiecte.", + work_management_description: "Gestionează-ți munca și proiectele cu ușurință.", + documentation: "Documentație", + message_support: "Trimite mesaj la suport", + contact_sales: "Contactează vânzările", + hyper_mode: "Mod Hyper", + keyboard_shortcuts: "Scurtături tastatură", + whats_new: "Ce e nou?", + version: "Versiune", + we_are_having_trouble_fetching_the_updates: "Avem probleme în a prelua actualizările.", + our_changelogs: "jurnalele noastre de modificări", + for_the_latest_updates: "pentru cele mai recente actualizări.", + please_visit: "Te rugăm să vizitezi", + docs: "Documentație", + full_changelog: "Jurnal complet al modificărilor", + support: "Suport", + discord: "Discord", + powered_by_plane_pages: "Oferit de Plane Documentație", + please_select_at_least_one_invitation: "Te rugăm să selectezi cel puțin o invitație.", + please_select_at_least_one_invitation_description: + "Te rugăm să selectezi cel puțin o invitație pentru a te alătura spațiului de lucru.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Se pare că cineva te-a invitat să te alături unui spațiu de lucru", + join_a_workspace: "Alătură-te unui spațiu de lucru", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Se pare că cineva te-a invitat să te alături unui spațiu de lucru", + join_a_workspace_description: "Alătură-te unui spațiu de lucru", + accept_and_join: "Acceptă și alătură-te", + go_home: "Mergi la început", + no_pending_invites: "Nicio invitație în așteptare", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Aici vei vedea dacă cineva te-a invitat într-un spațiu de lucru", + back_to_home: "Înapoi la început", + workspace_name: "nume-spațiu-de-lucru", + deactivate_your_account: "Dezactivează-ți contul", + deactivate_your_account_description: + "Odată dezactivat, nu vei mai putea primi activități sau fi taxat pentru spațiul tău de lucru. Pentru a-ți reactiva contul, vei avea nevoie de o invitație către un spațiu de lucru la această adresă de email.", + deactivating: "Se dezactivează", + confirm: "Confirmă", + confirming: "Se confirmă", + draft_created: "Schiță creată", + issue_created_successfully: "Activitate creată cu succes", + draft_creation_failed: "Crearea schiței a eșuat", + issue_creation_failed: "Crearea activității a eșuat", + draft_issue: "Schiță activitate", + issue_updated_successfully: "Activitate actualizată cu succes", + issue_could_not_be_updated: "Activitatea nu a putut fi actualizată", + create_a_draft: "Creează o schiță", + save_to_drafts: "Salvează în schițe", + save: "Salvează", + update: "Actualizează", + updating: "Se actualizează", + create_new_issue: "Creează activate nouă", + editor_is_not_ready_to_discard_changes: "Editorul nu este pregătit să renunțe la modificări", + failed_to_move_issue_to_project: "Nu s-a putut muta activitatea în proiect", + create_more: "Creează mai multe", + add_to_project: "Adaugă la proiect", + discard: "Renunță", + duplicate_issue_found: "Activitate duplicată găsită", + duplicate_issues_found: "Activități duplicate găsite", + no_matching_results: "Nu există rezultate potrivite", + title_is_required: "Titlul este obligatoriu", + title: "Titlu", + state: "Stare", + priority: "Prioritate", + none: "Niciuna", + urgent: "Urgentă", + high: "Importantă", + medium: "Medie", + low: "Scăzută", + members: "Membri", + assignee: "Responsabil", + assignees: "Responsabili", + you: "Tu", + labels: "Etichete", + create_new_label: "Creează etichetă nouă", + start_date: "Data de început", + end_date: "Data de sfârșit", + due_date: "Data limită", + estimate: "Estimare", + change_parent_issue: "Schimbă activitatea părinte", + remove_parent_issue: "Elimină activitatea părinte", + add_parent: "Adaugă părinte", + loading_members: "Se încarcă membrii", + view_link_copied_to_clipboard: "Link-ul de perspectivă a fost copiat în memoria temporară.", + required: "Obligatoriu", + optional: "Opțional", + Cancel: "Anulează", + edit: "Editează", + archive: "Arhivează", + restore: "Restaurează", + open_in_new_tab: "Deschide într-un nou tab", + delete: "Șterge", + deleting: "Se șterge", + make_a_copy: "Creează o copie", + move_to_project: "Mută în proiect", + good: "Bună", + morning: "dimineața", + afternoon: "după-amiaza", + evening: "seara", + show_all: "Arată tot", + show_less: "Arată mai puțin", + no_data_yet: "Nicio dată încă", + syncing: "Se sincronizează", + add_work_item: "Adaugă activitate", + advanced_description_placeholder: "Apasă '/' pentru comenzi", + create_work_item: "Creează activitate", + attachments: "Atașamente", + declining: "Se refuză", + declined: "Refuzat", + decline: "Refuză", + unassigned: "Fără responsabil", + work_items: "Activități", + add_link: "Adaugă link", + points: "Puncte", + no_assignee: "Fără responsabil", + no_assignees_yet: "Niciun responsabil încă", + no_labels_yet: "Nicio etichetă încă", + ideal: "Ideal", + current: "Curent", + no_matching_members: "Niciun membru potrivit", + leaving: "Se părăsește", + removing: "Se elimină", + leave: "Părăsește", + refresh: "Reîncarcă", + refreshing: "Se reîncarcă", + refresh_status: "Reîncarcă statusul", + prev: "Înapoi", + next: "Înainte", + re_generating: "Se regenerează", + re_generate: "Regenerează", + re_generate_key: "Regenerează cheia", + export: "Exportă", + member: "{count, plural, one{# membru} other{# membri}}", + new_password_must_be_different_from_old_password: "Parola nouă trebuie să fie diferită de parola veche", + project_view: { + sort_by: { + created_at: "Creat la", + updated_at: "Actualizat la", + name: "Nume", + }, + }, + toast: { + success: "Succes!", + error: "Eroare!", + }, + links: { + toasts: { + created: { + title: "Link creat", + message: "Link-ul a fost creat cu succes", + }, + not_created: { + title: "Link-ul nu a fost creat", + message: "Link-ul nu a putut fi creat", + }, + updated: { + title: "Link actualizat", + message: "Link-ul a fost actualizat cu succes", + }, + not_updated: { + title: "Link-ul nu a fost actualizat", + message: "Link-ul nu a putut fi actualizat", + }, + removed: { + title: "Link eliminat", + message: "Link-ul a fost eliminat cu succes", + }, + not_removed: { + title: "Link-ul nu a fost eliminat", + message: "Link-ul nu a putut fi eliminat", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Ghid de pornire rapidă", + not_right_now: "Nu acum", + create_project: { + title: "Creează un proiect", + description: "Majoritatea lucrurilor încep cu un proiect în Plane.", + cta: "Începe acum", + }, + invite_team: { + title: "Invită-ți echipa", + description: "Construiește, livrează și gestionează împreună cu colegii.", + cta: "Invită-i", + }, + configure_workspace: { + title: "Configurează-ți spațiul de lucru.", + description: "Activează sau dezactivează opțiuni sau mergi mai departe.", + cta: "Configurează acest spațiu de lucru", + }, + personalize_account: { + title: "Personalizează Plane.", + description: "Alege-ți poza de profil, culorile și multe altele.", + cta: "Personalizează acum", + }, + widgets: { + title: "Este liniște fără mini-aplicații, activează-le", + description: + "Se pare că toate mini-aplicațiile tale sunt dezactivate. Activează-le acum pentru a-ți îmbunătăți experiența!", + primary_button: { + text: "Gestionează mini-aplicațiile", + }, + }, + }, + quick_links: { + empty: "Salvează link-uri către elementele utile pe care vrei să le ai la îndemână.", + add: "Adaugă link rapid", + title: "Link rapid", + title_plural: "Linkuri rapide", + }, + recents: { + title: "Recente", + empty: { + project: "Proiectele vizitate recent vor apărea aici.", + page: "Documentele din Documentație vizitate recent vor apărea aici.", + issue: "Activitățile vizitate recent vor apărea aici.", + default: "Nu ai nimic recent încă.", + }, + filters: { + all: "Toate", + projects: "Proiecte", + pages: "Documentație", + issues: "Activități", + }, + }, + new_at_plane: { + title: "Noutăți în Plane", + }, + quick_tutorial: { + title: "Tutorial rapid", + }, + widget: { + reordered_successfully: "Mini-aplicație reordonată cu succes.", + reordering_failed: "Eroare la reordonarea mini-aplicației.", + }, + manage_widgets: "Gestionează mini-aplicațiile", + title: "Acasă", + star_us_on_github: "Dă-ne o stea pe GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL-ul nu este valid", + placeholder: "Tastează sau lipește un URL", + }, + title: { + text: "Titlu afișat", + placeholder: "Cum vrei să se vadă acest link", + }, + }, + }, + common: { + all: "Toate", + states: "Stări", + state: "Stare", + state_groups: "Grupuri de stări", + state_group: "Grup de stare", + priorities: "Priorități", + priority: "Prioritate", + team_project: "Proiect de echipă", + project: "Proiect", + cycle: "Ciclu", + cycles: "Cicluri", + module: "Modul", + modules: "Module", + labels: "Etichete", + label: "Etichetă", + assignees: "Responsabili", + assignee: "Responsabil", + created_by: "Creat de", + none: "Niciuna", + link: "Link", + estimates: "Estimări", + estimate: "Estimare", + created_at: "Creat la", + completed_at: "Finalizat la", + layout: "Aspect", + filters: "Filtre", + display: "Afișare", + load_more: "Încarcă mai mult", + activity: "Activitate", + analytics: "Analitice", + dates: "Date", + success: "Succes!", + something_went_wrong: "Ceva a mers greșit", + error: { + label: "Eroare!", + message: "A apărut o eroare. Te rugăm să încerci din nou.", + }, + group_by: "Grupează după", + epic: "Sarcină majoră", + epics: "Sarcini majore", + work_item: "Activitate", + work_items: "Activități", + sub_work_item: "Sub-activitate", + add: "Adaugă", + warning: "Avertisment", + updating: "Se actualizează", + adding: "Se adaugă", + update: "Actualizează", + creating: "Se creează", + create: "Creează", + cancel: "Anulează", + description: "Descriere", + title: "Titlu", + attachment: "Atașament", + general: "General", + features: "Funcționalități", + automation: "Automatizare", + project_name: "Nume proiect", + project_id: "ID Proiect", + project_timezone: "Fus orar proiect", + created_on: "Creat la", + update_project: "Actualizează proiectul", + identifier_already_exists: "Identificatorul există deja", + add_more: "Adaugă mai mult", + defaults: "Implicit", + add_label: "Adaugă etichetă", + customize_time_range: "Personalizează intervalul de timp", + loading: "Se încarcă", + attachments: "Atașamente", + property: "Proprietate", + properties: "Proprietăți", + parent: "Părinte", + page: "Document", + remove: "Elimină", + archiving: "Se arhivează", + archive: "Arhivează", + access: { + public: "Public", + private: "Privat", + }, + done: "Gata", + sub_work_items: "Sub-activități", + comment: "Comentariu", + workspace_level: "La nivel de spațiu de lucru", + order_by: { + label: "Ordonează după", + manual: "Manual", + last_created: "Ultima creată", + last_updated: "Ultima actualizată", + start_date: "Data de început", + due_date: "Data limită", + asc: "Crescător", + desc: "Descrescător", + updated_on: "Actualizat la", + }, + sort: { + asc: "Crescător", + desc: "Descrescător", + created_on: "Creată la", + updated_on: "Actualizată la", + }, + comments: "Comentarii", + updates: "Actualizări", + clear_all: "Șterge tot", + copied: "Copiat!", + link_copied: "Link copiat!", + link_copied_to_clipboard: "Link-ul a fost copiat în memoria temporară", + copied_to_clipboard: "Link-ul activității copiat în memoria temporară", + is_copied_to_clipboard: "Activitatea a fost copiată în memoria temporară", + no_links_added_yet: "Niciun link adăugat încă", + add_link: "Adaugă link", + links: "Linkuri", + go_to_workspace: "Mergi la spațiul de lucru", + progress: "Progres", + optional: "Opțional", + join: "Alătură-te", + go_back: "Înapoi", + continue: "Continuă", + resend: "Retrimite", + relations: "Relații", + errors: { + default: { + title: "Eroare!", + message: "Ceva a funcționat greșit. Te rugăm să încerci din nou.", + }, + required: "Acest câmp este obligatoriu", + entity_required: "{entity} este obligatoriu", + restricted_entity: "{entity} este restricționat", + }, + update_link: "Actualizează link-ul", + attach: "Atașează", + create_new: "Creează nou", + add_existing: "Adaugă existent", + type_or_paste_a_url: "Tastează sau lipește un URL", + url_is_invalid: "URL-ul nu este valid", + display_title: "Titlu afișat", + link_title_placeholder: "Cum vrei să se vadă acest link", + url: "URL", + side_peek: "Previzualizare laterală", + modal: "Fereastră modală", + full_screen: "Ecran complet", + close_peek_view: "Închide previzualizarea", + toggle_peek_view_layout: "Comută aspectul previzualizării", + options: "Opțiuni", + duration: "Durată", + today: "Astăzi", + week: "Săptămână", + month: "Lună", + quarter: "Trimestru", + press_for_commands: "Apasă '/' pentru comenzi", + click_to_add_description: "Apasă pentru a adăuga descriere", + search: { + label: "Caută", + placeholder: "Tastează pentru a căuta", + no_matches_found: "Nu s-au găsit rezultate", + no_matching_results: "Nicio potrivire găsită", + }, + actions: { + edit: "Editează", + make_a_copy: "Fă o copie", + open_in_new_tab: "Deschide într-un nou tab", + copy_link: "Copiază link-ul", + archive: "Arhivează", + restore: "Restaurează", + delete: "Șterge", + remove_relation: "Elimină relația", + subscribe: "Abonează-te", + unsubscribe: "Dezabonează-te", + clear_sorting: "Șterge sortarea", + show_weekends: "Arată sfârșiturile de săptămână", + enable: "Activează", + disable: "Dezactivează", + }, + name: "Nume", + discard: "Renunță", + confirm: "Confirmă", + confirming: "Se confirmă", + read_the_docs: "Citește documentația", + default: "Implicit", + active: "Activ", + enabled: "Activat", + disabled: "Dezactivat", + mandate: "Împuternicire", + mandatory: "Obligatoriu", + yes: "Da", + no: "Nu", + please_wait: "Te rog așteaptă", + enabling: "Se activează", + disabling: "Se dezactivează", + beta: "Testare", + or: "sau", + next: "Înainte", + back: "Înapoi", + cancelling: "Se anulează", + configuring: "Se configurează", + clear: "Șterge", + import: "Importă", + connect: "Conectează", + authorizing: "Se autorizează", + processing: "Se procesează", + no_data_available: "Nicio dată disponibilă", + from: "de la {name}", + authenticated: "Autentificat", + select: "Selectează", + upgrade: "Treci la o versiune superioră", + add_seats: "Adaugă locuri", + projects: "Proiecte", + workspace: "Spațiu de lucru", + workspaces: "Spații de lucru", + team: "Echipă", + teams: "Echipe", + entity: "Entitate", + entities: "Entități", + task: "Sarcină", + tasks: "Sarcini", + section: "Secțiune", + sections: "Secțiuni", + edit: "Editează", + connecting: "Se conectează", + connected: "Conectat", + disconnect: "Deconectează", + disconnecting: "Se deconectează", + installing: "Se instalează", + install: "Instalează", + reset: "Resetează", + live: "În direct", + change_history: "Istoric modificări", + coming_soon: "În curând", + member: "Membru", + members: "Membri", + you: "Tu", + upgrade_cta: { + higher_subscription: "Treci la un abonament superior", + talk_to_sales: "Discută cu vânzările", + }, + category: "Categorie", + categories: "Categorii", + saving: "Se salvează", + save_changes: "Salvează modificările", + delete: "Șterge", + deleting: "Se șterge", + pending: "În așteptare", + invite: "Invită", + view: "Vizualizează", + deactivated_user: "Utilizator dezactivat", + apply: "Aplică", + applying: "Aplicând", + users: "Utilizatori", + admins: "Administratori", + guests: "Invitați", + on_track: "Pe drumul cel bun", + off_track: "În afara traiectoriei", + at_risk: "În pericol", + timeline: "Cronologie", + completion: "Finalizare", + upcoming: "Viitor", + completed: "Finalizat", + in_progress: "În desfășurare", + planned: "Planificat", + paused: "Pauzat", + no_of: "Nr. de {entity}", + resolved: "Rezolvat", + }, + chart: { + x_axis: "axa-X", + y_axis: "axa-Y", + metric: "Indicator", + }, + form: { + title: { + required: "Titlul este obligatoriu", + max_length: "Titlul trebuie să conțină mai puțin de {length} caractere", + }, + }, + entity: { + grouping_title: "Grupare {entity}", + priority: "Prioritate {entity}", + all: "Toate {entity}", + drop_here_to_move: "Trage aici pentru a muta {entity}", + delete: { + label: "Șterge {entity}", + success: "{entity} a fost ștearsă cu succes", + failed: "Ștergerea {entity} a eșuat", + }, + update: { + failed: "Actualizarea {entity} a eșuat", + success: "{entity} a fost actualizată cu succes", + }, + link_copied_to_clipboard: "Link-ul {entity} a fost copiat în memoria temporară", + fetch: { + failed: "Eroare la preluarea {entity}", + }, + add: { + success: "{entity} a fost adăugată cu succes", + failed: "Eroare la adăugarea {entity}", + }, + remove: { + success: "{entity} a fost eliminată cu succes", + failed: "Eroare la eliminarea {entity}", + }, + }, + epic: { + all: "Toate Sarcinile majore", + label: "{count, plural, one {Sarcină majoră} other {Sarcini majore}}", + new: "Sarcină majoră", + adding: "Se adaugă sarcină majoră", + create: { + success: "Sarcină majoră creată cu succes", + }, + add: { + press_enter: "Apasă 'Enter' pentru a adăuga o altă sarcină majoră", + label: "Adaugă sarcină majoră", + }, + title: { + label: "Titlu sarcină majoră", + required: "Titlul sarcinii majore este obligatoriu.", + }, + }, + issue: { + label: "{count, plural, one {Activitate} other {Activități}}", + all: "Toate activitățile", + edit: "Editează activitatea", + title: { + label: "Titlul activității", + required: "Titlul activității este obligatoriu.", + }, + add: { + press_enter: "Apasă 'Enter' pentru a adăuga o altă activitate", + label: "Adaugă activitate", + cycle: { + failed: "Activitatea nu a putut fi adăugată în ciclu. Te rugăm să încerci din nou.", + success: "{count, plural, one {Activitate} other {Activități}} adăugată(e) în ciclu cu succes.", + loading: "Se adaugă {count, plural, one {activitate} other {activități}} în ciclu", + }, + assignee: "Adaugă responsabili", + start_date: "Adaugă data de început", + due_date: "Adaugă termenul limită", + parent: "Adaugă activitate părinte", + sub_issue: "Adaugă sub-activitate", + relation: "Adaugă relație", + link: "Adaugă link", + existing: "Adaugă activitate existentă", + }, + remove: { + label: "Elimină activitatea", + cycle: { + loading: "Se elimină activitatea din ciclu", + success: "Activitatea a fost eliminată din ciclu cu succes.", + failed: "Activitatea nu a putut fi eliminată din ciclu. Te rugăm să încerci din nou.", + }, + module: { + loading: "Se elimină activitatea din modul", + success: "Activitatea a fost eliminată din modul cu succes.", + failed: "Activitatea nu a putut fi eliminată din modul. Te rugăm să încerci din nou.", + }, + parent: { + label: "Elimină activitatea părinte", + }, + }, + new: "Activitate nouă", + adding: "Se adaugă activitatea", + create: { + success: "Activitatea a fost creată cu succes", + }, + priority: { + urgent: "Urgentă", + high: "Ridicată", + medium: "Medie", + low: "Scăzută", + }, + display: { + properties: { + label: "Afișează proprietățile", + id: "ID", + issue_type: "Tipul activității", + sub_issue_count: "Număr de sub-activități", + attachment_count: "Număr de atașamente", + created_on: "Creată la", + sub_issue: "Sub-activitate", + work_item_count: "Număr de activități", + }, + extra: { + show_sub_issues: "Afișează sub-activitățile", + show_empty_groups: "Afișează grupurile goale", + }, + }, + layouts: { + ordered_by_label: "Această vizualizare este ordonată după", + list: "Listă", + kanban: "Tablă", + calendar: "Calendar", + spreadsheet: "Tabel", + gantt: "Cronologic", + title: { + list: "Vizualizare tip Listă", + kanban: "Vizualizare tip Tablă", + calendar: "Vizualizare tip Calendar", + spreadsheet: "Vizualizare tip Tabel", + gantt: "Vizualizare tip Cronologic", + }, + }, + states: { + active: "Active", + backlog: "Restante", + }, + comments: { + placeholder: "Adaugă comentariu", + switch: { + private: "Comută pe comentariu privat", + public: "Comută pe comentariu public", + }, + create: { + success: "Comentariu adăugat cu succes", + error: "Adăugarea comentariului a eșuat. Te rugăm să încerci mai târziu.", + }, + update: { + success: "Comentariu actualizat cu succes", + error: "Actualizarea comentariului a eșuat. Te rugăm să încerci mai târziu.", + }, + remove: { + success: "Comentariu șters cu succes", + error: "Ștergerea comentariului a eșuat. Te rugăm să încerci mai târziu.", + }, + upload: { + error: "Încărcarea fișierului a eșuat. Te rugăm să încerci mai târziu.", + }, + copy_link: { + success: "Linkul comentariului a fost copiat în clipboard", + error: "Eroare la copierea linkului comentariului. Încercați din nou mai târziu.", + }, + }, + empty_state: { + issue_detail: { + title: "Activitatea nu există", + description: "Activitatea căutată nu există, a fost arhivată sau ștearsă.", + primary_button: { + text: "Vezi alte activități", + }, + }, + }, + sibling: { + label: "Activități înrudite", + }, + archive: { + description: "Doar activitățile finalizate sau anulate\npot fi arhivate", + label: "Arhivează activitatea", + confirm_message: + "Ești sigur că vrei să arhivezi această activitate? Toate activitățile arhivate pot fi restaurate ulterior.", + success: { + label: "Arhivare reușită", + message: "Arhivele tale pot fi găsite în arhiva proiectului.", + }, + failed: { + message: "Activitatea nu a putut fi arhivată. Te rugăm să încerci din nou.", + }, + }, + restore: { + success: { + title: "Restaurare reușită", + message: "Activitatea poate fi găsită în lista de activități ale proiectului.", + }, + failed: { + message: "Activitatea nu a putut fi restaurată. Te rugăm să încerci din nou.", + }, + }, + relation: { + relates_to: "Este legată de", + duplicate: "Duplicată a", + blocked_by: "Blocată de", + blocking: "Blochează", + }, + copy_link: "Copiază link-ul activității", + delete: { + label: "Șterge activitatea", + error: "Eroare la ștergerea activității", + }, + subscription: { + actions: { + subscribed: "Abonarea la activitate realizată cu succes", + unsubscribed: "Dezabonarea de la activitate realizată cu succes", + }, + }, + select: { + error: "Selectează cel puțin o activitate", + empty: "Nicio activitate selectată", + add_selected: "Adaugă activitățile selectate", + select_all: "Selectează tot", + deselect_all: "Deselează tot", + }, + open_in_full_screen: "Deschide activitatea pe tot ecranul", + }, + attachment: { + error: "Fișierul nu a putut fi atașat. Încearcă să încarci din nou.", + only_one_file_allowed: "Se poate încărca doar un fișier o dată.", + file_size_limit: "Fișierul trebuie să aibă {size}MB sau mai puțin.", + drag_and_drop: "Trage și plasează oriunde pentru a încărca", + delete: "Șterge atașamentul", + }, + label: { + select: "Selectează eticheta", + create: { + success: "Etichetă creată cu succes", + failed: "Crearea etichetei a eșuat", + already_exists: "Eticheta există deja", + type: "Tastează pentru a adăuga o etichetă nouă", + }, + }, + sub_work_item: { + update: { + success: "Sub-activitatea a fost actualizată cu succes", + error: "Eroare la actualizarea sub-activității", + }, + remove: { + success: "Sub-activitatea a fost eliminată cu succes", + error: "Eroare la eliminarea sub-activității", + }, + empty_state: { + sub_list_filters: { + title: "Nu ai sub-elemente de lucru care corespund filtrelor pe care le-ai aplicat.", + description: "Pentru a vedea toate sub-elementele de lucru, șterge toate filtrele aplicate.", + action: "Șterge filtrele", + }, + list_filters: { + title: "Nu ai elemente de lucru care corespund filtrelor pe care le-ai aplicat.", + description: "Pentru a vedea toate elementele de lucru, șterge toate filtrele aplicate.", + action: "Șterge filtrele", + }, + }, + }, + view: { + label: "{count, plural, one {Perspectivă} other {Perspective}}", + create: { + label: "Creează perspectivă", + }, + update: { + label: "Actualizează perspectiva", + }, + }, + inbox_issue: { + status: { + pending: { + title: "În așteptare", + description: "În așteptare", + }, + declined: { + title: "Respinse", + description: "Respinse", + }, + snoozed: { + title: "Amânate", + description: "{days, plural, one{# zi} other{# zile}} rămase", + }, + accepted: { + title: "Acceptate", + description: "Acceptate", + }, + duplicate: { + title: "Duplicate", + description: "Duplicate", + }, + }, + modals: { + decline: { + title: "Respinge activitatea", + content: "Ești sigur că vrei să respingi activitatea {value}?", + }, + delete: { + title: "Șterge activitatea", + content: "Ești sigur că vrei să ștergi activitatea {value}?", + success: "Activitatea a fost ștersă cu succes", + }, + }, + errors: { + snooze_permission: "Doar administratorii proiectului pot amâna/dezactiva amânarea activităților", + accept_permission: "Doar administratorii proiectului pot accepta activități", + decline_permission: "Doar administratorii proiectului pot respinge activități", + }, + actions: { + accept: "Acceptă", + decline: "Respinge", + snooze: "Amână", + unsnooze: "Dezactivează amânarea", + copy: "Copiază link-ul activității", + delete: "Șterge", + open: "Deschide activitatea", + mark_as_duplicate: "Marchează ca duplicat", + move: "Mută {value} în activitățile proiectului", + }, + source: { + "in-app": "în aplicație", + }, + order_by: { + created_at: "Creată la", + updated_at: "Actualizată la", + id: "ID", + }, + label: "Cereri", + page_label: "{workspace} - Cereri", + modal: { + title: "Creează o cerere în Cereri", + }, + tabs: { + open: "Deschise", + closed: "Închise", + }, + empty_state: { + sidebar_open_tab: { + title: "Nicio cerere deschisă", + description: "Găsește aici cererile primite. Creează o cerere nouă.", + }, + sidebar_closed_tab: { + title: "Nicio cerere închisă", + description: "Toate cererile, fie acceptate, fie respinse, pot fi găsite aici.", + }, + sidebar_filter: { + title: "Nicio cerere gasită", + description: "Nicio cerere nu se potrivește cu filtrul aplicat în Cereri. Creează o cerere nouă.", + }, + detail: { + title: "Selectează o cerere pentru a-i vedea detaliile.", + }, + }, + }, + workspace_creation: { + heading: "Creează spațiul tău de lucru", + subheading: "Pentru a începe să folosești Plane, trebuie să creezi sau să te alături unui spațiu de lucru.", + form: { + name: { + label: "Denumește-ți spațiul de lucru", + placeholder: "Cel mai bine este să alegi ceva familiar și ușor de recunoscut.", + }, + url: { + label: "Setează URL-ul spațiului de lucru", + placeholder: "Tastează sau lipește un URL", + edit_slug: "Poți edita doar identificatorul URL-ului", + }, + organization_size: { + label: "Câți oameni vor folosi acest spațiu de lucru?", + placeholder: "Selectează un interval", + }, + }, + errors: { + creation_disabled: { + title: "Doar administratorul instanței poate crea spații de lucru", + description: + "Dacă știi adresa de email a administratorului instanței tale, apasă butonul de mai jos pentru a-l contacta.", + request_button: "Solicită administratorul instanței", + }, + validation: { + name_alphanumeric: "Numele spațiilor de lucru pot conține doar (' '), ('-'), ('_') și caractere alfanumerice.", + name_length: "Limitează numele la 80 de caractere.", + url_alphanumeric: "URL-urile pot conține doar ('-') și caractere alfanumerice.", + url_length: "Limitează URL-ul la 48 de caractere.", + url_already_taken: "URL-ul spațiului de lucru este deja folosit!", + }, + }, + request_email: { + subject: "Solicitare creare spațiu de lucru nou", + body: "Salut administrator(i) instanței,\n\nVă rog să creați un nou spațiu de lucru cu URL-ul [/workspace-name] pentru [scopul creării spațiului de lucru].\n\nMulțumesc,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Creează spațiu de lucru", + loading: "Se creează spațiul de lucru", + }, + toast: { + success: { + title: "Succes", + message: "Spațiul de lucru a fost creat cu succes", + }, + error: { + title: "Eroare", + message: "Spațiul de lucru nu a putut fi creat. Te rugăm să încerci din nou.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Prezentare generală a proiectelor, activităților și statisticilor tale", + description: + "Bine ai venit în Plane, suntem încântați să te avem aici. Creează primul tău proiect și urmărește activitățile, iar această pagină se va transforma într-un spațiu care te ajută să progresezi. Administratorii vor vedea și elementele care ajută echipa lor să progreseze.", + primary_button: { + text: "Creează primul tău proiect", + comic: { + title: "Totul începe cu un proiect în Plane", + description: + "Un proiect poate fi planul de dezvoltare a unui produs, o campanie de marketing sau lansarea unei noi mașini.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Statistici", + page_label: "{workspace} - Statistici", + open_tasks: "Total activități deschise", + error: "A apărut o eroare la preluarea datelor.", + work_items_closed_in: "Activități finalizate în", + selected_projects: "Proiecte selectate", + total_members: "Total membri", + total_cycles: "Total cicluri", + total_modules: "Total module", + pending_work_items: { + title: "Activități în așteptare", + empty_state: "Aici apare analiza activităților în așteptare atribuite colegilor.", + }, + work_items_closed_in_a_year: { + title: "Activități finalizate într-un an", + empty_state: "Închide activități pentru a vedea statisticile sub formă de grafic.", + }, + most_work_items_created: { + title: "Cele mai multe activități create", + empty_state: "Aici vor apărea colegii și numărul de activități create de aceștia.", + }, + most_work_items_closed: { + title: "Cele mai multe activități finalizate", + empty_state: "Aici vor apărea colegii și numărul de activități finalizate de aceștia.", + }, + tabs: { + scope_and_demand: "Activități asumate și cerere", + custom: "Analitice personalizate", + }, + empty_state: { + customized_insights: { + description: "Elementele de lucru atribuite ție, împărțite pe stări, vor apărea aici.", + title: "Nu există date încă", + }, + created_vs_resolved: { + description: "Elementele de lucru create și rezolvate în timp vor apărea aici.", + title: "Nu există date încă", + }, + project_insights: { + title: "Nu există date încă", + description: "Elementele de lucru atribuite ție, împărțite pe stări, vor apărea aici.", + }, + general: { + title: + "Urmărește progresul, sarcinile și alocările. Identifică tendințele, elimină blocajele și accelerează munca", + description: + "Vezi domeniul versus cererea, estimările și extinderea domeniului. Obține performanțe pe membrii echipei și echipe, și asigură-te că proiectul tău rulează la timp.", + primary_button: { + text: "Începe primul tău proiect", + comic: { + title: "Analitica funcționează cel mai bine cu Cicluri + Module", + description: + "Întâi, limitează-ți problemele în Cicluri și, dacă poți, grupează problemele care durează mai mult de un ciclu în Module. Verifică ambele în navigarea din stânga.", + }, + }, + }, + }, + created_vs_resolved: "Creat vs Rezolvat", + customized_insights: "Perspective personalizate", + backlog_work_items: "{entity} din backlog", + active_projects: "Proiecte active", + trend_on_charts: "Tendință în grafice", + all_projects: "Toate proiectele", + summary_of_projects: "Sumarul proiectelor", + project_insights: "Informații despre proiect", + started_work_items: "{entity} începute", + total_work_items: "Totalul {entity}", + total_projects: "Total proiecte", + total_admins: "Total administratori", + total_users: "Total utilizatori", + total_intake: "Venit total", + un_started_work_items: "{entity} neîncepute", + total_guests: "Total invitați", + completed_work_items: "{entity} finalizate", + total: "Totalul {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Proiect} other {Proiecte}}", + create: { + label: "Adaugă proiect", + }, + network: { + label: "Rețea", + private: { + title: "Privat", + description: "Accesibil doar pe bază de invitație", + }, + public: { + title: "Public", + description: "Oricine din spațiul de lucru, cu excepția celor din categoria Invitați, se poate alătura", + }, + }, + error: { + permission: "Nu ai permisiunea să efectuezi această acțiune.", + cycle_delete: "Ștergerea ciclului a eșuat", + module_delete: "Ștergerea modulului a eșuat", + issue_delete: "Ștergerea activității a eșuat", + }, + state: { + backlog: "Restante", + unstarted: "Neîncepute", + started: "În desfășurare", + completed: "Finalizate", + cancelled: "Anulate", + }, + sort: { + manual: "Manual", + name: "Nume", + created_at: "Data creării", + members_length: "Număr de membri", + }, + scope: { + my_projects: "Proiectele mele", + archived_projects: "Arhivate", + }, + common: { + months_count: "{months, plural, one{# lună} other{# luni}}", + }, + empty_state: { + general: { + title: "Niciun proiect activ", + description: + "Gândește-te la fiecare proiect ca la părintele muncii orientate pe obiectiv. Proiectele sunt locul unde trăiesc Activitățile, Ciclurile și Modulele și, împreună cu colegii tăi, te ajută să îți atingi obiectivul. Creează un proiect nou sau filtrează pentru a vedea proiectele arhivate.", + primary_button: { + text: "Începe primul tău proiect", + comic: { + title: "Totul începe cu un proiect în Plane", + description: + "Un proiect poate fi o foaie de parcurs pentru un produs, o campanie de marketing sau lansarea unei noi mașini.", + }, + }, + }, + no_projects: { + title: "Niciun proiect", + description: + "Pentru a crea activități sau a-ți gestiona activitatea, trebuie să creezi un proiect sau să faci parte dintr-unul.", + primary_button: { + text: "Începe primul tău proiect", + comic: { + title: "Totul începe cu un proiect în Plane", + description: + "Un proiect poate fi o foaie de parcurs pentru un produs, o campanie de marketing sau lansarea unei noi mașini.", + }, + }, + }, + filter: { + title: "Niciun proiect care să corespundă filtrului", + description: "Nu s-au găsit proiecte care să corespundă criteriilor aplicate.\n Creează un proiect nou.", + }, + search: { + description: "Nu s-au găsit proiecte care să corespundă criteriilor.\nCreează un proiect nou.", + }, + }, + }, + workspace_views: { + add_view: "Adaugă perspectivă", + empty_state: { + "all-issues": { + title: "Nicio activitate în proiect", + description: + "Primul proiect este gata! Acum împarte-ți munca în bucăți gestionabile prin activități. Hai să începem!", + primary_button: { + text: "Creează o nouă activitate", + }, + }, + assigned: { + title: "Nicio activitate încă", + description: "Activitățile care ți-au fost atribuite pot fi urmărite de aici.", + primary_button: { + text: "Creează o nouă activitate", + }, + }, + created: { + title: "Nicio activitate încă", + description: "Toate activitățile create de tine vor apărea aici. Le poți urmări direct din această pagină.", + primary_button: { + text: "Creează o nouă activitate", + }, + }, + subscribed: { + title: "Nicio activitate încă", + description: "Abonează-te la activitățile care te interesează și urmărește-le pe toate aici.", + }, + "custom-view": { + title: "Nicio activitate încă", + description: "Elementele de lucru care corespund filtrelor aplicate vor fi afișate aici.", + }, + }, + }, + workspace_settings: { + label: "Setări spațiu de lucru", + page_label: "{workspace} - Setări generale", + key_created: "Cheie creată", + copy_key: + "Copiază și salvează această cheie secretă în Plane Documentație. Nu vei mai putea vedea această cheie după ce închizi. Un fișier CSV care conține cheia a fost descărcat.", + token_copied: "Token-ul a fost copiat în memoria temporară.", + settings: { + general: { + title: "General", + upload_logo: "Încarcă siglă", + edit_logo: "Editează siglă", + name: "Numele spațiului de lucru", + company_size: "Dimensiunea companiei", + url: "URL-ul spațiului de lucru", + update_workspace: "Actualizează spațiul de lucru", + delete_workspace: "Șterge acest spațiu de lucru", + delete_workspace_description: + "La ștergerea spațiului de lucru, toate datele și resursele din cadrul acestuia vor fi eliminate definitiv și nu vor putea fi recuperate.", + delete_btn: "Șterge acest spațiu de lucru", + delete_modal: { + title: "Ești sigur că vrei să ștergi acest spațiu de lucru?", + description: + "Ai o perioadă de probă activă pentru unul dintre planurile noastre plătite. Te rugăm să o anulezi înainte de a continua.", + dismiss: "Renunță", + cancel: "Anulează perioadă de probă", + success_title: "Spațiul de lucru a fost șters.", + success_message: "Vei fi redirecționat în curând către pagina de profil.", + error_title: "Ceva nu a funcționat.", + error_message: "Încearcă din nou, te rog.", + }, + errors: { + name: { + required: "Numele este obligatoriu", + max_length: "Numele spațiului de lucru nu trebuie să depășească 80 de caractere", + }, + company_size: { + required: "Dimensiunea companiei este obligatorie", + select_a_range: "Selectează dimensiunea companiei", + }, + }, + }, + members: { + title: "Membri", + add_member: "Adaugă membru", + pending_invites: "Invitații în așteptare", + invitations_sent_successfully: "Invitațiile au fost trimise cu succes", + leave_confirmation: + "Ești sigur că vrei să părăsești spațiul de lucru? Nu vei mai avea acces la acest spațiu. Această acțiune este ireversibilă.", + details: { + full_name: "Nume complet", + display_name: "Nume afișat", + email_address: "Adresă de email", + account_type: "Tip cont", + authentication: "Autentificare", + joining_date: "Data înscrierii", + }, + modal: { + title: "Invită persoane cu care să colaborezi", + description: "Invită persoane cu care să colaborezi în spațiul tău de lucru.", + button: "Trimite invitațiile", + button_loading: "Se trimit invitațiile", + placeholder: "nume@companie.ro", + errors: { + required: "Avem nevoie de o adresă de email pentru a trimite invitația.", + invalid: "Adresa de email este invalidă", + }, + }, + }, + billing_and_plans: { + title: "Facturare și Abonamente", + current_plan: "Abonament curent", + free_plan: "Folosești în prezent abonamentul gratuit", + view_plans: "Vezi abonamentele", + }, + exports: { + title: "Exporturi", + exporting: "Se exportă", + previous_exports: "Exporturi anterioare", + export_separate_files: "Exportă datele în fișiere separate", + modal: { + title: "Exportă în", + toasts: { + success: { + title: "Export reușit", + message: "Vei putea descărca exportul {entity} din secțiunea de exporturi anterioare.", + }, + error: { + title: "Export eșuat", + message: "Exportul a eșuat. Te rugăm să încerci din nou.", + }, + }, + }, + }, + webhooks: { + title: "Puncte de notificare (Webhooks)", + add_webhook: "Adaugă punct de notificare (webhook)", + modal: { + title: "Creează punct de notificare (webhook)", + details: "Detalii punct de notificare (webhook)", + payload: " URL-ul de trimitere a datelor", + question: "La ce evenimente vrei să activezi acest punct de notificare (webhook)?", + error: "URL-ul este obligatoriu", + }, + secret_key: { + title: "Cheie secretă", + message: "Generează o cheie de acces pentru a semna datele trimise la punctul de notificare (webhook)", + }, + options: { + all: "Trimite-mi tot", + individual: "Selectează evenimente individuale", + }, + toasts: { + created: { + title: "Punct de notificare (webhook) creat", + message: "Punctul de notificare (webhook) a fost creat cu succes", + }, + not_created: { + title: "Punctul de notificare (webhook) nu a fost creat", + message: "Punctul de notificare (webhook) nu a putut fi creat", + }, + updated: { + title: "Punctul de notificare (webhook) actualizat", + message: "Punctul de notificare (webhook) a fost actualizat cu succes", + }, + not_updated: { + title: "Punctul de notificare (webhook) nu a fost actualizat", + message: "Punctul de notificare (webhook) nu a putut fi actualizat", + }, + removed: { + title: "Punct de notificare (webhook) șters", + message: "Punctul de notificare (webhook) a fost șters cu succes", + }, + not_removed: { + title: "Punctul de notificare (webhook) nu a fost șters", + message: "Punctul de notificare (webhook) nu a putut fi șters", + }, + secret_key_copied: { + message: "Cheia secretă a fost copiată în memoria temporară.", + }, + secret_key_not_copied: { + message: "A apărut o eroare la copierea cheii secrete.", + }, + }, + }, + api_tokens: { + title: "Chei secrete API", + add_token: "Adaugă cheie secretă API", + create_token: "Creează cheie secretă", + never_expires: "Nu expiră niciodată", + generate_token: "Generează cheie secretă", + generating: "Se generează", + delete: { + title: "Șterge cheia secretă API", + description: + "Orice aplicație care folosește această cheie secretă nu va mai avea acces la datele Plane. Această acțiune este ireversibilă.", + success: { + title: "Succes!", + message: "Cheia secretă API a fost ștearsă cu succes", + }, + error: { + title: "Eroare!", + message: "Cheia secretă API nu a putut fi ștearsă", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Nicio cheie secretă API creată", + description: + "API-ul Plane poate fi folosit pentru a integra datele tale din Plane cu orice sistem extern. Creează o cheie secretă pentru a începe.", + }, + webhooks: { + title: "Niciun punctul de notificare (webhook) adăugat", + description: + "Creează puncte de notificare (webhooks) pentru a primi actualizări în timp real și a automatiza acțiuni.", + }, + exports: { + title: "Niciun export efectuat", + description: "Ori de câte ori exporți, vei avea o copie și aici pentru referință.", + }, + imports: { + title: "Niciun import efectuat", + description: "Găsește aici toate importurile anterioare și descarcă-le.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Munca ta", + work: "Muncă", + details: { + joined_on: "S-a înscris la", + time_zone: "Fus orar", + }, + stats: { + workload: "Volum de muncă", + overview: "Prezentare generală", + created: "Activități create", + assigned: "Activități atribuite", + subscribed: "Activități urmărite", + state_distribution: { + title: "Activități după stare", + empty: "Creează activități pentru a le vedea distribuite pe stări în grafic, pentru o analiză mai bună.", + }, + priority_distribution: { + title: "Activități după prioritate", + empty: "Creează activități pentru a le vedea distribuite pe priorități în grafic, pentru o analiză mai bună.", + }, + recent_activity: { + title: "Activitate recentă", + empty: "Nu am găsit date. Te rugăm să verifici activitățile tale.", + button: "Descarcă activitatea de azi", + button_loading: "Se descarcă", + }, + }, + actions: { + profile: "Profil", + security: "Securitate", + activity: "Activitate", + appearance: "Aspect", + notifications: "Notificări", + }, + tabs: { + summary: "Sumar", + assigned: "Atribuite", + created: "Create", + subscribed: "Urmărite", + activity: "Activitate", + }, + empty_state: { + activity: { + title: "Nicio activitate încă", + description: + "Începe prin a crea o nouă activitate! Adaugă detalii și proprietăți. Explorează mai mult în Plane pentru a-ți vedea activitatea.", + }, + assigned: { + title: "Nicio activitate atribuită ție", + description: "Elementele de lucru care ți-au fost atribuite pot fi urmărite de aici.", + }, + created: { + title: "Nicio activitate creată", + description: "Toate activitățile create de tine vor apărea aici. Le poți urmări direct din această pagină.", + }, + subscribed: { + title: "Nicio activitate urmărită", + description: "Abonează-te la activitățile care te interesează și urmărește-le pe toate aici.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Introdu ID-ul proiectului", + please_select_a_timezone: "Te rugăm să selectezi un fus orar", + archive_project: { + title: "Arhivează proiectul", + description: + "Arhivarea unui proiect îl va elimina din navigarea laterală, dar vei putea accesa proiectul din pagina ta de proiecte. Poți restaura sau șterge proiectul oricând dorești.", + button: "Arhivează proiectul", + }, + delete_project: { + title: "Șterge proiectul", + description: + "La ștergerea unui proiect, toate datele și resursele din cadrul proiectului vor fi eliminate definitiv și nu vor putea fi recuperate.", + button: "Șterge proiectul meu", + }, + toast: { + success: "Proiect actualizat cu succes", + error: "Proiectul nu a putut fi actualizat. Te rugăm să încerci din nou.", + }, + }, + members: { + label: "Membri", + project_lead: "Lider de proiect", + default_assignee: "Persoană atribuită implicit", + guest_super_permissions: { + title: "Acordă acces la perspectivă pentru toți utilizatorii de tip Invitat:", + sub_heading: "Aceasta va permite utilizatorilor din categoria Invitați să vadă toate activitățile din proiect.", + }, + invite_members: { + title: "Invită membri", + sub_heading: "Invită membri să lucreze la proiectul tău.", + select_co_worker: "Selectează colegul de echipă", + }, + }, + states: { + describe_this_state_for_your_members: "Descrie această stare pentru membrii tăi.", + empty_state: { + title: "Nicio stare disponibilă pentru grupul {groupKey}", + description: "Te rog să creezi o stare nouă", + }, + }, + labels: { + label_title: "Titlu etichetă", + label_title_is_required: "Titlul etichetei este obligatoriu", + label_max_char: "Numele etichetei nu trebuie să depășească 255 de caractere", + toast: { + error: "Eroare la actualizarea etichetei", + }, + }, + estimates: { + label: "Estimări", + title: "Activează estimările pentru proiectul meu", + description: "Te ajută să comunici complexitatea și volumul de muncă al echipei.", + no_estimate: "Fără estimare", + new: "Noul sistem de estimare", + create: { + custom: "Personalizat", + start_from_scratch: "Începe de la zero", + choose_template: "Alege un șablon", + choose_estimate_system: "Alege un sistem de estimare", + enter_estimate_point: "Introdu estimarea", + step: "Pasul {step} de {total}", + label: "Creează estimare", + }, + toasts: { + created: { + success: { + title: "Estimare creată", + message: "Estimarea a fost creată cu succes", + }, + error: { + title: "Crearea estimării a eșuat", + message: "Nu am putut crea noua estimare, te rugăm să încerci din nou.", + }, + }, + updated: { + success: { + title: "Estimare modificată", + message: "Estimarea a fost actualizată în proiectul tău.", + }, + error: { + title: "Modificarea estimării a eșuat", + message: "Nu am putut modifica estimarea, te rugăm să încerci din nou", + }, + }, + enabled: { + success: { + title: "Succes!", + message: "Estimările au fost activate.", + }, + }, + disabled: { + success: { + title: "Succes!", + message: "Estimările au fost dezactivate.", + }, + error: { + title: "Eroare!", + message: "Estimarea nu a putut fi dezactivată. Te rugăm să încerci din nou", + }, + }, + }, + validation: { + min_length: "Estimarea trebuie să fie mai mare decât 0.", + unable_to_process: "Nu putem procesa cererea ta, te rugăm să încerci din nou.", + numeric: "Estimarea trebuie să fie o valoare numerică.", + character: "Estimarea trebuie să fie o valoare de tip caracter.", + empty: "Valoarea estimării nu poate fi goală.", + already_exists: "Valoarea estimării există deja.", + unsaved_changes: "Ai modificări nesalvate, te rugăm să le salvezi înainte de a finaliza", + remove_empty: + "Estimarea nu poate fi goală. Introdu o valoare în fiecare câmp sau elimină câmpurile pentru care nu ai valori.", + }, + systems: { + points: { + label: "Puncte", + fibonacci: "Fibonacci", + linear: "Linear", + squares: "Pătrate", + custom: "Personalizat", + }, + categories: { + label: "Categorii", + t_shirt_sizes: "Mărimi tricou", + easy_to_hard: "De la ușor la greu", + custom: "Personalizat", + }, + time: { + label: "Timp", + hours: "Ore", + }, + }, + }, + automations: { + label: "Automatizări", + "auto-archive": { + title: "Auto-arhivează activitățile finalizate", + description: "Plane va arhiva automat activitățile care au fost finalizate sau anulate.", + duration: "Auto-arhivează activitățile finalizate de", + }, + "auto-close": { + title: "Închide automat activitățile", + description: "Plane va închide automat activitățile care nu au fost finalizate sau anulate.", + duration: "Închide automat activitățile inactive de", + auto_close_status: "Stare închidere automată", + }, + }, + empty_state: { + labels: { + title: "Nicio etichetă încă", + description: "Creează etichete pentru a organiza și filtra activitățile din proiect.", + }, + estimates: { + title: "Nicio estimare configurată", + description: "Creează un set de estimări pentru a comunica volumul de muncă pentru fiecare activitate.", + primary_button: "Adaugă sistem de estimare", + }, + }, + }, + project_cycles: { + add_cycle: "Adaugă ciclu", + more_details: "Mai multe detalii", + cycle: "Ciclu", + update_cycle: "Actualizează ciclul", + create_cycle: "Creează ciclu", + no_matching_cycles: "Niciun ciclu găsit", + remove_filters_to_see_all_cycles: "Elimină filtrele pentru a vedea toate ciclurile", + remove_search_criteria_to_see_all_cycles: "Elimină criteriile de căutare pentru a vedea toate ciclurile", + only_completed_cycles_can_be_archived: "Doar ciclurile finalizate pot fi arhivate", + active_cycle: { + label: "Ciclu activ", + progress: "Progres", + chart: "Ritmul de finalizare a activităților", + priority_issue: "Activități prioritare", + assignees: "Persoane atribuite", + issue_burndown: "Grafic de finalizare a activităților", + ideal: "Ideal", + current: "Curent", + labels: "Etichete", + }, + upcoming_cycle: { + label: "Ciclu viitor", + }, + completed_cycle: { + label: "Ciclu finalizat", + }, + status: { + days_left: "Zile rămase", + completed: "Finalizat", + yet_to_start: "Nu a început", + in_progress: "În desfășurare", + draft: "Schiță", + }, + action: { + restore: { + title: "Restaurează ciclul", + success: { + title: "Ciclu restaurat", + description: "Ciclul a fost restaurat.", + }, + failed: { + title: "Restaurarea ciclului a eșuat", + description: "Ciclul nu a putut fi restaurat. Te rugăm să încerci din nou.", + }, + }, + favorite: { + loading: "Se adaugă ciclul la favorite", + success: { + description: "Ciclul a fost adăugat la favorite.", + title: "Succes!", + }, + failed: { + description: "Nu s-a putut adăuga ciclul la favorite. Te rugăm să încerci din nou.", + title: "Eroare!", + }, + }, + unfavorite: { + loading: "Se elimină ciclul din favorite", + success: { + description: "Ciclul a fost eliminat din favorite.", + title: "Succes!", + }, + failed: { + description: "Nu s-a putut elimina ciclul din favorite. Te rugăm să încerci din nou.", + title: "Eroare!", + }, + }, + update: { + loading: "Se actualizează ciclul", + success: { + description: "Ciclul a fost actualizat cu succes.", + title: "Succes!", + }, + failed: { + description: "Eroare la actualizarea ciclului. Te rugăm să încerci din nou.", + title: "Eroare!", + }, + error: { + already_exists: + "Ai deja un ciclu în datele selectate. Dacă vrei să creezi o schiță, poți face asta eliminând ambele date.", + }, + }, + }, + empty_state: { + general: { + title: "Grupează și delimitează în timp munca ta în Cicluri.", + description: + "Împarte munca în intervale de timp, stabilește datele în funcție de termenul limită al proiectului și progresează vizibil ca echipă.", + primary_button: { + text: "Setează primul tău ciclu", + comic: { + title: "Ciclurile sunt intervale repetitive de timp.", + description: + "O iterație sau orice alt termen folosit pentru urmărirea săptămânală sau bilunară a muncii este un ciclu.", + }, + }, + }, + no_issues: { + title: "Nicio activitate adăugată în ciclu", + description: "Adaugă sau creează activități pe care vrei să le implementezi în acest ciclu", + primary_button: { + text: "Creează o activitate nouă", + }, + secondary_button: { + text: "Adaugă o activitate existentă", + }, + }, + completed_no_issues: { + title: "Nicio activitate în ciclu", + description: + "Nu există activități în ciclu. Acestea au fost fie transferate, fie ascunse. Pentru a vedea activitățile ascunse, actualizează proprietățile de afișare.", + }, + active: { + title: "Niciun ciclu activ", + description: + "Un ciclu activ include orice perioadă care conține data de azi în intervalul său. Progresul și detaliile ciclului activ apar aici.", + }, + archived: { + title: "Niciun ciclu arhivat încă", + description: + "Pentru a păstra proiectul ordonat, arhivează ciclurile completate. Le vei găsi aici după arhivare.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Creează o activitate și atribuie-o cuiva, chiar și ție", + description: + "Gândește-te la activități ca la sarcini sau lucruri care trebuie făcute. O activitate și sub-activitățile sale sunt acțiuni care trebuie realizate într-un interval de timp de către membrii echipei tale. Echipa creează, atribuie și finalizează activități pentru a duce proiectul spre obiectivul său.", + primary_button: { + text: "Creează prima ta activitate", + comic: { + title: "Activitățile sunt elemente de bază în Plane.", + description: + "Reproiectarea interfeței Plane, modernizarea imaginii companiei sau lansarea noului sistem de injecție sunt exemple de activități care au, cel mai probabil, sub-activități.", + }, + }, + }, + no_archived_issues: { + title: "Nicio activitate arhivată încă", + description: + "Manual sau automat, poți arhiva activitățile care sunt finalizate sau anulate. Le vei găsi aici după arhivare.", + primary_button: { + text: "Setează automatizarea", + }, + }, + issues_empty_filter: { + title: "Nicio activitate găsită conform filtrelor aplicate", + secondary_button: { + text: "Șterge toate filtrele", + }, + }, + }, + }, + project_module: { + add_module: "Adaugă Modul", + update_module: "Actualizează Modul", + create_module: "Creează Modul", + archive_module: "Arhivează Modul", + restore_module: "Restaurează Modul", + delete_module: "Șterge modulul", + empty_state: { + general: { + title: "Mapează etapele proiectului în Module și urmărește munca agregată cu ușurință.", + description: + "Un grup de activități care aparțin unui părinte logic și ierarhic formează un modul. Gândește-te la module ca la un mod de a urmări munca în funcție de etapele proiectului. Au propriile perioade, termene limită și statistici pentru a-ți arăta cât de aproape sau departe ești de un reper.", + primary_button: { + text: "Construiește primul tău modul", + comic: { + title: "Modulele ajută la organizarea muncii pe niveluri ierarhice.", + description: + "Un modul pentru caroserie, un modul pentru șasiu sau un modul pentru depozit sunt exemple bune de astfel de grupare.", + }, + }, + }, + no_issues: { + title: "Nicio activitate în modul", + description: "Creează sau adaugă activități pe care vrei să le finalizezi ca parte a acestui modul", + primary_button: { + text: "Creează activități noi", + }, + secondary_button: { + text: "Adaugă o activitate existentă", + }, + }, + archived: { + title: "Niciun modul arhivat încă", + description: + "Pentru a păstra proiectul ordonat, arhivează modulele finalizate sau anulate. Le vei găsi aici după arhivare.", + }, + sidebar: { + in_active: "Acest modul nu este încă activ.", + invalid_date: "Dată invalidă. Te rugăm să introduci o dată validă.", + }, + }, + quick_actions: { + archive_module: "Arhivează modulul", + archive_module_description: "Doar modulele finalizate sau anulate pot fi arhivate.", + delete_module: "Șterge modulul", + }, + toast: { + copy: { + success: "Link-ul modulului a fost copiat în memoria temporară", + }, + delete: { + success: "Modulul a fost șters cu succes", + error: "Ștergerea modulului a eșuat", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Salvează perspective filtrate pentru proiectul tău. Creează câte ai nevoie", + description: + "Perspectivele sunt seturi de filtre salvate pe care le folosești frecvent sau la care vrei acces rapid. Toți colegii tăi dintr-un proiect pot vedea perspectivele tuturor și pot alege ce li se potrivește cel mai bine.", + primary_button: { + text: "Creează prima ta perspectivă", + comic: { + title: "Perspectivele funcționează pe baza proprietăților activităților.", + description: "Poți crea o perspectivă de aici, cu oricâte proprietăți și filtre consideri necesare.", + }, + }, + }, + filter: { + title: "Nicio perspectivă potrivită", + description: + "Nicio perspectivă nu se potrivește criteriilor de căutare.\n Creează o nouă perspectivă în schimb.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Scrie o notiță, un document sau o bază completă de cunoștințe. Folosește-l pe Galileo, Inteligența Artificială a Plane, ca să te ajute să începi", + description: + "Documentația e spațiul în care îți notezi gândurile în Plane. Ia notițe de la ședințe, formatează-le ușor, inserează activități, așază-le folosind o bibliotecă de componente și păstrează-le pe toate în contextul proiectului tău. Pentru a redacta rapid orice document, apelează la Galileo, Inteligența Artificială a Plane, cu un shortcut sau un click.", + primary_button: { + text: "Creează primul tău document", + }, + }, + private: { + title: "Niciun document privată încă", + description: + "Păstrează-ți gândurile private aici. Când ești gata să le împarți, echipa e la un click distanță.", + primary_button: { + text: "Creează primul tău document", + }, + }, + public: { + title: "Niciun document public încă", + description: "Vezi aici documentele distribuite cu toată echipa ta din proiect.", + primary_button: { + text: "Creează primul tău document", + }, + }, + archived: { + title: "Niciun document arhivat încă", + description: "Arhivează documentele de care nu mai ai nevoie. Le poți accesa de aici oricând.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Niciun rezultat găsit", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Nu au fost găsite activități potrivite", + }, + no_issues: { + title: "Nu au fost găsite activități", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Niciun comentariu încă", + description: "Comentariile pot fi folosite ca spațiu de discuții și urmărire pentru activități", + }, + }, + }, + notification: { + label: "Căsuță de mesaje", + page_label: "{workspace} - Căsuță de mesaje", + options: { + mark_all_as_read: "Marchează toate ca citite", + mark_read: "Marchează ca citit", + mark_unread: "Marchează ca necitit", + refresh: "Reîmprospătează", + filters: "Filtre Căsuță de mesaje", + show_unread: "Afișează necitite", + show_snoozed: "Afișează amânate", + show_archived: "Afișează arhivate", + mark_archive: "Arhivează", + mark_unarchive: "Dezarhivează", + mark_snooze: "Amână", + mark_unsnooze: "Dezactivează amânarea", + }, + toasts: { + read: "Notificare marcată ca citită", + unread: "Notificare marcată ca necitită", + archived: "Notificare arhivată", + unarchived: "Notificare dezarhivată", + snoozed: "Notificare amânată", + unsnoozed: "Notificare reactivată", + }, + empty_state: { + detail: { + title: "Selectează pentru a vedea detalii.", + }, + all: { + title: "Nicio activitate atribuită", + description: "Actualizările pentru activitățile atribuite ție pot fi\nvăzute aici", + }, + mentions: { + title: "Nicio activitate atribuită", + description: "Actualizările pentru activitățile atribuite ție pot fi\nvăzute aici", + }, + }, + tabs: { + all: "Toate", + mentions: "Mențiuni", + }, + filter: { + assigned: "Atribuite mie", + created: "Create de mine", + subscribed: "Urmărite de mine", + }, + snooze: { + "1_day": "1 zi", + "3_days": "3 zile", + "5_days": "5 zile", + "1_week": "1 săptămână", + "2_weeks": "2 săptămâni", + custom: "Personalizat", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Adaugă activități în ciclu pentru a vedea progresul", + }, + chart: { + title: "Adaugă activități în ciclu pentru a vedea graficul de finalizare a activităților.", + }, + priority_issue: { + title: "Observă rapid activitățile cu prioritate ridicată abordate în ciclu.", + }, + assignee: { + title: "Adaugă responsabili pentru a vedea repartizarea muncii pe persoane.", + }, + label: { + title: "Adaugă etichete activităților pentru a vedea repartizarea muncii pe etichete.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Funcția Cereri nu este activată pentru proiect.", + description: + "Funcția Cereri te ajută să gestionezi cererile care vin în proiectul tău și să le adaugi ca activități în fluxul tău. Activează Cereri din setările proiectului pentru a gestiona cererile.", + primary_button: { + text: "Gestionează funcțiile", + }, + }, + cycle: { + title: "Funcția Cicluri nu este activată pentru acest proiect.", + description: + "Împarte munca în intervale de timp, pleacă de la termenul limită al proiectului pentru a seta date și progresează vizibil ca echipă. Activează funcția de cicluri pentru a începe să o folosești.", + primary_button: { + text: "Gestionează funcțiile", + }, + }, + module: { + title: "Funcția Module nu este activată pentru proiect.", + description: + "Modulele sunt componentele de bază ale proiectului tău. Activează modulele din setările proiectului pentru a începe să le folosești.", + primary_button: { + text: "Gestionează funcțiile", + }, + }, + page: { + title: "Funcția Documentație nu este activată pentru proiect.", + description: + "Paginile sunt componentele de bază ale proiectului tău. Activează paginile din setările proiectului pentru a începe să le folosești.", + primary_button: { + text: "Gestionează funcțiile", + }, + }, + view: { + title: "Funcția Perspective nu este activată pentru proiect.", + description: + "Perspectivele sunt componentele de bază ale proiectului tău. Activează perspectivele din setările proiectului pentru a începe să le folosești.", + primary_button: { + text: "Gestionează funcțiile", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Salvează o activitate ca schiță", + empty_state: { + title: "Elementele de lucru scrise pe jumătate, și în curând și comentariile, vor apărea aici.", + description: + "Ca să testezi, începe să adaugi o activitate și las-o nefinalizată sau creează prima ta schiță mai jos. 😉", + primary_button: { + text: "Creează prima ta schiță", + }, + }, + delete_modal: { + title: "Șterge schița", + description: "Ești sigur că vrei să ștergi această schiță? Această acțiune este ireversibilă.", + }, + toasts: { + created: { + success: "Schiță creată", + error: "Activitatea nu a putut fi creată. Te rugăm să încerci din nou.", + }, + deleted: { + success: "Schiță ștearsă", + }, + }, + }, + stickies: { + title: "Notițele tale", + placeholder: "click pentru a scrie aici", + all: "Toate notițele", + "no-data": + "Notează o idee, surprinde un moment de inspirație sau înregistrează o idee. Adaugă o notiță pentru a începe.", + add: "Adaugă notiță", + search_placeholder: "Caută după titlu", + delete: "Șterge notița", + delete_confirmation: "Ești sigur că vrei să ștergi această notiță?", + empty_state: { + simple: + "Notează o idee, surprinde un moment de inspirație sau înregistrează o idee. Adaugă o notiță pentru a începe.", + general: { + title: "Notițele sunt observații rapide și lucruri de făcut pe care le notezi din mers.", + description: + "Surprinde-ți gândurile și ideile fără efort, creând notițe la care poți avea acces oricând și de oriunde.", + primary_button: { + text: "Adaugă notiță", + }, + }, + search: { + title: "Nu se potrivește cu nicio notiță existentă.", + description: "Încearcă un alt termen sau anunță-ne\n dacă ești sigur că ai căutat corect.", + primary_button: { + text: "Adaugă notiță", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Numele notiței nu poate depăși 100 de caractere.", + already_exists: "Există deja o notiță fără descriere", + }, + created: { + title: "Notiță creată", + message: "Notița a fost creată cu succes", + }, + not_created: { + title: "Notiță necreată", + message: "Notița nu a putut fi creată", + }, + updated: { + title: "Notiță actualizată", + message: "Notița a fost actualizată cu succes", + }, + not_updated: { + title: "Notiță neactualizată", + message: "Notița nu a putut fi actualizată", + }, + removed: { + title: "Notiță ștearsă", + message: "Notița a fost ștearsă cu succes", + }, + not_removed: { + title: "Notiță neștearsă", + message: "Notița nu a putut fi ștearsă", + }, + }, + }, + role_details: { + guest: { + title: "Invitat", + description: "Membrii externi ai organizațiilor pot fi incluși ca invitați.", + }, + member: { + title: "Membru", + description: "Poate citi, scrie, edita și șterge entități în proiecte, cicluri și module", + }, + admin: { + title: "Administrator", + description: "Toate permisiunile setate pe adevărat în cadrul workspace-ului.", + }, + }, + user_roles: { + product_or_project_manager: "Manager de produs / proiect", + development_or_engineering: "Dezvoltare / Inginerie", + founder_or_executive: "Fondator / Director executiv", + freelancer_or_consultant: "Liber profesionist / Consultant", + marketing_or_growth: "Marketing / Creștere", + sales_or_business_development: "Vânzări / Dezvoltare afaceri", + support_or_operations: "Suport / Operațiuni", + student_or_professor: "Student / Profesor", + human_resources: "Resurse umane", + other: "Altceva", + }, + importer: { + github: { + title: "Github", + description: "Importă activități din arhivele de cod GitHub și sincronizează-le.", + }, + jira: { + title: "Jira", + description: "Importă activități și episoade din proiectele și episoadele Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Exportă activitățile într-un fișier CSV.", + short_description: "Exportă ca CSV", + }, + excel: { + title: "Excel", + description: "Exportă activitățile într-un fișier Excel.", + short_description: "Exportă ca Excel", + }, + xlsx: { + title: "Excel", + description: "Exportă activitățile într-un fișier Excel.", + short_description: "Exportă ca Excel", + }, + json: { + title: "JSON", + description: "Exportă activitățile într-un fișier JSON.", + short_description: "Exportă ca JSON", + }, + }, + default_global_view: { + all_issues: "Toate activitățile", + assigned: "Atribuite", + created: "Create", + subscribed: "Urmărite", + }, + themes: { + theme_options: { + system_preference: { + label: "Preferință sistem", + }, + light: { + label: "Luminos", + }, + dark: { + label: "Întunecat", + }, + light_contrast: { + label: "Luminos cu contrast ridicat", + }, + dark_contrast: { + label: "Întunecat cu contrast ridicat", + }, + custom: { + label: "Temă personalizată", + }, + }, + }, + project_modules: { + status: { + backlog: "Restante", + planned: "Planificate", + in_progress: "În desfășurare", + paused: "În pauză", + completed: "Finalizat", + cancelled: "Anulat", + }, + layout: { + list: "Aspect listă", + board: "Aspect galerie", + timeline: "Aspect cronologic", + }, + order_by: { + name: "Nume", + progress: "Progres", + issues: "Număr de activități", + due_date: "Termen limită", + created_at: "Dată creare", + manual: "Manual", + }, + }, + cycle: { + label: "{count, plural, one {Ciclu} other {Cicluri}}", + no_cycle: "Niciun ciclu", + }, + module: { + label: "{count, plural, one {Modul} other {Module}}", + no_module: "Niciun modul", + }, + description_versions: { + last_edited_by: "Ultima editare de către", + previously_edited_by: "Editat anterior de către", + edited_by: "Editat de", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane nu a pornit. Aceasta ar putea fi din cauza că unul sau mai multe servicii Plane au eșuat să pornească.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Alegeți View Logs din setup.sh și logurile Docker pentru a fi siguri.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Contur", + empty_state: { + title: "Titluri lipsă", + description: "Să punem câteva titluri în această pagină pentru a le vedea aici.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Cuvinte", + characters: "Caractere", + paragraphs: "Paragrafe", + read_time: "Timp de citire", + }, + actors_info: { + edited_by: "Editat de", + created_by: "Creat de", + }, + version_history: { + label: "Istoricul versiunilor", + current_version: "Versiunea curentă", + }, + }, + assets: { + label: "Resurse", + download_button: "Descarcă", + empty_state: { + title: "Imagini lipsă", + description: "Adăugați imagini pentru a le vedea aici.", + }, + }, + }, + open_button: "Deschide panoul de navigare", + close_button: "Închide panoul de navigare", + outline_floating_button: "Deschide conturul", + }, +} as const; diff --git a/packages/i18n/src/locales/ru/accessibility.json b/packages/i18n/src/locales/ru/accessibility.json deleted file mode 100644 index dd4dde76b1..0000000000 --- a/packages/i18n/src/locales/ru/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Логотип рабочей области", - "open_workspace_switcher": "Открыть переключатель рабочей области", - "open_user_menu": "Открыть пользовательское меню", - "open_command_palette": "Открыть палитру команд", - "open_extended_sidebar": "Открыть расширенную боковую панель", - "close_extended_sidebar": "Закрыть расширенную боковую панель", - "create_favorites_folder": "Создать папку избранного", - "open_folder": "Открыть папку", - "close_folder": "Закрыть папку", - "open_favorites_menu": "Открыть меню избранного", - "close_favorites_menu": "Закрыть меню избранного", - "enter_folder_name": "Введите имя папки", - "create_new_project": "Создать новый проект", - "open_projects_menu": "Открыть меню проектов", - "close_projects_menu": "Закрыть меню проектов", - "toggle_quick_actions_menu": "Переключить меню быстрых действий", - "open_project_menu": "Открыть меню проекта", - "close_project_menu": "Закрыть меню проекта", - "collapse_sidebar": "Свернуть боковую панель", - "expand_sidebar": "Развернуть боковую панель", - "edition_badge": "Открыть модал платных планов" - }, - "auth_forms": { - "clear_email": "Очистить email", - "show_password": "Показать пароль", - "hide_password": "Скрыть пароль", - "close_alert": "Закрыть уведомление", - "close_popover": "Закрыть всплывающее окно" - } - } -} diff --git a/packages/i18n/src/locales/ru/accessibility.ts b/packages/i18n/src/locales/ru/accessibility.ts new file mode 100644 index 0000000000..0156064e69 --- /dev/null +++ b/packages/i18n/src/locales/ru/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Логотип рабочей области", + open_workspace_switcher: "Открыть переключатель рабочей области", + open_user_menu: "Открыть пользовательское меню", + open_command_palette: "Открыть палитру команд", + open_extended_sidebar: "Открыть расширенную боковую панель", + close_extended_sidebar: "Закрыть расширенную боковую панель", + create_favorites_folder: "Создать папку избранного", + open_folder: "Открыть папку", + close_folder: "Закрыть папку", + open_favorites_menu: "Открыть меню избранного", + close_favorites_menu: "Закрыть меню избранного", + enter_folder_name: "Введите имя папки", + create_new_project: "Создать новый проект", + open_projects_menu: "Открыть меню проектов", + close_projects_menu: "Закрыть меню проектов", + toggle_quick_actions_menu: "Переключить меню быстрых действий", + open_project_menu: "Открыть меню проекта", + close_project_menu: "Закрыть меню проекта", + collapse_sidebar: "Свернуть боковую панель", + expand_sidebar: "Развернуть боковую панель", + edition_badge: "Открыть модал платных планов", + }, + auth_forms: { + clear_email: "Очистить email", + show_password: "Показать пароль", + hide_password: "Скрыть пароль", + close_alert: "Закрыть уведомление", + close_popover: "Закрыть всплывающее окно", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/ru/editor.json b/packages/i18n/src/locales/ru/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/ru/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/ru/editor.ts b/packages/i18n/src/locales/ru/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/ru/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/ru/translations.json b/packages/i18n/src/locales/ru/translations.json deleted file mode 100644 index ac1db05017..0000000000 --- a/packages/i18n/src/locales/ru/translations.json +++ /dev/null @@ -1,2535 +0,0 @@ -{ - "sidebar": { - "projects": "Проекты", - "pages": "Страницы", - "new_work_item": "Новый рабочий элемент", - "home": "Главная", - "your_work": "Ваша работа", - "inbox": "Входящие", - "workspace": "Рабочие пространства", - "views": "Представления", - "analytics": "Аналитика", - "work_items": "Рабочие элементы", - "cycles": "Циклы", - "modules": "Модули", - "intake": "Предложения", - "drafts": "Черновики", - "favorites": "Избранное", - "pro": "Pro", - "upgrade": "Обновить" - }, - "auth": { - "common": { - "email": { - "label": "Email", - "placeholder": "name@company.com", - "errors": { - "required": "Email обязателен", - "invalid": "Email недействителен" - } - }, - "password": { - "label": "Пароль", - "set_password": "Установить пароль", - "placeholder": "Введите пароль", - "confirm_password": { - "label": "Подтвердите пароль", - "placeholder": "Подтвердите пароль" - }, - "current_password": { - "label": "Текущий пароль" - }, - "new_password": { - "label": "Новый пароль", - "placeholder": "Введите новый пароль" - }, - "change_password": { - "label": { - "default": "Сменить пароль", - "submitting": "Смена пароля" - } - }, - "errors": { - "match": "Пароли не совпадают", - "empty": "Пожалуйста, введите ваш пароль", - "length": "Длина пароля должна быть более 8 символов", - "strength": { - "weak": "Слабый пароль", - "strong": "Сильный пароль" - } - }, - "submit": "Установить пароль", - "toast": { - "change_password": { - "success": { - "title": "Успех!", - "message": "Пароль успешно изменён." - }, - "error": { - "title": "Ошибка!", - "message": "Что-то пошло не так. Пожалуйста, попробуйте снова." - } - } - } - }, - "unique_code": { - "label": "Уникальный код", - "placeholder": "gets-sets-flys", - "paste_code": "Вставьте код, отправленный на ваш email", - "requesting_new_code": "Запрос нового кода", - "sending_code": "Отправка кода" - }, - "already_have_an_account": "Уже есть аккаунт?", - "login": "Войти", - "create_account": "Создать аккаунт", - "new_to_plane": "Впервые в Plane?", - "back_to_sign_in": "Вернуться к входу", - "resend_in": "Отправить снова через {seconds} секунд", - "sign_in_with_unique_code": "Войти с уникальным кодом", - "forgot_password": "Забыли пароль?" - }, - "sign_up": { - "header": { - "label": "Создайте аккаунт, чтобы начать управлять работой с вашей командой.", - "step": { - "email": { - "header": "Регистрация", - "sub_header": "" - }, - "password": { - "header": "Регистрация", - "sub_header": "Зарегистрируйтесь, используя комбинацию email-пароль." - }, - "unique_code": { - "header": "Регистрация", - "sub_header": "Зарегистрируйтесь, используя уникальный код, отправленный на указанный выше email." - } - } - }, - "errors": { - "password": { - "strength": "Попробуйте установить сильный пароль для продолжения" - } - } - }, - "sign_in": { - "header": { - "label": "Войдите, чтобы начать управлять работой с вашей командой.", - "step": { - "email": { - "header": "Войти или зарегистрироваться", - "sub_header": "" - }, - "password": { - "header": "Войти или зарегистрироваться", - "sub_header": "Используйте комбинацию email-пароль для входа." - }, - "unique_code": { - "header": "Войти или зарегистрироваться", - "sub_header": "Войдите, используя уникальный код, отправленный на указанный выше email." - } - } - } - }, - "forgot_password": { - "title": "Сбросьте ваш пароль", - "description": "Введите проверенный email вашего аккаунта, и мы отправим вам ссылку для сброса пароля.", - "email_sent": "Мы отправили ссылку для сброса на ваш email", - "send_reset_link": "Отправить ссылку для сброса", - "errors": { - "smtp_not_enabled": "Мы видим, что ваш администратор не включил SMTP, мы не сможем отправить ссылку для сброса пароля" - }, - "toast": { - "success": { - "title": "Email отправлен", - "message": "Проверьте ваши входящие для ссылки на сброс пароля. Если она не появится в течение нескольких минут, проверьте папку спама." - }, - "error": { - "title": "Ошибка!", - "message": "Что-то пошло не так. Пожалуйста, попробуйте снова." - } - } - }, - "reset_password": { - "title": "Установите новый пароль", - "description": "Обеспечьте безопасность вашего аккаунта с помощью сильного пароля" - }, - "set_password": { - "title": "Обеспечьте безопасность вашего аккаунта", - "description": "Установка пароля помогает вам безопасно входить в систему" - }, - "sign_out": { - "toast": { - "error": { - "title": "Ошибка!", - "message": "Не удалось выйти. Пожалуйста, попробуйте снова." - } - } - } - }, - "submit": "Отправить", - "cancel": "Отменить", - "loading": "Загрузка", - "error": "Ошибка", - "success": "Успешно", - "warning": "Предупреждение", - "info": "Информация", - "close": "Закрыть", - "yes": "Да", - "no": "Нет", - "ok": "OK", - "name": "Имя", - "description": "Описание", - "search": "Поиск", - "add_member": "Добавить участника", - "adding_members": "Добавление участников", - "remove_member": "Удалить участника", - "add_members": "Добавить участников", - "adding_member": "Добавление участников", - "remove_members": "Удалить участников", - "add": "Добавить", - "adding": "Добавление", - "remove": "Удалить", - "add_new": "Добавить новый", - "remove_selected": "Удалить выбранное", - "first_name": "Имя", - "last_name": "Фамилия", - "email": "Email", - "display_name": "Отображаемое имя", - "role": "Роль", - "timezone": "Часовой пояс", - "avatar": "Аватар", - "cover_image": "Обложка", - "password": "Пароль", - "change_cover": "Изменить обложку", - "language": "Язык", - "saving": "Сохранение", - "save_changes": "Сохранить изменения", - "deactivate_account": "Деактивировать аккаунт", - "deactivate_account_description": "При деактивации аккаунта все данные и ресурсы будут безвозвратно удалены и не могут быть восстановлены.", - "profile_settings": "Настройки профиля", - "your_account": "Ваш аккаунт", - "security": "Безопасность", - "activity": "Активность", - "appearance": "Внешний вид", - "notifications": "Уведомления", - "workspaces": "Рабочие пространства", - "create_workspace": "Создать рабочее пространство", - "invitations": "Приглашения", - "summary": "Сводка", - "assigned": "Назначено", - "created": "Создано", - "subscribed": "Подписались", - "you_do_not_have_the_permission_to_access_this_page": "У вас нет прав для доступа к этой странице.", - "something_went_wrong_please_try_again": "Что-то пошло не так. Пожалуйста, попробуйте еще раз.", - "load_more": "Загрузить еще", - "select_or_customize_your_interface_color_scheme": "Выберите или настройте цветовую схему интерфейса.", - "theme": "Тема", - "system_preference": "Системные настройки", - "light": "Светлая", - "dark": "Темная", - "light_contrast": "Светлая высококонтрастная", - "dark_contrast": "Темная высококонтрастностная", - "custom": "Пользовательская тема", - "select_your_theme": "Выберите тему", - "customize_your_theme": "Настройте свою тему", - "background_color": "Цвет фона", - "text_color": "Цвет текста", - "primary_color": "Основной цвет (темы)", - "sidebar_background_color": "Цвет фона боковой панели", - "sidebar_text_color": "Цвет текста боковой панели", - "set_theme": "Установить тему", - "enter_a_valid_hex_code_of_6_characters": "Введите корректный HEX-код из 6 символов", - "background_color_is_required": "Требуется цвет фона", - "text_color_is_required": "Требуется цвет текста", - "primary_color_is_required": "Требуется основной цвет", - "sidebar_background_color_is_required": "Требуется цвет фона боковой панели", - "sidebar_text_color_is_required": "Требуется цвет текста боковой панели", - "updating_theme": "Обновление темы", - "theme_updated_successfully": "Тема успешно обновлена", - "failed_to_update_the_theme": "Не удалось обновить тему", - "email_notifications": "Email-уведомления", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Будьте в курсе рабочих элементов, на которые вы подписаны. Включите уведомления.", - "email_notification_setting_updated_successfully": "Настройки email-уведомлений успешно обновлены", - "failed_to_update_email_notification_setting": "Не удалось обновить настройки email-уведомлений", - "notify_me_when": "Уведомлять меня, когда", - "property_changes": "Изменения свойств", - "property_changes_description": "Уведомлять при изменении свойств рабочих элементов: назначенные, приоритет, оценки и прочее", - "state_change": "Изменение статуса", - "state_change_description": "Уведомлять при изменении статуса рабочего элемента", - "issue_completed": "Рабочий элемент выполнен", - "issue_completed_description": "Уведомлять только при выполнении рабочего элемента", - "comments": "Комментарии", - "comments_description": "Уведомлять при добавлении комментариев к рабочему элементу", - "mentions": "Упоминания", - "mentions_description": "Уведомлять только при упоминании меня в комментариях или описании", - "old_password": "Старый пароль", - "general_settings": "Общие настройки", - "sign_out": "Выйти", - "signing_out": "Выход...", - "active_cycles": "Активные циклы", - "active_cycles_description": "Мониторинг циклов по проектам, отслеживание приоритетных рабочих элементов и фокусировка на проблемных циклах.", - "on_demand_snapshots_of_all_your_cycles": "Моментальные снимки всех ваших циклов", - "upgrade": "Обновить", - "10000_feet_view": "Обзор всех активных циклов с высоты", - "10000_feet_view_description": "Общий обзор выполняющихся циклов во всех проектах вместо переключения между циклами в каждом проекте.", - "get_snapshot_of_each_active_cycle": "Получить снимок каждого активного цикла", - "get_snapshot_of_each_active_cycle_description": "Отслеживайте ключевые метрики активных циклов, их прогресс и соответствие срокам.", - "compare_burndowns": "Сравнение графиков выгорания", - "compare_burndowns_description": "Мониторинг производительности команд через анализ графиков выполнения циклов.", - "quickly_see_make_or_break_issues": "Быстрый просмотр критических рабочих элементов", - "quickly_see_make_or_break_issues_description": "Просмотр высокоприоритетных рабочих элементов с указанием сроков для каждого цикла в один клик.", - "zoom_into_cycles_that_need_attention": "Фокусировка на проблемных циклах", - "zoom_into_cycles_that_need_attention_description": "Исследование состояния циклов, не соответствующих ожиданиям, в один клик.", - "stay_ahead_of_blockers": "Предупреждение блокирующих рабочих элементов", - "stay_ahead_of_blockers_description": "Выявление проблем между проектами и скрытых зависимостей между циклами.", - "analytics": "Аналитика", - "workspace_invites": "Приглашения в рабочее пространство", - "enter_god_mode": "Режим администратора", - "workspace_logo": "Логотип рабочего пространства", - "new_issue": "Новый рабочий элемент", - "your_work": "Ваша работа", - "drafts": "Черновики", - "projects": "Проекты", - "views": "Представления", - "workspace": "Рабочее пространство", - "archives": "Архивы", - "settings": "Настройки", - "failed_to_move_favorite": "Ошибка перемещения избранного", - "favorites": "Избранное", - "no_favorites_yet": "Нет избранного", - "create_folder": "Создать папку", - "new_folder": "Новая папка", - "favorite_updated_successfully": "Избранное успешно обновлено", - "favorite_created_successfully": "Избранное успешно создано", - "folder_already_exists": "Папка уже существует", - "folder_name_cannot_be_empty": "Имя папки не может быть пустым", - "something_went_wrong": "Что-то пошло не так", - "failed_to_reorder_favorite": "Ошибка изменения порядка избранного", - "favorite_removed_successfully": "Избранное успешно удалено", - "failed_to_create_favorite": "Ошибка создания избранного", - "failed_to_rename_favorite": "Ошибка переименования избранного", - "project_link_copied_to_clipboard": "Ссылка на проект скопирована в буфер обмена", - "link_copied": "Ссылка скопирована", - "add_project": "Добавить проект", - "create_project": "Создать проект", - "failed_to_remove_project_from_favorites": "Не удалось удалить проект из избранного. Попробуйте снова.", - "project_created_successfully": "Проект успешно создан", - "project_created_successfully_description": "Проект успешно создан. Теперь вы можете добавлять рабочие элементы.", - "project_name_already_taken": "Имя проекта уже используется.", - "project_identifier_already_taken": "Идентификатор проекта уже используется.", - "project_cover_image_alt": "Обложка проекта", - "name_is_required": "Требуется имя", - "title_should_be_less_than_255_characters": "Заголовок должен быть короче 255 символов", - "project_name": "Название проекта", - "project_id_must_be_at_least_1_character": "ID проекта должен содержать минимум 1 символ", - "project_id_must_be_at_most_5_characters": "ID проекта должен содержать максимум 5 символов", - "project_id": "ID проекта", - "project_id_tooltip_content": "Помогает идентифицировать рабочие элементы в проекте. Макс. 5 символов.", - "description_placeholder": "Описание", - "only_alphanumeric_non_latin_characters_allowed": "Допускаются только буквенно-цифровые и нелатинские символы.", - "project_id_is_required": "Требуется ID проекта", - "project_id_allowed_char": "Допускаются только буквенно-цифровые и нелатинские символы.", - "project_id_min_char": "ID проекта должен содержать минимум 1 символ", - "project_id_max_char": "ID проекта должен содержать максимум 5 символов", - "project_description_placeholder": "Введите описание проекта", - "select_network": "Выбрать сеть", - "lead": "Руководитель", - "date_range": "Диапазон дат", - "private": "Приватный", - "public": "Публичный", - "accessible_only_by_invite": "Доступ только по приглашению", - "anyone_in_the_workspace_except_guests_can_join": "Все участники рабочего пространства (кроме гостей) могут присоединиться", - "creating": "Создание", - "creating_project": "Создание проекта", - "adding_project_to_favorites": "Добавление проекта в избранное", - "project_added_to_favorites": "Проект добавлен в избранное", - "couldnt_add_the_project_to_favorites": "Не удалось добавить проект в избранное. Попробуйте снова.", - "removing_project_from_favorites": "Удаление проекта из избранного", - "project_removed_from_favorites": "Проект удален из избранного", - "couldnt_remove_the_project_from_favorites": "Не удалось удалить проект из избранного. Попробуйте снова.", - "add_to_favorites": "Добавить в избранное", - "remove_from_favorites": "Удалить из избранного", - "publish_project": "Опубликовать проект", - "publish": "Опубликовать", - "copy_link": "Копировать ссылку", - "leave_project": "Покинуть проект", - "join_the_project_to_rearrange": "Присоединитесь к проекту для изменения порядка", - "drag_to_rearrange": "Перетащите для изменения порядка", - "congrats": "Поздравляем!", - "open_project": "Открыть проект", - "issues": "Рабочие элементы", - "cycles": "Циклы", - "modules": "Модули", - "pages": "Страницы", - "intake": "Предложения", - "time_tracking": "Учет времени", - "work_management": "Управление рабочими элементами", - "projects_and_issues": "Проекты и рабочие элементы", - "projects_and_issues_description": "Включить/отключить для этого проекта", - "cycles_description": "Ограничьте работу по времени для каждого проекта и при необходимости изменяйте период. Один цикл может длиться 2 недели, следующий — 1 неделю.", - "modules_description": "Организуйте работу в подпроекты с назначенными руководителями и исполнителями.", - "views_description": "Сохраните пользовательские сортировки, фильтры и параметры отображения или поделитесь ими с командой.", - "pages_description": "Создавайте и редактируйте свободный контент: заметки, документы, что угодно.", - "intake_description": "Позвольте участникам вне команды сообщать об ошибках, оставлять отзывы и предложения, не нарушая ваш рабочий процесс.", - "time_tracking_description": "Записывайте время, потраченное на рабочие элементы и проекты.", - "work_management_description": "Управление рабочими элементами и проектами", - "documentation": "Документация", - "message_support": "Написать в поддержку", - "contact_sales": "Связаться с отделом продаж", - "hyper_mode": "Гиперрежим", - "keyboard_shortcuts": "Горячие клавиши", - "whats_new": "Что нового?", - "version": "Версия", - "we_are_having_trouble_fetching_the_updates": "Возникли проблемы с получением обновлений.", - "our_changelogs": "наши журналы изменений", - "for_the_latest_updates": "для последних обновлений.", - "please_visit": "Пожалуйста, посетите", - "docs": "Документация", - "full_changelog": "Полный журнал изменений", - "support": "Поддержка", - "discord": "Discord", - "powered_by_plane_pages": "Работает на Plane Pages", - "please_select_at_least_one_invitation": "Пожалуйста, выберите хотя бы одно приглашение.", - "please_select_at_least_one_invitation_description": "Для присоединения к рабочему пространству выберите хотя бы одно приглашение.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Вы получили приглашение присоединиться к рабочему пространству", - "join_a_workspace": "Присоединиться к рабочему пространству", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Вы получили приглашение присоединиться к рабочему пространству", - "join_a_workspace_description": "Присоединиться к рабочему пространству", - "accept_and_join": "Принять и присоединиться", - "go_home": "На главную", - "no_pending_invites": "Нет ожидающих приглашений", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Здесь отображаются приглашения в рабочие пространства", - "back_to_home": "Вернуться на главную", - "workspace_name": "название-рабочего-пространства", - "deactivate_your_account": "Деактивировать ваш аккаунт", - "deactivate_your_account_description": "После деактивации вы не сможете получать рабочие элементы и оплачивать рабочее пространство. Для реактивации потребуется новое приглашение.", - "deactivating": "Деактивация...", - "confirm": "Подтвердить", - "confirming": "Подтверждение...", - "draft_created": "Черновик создан", - "issue_created_successfully": "Рабочий элемент успешно создан", - "draft_creation_failed": "Ошибка создания черновика", - "issue_creation_failed": "Ошибка создания рабочего элемента", - "draft_issue": "Черновик рабочего элемента", - "issue_updated_successfully": "Рабочий элемент успешно обновлен", - "issue_could_not_be_updated": "Не удалось обновить рабочий элемент", - "create_a_draft": "Создать черновик", - "save_to_drafts": "Сохранить в черновики", - "save": "Сохранить", - "update": "Обновить", - "updating": "Обновление...", - "create_new_issue": "Создать новый рабочий элемент", - "editor_is_not_ready_to_discard_changes": "Редактор не готов отменить изменения", - "failed_to_move_issue_to_project": "Ошибка перемещения рабочего элемента в проект", - "create_more": "Создать еще", - "add_to_project": "Добавить в проект", - "discard": "Отменить", - "duplicate_issue_found": "Найден дублирующийся рабочий элемент", - "duplicate_issues_found": "Найдены дублирующиеся рабочие элементы", - "no_matching_results": "Нет совпадений", - "title_is_required": "Требуется заголовок", - "title": "Заголовок", - "state": "Статус", - "priority": "Приоритет", - "none": "Нет", - "urgent": "Срочный", - "high": "Высокий", - "medium": "Средний", - "low": "Низкий", - "members": "Участники", - "assignee": "Назначенный", - "assignees": "Назначенные", - "you": "Вы", - "labels": "Метки", - "create_new_label": "Создать новую метку", - "start_date": "Дата начала", - "end_date": "Дата окончания", - "due_date": "Срок выполнения", - "estimate": "Оценка", - "change_parent_issue": "Изменить родительский рабочий элемент", - "remove_parent_issue": "Удалить родительский рабочий элемент", - "add_parent": "Добавить родительский", - "loading_members": "Загрузка участников", - "view_link_copied_to_clipboard": "Ссылка на представление скопирована в буфер", - "required": "Обязательно", - "optional": "Опционально", - "Cancel": "Отмена", - "edit": "Редактировать", - "archive": "Архивировать", - "restore": "Восстановить", - "open_in_new_tab": "Открыть в новой вкладке", - "delete": "Удалить", - "deleting": "Удаление...", - "make_a_copy": "Создать копию", - "move_to_project": "Переместить в проект", - "good": "Доброго", - "morning": "утра", - "afternoon": "дня", - "evening": "вечера", - "show_all": "Показать все", - "show_less": "Свернуть", - "no_data_yet": "Нет данных", - "syncing": "Синхронизация", - "add_work_item": "Добавить рабочий элемент", - "advanced_description_placeholder": "Нажмите '/' для команд", - "create_work_item": "Создать рабочий элемент", - "attachments": "Вложения", - "declining": "Отмена...", - "declined": "Отменено", - "decline": "Отменить", - "unassigned": "Не назначено", - "work_items": "Рабочие элементы", - "add_link": "Добавить ссылку", - "points": "Очки", - "no_assignee": "Нет назначенного", - "no_assignees_yet": "Нет назначенных", - "no_labels_yet": "Нет меток", - "ideal": "Идеально", - "current": "Текущее", - "no_matching_members": "Нет совпадений", - "leaving": "Выход...", - "removing": "Удаление...", - "leave": "Покинуть", - "refresh": "Обновить", - "refreshing": "Обновление...", - "refresh_status": "Обновить статус", - "prev": "Назад", - "next": "Вперед", - "re_generating": "Повторная генерация...", - "re_generate": "Сгенерировать заново", - "re_generate_key": "Перегенерировать ключ", - "export": "Экспорт", - "member": "{count, plural, one{# участник} few{# участника} other{# участников}}", - "new_password_must_be_different_from_old_password": "Новое пароль должен отличаться от старого пароля", - "edited": "Редактировано", - "bot": "Бот", - "project_view": { - "sort_by": { - "created_at": "Дата создания", - "updated_at": "Дата обновления", - "name": "Имя" - } - }, - "toast": { - "success": "Успех!", - "error": "Ошибка!" - }, - "links": { - "toasts": { - "created": { - "title": "Ссылка создана", - "message": "Ссылка успешно создана" - }, - "not_created": { - "title": "Ошибка создания ссылки", - "message": "Не удалось создать ссылку" - }, - "updated": { - "title": "Ссылка обновлена", - "message": "Ссылка успешно обновлена" - }, - "not_updated": { - "title": "Ошибка обновления ссылки", - "message": "Не удалось обновить ссылку" - }, - "removed": { - "title": "Ссылка удалена", - "message": "Ссылка успешно удалена" - }, - "not_removed": { - "title": "Ошибка удаления ссылки", - "message": "Не удалось удалить ссылку" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Руководство по началу работы", - "not_right_now": "Не сейчас", - "create_project": { - "title": "Создать проект", - "description": "Большинство вещей начинаются с проекта в Plane.", - "cta": "Начать" - }, - "invite_team": { - "title": "Пригласить команду", - "description": "Создавайте, развивайте и управляйте вместе с коллегами.", - "cta": "Пригласить" - }, - "configure_workspace": { - "title": "Настройте рабочее пространство", - "description": "Включайте/отключайте функции или делайте больше.", - "cta": "Настроить" - }, - "personalize_account": { - "title": "Персонализируйте Plane", - "description": "Выберите изображение, цвета и другие параметры.", - "cta": "Настроить сейчас" - }, - "widgets": { - "title": "Включите виджеты для лучшего опыта", - "description": "Все ваши виджеты выключены. Включите их\nдля улучшения взаимодействия!", - "primary_button": { - "text": "Управление виджетами" - } - } - }, - "quick_links": { - "empty": "Сохраняйте ссылки на важные рабочие элементы.", - "add": "Добавить быструю ссылку", - "title": "Быстрая ссылка", - "title_plural": "Быстрые ссылки" - }, - "recents": { - "title": "Недавние", - "empty": { - "project": "Недавние проекты появятся здесь после посещения.", - "page": "Недавние страницы появятся здесь после посещения.", - "issue": "Недавние рабочие элементы появятся здесь после посещения.", - "default": "Пока нет недавних элементов" - }, - "filters": { - "all": "Все", - "projects": "Проекты", - "pages": "Страницы", - "issues": "Рабочие элементы" - } - }, - "new_at_plane": { - "title": "Новое в Plane" - }, - "quick_tutorial": { - "title": "Быстрое обучение" - }, - "widget": { - "reordered_successfully": "Виджет успешно перемещен.", - "reordering_failed": "Ошибка при изменении порядка виджетов." - }, - "manage_widgets": "Управление виджетами", - "title": "Главная", - "star_us_on_github": "Оцените нас на GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "Некорректный URL", - "placeholder": "Введите или вставьте URL" - }, - "title": { - "text": "Отображаемый заголовок", - "placeholder": "Как вы хотите видеть эту ссылку" - } - } - }, - "common": { - "all": "Все", - "states": "Статусы", - "state": "Статус", - "state_groups": "Группы статусов", - "state_group": "Группа статусов", - "priorities": "Приоритеты", - "priority": "Приоритет", - "team_project": "Командный проект", - "project": "Проект", - "cycle": "Цикл", - "cycles": "Циклы", - "module": "Модуль", - "modules": "Модули", - "labels": "Метки", - "label": "Метка", - "assignees": "Назначенные", - "assignee": "Назначенный", - "created_by": "Создано", - "none": "Нет", - "link": "Ссылка", - "estimates": "Оценки", - "estimate": "Оценка", - "created_at": "Создано в", - "completed_at": "Завершено в", - "layout": "Макет", - "filters": "Фильтры", - "display": "Отображение", - "load_more": "Загрузить еще", - "activity": "Активность", - "analytics": "Аналитика", - "dates": "Даты", - "success": "Успешно!", - "something_went_wrong": "Что-то пошло не так", - "error": { - "label": "Ошибка!", - "message": "Произошла ошибка. Пожалуйста, попробуйте снова." - }, - "group_by": "Группировать по", - "epic": "Эпик", - "epics": "Эпики", - "work_item": "Рабочий элемент", - "work_items": "Рабочие элементы", - "sub_work_item": "Подэлемент", - "add": "Добавить", - "warning": "Предупреждение", - "updating": "Обновление", - "adding": "Добавление", - "update": "Обновить", - "creating": "Создание", - "create": "Создать", - "cancel": "Отмена", - "description": "Описание", - "title": "Заголовок", - "attachment": "Вложение", - "general": "Общее", - "features": "Функции", - "automation": "Автоматизация", - "project_name": "Название проекта", - "project_id": "ID проекта", - "project_timezone": "Часовой пояс проекта", - "created_on": "Создано", - "update_project": "Обновить проект", - "identifier_already_exists": "Идентификатор уже существует", - "add_more": "Добавить еще", - "defaults": "По умолчанию", - "add_label": "Добавить метку", - "customize_time_range": "Настроить период", - "loading": "Загрузка", - "attachments": "Вложения", - "property": "Свойство", - "properties": "Свойства", - "parent": "Родительский", - "page": "Пейдж", - "remove": "Удалить", - "archiving": "Архивация", - "archive": "Архивировать", - "access": { - "public": "Публичный", - "private": "Приватный" - }, - "done": "Готово", - "sub_work_items": "Подэлементы", - "comment": "Комментарий", - "workspace_level": "Уровень рабочего пространства", - "order_by": { - "label": "Сортировать по", - "manual": "Вручную", - "last_created": "Последние созданные", - "last_updated": "Последние обновленные", - "start_date": "Дата начала", - "due_date": "Срок выполнения", - "asc": "По возрастанию", - "desc": "По убыванию", - "updated_on": "Дата обновления" - }, - "sort": { - "asc": "По возрастанию", - "desc": "По убыванию", - "created_on": "Дата создания", - "updated_on": "Дата обновления" - }, - "comments": "Комментарии", - "updates": "Обновления", - "clear_all": "Очистить все", - "copied": "Скопировано!", - "link_copied": "Ссылка скопирована!", - "link_copied_to_clipboard": "Ссылка скопирована в буфер обмена", - "copied_to_clipboard": "Ссылка на рабочий элемент скопирована", - "is_copied_to_clipboard": "Рабочий элемент скопирован в буфер обмена", - "no_links_added_yet": "Нет добавленных ссылок", - "add_link": "Добавить ссылку", - "links": "Ссылки", - "go_to_workspace": "Перейти в рабочее пространство", - "progress": "Прогресс", - "optional": "Опционально", - "join": "Присоединиться", - "go_back": "Назад", - "continue": "Продолжить", - "resend": "Отправить повторно", - "relations": "Связи", - "errors": { - "default": { - "title": "Ошибка!", - "message": "Что-то пошло не так. Попробуйте позже." - }, - "required": "Это поле обязательно", - "entity_required": "{entity} обязательно", - "restricted_entity": "{entity} ограничен" - }, - "update_link": "обновить ссылку", - "attach": "Прикрепить", - "create_new": "Создать новый", - "add_existing": "Добавить существующий", - "type_or_paste_a_url": "Введите или вставьте URL", - "url_is_invalid": "Некорректный URL", - "display_title": "Отображаемое название", - "link_title_placeholder": "Как вы хотите видеть эту ссылку", - "url": "URL", - "side_peek": "Боковой просмотр", - "modal": "Модальное окно", - "full_screen": "Полный экран", - "close_peek_view": "Закрыть просмотр", - "toggle_peek_view_layout": "Переключить макет просмотра", - "options": "Опции", - "duration": "Продолжительность", - "today": "Сегодня", - "week": "Неделя", - "month": "Месяц", - "quarter": "Квартал", - "press_for_commands": "Нажмите '/' для команд", - "click_to_add_description": "Нажмите, чтобы добавить описание", - "search": { - "label": "Поиск", - "placeholder": "Введите для поиска", - "no_matches_found": "Совпадений не найдено", - "no_matching_results": "Нет подходящих результатов" - }, - "actions": { - "edit": "Редактировать", - "make_a_copy": "Сделать копию", - "open_in_new_tab": "Открыть в новой вкладке", - "copy_link": "Копировать ссылку", - "archive": "Архивировать", - "restore": "Восстановить", - "delete": "Удалить", - "remove_relation": "Удалить связь", - "subscribe": "Подписаться", - "unsubscribe": "Отписаться", - "clear_sorting": "Сбросить сортировку", - "show_weekends": "Показывать выходные", - "enable": "Включить", - "disable": "Отключить" - }, - "name": "Название", - "discard": "Отменить", - "confirm": "Подтвердить", - "confirming": "Подтверждение", - "read_the_docs": "Документация", - "default": "По умолчанию", - "active": "Активный", - "enabled": "Включён", - "disabled": "Отключён", - "mandate": "Мандат", - "mandatory": "Обязательный", - "yes": "Да", - "no": "Нет", - "please_wait": "Пожалуйста, подождите", - "enabling": "Включение", - "disabling": "Отключение", - "beta": "Бета", - "or": "или", - "next": "Далее", - "back": "Назад", - "cancelling": "Отмена", - "configuring": "Настройка", - "clear": "Очистить", - "import": "Импорт", - "connect": "Подключить", - "authorizing": "Авторизация", - "processing": "Обработка", - "no_data_available": "Нет доступных данных", - "from": "от {name}", - "authenticated": "Авторизован", - "select": "Выбрать", - "upgrade": "Обновить", - "add_seats": "Добавить места", - "projects": "Проекты", - "workspace": "Рабочее пространство", - "workspaces": "Рабочие пространства", - "team": "Команда", - "teams": "Команды", - "entity": "Сущность", - "entities": "Сущности", - "task": "Рабочий элемент", - "tasks": "Рабочие элементы", - "section": "Секция", - "sections": "Секции", - "edit": "Редактировать", - "connecting": "Подключение", - "connected": "Подключён", - "disconnect": "Отключить", - "disconnecting": "Отключение", - "installing": "Установка", - "install": "Установить", - "reset": "Сбросить", - "live": "В прямом эфире", - "change_history": "История изменений", - "coming_soon": "Скоро", - "member": "Участник", - "members": "Участники", - "you": "Вы", - "upgrade_cta": { - "higher_subscription": "Перейти на подписку выше", - "talk_to_sales": "Связаться с отделом продаж" - }, - "category": "Категория", - "categories": "Категории", - "saving": "Сохранение", - "save_changes": "Сохранить изменения", - "delete": "Удалить", - "deleting": "Удаление", - "pending": "Ожидание", - "invite": "Пригласить", - "view": "Просмотр", - "deactivated_user": "Деактивированный пользователь", - "apply": "Применить", - "applying": "Применение", - "users": "Пользователи", - "admins": "Администраторы", - "guests": "Гости", - "on_track": "По плану", - "off_track": "Отклонение от плана", - "at_risk": "Под угрозой", - "timeline": "Хронология", - "completion": "Завершение", - "upcoming": "Предстоящие", - "completed": "Завершено", - "in_progress": "В процессе", - "planned": "Запланировано", - "paused": "На паузе", - "no_of": "Количество {entity}", - "resolved": "Решено" - }, - "chart": { - "x_axis": "Ось X", - "y_axis": "Ось Y", - "metric": "Метрика" - }, - "form": { - "title": { - "required": "Название обязательно", - "max_length": "Название должно быть короче {length} символов" - } - }, - "entity": { - "grouping_title": "Группировка {entity}", - "priority": "Приоритет {entity}", - "all": "Все {entity}", - "drop_here_to_move": "Переместите {entity} сюда", - "delete": { - "label": "Удалить {entity}", - "success": "{entity} успешно удалён", - "failed": "Ошибка удаления {entity}" - }, - "update": { - "failed": "Ошибка обновления {entity}", - "success": "{entity} успешно обновлён" - }, - "link_copied_to_clipboard": "Ссылка на {entity} скопирована", - "fetch": { - "failed": "Ошибка получения {entity}" - }, - "add": { - "success": "{entity} успешно добавлен", - "failed": "Ошибка добавления {entity}" - }, - "remove": { - "success": "{entity} успешно удален", - "failed": "Ошибка удаления {entity}" - } - }, - "epic": { - "all": "Все эпики", - "label": "{count, plural, one {Эпик} other {Эпики}}", - "new": "Новый эпик", - "adding": "Добавление эпика", - "create": { - "success": "Эпик успешно создан" - }, - "add": { - "press_enter": "Нажмите 'Enter' чтобы добавить ещё эпик", - "label": "Добавить эпик" - }, - "title": { - "label": "Название эпика", - "required": "Название эпика обязательно" - } - }, - "issue": { - "label": "{count, plural, one {Рабочий элемент} other {Рабочие элементы}}", - "all": "Все рабочие элементы", - "edit": "Редактировать рабочий элемент", - "title": { - "label": "Название рабочего элемента", - "required": "Название рабочего элемента обязательно." - }, - "add": { - "press_enter": "Нажмите 'Enter' чтобы добавить ещё рабочий элемент", - "label": "Добавить рабочий элемент", - "cycle": { - "failed": "Не удалось добавить рабочий элемент в цикл. Попробуйте снова.", - "success": "{count, plural, one {Рабочий элемент} other {Рабочие элементы}} успешно {count, plural, one {добавлен} other {добавлены}} в цикл.", - "loading": "Добавление {count, plural, one {рабочего элемента} other {рабочих элементов}} в цикл" - }, - "assignee": "Добавить ответственных", - "start_date": "Добавить дату начала", - "due_date": "Добавить срок выполнения", - "parent": "Добавить родительский рабочий элемент", - "sub_issue": "Добавить подэлемент", - "relation": "Добавить связь", - "link": "Добавить ссылку", - "existing": "Добавить существующий рабочий элемент" - }, - "remove": { - "label": "Удалить рабочий элемент", - "cycle": { - "loading": "Удаление рабочего элемента из цикла", - "success": "Рабочий элемент успешно удален из цикла", - "failed": "Не удалось удалить рабочий элемент из цикла. Попробуйте снова." - }, - "module": { - "loading": "Удаление рабочего элемента из модуля", - "success": "Рабочий элемент успешно удален из модуля.", - "failed": "Не удалось удалить рабочий элемент из модуля. Попробуйте снова." - }, - "parent": { - "label": "Удалить родительский рабочий элемент" - } - }, - "new": "Новый рабочий элемент", - "adding": "Добавление рабочего элемента", - "create": { - "success": "Рабочий элемент успешно создан" - }, - "priority": { - "urgent": "Срочный", - "high": "Высокий", - "medium": "Средний", - "low": "Низкий" - }, - "display": { - "properties": { - "label": "Отображаемые свойства", - "id": "ID", - "issue_type": "Тип рабочего элемента", - "sub_issue_count": "Количество подэлементов", - "attachment_count": "Количество вложений", - "created_on": "Дата создания", - "sub_issue": "Подэлемент", - "work_item_count": "Количество рабочих элементов" - }, - "extra": { - "show_sub_issues": "Показывать подэлементы", - "show_empty_groups": "Показывать пустые группы" - } - }, - "layouts": { - "ordered_by_label": "Сортировка по", - "list": "Список", - "kanban": "Доска", - "calendar": "Календарь", - "spreadsheet": "Таблица", - "gantt": "График", - "title": { - "list": "Список", - "kanban": "Доска", - "calendar": "Календарь", - "spreadsheet": "Таблица", - "gantt": "График" - } - }, - "states": { - "active": "Активно", - "backlog": "Бэклог" - }, - "comments": { - "placeholder": "Добавить комментарий", - "switch": { - "private": "Изменить на приватный комментарий", - "public": "Изменить на публичный комментарий" - }, - "create": { - "success": "Комментарий успешно добавлен", - "error": "Ошибка создания комментария. Попробуйте позже." - }, - "update": { - "success": "Комментарий успешно обновлён", - "error": "Ошибка обновления комментария. Попробуйте позже." - }, - "remove": { - "success": "Комментарий успешно удалён", - "error": "Ошибка удаления комментария. Попробуйте позже." - }, - "upload": { - "error": "Ошибка загрузки файла. Попробуйте позже." - }, - "copy_link": { - "success": "Ссылка на комментарий скопирована в буфер обмена", - "error": "Ошибка при копировании ссылки на комментарий. Попробуйте позже." - } - }, - "empty_state": { - "issue_detail": { - "title": "Рабочий элемент не существует", - "description": "Данный рабочий элемент был удален, архивирован или не существует.", - "primary_button": { - "text": "Посмотреть другие рабочие элементы" - } - } - }, - "sibling": { - "label": "Связанные рабочие элементы" - }, - "archive": { - "description": "Только завершённые или отменённые\nрабочие элементы можно архивировать", - "label": "Архивировать рабочий элемент", - "confirm_message": "Вы уверены что хотите архивировать рабочий элемент? Архивы можно восстановить позже.", - "success": { - "label": "Архивация успешна", - "message": "Архивы доступны в разделе архивов проекта" - }, - "failed": { - "message": "Ошибка архивации рабочего элемента. Попробуйте позже." - } - }, - "restore": { - "success": { - "title": "Восстановление успешно", - "message": "Рабочий элемент доступен в разделе рабочих элементов проекта" - }, - "failed": { - "message": "Ошибка восстановления рабочего элемента. Попробуйте позже." - } - }, - "relation": { - "relates_to": "Связан с", - "duplicate": "Дубликат", - "blocked_by": "Блокируется", - "blocking": "Блокирует" - }, - "copy_link": "Копировать ссылку на рабочий элемент", - "delete": { - "label": "Удалить рабочий элемент", - "error": "Ошибка удаления рабочего элемента" - }, - "subscription": { - "actions": { - "subscribed": "Подписка на рабочий элемент оформлена", - "unsubscribed": "Подписка на рабочий элемент отменена" - } - }, - "select": { - "error": "Выберите хотя бы один рабочий элемент", - "empty": "Рабочие элементы не выбраны", - "add_selected": "Добавить выбранные рабочие элементы", - "select_all": "Выбрать все", - "deselect_all": "Снять выделение со всех" - }, - "open_in_full_screen": "Открыть рабочий элемент в полном экране" - }, - "attachment": { - "error": "Ошибка прикрепления файла", - "only_one_file_allowed": "Можно загрузить только один файл", - "file_size_limit": "Максимальный размер файла - {size} МБ", - "drag_and_drop": "Перетащите файл для загрузки", - "delete": "Удалить вложение" - }, - "label": { - "select": "Выбрать метку", - "create": { - "success": "Метка создана", - "failed": "Ошибка создания метки", - "already_exists": "Метка уже существует", - "type": "Введите новую метку" - } - }, - "sub_work_item": { - "update": { - "success": "Подэлемент успешно обновлен", - "error": "Ошибка обновления подэлемента" - }, - "remove": { - "success": "Подэлемент успешно удален", - "error": "Ошибка удаления подэлемента" - }, - "empty_state": { - "sub_list_filters": { - "title": "У вас нет подэлементов, которые соответствуют примененным фильтрам.", - "description": "Чтобы увидеть все подэлементы, очистите все примененные фильтры.", - "action": "Очистить фильтры" - }, - "list_filters": { - "title": "У вас нет рабочих элементов, которые соответствуют примененным фильтрам.", - "description": "Чтобы увидеть все рабочие элементы, очистите все примененные фильтры.", - "action": "Очистить фильтры" - } - } - }, - "view": { - "label": "{count, plural, one {Представление} other {Представления}}", - "create": { - "label": "Создать представление" - }, - "update": { - "label": "Обновить представление" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Ожидание", - "description": "Ожидание" - }, - "declined": { - "title": "Отклонено", - "description": "Отклонено" - }, - "snoozed": { - "title": "Отложено", - "description": "{days, plural, one{# день} other{# дней}} осталось" - }, - "accepted": { - "title": "Принято", - "description": "Принято" - }, - "duplicate": { - "title": "Дубликат", - "description": "Дубликат" - } - }, - "modals": { - "decline": { - "title": "Отклонить рабочий элемент", - "content": "Вы уверены, что хотите отклонить рабочий элемент {value}?" - }, - "delete": { - "title": "Удалить рабочий элемент", - "content": "Вы уверены, что хотите удалить рабочий элемент {value}?", - "success": "Рабочий элемент успешно удален" - } - }, - "errors": { - "snooze_permission": "Только администраторы проекта могут откладывать/возобновлять рабочие элементы", - "accept_permission": "Только администраторы проекта могут принимать рабочие элементы", - "decline_permission": "Только администраторы проекта могут отклонять рабочие элементы" - }, - "actions": { - "accept": "Принять", - "decline": "Отклонить", - "snooze": "Отложить", - "unsnooze": "Возобновить", - "copy": "Копировать ссылку на рабочий элемент", - "delete": "Удалить", - "open": "Открыть рабочий элемент", - "mark_as_duplicate": "Пометить как дубликат", - "move": "Перенести {value} в рабочие элементы проекта" - }, - "source": { - "in-app": "в приложении" - }, - "order_by": { - "created_at": "Дата создания", - "updated_at": "Дата обновления", - "id": "ID" - }, - "label": "Входящие", - "page_label": "{workspace} - Входящие", - "modal": { - "title": "Создать входящий рабочий элемент" - }, - "tabs": { - "open": "Открытые", - "closed": "Закрытые" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Нет открытых рабочих элементов", - "description": "Здесь отображаются открытые рабочие элементы. Создайте новый рабочий элемент." - }, - "sidebar_closed_tab": { - "title": "Нет закрытых рабочих элементов", - "description": "Все рабочие элементы, принятые или отклоненные, можно найти здесь." - }, - "sidebar_filter": { - "title": "Нет подходящих рабочих элементов", - "description": "Не найдено рабочих элементов по примененным фильтрам. Создайте новый рабочий элемент." - }, - "detail": { - "title": "Выберите рабочий элемент для просмотра деталей." - } - } - }, - "workspace_creation": { - "heading": "Создайте рабочее пространство", - "subheading": "Чтобы начать использовать Plane, создайте или присоединитесь к рабочему пространству.", - "form": { - "name": { - "label": "Название рабочего пространства", - "placeholder": "Лучше использовать знакомое и узнаваемое название" - }, - "url": { - "label": "Установите URL рабочего пространства", - "placeholder": "Введите или вставьте URL", - "edit_slug": "Можно редактировать только часть URL (slug)" - }, - "organization_size": { - "label": "Сколько человек будут использовать это пространство?", - "placeholder": "Выберите диапазон" - } - }, - "errors": { - "creation_disabled": { - "title": "Только администратор экземпляра может создавать рабочие пространства", - "description": "Если вы знаете email администратора, нажмите кнопку ниже для связи.", - "request_button": "Запросить администратора" - }, - "validation": { - "name_alphanumeric": "Название может содержать только пробелы, дефисы, подчёркивания и буквенно-цифровые символы", - "name_length": "Максимальная длина названия - 80 символов", - "url_alphanumeric": "URL может содержать только дефисы и буквенно-цифровые символы", - "url_length": "Максимальная длина URL - 48 символов", - "url_already_taken": "Этот URL уже занят!" - } - }, - "request_email": { - "subject": "Запрос нового рабочего пространства", - "body": "Здравствуйте, администратор!\n\nПожалуйста, создайте новое рабочее пространство с URL [/workspace-name] для [цель создания].\n\nСпасибо,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Создать пространство", - "loading": "Создание пространства" - }, - "toast": { - "success": { - "title": "Успех", - "message": "Рабочее пространство успешно создано" - }, - "error": { - "title": "Ошибка", - "message": "Не удалось создать пространство. Попробуйте снова." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Обзор проектов, активности и метрик", - "description": "Добро пожаловать в Plane! Создайте первый проект и отслеживайте рабочие элементы - эта страница станет вашим рабочим пространством. Администраторы также увидят элементы для управления командой.", - "primary_button": { - "text": "Создать первый проект", - "comic": { - "title": "Всё начинается с проекта в Plane", - "description": "Проектом может быть роадмап продукта, маркетинговая кампания или запуск нового автомобиля." - } - } - } - } - }, - "workspace_analytics": { - "label": "Аналитика", - "page_label": "{workspace} - Аналитика", - "open_tasks": "Всего открытых рабочих элементов", - "error": "Ошибка при получении данных", - "work_items_closed_in": "Рабочие элементы закрыты в", - "selected_projects": "Выбранные проекты", - "total_members": "Всего участников", - "total_cycles": "Всего циклов", - "total_modules": "Всего модулей", - "pending_work_items": { - "title": "Ожидающие рабочие элементы", - "empty_state": "Здесь отображается анализ ожидающих рабочих элементов по сотрудникам." - }, - "work_items_closed_in_a_year": { - "title": "Рабочие элементы закрытые за год", - "empty_state": "Закрывайте рабочие элементы для просмотра анализа в виде графика." - }, - "most_work_items_created": { - "title": "Наибольшее количество созданных рабочих элементов", - "empty_state": "Здесь отображаются сотрудники и количество созданных ими рабочих элементов." - }, - "most_work_items_closed": { - "title": "Наибольшее количество закрытых рабочих элементов", - "empty_state": "Здесь отображаются сотрудники и количество закрытых ими рабочих элементов." - }, - "tabs": { - "scope_and_demand": "Объём и спрос", - "custom": "Пользовательская аналитика" - }, - "empty_state": { - "customized_insights": { - "description": "Назначенные вам рабочие элементы, разбитые по статусам, появятся здесь.", - "title": "Данных пока нет" - }, - "created_vs_resolved": { - "description": "Созданные и решённые со временем рабочие элементы появятся здесь.", - "title": "Данных пока нет" - }, - "project_insights": { - "title": "Данных пока нет", - "description": "Назначенные вам рабочие элементы, разбитые по статусам, появятся здесь." - }, - "general": { - "title": "Отслеживайте прогресс, рабочие нагрузки и распределения. Выявляйте тренды, устраняйте блокировки и ускоряйте работу", - "description": "Смотрите объём versus спрос, оценки и расширение объёма. Получайте производительность по членам команды и командам, и убеждайтесь, что ваш проект выполняется в срок.", - "primary_button": { - "text": "Начать ваш первый проект", - "comic": { - "title": "Аналитика работает лучше всего с Циклами + Модулями", - "description": "Сначала ограничьте по времени ваши задачи в Циклах и, если можете, сгруппируйте задачи, которые длятся больше одного цикла, в Модули. Проверьте оба в левой навигации." - } - } - } - }, - "created_vs_resolved": "Создано vs Решено", - "customized_insights": "Индивидуальные аналитические данные", - "backlog_work_items": "{entity} в бэклоге", - "active_projects": "Активные проекты", - "trend_on_charts": "Тренд на графиках", - "all_projects": "Все проекты", - "summary_of_projects": "Сводка по проектам", - "project_insights": "Аналитика проекта", - "started_work_items": "Начатые {entity}", - "total_work_items": "Общее количество {entity}", - "total_projects": "Всего проектов", - "total_admins": "Всего администраторов", - "total_users": "Всего пользователей", - "total_intake": "Общий доход", - "un_started_work_items": "Не начатые {entity}", - "total_guests": "Всего гостей", - "completed_work_items": "Завершённые {entity}", - "total": "Общее количество {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Проект} other {Проекты}}", - "create": { - "label": "Добавить проект" - }, - "network": { - "label": "Сеть", - "private": { - "title": "Приватный", - "description": "Доступ только по приглашению" - }, - "public": { - "title": "Публичный", - "description": "Доступен всем в рабочем пространстве кроме гостей" - } - }, - "error": { - "permission": "Недостаточно прав для выполнения действия", - "cycle_delete": "Ошибка удаления цикла", - "module_delete": "Ошибка удаления модуля", - "issue_delete": "Не удалось удалить рабочий элемент" - }, - "state": { - "backlog": "Бэклог", - "unstarted": "Не начато", - "started": "В процессе", - "completed": "Завершено", - "cancelled": "Отменено" - }, - "sort": { - "manual": "Вручную", - "name": "По имени", - "created_at": "По дате создания", - "members_length": "По количеству участников" - }, - "scope": { - "my_projects": "Мои проекты", - "archived_projects": "Архивные" - }, - "common": { - "months_count": "{months, plural, one{# месяц} other{# месяцев}}" - }, - "empty_state": { - "general": { - "title": "Нет активных проектов", - "description": "Проекты помогают организовать работу. Создавайте проекты для управления рабочими элементами, циклами и модулями. Фильтруйте архивные проекты при необходимости.", - "primary_button": { - "text": "Создать первый проект", - "comic": { - "title": "Всё начинается с проекта в Plane", - "description": "Проектом может быть дорожная карта продукта, маркетинговая кампания или запуск нового автомобиля." - } - } - }, - "no_projects": { - "title": "Нет проектов", - "description": "Для управления рабочими элементами необходимо создать проект или быть его участником.", - "primary_button": { - "text": "Создать первый проект", - "comic": { - "title": "Всё начинается с проекта в Plane", - "description": "Проектом может быть дорожная карта продукта, маркетинговая кампания или запуск нового автомобиля." - } - } - }, - "filter": { - "title": "Нет подходящих проектов", - "description": "Не найдено проектов по заданным критериям.\nСоздайте новый проект." - }, - "search": { - "description": "Не найдено проектов по заданным критериям.\nСоздайте новый проект" - } - } - }, - "workspace_views": { - "add_view": "Добавить представление", - "empty_state": { - "all-issues": { - "title": "Нет рабочих элементов в проекте", - "description": "Первый проект создан! Теперь разделите работу на отслеживаемые рабочие элементы.", - "primary_button": { - "text": "Создать рабочий элемент" - } - }, - "assigned": { - "title": "Нет назначенных рабочих элементов", - "description": "Здесь отображаются рабочие элементы, назначенные вам.", - "primary_button": { - "text": "Создать рабочий элемент" - } - }, - "created": { - "title": "Нет созданных рабочих элементов", - "description": "Все созданные вами рабочие элементы отображаются здесь.", - "primary_button": { - "text": "Создать рабочий элемент" - } - }, - "subscribed": { - "title": "Нет отслеживаемых рабочих элементов", - "description": "Подпишитесь на интересующие рабочие элементы для отслеживания." - }, - "custom-view": { - "title": "Нет рабочих элементов", - "description": "Здесь отображаются рабочие элементы, соответствующие фильтрам." - } - } - }, - "workspace_settings": { - "label": "Настройки пространства", - "page_label": "{workspace} - Основные настройки", - "key_created": "Ключ создан", - "copy_key": "Скопируйте и сохраните секретный ключ в Plane Pages. После закрытия ключ будет недоступен. CSV-файл с ключом был скачан.", - "token_copied": "Токен скопирован в буфер", - "settings": { - "general": { - "title": "Основные", - "upload_logo": "Загрузить логотип", - "edit_logo": "Изменить логотип", - "name": "Название пространства", - "company_size": "Размер компании", - "url": "URL пространства", - "update_workspace": "Обновить пространство", - "delete_workspace": "Удалить пространство", - "delete_workspace_description": "Все данные будут безвозвратно удалены.", - "delete_btn": "Удалить пространство", - "delete_modal": { - "title": "Подтвердите удаление пространства", - "description": "У вас есть активная пробная подписка. Сначала отмените её.", - "dismiss": "Отмена", - "cancel": "Отменить подписку", - "success_title": "Пространство удалено", - "success_message": "Вы будете перенаправлены в профиль", - "error_title": "Ошибка", - "error_message": "Попробуйте снова" - }, - "errors": { - "name": { - "required": "Обязательное поле", - "max_length": "Максимум 80 символов" - }, - "company_size": { - "required": "Размер компании обязателен", - "select_a_range": "Выберите размер организации" - } - } - }, - "members": { - "title": "Участники", - "add_member": "Добавить участника", - "pending_invites": "Ожидающие приглашения", - "invitations_sent_successfully": "Приглашения отправлены", - "leave_confirmation": "Подтвердите выход из пространства. Доступ будет утрачен. Это действие нельзя отменить.", - "details": { - "full_name": "Полное имя", - "display_name": "Отображаемое имя", - "email_address": "Email", - "account_type": "Тип аккаунта", - "authentication": "Аутентификация", - "joining_date": "Дата присоединения" - }, - "modal": { - "title": "Пригласить участников", - "description": "Пригласите коллег в рабочее пространство.", - "button": "Отправить приглашения", - "button_loading": "Отправка...", - "placeholder": "name@company.com", - "errors": { - "required": "Введите email адрес, чтобы пригласить участников", - "invalid": "Неверный email" - } - } - }, - "billing_and_plans": { - "title": "Оплата и тарифы", - "current_plan": "Текущий тариф", - "free_plan": "Используется бесплатный тариф", - "view_plans": "Посмотреть тарифы" - }, - "exports": { - "title": "Экспорт", - "exporting": "Экспортируется", - "previous_exports": "Предыдущие экспорты", - "export_separate_files": "Экспорт в отдельные файлы", - "modal": { - "title": "Экспорт в", - "toasts": { - "success": { - "title": "Успешный экспорт", - "message": "Экспортированные {entity} доступны для скачивания." - }, - "error": { - "title": "Ошибка экспорта", - "message": "Эскпорт не удался. Попробуйте снова" - } - } - } - }, - "webhooks": { - "title": "Вебхуки", - "add_webhook": "Добавить вебхук", - "modal": { - "title": "Создать вебхук", - "details": "Детали вебхука", - "payload": "URL для уведомлений", - "question": "Какие события будут активировать вебхук?", - "error": "Требуется URL" - }, - "secret_key": { - "title": "Секретный ключ", - "message": "Сгенерируйте токен для подписи уведомлений" - }, - "options": { - "all": "Все события", - "individual": "Выбрать события" - }, - "toasts": { - "created": { - "title": "Вебхук создан", - "message": "Вебхук успешно создан" - }, - "not_created": { - "title": "Ошибка создания", - "message": "Не удалось создать вебхук" - }, - "updated": { - "title": "Обновлено", - "message": "Вебхук успешно обновлён" - }, - "not_updated": { - "title": "Ошибка обновления", - "message": "Не удалось обновить вебхук" - }, - "removed": { - "title": "Вебхук удалён", - "message": "Вебхук успешно удалён" - }, - "not_removed": { - "title": "Ошибка удаления вебхука", - "message": "Не удалось удалить вебхук" - }, - "secret_key_copied": { - "message": "Секретный ключ скопирован" - }, - "secret_key_not_copied": { - "message": "Ошибка копирования ключа" - } - } - }, - "api_tokens": { - "title": "API-токены", - "add_token": "Добавить токен", - "create_token": "Создать токен", - "never_expires": "Бессрочный", - "generate_token": "Сгенерировать токен", - "generating": "Генерация", - "delete": { - "title": "Удалить токен", - "description": "Приложения, использующие этот токен, потеряют доступ. Действие необратимо.", - "success": { - "title": "Успех!", - "message": "Токен удалён" - }, - "error": { - "title": "Ошибка!", - "message": "Не удалось удалить токен" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Нет API-токенов", - "description": "Используйте API Plane для интеграции с внешними системами. Создайте тоекен чтобы начать." - }, - "webhooks": { - "title": "Нет вебхуков", - "description": "Создавайте вебхуки для автоматизации и получения уведомлений." - }, - "exports": { - "title": "Нет экспортов", - "description": "Здесь будут сохранённые копии ваших экспортов." - }, - "imports": { - "title": "Нет импортов", - "description": "Здесь отображаются все предыдущие импорты." - } - } - }, - "profile": { - "label": "Профиль", - "page_label": "Ваша работа", - "work": "Работа", - "details": { - "joined_on": "Присоединился", - "time_zone": "Часовой пояс" - }, - "stats": { - "workload": "Нагрузка", - "overview": "Обзор", - "created": "Созданные рабочие элементы", - "assigned": "Назначенные рабочие элементы", - "subscribed": "Отслеживаемые рабочие элементы", - "state_distribution": { - "title": "Рабочие элементы по статусам", - "empty": "Создавайте рабочие элементы для анализа по статусам" - }, - "priority_distribution": { - "title": "Рабочие элементы по приоритетам", - "empty": "Создавайте рабочие элементы для анализа по приоритетам" - }, - "recent_activity": { - "title": "Недавняя активность", - "empty": "Данные не найдены", - "button": "Скачать активность", - "button_loading": "Скачивание" - } - }, - "actions": { - "profile": "Профиль", - "security": "Безопасность", - "activity": "Активность", - "appearance": "Внешний вид", - "notifications": "Уведомления" - }, - "tabs": { - "summary": "Сводка", - "assigned": "Назначенные", - "created": "Созданные", - "subscribed": "Отслеживаемые", - "activity": "Активность" - }, - "empty_state": { - "activity": { - "title": "Нет активности", - "description": "Создайте первый рабочий элемент для начала работы! Добавьте детали и свойства рабочего элемента. Исследуйте больше в Plane, чтобы увидеть вашу активность." - }, - "assigned": { - "title": "Нет назначенных рабочих элементов", - "description": "Здесь отображаются рабочие элементы, назначенные вам." - }, - "created": { - "title": "Нет созданных рабочих элементов", - "description": "Все созданные вами рабочие элементы отображаются здесь." - }, - "subscribed": { - "title": "Нет отслеживаемых рабочих элементов", - "description": "Подпишитесь на интересующие рабочие элементы." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Введите ID проекта", - "please_select_a_timezone": "Выберите часовой пояс", - "archive_project": { - "title": "Архивировать проект", - "description": "Проект исчезнет из бокового меню, но останется доступным на странице проектов. Можно восстановить или удалить позже.", - "button": "Архивировать" - }, - "delete_project": { - "title": "Удалить проект", - "description": "Все данные проекта будут безвозвратно удалены без возможности восстановления.", - "button": "Удалить проект" - }, - "toast": { - "success": "Проект обновлён", - "error": "Ошибка обновления. Попробуйте снова." - } - }, - "members": { - "label": "Участники", - "project_lead": "Руководитель проекта", - "default_assignee": "Ответственный по умолчанию", - "guest_super_permissions": { - "title": "Дать гостям доступ на просмотр всех рабочих элементов:", - "sub_heading": "Гости смогут просматривать все рабочие элементы проекта" - }, - "invite_members": { - "title": "Пригласить участников", - "sub_heading": "Пригласите коллег для работы над проектом.", - "select_co_worker": "Выберите сотрудника" - } - }, - "states": { - "describe_this_state_for_your_members": "Опишите этот статус для участников", - "empty_state": { - "title": "Нет статусов для группы {groupKey}", - "description": "Создайте новый статус" - } - }, - "labels": { - "label_title": "Название метки", - "label_title_is_required": "Название обязательно", - "label_max_char": "Максимальная длина названия - 255 символов", - "toast": { - "error": "Ошибка обновления метки" - } - }, - "estimates": { - "label": "Оценки", - "title": "Включить оценки для моего проекта", - "description": "Они помогают вам в общении о сложности и рабочей нагрузке команды.", - "no_estimate": "Без оценки", - "new": "Новая система оценок", - "create": { - "custom": "Пользовательская", - "start_from_scratch": "Начать с нуля", - "choose_template": "Выбрать шаблон", - "choose_estimate_system": "Выбрать систему оценок", - "enter_estimate_point": "Ввести оценку", - "step": "Шаг {step} из {total}", - "label": "Создать оценку" - }, - "toasts": { - "created": { - "success": { - "title": "Оценка создана", - "message": "Оценка успешно создана" - }, - "error": { - "title": "Ошибка создания оценки", - "message": "Не удалось создать новую оценку, пожалуйста, попробуйте снова." - } - }, - "updated": { - "success": { - "title": "Оценка изменена", - "message": "Оценка обновлена в вашем проекте." - }, - "error": { - "title": "Ошибка изменения оценки", - "message": "Не удалось изменить оценку, пожалуйста, попробуйте снова" - } - }, - "enabled": { - "success": { - "title": "Успех!", - "message": "Оценки включены." - } - }, - "disabled": { - "success": { - "title": "Успех!", - "message": "Оценки отключены." - }, - "error": { - "title": "Ошибка!", - "message": "Не удалось отключить оценки. Пожалуйста, попробуйте снова" - } - } - }, - "validation": { - "min_length": "Оценка должна быть больше 0.", - "unable_to_process": "Не удалось обработать ваш запрос, пожалуйста, попробуйте снова.", - "numeric": "Оценка должна быть числовым значением.", - "character": "Оценка должна быть символьным значением.", - "empty": "Значение оценки не может быть пустым.", - "already_exists": "Значение оценки уже существует.", - "unsaved_changes": "У вас есть несохраненные изменения. Пожалуйста, сохраните их перед нажатием на готово", - "remove_empty": "Оценка не может быть пустой. Введите значение в каждое поле или удалите те, для которых у вас нет значений." - }, - "systems": { - "points": { - "label": "Баллы", - "fibonacci": "Фибоначчи", - "linear": "Линейная", - "squares": "Квадраты", - "custom": "Пользовательская" - }, - "categories": { - "label": "Категории", - "t_shirt_sizes": "Размеры футболок", - "easy_to_hard": "От простого к сложному", - "custom": "Пользовательская" - }, - "time": { - "label": "Время", - "hours": "Часы" - } - } - }, - "automations": { - "label": "Автоматизация", - "auto-archive": { - "title": "Автоархивация закрытых рабочих элементов", - "description": "Plane будет автоматически архивировать рабочие элементы, которые были завершены или отменены.", - "duration": "Автоархивация рабочих элементов, которые закрыты в течение" - }, - "auto-close": { - "title": "Автоматическое закрытие рабочих элементов", - "description": "Plane будет автоматически закрывать рабочие элементы, которые не были завершены или отменены.", - "duration": "Автоматическое закрытие рабочих элементов, которые неактивны в течение", - "auto_close_status": "Статус автоматического закрытия" - } - }, - "empty_state": { - "labels": { - "title": "Нет меток", - "description": "Создайте метки для организации и фильтрации рабочих элементов в вашем проекте." - }, - "estimates": { - "title": "Нет систем оценок", - "description": "Создайте набор оценок для передачи объема работы на каждый рабочий элемент.", - "primary_button": "Добавить систему оценок" - } - } - }, - "project_cycles": { - "add_cycle": "Добавить цикл", - "more_details": "Подробнее", - "cycle": "Цикл", - "update_cycle": "Обновить цикл", - "create_cycle": "Создать цикл", - "no_matching_cycles": "Нет подходящих циклов", - "remove_filters_to_see_all_cycles": "Снимите фильтры для просмотра всех циклов", - "remove_search_criteria_to_see_all_cycles": "Очистите поиск для просмотра всех циклов", - "only_completed_cycles_can_be_archived": "Только завершённые циклы можно архивировать", - "start_date": "Дата начала", - "end_date": "Дата окончания", - "in_your_timezone": "В вашем часовом поясе", - "transfer_work_items": "Перенести {count} рабочих элементов", - "date_range": "Диапазон дат", - "add_date": "Добавить дату", - "active_cycle": { - "label": "Активный цикл", - "progress": "Прогресс", - "chart": "Диаграмма сгорания", - "priority_issue": "Приоритетные рабочие элементы", - "assignees": "Ответственные", - "issue_burndown": "Выгорание рабочих элементов", - "ideal": "Идеальный", - "current": "Текущий", - "labels": "Метки" - }, - "upcoming_cycle": { - "label": "Предстоящий цикл" - }, - "completed_cycle": { - "label": "Завершённый цикл" - }, - "status": { - "days_left": "Дней осталось", - "completed": "Завершено", - "yet_to_start": "Ещё не начато", - "in_progress": "В процессе", - "draft": "Черновик" - }, - "action": { - "restore": { - "title": "Восстановить цикл", - "success": { - "title": "Цикл восстановлен", - "description": "Цикл успешно восстановлен" - }, - "failed": { - "title": "Ошибка восстановления", - "description": "Не удалось восстановить цикл" - } - }, - "favorite": { - "loading": "Добавление в избранное", - "success": { - "description": "Цикл добавлен в избранное", - "title": "Успех!" - }, - "failed": { - "description": "Ошибка добавления в избранное", - "title": "Ошибка!" - } - }, - "unfavorite": { - "loading": "Удаление из избранного", - "success": { - "description": "Цикл удалён из избранного", - "title": "Успех!" - }, - "failed": { - "description": "Ошибка удаления цикла из избранного. Попробуйте снова.", - "title": "Ошибка!" - } - }, - "update": { - "loading": "Обновление цикла", - "success": { - "description": "Цикл успешно обновлён", - "title": "Успех!" - }, - "failed": { - "description": "Ошибка обновления цикла. Попробуйте снова.", - "title": "Ошибка!" - }, - "error": { - "already_exists": "Цикл на указанные даты уже существует. Для создания черновика удалите даты." - } - } - }, - "empty_state": { - "general": { - "title": "Организуйте работу в циклах", - "description": "Разбивайте работу на временные интервалы, устанавливайте сроки и отслеживайте прогресс команды.", - "primary_button": { - "text": "Создать первый цикл", - "comic": { - "title": "Циклы - повторяющиеся временные интервалы", - "description": "Спринт, итерация или любой другой термин для еженедельного/двухнедельного планирования." - } - } - }, - "no_issues": { - "title": "Нет рабочих элементов в цикле", - "description": "Добавьте существующие или создайте новые рабочие элементы для этого цикла", - "primary_button": { - "text": "Создать рабочий элемент" - }, - "secondary_button": { - "text": "Добавить существующий рабочий элемент" - } - }, - "completed_no_issues": { - "title": "Нет рабочих элементов в цикле", - "description": "Нет рабочих элементов. Рабочие элементы были перенесены или скрыты. Для просмотра измените настройки отображения." - }, - "active": { - "title": "Нет активных циклов", - "description": "Активный цикл включает текущую дату. Здесь отображается прогресс активного цикла." - }, - "archived": { - "title": "Нет архивных циклов", - "description": "Архивируйте завершённые циклы для упорядочивания проекта." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Создайте рабочий элемент и назначьте исполнителя", - "description": "Рабочие элементы помогают организовать работу команды. Создавайте, назначайте и завершайте рабочие элементы для достижения целей проекта.", - "primary_button": { - "text": "Создать первый рабочий элемент", - "comic": { - "title": "Рабочие элементы - строительные блоки Plane", - "description": "Примеры рабочих элементов: редизайн интерфейса, ребрендинг компании или запуск новой системы." - } - } - }, - "no_archived_issues": { - "title": "Нет архивных рабочих элементов", - "description": "Архивируйте завершённые или отменённые рабочие элементы вручную или автоматически.", - "primary_button": { - "text": "Настроить автоматизацию" - } - }, - "issues_empty_filter": { - "title": "Нет рабочих элементов подходящих фильтрам", - "secondary_button": { - "text": "Сбросить фильтры" - } - } - } - }, - "project_module": { - "add_module": "Добавить модуль", - "update_module": "Обновить модуль", - "create_module": "Создать модуль", - "archive_module": "Архивировать модуль", - "restore_module": "Восстановить модуль", - "delete_module": "Удалить модуль", - "empty_state": { - "general": { - "title": "Связывайте этапы проекта с модулями для удобного отслеживания рабочих элементов.", - "description": "Модуль объединяет рабочие элементы по логическому или иерархическому признаку. Используйте модули для контроля этапов проекта. Каждый модуль имеет собственные сроки выполнения и аналитику для отслеживания прогресса.", - "primary_button": { - "text": "Создать первый модуль", - "comic": { - "title": "Модули группируют рабочие элементы по иерархии", - "description": "Примеры группировки: модуль корзины, модуль шасси или модуль склада." - } - } - }, - "no_issues": { - "title": "Нет рабочих элементов в модуле", - "description": "Создавайте или добавляйте рабочие элементы, которые хотите выполнить в рамках этого модуля", - "primary_button": { - "text": "Создать новые рабочие элементы" - }, - "secondary_button": { - "text": "Добавить существующий рабочий элемент" - } - }, - "archived": { - "title": "Нет архивных модулей", - "description": "Архивируйте завершённые или отменённые модули для упорядочивания проекта. Они появятся здесь после архивации." - }, - "sidebar": { - "in_active": "Этот модуль ещё не активен.", - "invalid_date": "Некорректная дата. Укажите правильную дату." - } - }, - "quick_actions": { - "archive_module": "Архивировать модуль", - "archive_module_description": "Только завершённые или отменённые\nмодули можно архивировать.", - "delete_module": "Удалить модуль" - }, - "toast": { - "copy": { - "success": "Ссылка на модуль скопирована в буфер обмена" - }, - "delete": { - "success": "Модуль успешно удалён", - "error": "Ошибка удаления модуля" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Сохраняйте фильтры в виде представлений. Создавайте неограниченное количество вариантов", - "description": "Представления - это сохранённые наборы фильтров для быстрого доступа. Все участники проекта видят созданные представления и могут выбирать подходящие.", - "primary_button": { - "text": "Создать первое представление", - "comic": { - "title": "Представления работают на основе свойств рабочих элементов", - "description": "Создавайте представления с любым количеством свойств в качестве фильтров." - } - } - }, - "filter": { - "title": "Подходящих представлений не найдено", - "description": "Нет представлений, соответствующих критериям поиска. \n Создайте новое представление." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Создавайте заметки, документы или базу знаний. Используйте Galileo, ИИ-помощник Plane.", - "description": "Страницы - пространство для организации мыслей в Plane. Делайте заметки, форматируйте текст, встраивайте рабочие элементы, используйте компоненты. Для быстрого создания документов используйте Galileo через горячие клавиши или кнопку.", - "primary_button": { - "text": "Создать первую страницу" - } - }, - "private": { - "title": "Нет приватных страниц", - "description": "Храните личные заметки здесь. Когда будете готовы поделиться, команда будет в одном клике.", - "primary_button": { - "text": "Создать первую страницу" - } - }, - "public": { - "title": "Нет публичных страниц", - "description": "Здесь отображаются страницы, доступные всем участникам проекта.", - "primary_button": { - "text": "Создать первую страницу" - } - }, - "archived": { - "title": "Нет архивных страниц", - "description": "Архивируйте неактуальные страницы. При необходимости вы найдете их здесь." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Ничего не найдено" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Не найдено подходящих рабочих элементов" - }, - "no_issues": { - "title": "Рабочие элементы не найдены" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Комментариев пока нет", - "description": "Используйте комментарии для обсуждения и отслеживания задач" - } - } - }, - "notification": { - "label": "Входящие", - "page_label": "{workspace} - Входящие", - "options": { - "mark_all_as_read": "Пометить все как прочитанные", - "mark_read": "Пометить как прочитанное", - "mark_unread": "Пометить как непрочитанное", - "refresh": "Обновить", - "filters": "Фильтры входящих", - "show_unread": "Показать непрочитанные", - "show_snoozed": "Показать отложенные", - "show_archived": "Показать архивные", - "mark_archive": "Архивировать", - "mark_unarchive": "Разархивировать", - "mark_snooze": "Отложить", - "mark_unsnooze": "Возобновить" - }, - "toasts": { - "read": "Уведомление помечено как прочитанное", - "unread": "Уведомление помечено как непрочитанное", - "archived": "Уведомление архивировано", - "unarchived": "Уведомление разархивировано", - "snoozed": "Уведомление отложено", - "unsnoozed": "Уведомление возобновлено" - }, - "empty_state": { - "detail": { - "title": "Выберите для просмотра деталей" - }, - "all": { - "title": "Нет назначенных рабочих элементов", - "description": "Обновления по назначенным вам рабочим элементам будут \n отображаться здесь" - }, - "mentions": { - "title": "Нет упомянутых рабочих элементов", - "description": "Обновления по рабочим элементам, где вас упомянули, \n будут отображаться здесь" - } - }, - "tabs": { - "all": "Все", - "mentions": "Упоминания" - }, - "filter": { - "assigned": "Назначенные мне", - "created": "Созданные мной", - "subscribed": "Отслеживаемые мной" - }, - "snooze": { - "1_day": "1 день", - "3_days": "3 дня", - "5_days": "5 дней", - "1_week": "1 неделя", - "2_weeks": "2 недели", - "custom": "Другое" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Добавьте рабочие элементы в цикл, чтобы отслеживать прогресс" - }, - "chart": { - "title": "Добавьте рабочие элементы в цикл для построения графика выполнения" - }, - "priority_issue": { - "title": "Просматривайте рабочие элементы с высоким приоритетом в цикле" - }, - "assignee": { - "title": "Назначьте ответственных, чтобы видеть распределение рабочих элементов" - }, - "label": { - "title": "Добавьте метки, чтобы видеть распределение рабочих элементов по категориям" - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Функция 'Входящие' отключена для проекта", - "description": "Входящие помогают управлять запросами и добавлять их в рабочий процесс. Включите функцию в настройках проекта.", - "primary_button": { - "text": "Управление функциями" - } - }, - "cycle": { - "title": "Циклы отключены для этого проекта", - "description": "Разбивайте работу на временные интервалы, устанавливайте сроки и отслеживайте прогресс команды. Включите функцию циклов в настройках проекта.", - "primary_button": { - "text": "Управление функциями" - } - }, - "module": { - "title": "Модули отключены для проекта", - "description": "Модули - основные компоненты вашего проекта. Включите их в настройках проекта.", - "primary_button": { - "text": "Управление функциями" - } - }, - "page": { - "title": "Страницы отключены для проекта", - "description": "Страницы - основные компоненты вашего проекта. Включите их в настройках проекта.", - "primary_button": { - "text": "Управление функциями" - } - }, - "view": { - "title": "Представления отключены для проекта", - "description": "Представления - основные компоненты вашего проекта. Включите их в настройках проекта.", - "primary_button": { - "text": "Управление функциями" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Создать черновик рабочего элемента", - "empty_state": { - "title": "Черновики рабочих элементов, а вскоре и комментарии, будут отображаться здесь.", - "description": "Чтобы попробовать, начните добавлять рабочий элемент и прервитесь на полпути или создайте первый черновик ниже. 😉", - "primary_button": { - "text": "Создать первый черновик" - } - }, - "delete_modal": { - "title": "Удалить черновик", - "description": "Вы уверены, что хотите удалить этот черновик? Это действие нельзя отменить." - }, - "toasts": { - "created": { - "success": "Черновик создан", - "error": "Не удалось создать рабочий элемент. Попробуйте снова." - }, - "deleted": { - "success": "Черновик удалён" - } - } - }, - "stickies": { - "title": "Ваши стикеры", - "placeholder": "нажмите, чтобы написать", - "all": "Все стикеры", - "no-data": "Запишите идею, зафиксируйте озарение или сохраните мысль. Создайте стикер, чтобы начать.", - "add": "Добавить стикер", - "search_placeholder": "Поиск по названию", - "delete": "Удалить стикер", - "delete_confirmation": "Вы уверены, что хотите удалить этот стикер?", - "empty_state": { - "simple": "Запишите идею, зафиксируйте озарение или сохраните мысль. Создайте стикер, чтобы начать.", - "general": { - "title": "Стикеры - это быстрые заметки и рабочие элементы, которые вы создаёте на лету.", - "description": "Легко фиксируйте свои мысли и идеи с помощью стикеров, которые доступны в любое время и в любом месте.", - "primary_button": { - "text": "Добавить стикер" - } - }, - "search": { - "title": "Ничего не найдено.", - "description": "Попробуйте другой запрос или сообщите нам,\nесли уверены в правильности поиска.", - "primary_button": { - "text": "Добавить стикер" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Название стикера не может быть длиннее 100 символов.", - "already_exists": "Стикер без описания уже существует" - }, - "created": { - "title": "Стикер создан", - "message": "Стикер успешно создан" - }, - "not_created": { - "title": "Ошибка создания стикера", - "message": "Не удалось создать стикер" - }, - "updated": { - "title": "Стикер обновлён", - "message": "Стикер успешно обновлён" - }, - "not_updated": { - "title": "Ошибка обновления", - "message": "Не удалось обновить стикер" - }, - "removed": { - "title": "Стикер удалён", - "message": "Стикер успешно удалён" - }, - "not_removed": { - "title": "Ошибка удаления", - "message": "Не удалось удалить стикер" - } - } - }, - "role_details": { - "guest": { - "title": "Гость", - "description": "Внешние участники организаций могут быть приглашены как гости." - }, - "member": { - "title": "Участник", - "description": "Чтение, создание, редактирование и удаление элементов внутри проектов, циклов и модулей" - }, - "admin": { - "title": "Администратор", - "description": "Полные права доступа в рамках рабочего пространства." - } - }, - "user_roles": { - "product_or_project_manager": "Продукт / Проект менеджер", - "development_or_engineering": "Разработка / Инжиниринг", - "founder_or_executive": "Основатель / Руководитель", - "freelancer_or_consultant": "Фрилансер / Консультант", - "marketing_or_growth": "Маркетинг / Рост", - "sales_or_business_development": "Продажи / Развитие бизнеса", - "support_or_operations": "Поддержка / Операции", - "student_or_professor": "Студент / Преподаватель", - "human_resources": "HR / Кадры", - "other": "Другое" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Импорт рабочих элементов из репозиториев GitHub с синхронизацией." - }, - "jira": { - "title": "Jira", - "description": "Импорт рабочих элементов и эпиков из проектов Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Экспорт рабочих элементов в CSV-файл.", - "short_description": "Экспорт в csv" - }, - "excel": { - "title": "Excel", - "description": "Экспорт рабочих элементов в файл Excel.", - "short_description": "Экспорт в excel" - }, - "xlsx": { - "title": "Excel", - "description": "Экспорт рабочих элементов в файл Excel.", - "short_description": "Экспорт в excel" - }, - "json": { - "title": "JSON", - "description": "Экспорт рабочих элементов в JSON-файл.", - "short_description": "Экспорт в json" - } - }, - "default_global_view": { - "all_issues": "Все рабочие элементы", - "assigned": "Назначенные", - "created": "Созданные", - "subscribed": "Подписанные" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Системные настройки" - }, - "light": { - "label": "Светлая" - }, - "dark": { - "label": "Тёмная" - }, - "light_contrast": { - "label": "Светлая высококонтрастностная" - }, - "dark_contrast": { - "label": "Тёмная высокая контрастность" - }, - "custom": { - "label": "Пользовательская тема" - } - } - }, - "project_modules": { - "status": { - "backlog": "Бэклог", - "planned": "Запланировано", - "in_progress": "В процессе", - "paused": "Приостановлено", - "completed": "Завершено", - "cancelled": "Отменено" - }, - "layout": { - "list": "Список", - "board": "Галерея", - "timeline": "Хронология" - }, - "order_by": { - "name": "Название", - "progress": "Прогресс", - "issues": "Количество рабочих элементов", - "due_date": "Срок выполнения", - "created_at": "Дата создания", - "manual": "Вручную" - } - }, - "cycle": { - "label": "{count, plural, one {Цикл} other {Циклы}}", - "no_cycle": "Нет цикла" - }, - "module": { - "label": "{count, plural, one {Модуль} other {Модули}}", - "no_module": "Нет модуля" - }, - "description_versions": { - "last_edited_by": "Последнее редактирование", - "previously_edited_by": "Ранее отредактировано", - "edited_by": "Отредактировано" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane не запустился. Это может быть из-за того, что один или несколько сервисов Plane не смогли запуститься.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Выберите View Logs из setup.sh и логов Docker, чтобы убедиться." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Структура", - "empty_state": { - "title": "Отсутствуют заголовки", - "description": "Давайте добавим несколько заголовков на эту страницу, чтобы увидеть их здесь." - } - }, - "info": { - "label": "Информация", - "document_info": { - "words": "Слова", - "characters": "Символы", - "paragraphs": "Абзацы", - "read_time": "Время чтения" - }, - "actors_info": { - "edited_by": "Отредактировано", - "created_by": "Создано" - }, - "version_history": { - "label": "История версий", - "current_version": "Текущая версия" - } - }, - "assets": { - "label": "Ресурсы", - "download_button": "Скачать", - "empty_state": { - "title": "Отсутствуют изображения", - "description": "Добавьте изображения, чтобы увидеть их здесь." - } - } - }, - "open_button": "Открыть панель навигации", - "close_button": "Закрыть панель навигации", - "outline_floating_button": "Открыть структуру" - } -} diff --git a/packages/i18n/src/locales/ru/translations.ts b/packages/i18n/src/locales/ru/translations.ts new file mode 100644 index 0000000000..4b76477736 --- /dev/null +++ b/packages/i18n/src/locales/ru/translations.ts @@ -0,0 +1,2578 @@ +export default { + sidebar: { + projects: "Проекты", + pages: "Страницы", + new_work_item: "Новый рабочий элемент", + home: "Главная", + your_work: "Ваша работа", + inbox: "Входящие", + workspace: "Рабочие пространства", + views: "Представления", + analytics: "Аналитика", + work_items: "Рабочие элементы", + cycles: "Циклы", + modules: "Модули", + intake: "Предложения", + drafts: "Черновики", + favorites: "Избранное", + pro: "Pro", + upgrade: "Обновить", + }, + auth: { + common: { + email: { + label: "Email", + placeholder: "name@company.com", + errors: { + required: "Email обязателен", + invalid: "Email недействителен", + }, + }, + password: { + label: "Пароль", + set_password: "Установить пароль", + placeholder: "Введите пароль", + confirm_password: { + label: "Подтвердите пароль", + placeholder: "Подтвердите пароль", + }, + current_password: { + label: "Текущий пароль", + }, + new_password: { + label: "Новый пароль", + placeholder: "Введите новый пароль", + }, + change_password: { + label: { + default: "Сменить пароль", + submitting: "Смена пароля", + }, + }, + errors: { + match: "Пароли не совпадают", + empty: "Пожалуйста, введите ваш пароль", + length: "Длина пароля должна быть более 8 символов", + strength: { + weak: "Слабый пароль", + strong: "Сильный пароль", + }, + }, + submit: "Установить пароль", + toast: { + change_password: { + success: { + title: "Успех!", + message: "Пароль успешно изменён.", + }, + error: { + title: "Ошибка!", + message: "Что-то пошло не так. Пожалуйста, попробуйте снова.", + }, + }, + }, + }, + unique_code: { + label: "Уникальный код", + placeholder: "gets-sets-flys", + paste_code: "Вставьте код, отправленный на ваш email", + requesting_new_code: "Запрос нового кода", + sending_code: "Отправка кода", + }, + already_have_an_account: "Уже есть аккаунт?", + login: "Войти", + create_account: "Создать аккаунт", + new_to_plane: "Впервые в Plane?", + back_to_sign_in: "Вернуться к входу", + resend_in: "Отправить снова через {seconds} секунд", + sign_in_with_unique_code: "Войти с уникальным кодом", + forgot_password: "Забыли пароль?", + }, + sign_up: { + header: { + label: "Создайте аккаунт, чтобы начать управлять работой с вашей командой.", + step: { + email: { + header: "Регистрация", + sub_header: "", + }, + password: { + header: "Регистрация", + sub_header: "Зарегистрируйтесь, используя комбинацию email-пароль.", + }, + unique_code: { + header: "Регистрация", + sub_header: "Зарегистрируйтесь, используя уникальный код, отправленный на указанный выше email.", + }, + }, + }, + errors: { + password: { + strength: "Попробуйте установить сильный пароль для продолжения", + }, + }, + }, + sign_in: { + header: { + label: "Войдите, чтобы начать управлять работой с вашей командой.", + step: { + email: { + header: "Войти или зарегистрироваться", + sub_header: "", + }, + password: { + header: "Войти или зарегистрироваться", + sub_header: "Используйте комбинацию email-пароль для входа.", + }, + unique_code: { + header: "Войти или зарегистрироваться", + sub_header: "Войдите, используя уникальный код, отправленный на указанный выше email.", + }, + }, + }, + }, + forgot_password: { + title: "Сбросьте ваш пароль", + description: "Введите проверенный email вашего аккаунта, и мы отправим вам ссылку для сброса пароля.", + email_sent: "Мы отправили ссылку для сброса на ваш email", + send_reset_link: "Отправить ссылку для сброса", + errors: { + smtp_not_enabled: + "Мы видим, что ваш администратор не включил SMTP, мы не сможем отправить ссылку для сброса пароля", + }, + toast: { + success: { + title: "Email отправлен", + message: + "Проверьте ваши входящие для ссылки на сброс пароля. Если она не появится в течение нескольких минут, проверьте папку спама.", + }, + error: { + title: "Ошибка!", + message: "Что-то пошло не так. Пожалуйста, попробуйте снова.", + }, + }, + }, + reset_password: { + title: "Установите новый пароль", + description: "Обеспечьте безопасность вашего аккаунта с помощью сильного пароля", + }, + set_password: { + title: "Обеспечьте безопасность вашего аккаунта", + description: "Установка пароля помогает вам безопасно входить в систему", + }, + sign_out: { + toast: { + error: { + title: "Ошибка!", + message: "Не удалось выйти. Пожалуйста, попробуйте снова.", + }, + }, + }, + }, + submit: "Отправить", + cancel: "Отменить", + loading: "Загрузка", + error: "Ошибка", + success: "Успешно", + warning: "Предупреждение", + info: "Информация", + close: "Закрыть", + yes: "Да", + no: "Нет", + ok: "OK", + name: "Имя", + description: "Описание", + search: "Поиск", + add_member: "Добавить участника", + adding_members: "Добавление участников", + remove_member: "Удалить участника", + add_members: "Добавить участников", + adding_member: "Добавление участников", + remove_members: "Удалить участников", + add: "Добавить", + adding: "Добавление", + remove: "Удалить", + add_new: "Добавить новый", + remove_selected: "Удалить выбранное", + first_name: "Имя", + last_name: "Фамилия", + email: "Email", + display_name: "Отображаемое имя", + role: "Роль", + timezone: "Часовой пояс", + avatar: "Аватар", + cover_image: "Обложка", + password: "Пароль", + change_cover: "Изменить обложку", + language: "Язык", + saving: "Сохранение", + save_changes: "Сохранить изменения", + deactivate_account: "Деактивировать аккаунт", + deactivate_account_description: + "При деактивации аккаунта все данные и ресурсы будут безвозвратно удалены и не могут быть восстановлены.", + profile_settings: "Настройки профиля", + your_account: "Ваш аккаунт", + security: "Безопасность", + activity: "Активность", + appearance: "Внешний вид", + notifications: "Уведомления", + workspaces: "Рабочие пространства", + create_workspace: "Создать рабочее пространство", + invitations: "Приглашения", + summary: "Сводка", + assigned: "Назначено", + created: "Создано", + subscribed: "Подписались", + you_do_not_have_the_permission_to_access_this_page: "У вас нет прав для доступа к этой странице.", + something_went_wrong_please_try_again: "Что-то пошло не так. Пожалуйста, попробуйте еще раз.", + load_more: "Загрузить еще", + select_or_customize_your_interface_color_scheme: "Выберите или настройте цветовую схему интерфейса.", + theme: "Тема", + system_preference: "Системные настройки", + light: "Светлая", + dark: "Темная", + light_contrast: "Светлая высококонтрастная", + dark_contrast: "Темная высококонтрастностная", + custom: "Пользовательская тема", + select_your_theme: "Выберите тему", + customize_your_theme: "Настройте свою тему", + background_color: "Цвет фона", + text_color: "Цвет текста", + primary_color: "Основной цвет (темы)", + sidebar_background_color: "Цвет фона боковой панели", + sidebar_text_color: "Цвет текста боковой панели", + set_theme: "Установить тему", + enter_a_valid_hex_code_of_6_characters: "Введите корректный HEX-код из 6 символов", + background_color_is_required: "Требуется цвет фона", + text_color_is_required: "Требуется цвет текста", + primary_color_is_required: "Требуется основной цвет", + sidebar_background_color_is_required: "Требуется цвет фона боковой панели", + sidebar_text_color_is_required: "Требуется цвет текста боковой панели", + updating_theme: "Обновление темы", + theme_updated_successfully: "Тема успешно обновлена", + failed_to_update_the_theme: "Не удалось обновить тему", + email_notifications: "Email-уведомления", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Будьте в курсе рабочих элементов, на которые вы подписаны. Включите уведомления.", + email_notification_setting_updated_successfully: "Настройки email-уведомлений успешно обновлены", + failed_to_update_email_notification_setting: "Не удалось обновить настройки email-уведомлений", + notify_me_when: "Уведомлять меня, когда", + property_changes: "Изменения свойств", + property_changes_description: + "Уведомлять при изменении свойств рабочих элементов: назначенные, приоритет, оценки и прочее", + state_change: "Изменение статуса", + state_change_description: "Уведомлять при изменении статуса рабочего элемента", + issue_completed: "Рабочий элемент выполнен", + issue_completed_description: "Уведомлять только при выполнении рабочего элемента", + comments: "Комментарии", + comments_description: "Уведомлять при добавлении комментариев к рабочему элементу", + mentions: "Упоминания", + mentions_description: "Уведомлять только при упоминании меня в комментариях или описании", + old_password: "Старый пароль", + general_settings: "Общие настройки", + sign_out: "Выйти", + signing_out: "Выход...", + active_cycles: "Активные циклы", + active_cycles_description: + "Мониторинг циклов по проектам, отслеживание приоритетных рабочих элементов и фокусировка на проблемных циклах.", + on_demand_snapshots_of_all_your_cycles: "Моментальные снимки всех ваших циклов", + upgrade: "Обновить", + "10000_feet_view": "Обзор всех активных циклов с высоты", + "10000_feet_view_description": + "Общий обзор выполняющихся циклов во всех проектах вместо переключения между циклами в каждом проекте.", + get_snapshot_of_each_active_cycle: "Получить снимок каждого активного цикла", + get_snapshot_of_each_active_cycle_description: + "Отслеживайте ключевые метрики активных циклов, их прогресс и соответствие срокам.", + compare_burndowns: "Сравнение графиков выгорания", + compare_burndowns_description: "Мониторинг производительности команд через анализ графиков выполнения циклов.", + quickly_see_make_or_break_issues: "Быстрый просмотр критических рабочих элементов", + quickly_see_make_or_break_issues_description: + "Просмотр высокоприоритетных рабочих элементов с указанием сроков для каждого цикла в один клик.", + zoom_into_cycles_that_need_attention: "Фокусировка на проблемных циклах", + zoom_into_cycles_that_need_attention_description: + "Исследование состояния циклов, не соответствующих ожиданиям, в один клик.", + stay_ahead_of_blockers: "Предупреждение блокирующих рабочих элементов", + stay_ahead_of_blockers_description: "Выявление проблем между проектами и скрытых зависимостей между циклами.", + analytics: "Аналитика", + workspace_invites: "Приглашения в рабочее пространство", + enter_god_mode: "Режим администратора", + workspace_logo: "Логотип рабочего пространства", + new_issue: "Новый рабочий элемент", + your_work: "Ваша работа", + drafts: "Черновики", + projects: "Проекты", + views: "Представления", + workspace: "Рабочее пространство", + archives: "Архивы", + settings: "Настройки", + failed_to_move_favorite: "Ошибка перемещения избранного", + favorites: "Избранное", + no_favorites_yet: "Нет избранного", + create_folder: "Создать папку", + new_folder: "Новая папка", + favorite_updated_successfully: "Избранное успешно обновлено", + favorite_created_successfully: "Избранное успешно создано", + folder_already_exists: "Папка уже существует", + folder_name_cannot_be_empty: "Имя папки не может быть пустым", + something_went_wrong: "Что-то пошло не так", + failed_to_reorder_favorite: "Ошибка изменения порядка избранного", + favorite_removed_successfully: "Избранное успешно удалено", + failed_to_create_favorite: "Ошибка создания избранного", + failed_to_rename_favorite: "Ошибка переименования избранного", + project_link_copied_to_clipboard: "Ссылка на проект скопирована в буфер обмена", + link_copied: "Ссылка скопирована", + add_project: "Добавить проект", + create_project: "Создать проект", + failed_to_remove_project_from_favorites: "Не удалось удалить проект из избранного. Попробуйте снова.", + project_created_successfully: "Проект успешно создан", + project_created_successfully_description: "Проект успешно создан. Теперь вы можете добавлять рабочие элементы.", + project_name_already_taken: "Имя проекта уже используется.", + project_identifier_already_taken: "Идентификатор проекта уже используется.", + project_cover_image_alt: "Обложка проекта", + name_is_required: "Требуется имя", + title_should_be_less_than_255_characters: "Заголовок должен быть короче 255 символов", + project_name: "Название проекта", + project_id_must_be_at_least_1_character: "ID проекта должен содержать минимум 1 символ", + project_id_must_be_at_most_5_characters: "ID проекта должен содержать максимум 5 символов", + project_id: "ID проекта", + project_id_tooltip_content: "Помогает идентифицировать рабочие элементы в проекте. Макс. 5 символов.", + description_placeholder: "Описание", + only_alphanumeric_non_latin_characters_allowed: "Допускаются только буквенно-цифровые и нелатинские символы.", + project_id_is_required: "Требуется ID проекта", + project_id_allowed_char: "Допускаются только буквенно-цифровые и нелатинские символы.", + project_id_min_char: "ID проекта должен содержать минимум 1 символ", + project_id_max_char: "ID проекта должен содержать максимум 5 символов", + project_description_placeholder: "Введите описание проекта", + select_network: "Выбрать сеть", + lead: "Руководитель", + date_range: "Диапазон дат", + private: "Приватный", + public: "Публичный", + accessible_only_by_invite: "Доступ только по приглашению", + anyone_in_the_workspace_except_guests_can_join: + "Все участники рабочего пространства (кроме гостей) могут присоединиться", + creating: "Создание", + creating_project: "Создание проекта", + adding_project_to_favorites: "Добавление проекта в избранное", + project_added_to_favorites: "Проект добавлен в избранное", + couldnt_add_the_project_to_favorites: "Не удалось добавить проект в избранное. Попробуйте снова.", + removing_project_from_favorites: "Удаление проекта из избранного", + project_removed_from_favorites: "Проект удален из избранного", + couldnt_remove_the_project_from_favorites: "Не удалось удалить проект из избранного. Попробуйте снова.", + add_to_favorites: "Добавить в избранное", + remove_from_favorites: "Удалить из избранного", + publish_project: "Опубликовать проект", + publish: "Опубликовать", + copy_link: "Копировать ссылку", + leave_project: "Покинуть проект", + join_the_project_to_rearrange: "Присоединитесь к проекту для изменения порядка", + drag_to_rearrange: "Перетащите для изменения порядка", + congrats: "Поздравляем!", + open_project: "Открыть проект", + issues: "Рабочие элементы", + cycles: "Циклы", + modules: "Модули", + pages: "Страницы", + intake: "Предложения", + time_tracking: "Учет времени", + work_management: "Управление рабочими элементами", + projects_and_issues: "Проекты и рабочие элементы", + projects_and_issues_description: "Включить/отключить для этого проекта", + cycles_description: + "Ограничьте работу по времени для каждого проекта и при необходимости изменяйте период. Один цикл может длиться 2 недели, следующий — 1 неделю.", + modules_description: "Организуйте работу в подпроекты с назначенными руководителями и исполнителями.", + views_description: + "Сохраните пользовательские сортировки, фильтры и параметры отображения или поделитесь ими с командой.", + pages_description: "Создавайте и редактируйте свободный контент: заметки, документы, что угодно.", + intake_description: + "Позвольте участникам вне команды сообщать об ошибках, оставлять отзывы и предложения, не нарушая ваш рабочий процесс.", + time_tracking_description: "Записывайте время, потраченное на рабочие элементы и проекты.", + work_management_description: "Управление рабочими элементами и проектами", + documentation: "Документация", + message_support: "Написать в поддержку", + contact_sales: "Связаться с отделом продаж", + hyper_mode: "Гиперрежим", + keyboard_shortcuts: "Горячие клавиши", + whats_new: "Что нового?", + version: "Версия", + we_are_having_trouble_fetching_the_updates: "Возникли проблемы с получением обновлений.", + our_changelogs: "наши журналы изменений", + for_the_latest_updates: "для последних обновлений.", + please_visit: "Пожалуйста, посетите", + docs: "Документация", + full_changelog: "Полный журнал изменений", + support: "Поддержка", + discord: "Discord", + powered_by_plane_pages: "Работает на Plane Pages", + please_select_at_least_one_invitation: "Пожалуйста, выберите хотя бы одно приглашение.", + please_select_at_least_one_invitation_description: + "Для присоединения к рабочему пространству выберите хотя бы одно приглашение.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Вы получили приглашение присоединиться к рабочему пространству", + join_a_workspace: "Присоединиться к рабочему пространству", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Вы получили приглашение присоединиться к рабочему пространству", + join_a_workspace_description: "Присоединиться к рабочему пространству", + accept_and_join: "Принять и присоединиться", + go_home: "На главную", + no_pending_invites: "Нет ожидающих приглашений", + you_can_see_here_if_someone_invites_you_to_a_workspace: "Здесь отображаются приглашения в рабочие пространства", + back_to_home: "Вернуться на главную", + workspace_name: "название-рабочего-пространства", + deactivate_your_account: "Деактивировать ваш аккаунт", + deactivate_your_account_description: + "После деактивации вы не сможете получать рабочие элементы и оплачивать рабочее пространство. Для реактивации потребуется новое приглашение.", + deactivating: "Деактивация...", + confirm: "Подтвердить", + confirming: "Подтверждение...", + draft_created: "Черновик создан", + issue_created_successfully: "Рабочий элемент успешно создан", + draft_creation_failed: "Ошибка создания черновика", + issue_creation_failed: "Ошибка создания рабочего элемента", + draft_issue: "Черновик рабочего элемента", + issue_updated_successfully: "Рабочий элемент успешно обновлен", + issue_could_not_be_updated: "Не удалось обновить рабочий элемент", + create_a_draft: "Создать черновик", + save_to_drafts: "Сохранить в черновики", + save: "Сохранить", + update: "Обновить", + updating: "Обновление...", + create_new_issue: "Создать новый рабочий элемент", + editor_is_not_ready_to_discard_changes: "Редактор не готов отменить изменения", + failed_to_move_issue_to_project: "Ошибка перемещения рабочего элемента в проект", + create_more: "Создать еще", + add_to_project: "Добавить в проект", + discard: "Отменить", + duplicate_issue_found: "Найден дублирующийся рабочий элемент", + duplicate_issues_found: "Найдены дублирующиеся рабочие элементы", + no_matching_results: "Нет совпадений", + title_is_required: "Требуется заголовок", + title: "Заголовок", + state: "Статус", + priority: "Приоритет", + none: "Нет", + urgent: "Срочный", + high: "Высокий", + medium: "Средний", + low: "Низкий", + members: "Участники", + assignee: "Назначенный", + assignees: "Назначенные", + you: "Вы", + labels: "Метки", + create_new_label: "Создать новую метку", + start_date: "Дата начала", + end_date: "Дата окончания", + due_date: "Срок выполнения", + estimate: "Оценка", + change_parent_issue: "Изменить родительский рабочий элемент", + remove_parent_issue: "Удалить родительский рабочий элемент", + add_parent: "Добавить родительский", + loading_members: "Загрузка участников", + view_link_copied_to_clipboard: "Ссылка на представление скопирована в буфер", + required: "Обязательно", + optional: "Опционально", + Cancel: "Отмена", + edit: "Редактировать", + archive: "Архивировать", + restore: "Восстановить", + open_in_new_tab: "Открыть в новой вкладке", + delete: "Удалить", + deleting: "Удаление...", + make_a_copy: "Создать копию", + move_to_project: "Переместить в проект", + good: "Доброго", + morning: "утра", + afternoon: "дня", + evening: "вечера", + show_all: "Показать все", + show_less: "Свернуть", + no_data_yet: "Нет данных", + syncing: "Синхронизация", + add_work_item: "Добавить рабочий элемент", + advanced_description_placeholder: "Нажмите '/' для команд", + create_work_item: "Создать рабочий элемент", + attachments: "Вложения", + declining: "Отмена...", + declined: "Отменено", + decline: "Отменить", + unassigned: "Не назначено", + work_items: "Рабочие элементы", + add_link: "Добавить ссылку", + points: "Очки", + no_assignee: "Нет назначенного", + no_assignees_yet: "Нет назначенных", + no_labels_yet: "Нет меток", + ideal: "Идеально", + current: "Текущее", + no_matching_members: "Нет совпадений", + leaving: "Выход...", + removing: "Удаление...", + leave: "Покинуть", + refresh: "Обновить", + refreshing: "Обновление...", + refresh_status: "Обновить статус", + prev: "Назад", + next: "Вперед", + re_generating: "Повторная генерация...", + re_generate: "Сгенерировать заново", + re_generate_key: "Перегенерировать ключ", + export: "Экспорт", + member: "{count, plural, one{# участник} few{# участника} other{# участников}}", + new_password_must_be_different_from_old_password: "Новое пароль должен отличаться от старого пароля", + edited: "Редактировано", + bot: "Бот", + project_view: { + sort_by: { + created_at: "Дата создания", + updated_at: "Дата обновления", + name: "Имя", + }, + }, + toast: { + success: "Успех!", + error: "Ошибка!", + }, + links: { + toasts: { + created: { + title: "Ссылка создана", + message: "Ссылка успешно создана", + }, + not_created: { + title: "Ошибка создания ссылки", + message: "Не удалось создать ссылку", + }, + updated: { + title: "Ссылка обновлена", + message: "Ссылка успешно обновлена", + }, + not_updated: { + title: "Ошибка обновления ссылки", + message: "Не удалось обновить ссылку", + }, + removed: { + title: "Ссылка удалена", + message: "Ссылка успешно удалена", + }, + not_removed: { + title: "Ошибка удаления ссылки", + message: "Не удалось удалить ссылку", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Руководство по началу работы", + not_right_now: "Не сейчас", + create_project: { + title: "Создать проект", + description: "Большинство вещей начинаются с проекта в Plane.", + cta: "Начать", + }, + invite_team: { + title: "Пригласить команду", + description: "Создавайте, развивайте и управляйте вместе с коллегами.", + cta: "Пригласить", + }, + configure_workspace: { + title: "Настройте рабочее пространство", + description: "Включайте/отключайте функции или делайте больше.", + cta: "Настроить", + }, + personalize_account: { + title: "Персонализируйте Plane", + description: "Выберите изображение, цвета и другие параметры.", + cta: "Настроить сейчас", + }, + widgets: { + title: "Включите виджеты для лучшего опыта", + description: "Все ваши виджеты выключены. Включите их\nдля улучшения взаимодействия!", + primary_button: { + text: "Управление виджетами", + }, + }, + }, + quick_links: { + empty: "Сохраняйте ссылки на важные рабочие элементы.", + add: "Добавить быструю ссылку", + title: "Быстрая ссылка", + title_plural: "Быстрые ссылки", + }, + recents: { + title: "Недавние", + empty: { + project: "Недавние проекты появятся здесь после посещения.", + page: "Недавние страницы появятся здесь после посещения.", + issue: "Недавние рабочие элементы появятся здесь после посещения.", + default: "Пока нет недавних элементов", + }, + filters: { + all: "Все", + projects: "Проекты", + pages: "Страницы", + issues: "Рабочие элементы", + }, + }, + new_at_plane: { + title: "Новое в Plane", + }, + quick_tutorial: { + title: "Быстрое обучение", + }, + widget: { + reordered_successfully: "Виджет успешно перемещен.", + reordering_failed: "Ошибка при изменении порядка виджетов.", + }, + manage_widgets: "Управление виджетами", + title: "Главная", + star_us_on_github: "Оцените нас на GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "Некорректный URL", + placeholder: "Введите или вставьте URL", + }, + title: { + text: "Отображаемый заголовок", + placeholder: "Как вы хотите видеть эту ссылку", + }, + }, + }, + common: { + all: "Все", + states: "Статусы", + state: "Статус", + state_groups: "Группы статусов", + state_group: "Группа статусов", + priorities: "Приоритеты", + priority: "Приоритет", + team_project: "Командный проект", + project: "Проект", + cycle: "Цикл", + cycles: "Циклы", + module: "Модуль", + modules: "Модули", + labels: "Метки", + label: "Метка", + assignees: "Назначенные", + assignee: "Назначенный", + created_by: "Создано", + none: "Нет", + link: "Ссылка", + estimates: "Оценки", + estimate: "Оценка", + created_at: "Создано в", + completed_at: "Завершено в", + layout: "Макет", + filters: "Фильтры", + display: "Отображение", + load_more: "Загрузить еще", + activity: "Активность", + analytics: "Аналитика", + dates: "Даты", + success: "Успешно!", + something_went_wrong: "Что-то пошло не так", + error: { + label: "Ошибка!", + message: "Произошла ошибка. Пожалуйста, попробуйте снова.", + }, + group_by: "Группировать по", + epic: "Эпик", + epics: "Эпики", + work_item: "Рабочий элемент", + work_items: "Рабочие элементы", + sub_work_item: "Подэлемент", + add: "Добавить", + warning: "Предупреждение", + updating: "Обновление", + adding: "Добавление", + update: "Обновить", + creating: "Создание", + create: "Создать", + cancel: "Отмена", + description: "Описание", + title: "Заголовок", + attachment: "Вложение", + general: "Общее", + features: "Функции", + automation: "Автоматизация", + project_name: "Название проекта", + project_id: "ID проекта", + project_timezone: "Часовой пояс проекта", + created_on: "Создано", + update_project: "Обновить проект", + identifier_already_exists: "Идентификатор уже существует", + add_more: "Добавить еще", + defaults: "По умолчанию", + add_label: "Добавить метку", + customize_time_range: "Настроить период", + loading: "Загрузка", + attachments: "Вложения", + property: "Свойство", + properties: "Свойства", + parent: "Родительский", + page: "Пейдж", + remove: "Удалить", + archiving: "Архивация", + archive: "Архивировать", + access: { + public: "Публичный", + private: "Приватный", + }, + done: "Готово", + sub_work_items: "Подэлементы", + comment: "Комментарий", + workspace_level: "Уровень рабочего пространства", + order_by: { + label: "Сортировать по", + manual: "Вручную", + last_created: "Последние созданные", + last_updated: "Последние обновленные", + start_date: "Дата начала", + due_date: "Срок выполнения", + asc: "По возрастанию", + desc: "По убыванию", + updated_on: "Дата обновления", + }, + sort: { + asc: "По возрастанию", + desc: "По убыванию", + created_on: "Дата создания", + updated_on: "Дата обновления", + }, + comments: "Комментарии", + updates: "Обновления", + clear_all: "Очистить все", + copied: "Скопировано!", + link_copied: "Ссылка скопирована!", + link_copied_to_clipboard: "Ссылка скопирована в буфер обмена", + copied_to_clipboard: "Ссылка на рабочий элемент скопирована", + is_copied_to_clipboard: "Рабочий элемент скопирован в буфер обмена", + no_links_added_yet: "Нет добавленных ссылок", + add_link: "Добавить ссылку", + links: "Ссылки", + go_to_workspace: "Перейти в рабочее пространство", + progress: "Прогресс", + optional: "Опционально", + join: "Присоединиться", + go_back: "Назад", + continue: "Продолжить", + resend: "Отправить повторно", + relations: "Связи", + errors: { + default: { + title: "Ошибка!", + message: "Что-то пошло не так. Попробуйте позже.", + }, + required: "Это поле обязательно", + entity_required: "{entity} обязательно", + restricted_entity: "{entity} ограничен", + }, + update_link: "обновить ссылку", + attach: "Прикрепить", + create_new: "Создать новый", + add_existing: "Добавить существующий", + type_or_paste_a_url: "Введите или вставьте URL", + url_is_invalid: "Некорректный URL", + display_title: "Отображаемое название", + link_title_placeholder: "Как вы хотите видеть эту ссылку", + url: "URL", + side_peek: "Боковой просмотр", + modal: "Модальное окно", + full_screen: "Полный экран", + close_peek_view: "Закрыть просмотр", + toggle_peek_view_layout: "Переключить макет просмотра", + options: "Опции", + duration: "Продолжительность", + today: "Сегодня", + week: "Неделя", + month: "Месяц", + quarter: "Квартал", + press_for_commands: "Нажмите '/' для команд", + click_to_add_description: "Нажмите, чтобы добавить описание", + search: { + label: "Поиск", + placeholder: "Введите для поиска", + no_matches_found: "Совпадений не найдено", + no_matching_results: "Нет подходящих результатов", + }, + actions: { + edit: "Редактировать", + make_a_copy: "Сделать копию", + open_in_new_tab: "Открыть в новой вкладке", + copy_link: "Копировать ссылку", + archive: "Архивировать", + restore: "Восстановить", + delete: "Удалить", + remove_relation: "Удалить связь", + subscribe: "Подписаться", + unsubscribe: "Отписаться", + clear_sorting: "Сбросить сортировку", + show_weekends: "Показывать выходные", + enable: "Включить", + disable: "Отключить", + }, + name: "Название", + discard: "Отменить", + confirm: "Подтвердить", + confirming: "Подтверждение", + read_the_docs: "Документация", + default: "По умолчанию", + active: "Активный", + enabled: "Включён", + disabled: "Отключён", + mandate: "Мандат", + mandatory: "Обязательный", + yes: "Да", + no: "Нет", + please_wait: "Пожалуйста, подождите", + enabling: "Включение", + disabling: "Отключение", + beta: "Бета", + or: "или", + next: "Далее", + back: "Назад", + cancelling: "Отмена", + configuring: "Настройка", + clear: "Очистить", + import: "Импорт", + connect: "Подключить", + authorizing: "Авторизация", + processing: "Обработка", + no_data_available: "Нет доступных данных", + from: "от {name}", + authenticated: "Авторизован", + select: "Выбрать", + upgrade: "Обновить", + add_seats: "Добавить места", + projects: "Проекты", + workspace: "Рабочее пространство", + workspaces: "Рабочие пространства", + team: "Команда", + teams: "Команды", + entity: "Сущность", + entities: "Сущности", + task: "Рабочий элемент", + tasks: "Рабочие элементы", + section: "Секция", + sections: "Секции", + edit: "Редактировать", + connecting: "Подключение", + connected: "Подключён", + disconnect: "Отключить", + disconnecting: "Отключение", + installing: "Установка", + install: "Установить", + reset: "Сбросить", + live: "В прямом эфире", + change_history: "История изменений", + coming_soon: "Скоро", + member: "Участник", + members: "Участники", + you: "Вы", + upgrade_cta: { + higher_subscription: "Перейти на подписку выше", + talk_to_sales: "Связаться с отделом продаж", + }, + category: "Категория", + categories: "Категории", + saving: "Сохранение", + save_changes: "Сохранить изменения", + delete: "Удалить", + deleting: "Удаление", + pending: "Ожидание", + invite: "Пригласить", + view: "Просмотр", + deactivated_user: "Деактивированный пользователь", + apply: "Применить", + applying: "Применение", + users: "Пользователи", + admins: "Администраторы", + guests: "Гости", + on_track: "По плану", + off_track: "Отклонение от плана", + at_risk: "Под угрозой", + timeline: "Хронология", + completion: "Завершение", + upcoming: "Предстоящие", + completed: "Завершено", + in_progress: "В процессе", + planned: "Запланировано", + paused: "На паузе", + no_of: "Количество {entity}", + resolved: "Решено", + }, + chart: { + x_axis: "Ось X", + y_axis: "Ось Y", + metric: "Метрика", + }, + form: { + title: { + required: "Название обязательно", + max_length: "Название должно быть короче {length} символов", + }, + }, + entity: { + grouping_title: "Группировка {entity}", + priority: "Приоритет {entity}", + all: "Все {entity}", + drop_here_to_move: "Переместите {entity} сюда", + delete: { + label: "Удалить {entity}", + success: "{entity} успешно удалён", + failed: "Ошибка удаления {entity}", + }, + update: { + failed: "Ошибка обновления {entity}", + success: "{entity} успешно обновлён", + }, + link_copied_to_clipboard: "Ссылка на {entity} скопирована", + fetch: { + failed: "Ошибка получения {entity}", + }, + add: { + success: "{entity} успешно добавлен", + failed: "Ошибка добавления {entity}", + }, + remove: { + success: "{entity} успешно удален", + failed: "Ошибка удаления {entity}", + }, + }, + epic: { + all: "Все эпики", + label: "{count, plural, one {Эпик} other {Эпики}}", + new: "Новый эпик", + adding: "Добавление эпика", + create: { + success: "Эпик успешно создан", + }, + add: { + press_enter: "Нажмите 'Enter' чтобы добавить ещё эпик", + label: "Добавить эпик", + }, + title: { + label: "Название эпика", + required: "Название эпика обязательно", + }, + }, + issue: { + label: "{count, plural, one {Рабочий элемент} other {Рабочие элементы}}", + all: "Все рабочие элементы", + edit: "Редактировать рабочий элемент", + title: { + label: "Название рабочего элемента", + required: "Название рабочего элемента обязательно.", + }, + add: { + press_enter: "Нажмите 'Enter' чтобы добавить ещё рабочий элемент", + label: "Добавить рабочий элемент", + cycle: { + failed: "Не удалось добавить рабочий элемент в цикл. Попробуйте снова.", + success: + "{count, plural, one {Рабочий элемент} other {Рабочие элементы}} успешно {count, plural, one {добавлен} other {добавлены}} в цикл.", + loading: "Добавление {count, plural, one {рабочего элемента} other {рабочих элементов}} в цикл", + }, + assignee: "Добавить ответственных", + start_date: "Добавить дату начала", + due_date: "Добавить срок выполнения", + parent: "Добавить родительский рабочий элемент", + sub_issue: "Добавить подэлемент", + relation: "Добавить связь", + link: "Добавить ссылку", + existing: "Добавить существующий рабочий элемент", + }, + remove: { + label: "Удалить рабочий элемент", + cycle: { + loading: "Удаление рабочего элемента из цикла", + success: "Рабочий элемент успешно удален из цикла", + failed: "Не удалось удалить рабочий элемент из цикла. Попробуйте снова.", + }, + module: { + loading: "Удаление рабочего элемента из модуля", + success: "Рабочий элемент успешно удален из модуля.", + failed: "Не удалось удалить рабочий элемент из модуля. Попробуйте снова.", + }, + parent: { + label: "Удалить родительский рабочий элемент", + }, + }, + new: "Новый рабочий элемент", + adding: "Добавление рабочего элемента", + create: { + success: "Рабочий элемент успешно создан", + }, + priority: { + urgent: "Срочный", + high: "Высокий", + medium: "Средний", + low: "Низкий", + }, + display: { + properties: { + label: "Отображаемые свойства", + id: "ID", + issue_type: "Тип рабочего элемента", + sub_issue_count: "Количество подэлементов", + attachment_count: "Количество вложений", + created_on: "Дата создания", + sub_issue: "Подэлемент", + work_item_count: "Количество рабочих элементов", + }, + extra: { + show_sub_issues: "Показывать подэлементы", + show_empty_groups: "Показывать пустые группы", + }, + }, + layouts: { + ordered_by_label: "Сортировка по", + list: "Список", + kanban: "Доска", + calendar: "Календарь", + spreadsheet: "Таблица", + gantt: "График", + title: { + list: "Список", + kanban: "Доска", + calendar: "Календарь", + spreadsheet: "Таблица", + gantt: "График", + }, + }, + states: { + active: "Активно", + backlog: "Бэклог", + }, + comments: { + placeholder: "Добавить комментарий", + switch: { + private: "Изменить на приватный комментарий", + public: "Изменить на публичный комментарий", + }, + create: { + success: "Комментарий успешно добавлен", + error: "Ошибка создания комментария. Попробуйте позже.", + }, + update: { + success: "Комментарий успешно обновлён", + error: "Ошибка обновления комментария. Попробуйте позже.", + }, + remove: { + success: "Комментарий успешно удалён", + error: "Ошибка удаления комментария. Попробуйте позже.", + }, + upload: { + error: "Ошибка загрузки файла. Попробуйте позже.", + }, + copy_link: { + success: "Ссылка на комментарий скопирована в буфер обмена", + error: "Ошибка при копировании ссылки на комментарий. Попробуйте позже.", + }, + }, + empty_state: { + issue_detail: { + title: "Рабочий элемент не существует", + description: "Данный рабочий элемент был удален, архивирован или не существует.", + primary_button: { + text: "Посмотреть другие рабочие элементы", + }, + }, + }, + sibling: { + label: "Связанные рабочие элементы", + }, + archive: { + description: "Только завершённые или отменённые\nрабочие элементы можно архивировать", + label: "Архивировать рабочий элемент", + confirm_message: "Вы уверены что хотите архивировать рабочий элемент? Архивы можно восстановить позже.", + success: { + label: "Архивация успешна", + message: "Архивы доступны в разделе архивов проекта", + }, + failed: { + message: "Ошибка архивации рабочего элемента. Попробуйте позже.", + }, + }, + restore: { + success: { + title: "Восстановление успешно", + message: "Рабочий элемент доступен в разделе рабочих элементов проекта", + }, + failed: { + message: "Ошибка восстановления рабочего элемента. Попробуйте позже.", + }, + }, + relation: { + relates_to: "Связан с", + duplicate: "Дубликат", + blocked_by: "Блокируется", + blocking: "Блокирует", + }, + copy_link: "Копировать ссылку на рабочий элемент", + delete: { + label: "Удалить рабочий элемент", + error: "Ошибка удаления рабочего элемента", + }, + subscription: { + actions: { + subscribed: "Подписка на рабочий элемент оформлена", + unsubscribed: "Подписка на рабочий элемент отменена", + }, + }, + select: { + error: "Выберите хотя бы один рабочий элемент", + empty: "Рабочие элементы не выбраны", + add_selected: "Добавить выбранные рабочие элементы", + select_all: "Выбрать все", + deselect_all: "Снять выделение со всех", + }, + open_in_full_screen: "Открыть рабочий элемент в полном экране", + }, + attachment: { + error: "Ошибка прикрепления файла", + only_one_file_allowed: "Можно загрузить только один файл", + file_size_limit: "Максимальный размер файла - {size} МБ", + drag_and_drop: "Перетащите файл для загрузки", + delete: "Удалить вложение", + }, + label: { + select: "Выбрать метку", + create: { + success: "Метка создана", + failed: "Ошибка создания метки", + already_exists: "Метка уже существует", + type: "Введите новую метку", + }, + }, + sub_work_item: { + update: { + success: "Подэлемент успешно обновлен", + error: "Ошибка обновления подэлемента", + }, + remove: { + success: "Подэлемент успешно удален", + error: "Ошибка удаления подэлемента", + }, + empty_state: { + sub_list_filters: { + title: "У вас нет подэлементов, которые соответствуют примененным фильтрам.", + description: "Чтобы увидеть все подэлементы, очистите все примененные фильтры.", + action: "Очистить фильтры", + }, + list_filters: { + title: "У вас нет рабочих элементов, которые соответствуют примененным фильтрам.", + description: "Чтобы увидеть все рабочие элементы, очистите все примененные фильтры.", + action: "Очистить фильтры", + }, + }, + }, + view: { + label: "{count, plural, one {Представление} other {Представления}}", + create: { + label: "Создать представление", + }, + update: { + label: "Обновить представление", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Ожидание", + description: "Ожидание", + }, + declined: { + title: "Отклонено", + description: "Отклонено", + }, + snoozed: { + title: "Отложено", + description: "{days, plural, one{# день} other{# дней}} осталось", + }, + accepted: { + title: "Принято", + description: "Принято", + }, + duplicate: { + title: "Дубликат", + description: "Дубликат", + }, + }, + modals: { + decline: { + title: "Отклонить рабочий элемент", + content: "Вы уверены, что хотите отклонить рабочий элемент {value}?", + }, + delete: { + title: "Удалить рабочий элемент", + content: "Вы уверены, что хотите удалить рабочий элемент {value}?", + success: "Рабочий элемент успешно удален", + }, + }, + errors: { + snooze_permission: "Только администраторы проекта могут откладывать/возобновлять рабочие элементы", + accept_permission: "Только администраторы проекта могут принимать рабочие элементы", + decline_permission: "Только администраторы проекта могут отклонять рабочие элементы", + }, + actions: { + accept: "Принять", + decline: "Отклонить", + snooze: "Отложить", + unsnooze: "Возобновить", + copy: "Копировать ссылку на рабочий элемент", + delete: "Удалить", + open: "Открыть рабочий элемент", + mark_as_duplicate: "Пометить как дубликат", + move: "Перенести {value} в рабочие элементы проекта", + }, + source: { + "in-app": "в приложении", + }, + order_by: { + created_at: "Дата создания", + updated_at: "Дата обновления", + id: "ID", + }, + label: "Входящие", + page_label: "{workspace} - Входящие", + modal: { + title: "Создать входящий рабочий элемент", + }, + tabs: { + open: "Открытые", + closed: "Закрытые", + }, + empty_state: { + sidebar_open_tab: { + title: "Нет открытых рабочих элементов", + description: "Здесь отображаются открытые рабочие элементы. Создайте новый рабочий элемент.", + }, + sidebar_closed_tab: { + title: "Нет закрытых рабочих элементов", + description: "Все рабочие элементы, принятые или отклоненные, можно найти здесь.", + }, + sidebar_filter: { + title: "Нет подходящих рабочих элементов", + description: "Не найдено рабочих элементов по примененным фильтрам. Создайте новый рабочий элемент.", + }, + detail: { + title: "Выберите рабочий элемент для просмотра деталей.", + }, + }, + }, + workspace_creation: { + heading: "Создайте рабочее пространство", + subheading: "Чтобы начать использовать Plane, создайте или присоединитесь к рабочему пространству.", + form: { + name: { + label: "Название рабочего пространства", + placeholder: "Лучше использовать знакомое и узнаваемое название", + }, + url: { + label: "Установите URL рабочего пространства", + placeholder: "Введите или вставьте URL", + edit_slug: "Можно редактировать только часть URL (slug)", + }, + organization_size: { + label: "Сколько человек будут использовать это пространство?", + placeholder: "Выберите диапазон", + }, + }, + errors: { + creation_disabled: { + title: "Только администратор экземпляра может создавать рабочие пространства", + description: "Если вы знаете email администратора, нажмите кнопку ниже для связи.", + request_button: "Запросить администратора", + }, + validation: { + name_alphanumeric: "Название может содержать только пробелы, дефисы, подчёркивания и буквенно-цифровые символы", + name_length: "Максимальная длина названия - 80 символов", + url_alphanumeric: "URL может содержать только дефисы и буквенно-цифровые символы", + url_length: "Максимальная длина URL - 48 символов", + url_already_taken: "Этот URL уже занят!", + }, + }, + request_email: { + subject: "Запрос нового рабочего пространства", + body: "Здравствуйте, администратор!\n\nПожалуйста, создайте новое рабочее пространство с URL [/workspace-name] для [цель создания].\n\nСпасибо,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Создать пространство", + loading: "Создание пространства", + }, + toast: { + success: { + title: "Успех", + message: "Рабочее пространство успешно создано", + }, + error: { + title: "Ошибка", + message: "Не удалось создать пространство. Попробуйте снова.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Обзор проектов, активности и метрик", + description: + "Добро пожаловать в Plane! Создайте первый проект и отслеживайте рабочие элементы - эта страница станет вашим рабочим пространством. Администраторы также увидят элементы для управления командой.", + primary_button: { + text: "Создать первый проект", + comic: { + title: "Всё начинается с проекта в Plane", + description: "Проектом может быть роадмап продукта, маркетинговая кампания или запуск нового автомобиля.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Аналитика", + page_label: "{workspace} - Аналитика", + open_tasks: "Всего открытых рабочих элементов", + error: "Ошибка при получении данных", + work_items_closed_in: "Рабочие элементы закрыты в", + selected_projects: "Выбранные проекты", + total_members: "Всего участников", + total_cycles: "Всего циклов", + total_modules: "Всего модулей", + pending_work_items: { + title: "Ожидающие рабочие элементы", + empty_state: "Здесь отображается анализ ожидающих рабочих элементов по сотрудникам.", + }, + work_items_closed_in_a_year: { + title: "Рабочие элементы закрытые за год", + empty_state: "Закрывайте рабочие элементы для просмотра анализа в виде графика.", + }, + most_work_items_created: { + title: "Наибольшее количество созданных рабочих элементов", + empty_state: "Здесь отображаются сотрудники и количество созданных ими рабочих элементов.", + }, + most_work_items_closed: { + title: "Наибольшее количество закрытых рабочих элементов", + empty_state: "Здесь отображаются сотрудники и количество закрытых ими рабочих элементов.", + }, + tabs: { + scope_and_demand: "Объём и спрос", + custom: "Пользовательская аналитика", + }, + empty_state: { + customized_insights: { + description: "Назначенные вам рабочие элементы, разбитые по статусам, появятся здесь.", + title: "Данных пока нет", + }, + created_vs_resolved: { + description: "Созданные и решённые со временем рабочие элементы появятся здесь.", + title: "Данных пока нет", + }, + project_insights: { + title: "Данных пока нет", + description: "Назначенные вам рабочие элементы, разбитые по статусам, появятся здесь.", + }, + general: { + title: + "Отслеживайте прогресс, рабочие нагрузки и распределения. Выявляйте тренды, устраняйте блокировки и ускоряйте работу", + description: + "Смотрите объём versus спрос, оценки и расширение объёма. Получайте производительность по членам команды и командам, и убеждайтесь, что ваш проект выполняется в срок.", + primary_button: { + text: "Начать ваш первый проект", + comic: { + title: "Аналитика работает лучше всего с Циклами + Модулями", + description: + "Сначала ограничьте по времени ваши задачи в Циклах и, если можете, сгруппируйте задачи, которые длятся больше одного цикла, в Модули. Проверьте оба в левой навигации.", + }, + }, + }, + }, + created_vs_resolved: "Создано vs Решено", + customized_insights: "Индивидуальные аналитические данные", + backlog_work_items: "{entity} в бэклоге", + active_projects: "Активные проекты", + trend_on_charts: "Тренд на графиках", + all_projects: "Все проекты", + summary_of_projects: "Сводка по проектам", + project_insights: "Аналитика проекта", + started_work_items: "Начатые {entity}", + total_work_items: "Общее количество {entity}", + total_projects: "Всего проектов", + total_admins: "Всего администраторов", + total_users: "Всего пользователей", + total_intake: "Общий доход", + un_started_work_items: "Не начатые {entity}", + total_guests: "Всего гостей", + completed_work_items: "Завершённые {entity}", + total: "Общее количество {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Проект} other {Проекты}}", + create: { + label: "Добавить проект", + }, + network: { + label: "Сеть", + private: { + title: "Приватный", + description: "Доступ только по приглашению", + }, + public: { + title: "Публичный", + description: "Доступен всем в рабочем пространстве кроме гостей", + }, + }, + error: { + permission: "Недостаточно прав для выполнения действия", + cycle_delete: "Ошибка удаления цикла", + module_delete: "Ошибка удаления модуля", + issue_delete: "Не удалось удалить рабочий элемент", + }, + state: { + backlog: "Бэклог", + unstarted: "Не начато", + started: "В процессе", + completed: "Завершено", + cancelled: "Отменено", + }, + sort: { + manual: "Вручную", + name: "По имени", + created_at: "По дате создания", + members_length: "По количеству участников", + }, + scope: { + my_projects: "Мои проекты", + archived_projects: "Архивные", + }, + common: { + months_count: "{months, plural, one{# месяц} other{# месяцев}}", + }, + empty_state: { + general: { + title: "Нет активных проектов", + description: + "Проекты помогают организовать работу. Создавайте проекты для управления рабочими элементами, циклами и модулями. Фильтруйте архивные проекты при необходимости.", + primary_button: { + text: "Создать первый проект", + comic: { + title: "Всё начинается с проекта в Plane", + description: + "Проектом может быть дорожная карта продукта, маркетинговая кампания или запуск нового автомобиля.", + }, + }, + }, + no_projects: { + title: "Нет проектов", + description: "Для управления рабочими элементами необходимо создать проект или быть его участником.", + primary_button: { + text: "Создать первый проект", + comic: { + title: "Всё начинается с проекта в Plane", + description: + "Проектом может быть дорожная карта продукта, маркетинговая кампания или запуск нового автомобиля.", + }, + }, + }, + filter: { + title: "Нет подходящих проектов", + description: "Не найдено проектов по заданным критериям.\nСоздайте новый проект.", + }, + search: { + description: "Не найдено проектов по заданным критериям.\nСоздайте новый проект", + }, + }, + }, + workspace_views: { + add_view: "Добавить представление", + empty_state: { + "all-issues": { + title: "Нет рабочих элементов в проекте", + description: "Первый проект создан! Теперь разделите работу на отслеживаемые рабочие элементы.", + primary_button: { + text: "Создать рабочий элемент", + }, + }, + assigned: { + title: "Нет назначенных рабочих элементов", + description: "Здесь отображаются рабочие элементы, назначенные вам.", + primary_button: { + text: "Создать рабочий элемент", + }, + }, + created: { + title: "Нет созданных рабочих элементов", + description: "Все созданные вами рабочие элементы отображаются здесь.", + primary_button: { + text: "Создать рабочий элемент", + }, + }, + subscribed: { + title: "Нет отслеживаемых рабочих элементов", + description: "Подпишитесь на интересующие рабочие элементы для отслеживания.", + }, + "custom-view": { + title: "Нет рабочих элементов", + description: "Здесь отображаются рабочие элементы, соответствующие фильтрам.", + }, + }, + }, + workspace_settings: { + label: "Настройки пространства", + page_label: "{workspace} - Основные настройки", + key_created: "Ключ создан", + copy_key: + "Скопируйте и сохраните секретный ключ в Plane Pages. После закрытия ключ будет недоступен. CSV-файл с ключом был скачан.", + token_copied: "Токен скопирован в буфер", + settings: { + general: { + title: "Основные", + upload_logo: "Загрузить логотип", + edit_logo: "Изменить логотип", + name: "Название пространства", + company_size: "Размер компании", + url: "URL пространства", + update_workspace: "Обновить пространство", + delete_workspace: "Удалить пространство", + delete_workspace_description: "Все данные будут безвозвратно удалены.", + delete_btn: "Удалить пространство", + delete_modal: { + title: "Подтвердите удаление пространства", + description: "У вас есть активная пробная подписка. Сначала отмените её.", + dismiss: "Отмена", + cancel: "Отменить подписку", + success_title: "Пространство удалено", + success_message: "Вы будете перенаправлены в профиль", + error_title: "Ошибка", + error_message: "Попробуйте снова", + }, + errors: { + name: { + required: "Обязательное поле", + max_length: "Максимум 80 символов", + }, + company_size: { + required: "Размер компании обязателен", + select_a_range: "Выберите размер организации", + }, + }, + }, + members: { + title: "Участники", + add_member: "Добавить участника", + pending_invites: "Ожидающие приглашения", + invitations_sent_successfully: "Приглашения отправлены", + leave_confirmation: "Подтвердите выход из пространства. Доступ будет утрачен. Это действие нельзя отменить.", + details: { + full_name: "Полное имя", + display_name: "Отображаемое имя", + email_address: "Email", + account_type: "Тип аккаунта", + authentication: "Аутентификация", + joining_date: "Дата присоединения", + }, + modal: { + title: "Пригласить участников", + description: "Пригласите коллег в рабочее пространство.", + button: "Отправить приглашения", + button_loading: "Отправка...", + placeholder: "name@company.com", + errors: { + required: "Введите email адрес, чтобы пригласить участников", + invalid: "Неверный email", + }, + }, + }, + billing_and_plans: { + title: "Оплата и тарифы", + current_plan: "Текущий тариф", + free_plan: "Используется бесплатный тариф", + view_plans: "Посмотреть тарифы", + }, + exports: { + title: "Экспорт", + exporting: "Экспортируется", + previous_exports: "Предыдущие экспорты", + export_separate_files: "Экспорт в отдельные файлы", + modal: { + title: "Экспорт в", + toasts: { + success: { + title: "Успешный экспорт", + message: "Экспортированные {entity} доступны для скачивания.", + }, + error: { + title: "Ошибка экспорта", + message: "Эскпорт не удался. Попробуйте снова", + }, + }, + }, + }, + webhooks: { + title: "Вебхуки", + add_webhook: "Добавить вебхук", + modal: { + title: "Создать вебхук", + details: "Детали вебхука", + payload: "URL для уведомлений", + question: "Какие события будут активировать вебхук?", + error: "Требуется URL", + }, + secret_key: { + title: "Секретный ключ", + message: "Сгенерируйте токен для подписи уведомлений", + }, + options: { + all: "Все события", + individual: "Выбрать события", + }, + toasts: { + created: { + title: "Вебхук создан", + message: "Вебхук успешно создан", + }, + not_created: { + title: "Ошибка создания", + message: "Не удалось создать вебхук", + }, + updated: { + title: "Обновлено", + message: "Вебхук успешно обновлён", + }, + not_updated: { + title: "Ошибка обновления", + message: "Не удалось обновить вебхук", + }, + removed: { + title: "Вебхук удалён", + message: "Вебхук успешно удалён", + }, + not_removed: { + title: "Ошибка удаления вебхука", + message: "Не удалось удалить вебхук", + }, + secret_key_copied: { + message: "Секретный ключ скопирован", + }, + secret_key_not_copied: { + message: "Ошибка копирования ключа", + }, + }, + }, + api_tokens: { + title: "API-токены", + add_token: "Добавить токен", + create_token: "Создать токен", + never_expires: "Бессрочный", + generate_token: "Сгенерировать токен", + generating: "Генерация", + delete: { + title: "Удалить токен", + description: "Приложения, использующие этот токен, потеряют доступ. Действие необратимо.", + success: { + title: "Успех!", + message: "Токен удалён", + }, + error: { + title: "Ошибка!", + message: "Не удалось удалить токен", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Нет API-токенов", + description: "Используйте API Plane для интеграции с внешними системами. Создайте тоекен чтобы начать.", + }, + webhooks: { + title: "Нет вебхуков", + description: "Создавайте вебхуки для автоматизации и получения уведомлений.", + }, + exports: { + title: "Нет экспортов", + description: "Здесь будут сохранённые копии ваших экспортов.", + }, + imports: { + title: "Нет импортов", + description: "Здесь отображаются все предыдущие импорты.", + }, + }, + }, + profile: { + label: "Профиль", + page_label: "Ваша работа", + work: "Работа", + details: { + joined_on: "Присоединился", + time_zone: "Часовой пояс", + }, + stats: { + workload: "Нагрузка", + overview: "Обзор", + created: "Созданные рабочие элементы", + assigned: "Назначенные рабочие элементы", + subscribed: "Отслеживаемые рабочие элементы", + state_distribution: { + title: "Рабочие элементы по статусам", + empty: "Создавайте рабочие элементы для анализа по статусам", + }, + priority_distribution: { + title: "Рабочие элементы по приоритетам", + empty: "Создавайте рабочие элементы для анализа по приоритетам", + }, + recent_activity: { + title: "Недавняя активность", + empty: "Данные не найдены", + button: "Скачать активность", + button_loading: "Скачивание", + }, + }, + actions: { + profile: "Профиль", + security: "Безопасность", + activity: "Активность", + appearance: "Внешний вид", + notifications: "Уведомления", + }, + tabs: { + summary: "Сводка", + assigned: "Назначенные", + created: "Созданные", + subscribed: "Отслеживаемые", + activity: "Активность", + }, + empty_state: { + activity: { + title: "Нет активности", + description: + "Создайте первый рабочий элемент для начала работы! Добавьте детали и свойства рабочего элемента. Исследуйте больше в Plane, чтобы увидеть вашу активность.", + }, + assigned: { + title: "Нет назначенных рабочих элементов", + description: "Здесь отображаются рабочие элементы, назначенные вам.", + }, + created: { + title: "Нет созданных рабочих элементов", + description: "Все созданные вами рабочие элементы отображаются здесь.", + }, + subscribed: { + title: "Нет отслеживаемых рабочих элементов", + description: "Подпишитесь на интересующие рабочие элементы.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Введите ID проекта", + please_select_a_timezone: "Выберите часовой пояс", + archive_project: { + title: "Архивировать проект", + description: + "Проект исчезнет из бокового меню, но останется доступным на странице проектов. Можно восстановить или удалить позже.", + button: "Архивировать", + }, + delete_project: { + title: "Удалить проект", + description: "Все данные проекта будут безвозвратно удалены без возможности восстановления.", + button: "Удалить проект", + }, + toast: { + success: "Проект обновлён", + error: "Ошибка обновления. Попробуйте снова.", + }, + }, + members: { + label: "Участники", + project_lead: "Руководитель проекта", + default_assignee: "Ответственный по умолчанию", + guest_super_permissions: { + title: "Дать гостям доступ на просмотр всех рабочих элементов:", + sub_heading: "Гости смогут просматривать все рабочие элементы проекта", + }, + invite_members: { + title: "Пригласить участников", + sub_heading: "Пригласите коллег для работы над проектом.", + select_co_worker: "Выберите сотрудника", + }, + }, + states: { + describe_this_state_for_your_members: "Опишите этот статус для участников", + empty_state: { + title: "Нет статусов для группы {groupKey}", + description: "Создайте новый статус", + }, + }, + labels: { + label_title: "Название метки", + label_title_is_required: "Название обязательно", + label_max_char: "Максимальная длина названия - 255 символов", + toast: { + error: "Ошибка обновления метки", + }, + }, + estimates: { + label: "Оценки", + title: "Включить оценки для моего проекта", + description: "Они помогают вам в общении о сложности и рабочей нагрузке команды.", + no_estimate: "Без оценки", + new: "Новая система оценок", + create: { + custom: "Пользовательская", + start_from_scratch: "Начать с нуля", + choose_template: "Выбрать шаблон", + choose_estimate_system: "Выбрать систему оценок", + enter_estimate_point: "Ввести оценку", + step: "Шаг {step} из {total}", + label: "Создать оценку", + }, + toasts: { + created: { + success: { + title: "Оценка создана", + message: "Оценка успешно создана", + }, + error: { + title: "Ошибка создания оценки", + message: "Не удалось создать новую оценку, пожалуйста, попробуйте снова.", + }, + }, + updated: { + success: { + title: "Оценка изменена", + message: "Оценка обновлена в вашем проекте.", + }, + error: { + title: "Ошибка изменения оценки", + message: "Не удалось изменить оценку, пожалуйста, попробуйте снова", + }, + }, + enabled: { + success: { + title: "Успех!", + message: "Оценки включены.", + }, + }, + disabled: { + success: { + title: "Успех!", + message: "Оценки отключены.", + }, + error: { + title: "Ошибка!", + message: "Не удалось отключить оценки. Пожалуйста, попробуйте снова", + }, + }, + }, + validation: { + min_length: "Оценка должна быть больше 0.", + unable_to_process: "Не удалось обработать ваш запрос, пожалуйста, попробуйте снова.", + numeric: "Оценка должна быть числовым значением.", + character: "Оценка должна быть символьным значением.", + empty: "Значение оценки не может быть пустым.", + already_exists: "Значение оценки уже существует.", + unsaved_changes: "У вас есть несохраненные изменения. Пожалуйста, сохраните их перед нажатием на готово", + remove_empty: + "Оценка не может быть пустой. Введите значение в каждое поле или удалите те, для которых у вас нет значений.", + }, + systems: { + points: { + label: "Баллы", + fibonacci: "Фибоначчи", + linear: "Линейная", + squares: "Квадраты", + custom: "Пользовательская", + }, + categories: { + label: "Категории", + t_shirt_sizes: "Размеры футболок", + easy_to_hard: "От простого к сложному", + custom: "Пользовательская", + }, + time: { + label: "Время", + hours: "Часы", + }, + }, + }, + automations: { + label: "Автоматизация", + "auto-archive": { + title: "Автоархивация закрытых рабочих элементов", + description: "Plane будет автоматически архивировать рабочие элементы, которые были завершены или отменены.", + duration: "Автоархивация рабочих элементов, которые закрыты в течение", + }, + "auto-close": { + title: "Автоматическое закрытие рабочих элементов", + description: "Plane будет автоматически закрывать рабочие элементы, которые не были завершены или отменены.", + duration: "Автоматическое закрытие рабочих элементов, которые неактивны в течение", + auto_close_status: "Статус автоматического закрытия", + }, + }, + empty_state: { + labels: { + title: "Нет меток", + description: "Создайте метки для организации и фильтрации рабочих элементов в вашем проекте.", + }, + estimates: { + title: "Нет систем оценок", + description: "Создайте набор оценок для передачи объема работы на каждый рабочий элемент.", + primary_button: "Добавить систему оценок", + }, + }, + }, + project_cycles: { + add_cycle: "Добавить цикл", + more_details: "Подробнее", + cycle: "Цикл", + update_cycle: "Обновить цикл", + create_cycle: "Создать цикл", + no_matching_cycles: "Нет подходящих циклов", + remove_filters_to_see_all_cycles: "Снимите фильтры для просмотра всех циклов", + remove_search_criteria_to_see_all_cycles: "Очистите поиск для просмотра всех циклов", + only_completed_cycles_can_be_archived: "Только завершённые циклы можно архивировать", + start_date: "Дата начала", + end_date: "Дата окончания", + in_your_timezone: "В вашем часовом поясе", + transfer_work_items: "Перенести {count} рабочих элементов", + date_range: "Диапазон дат", + add_date: "Добавить дату", + active_cycle: { + label: "Активный цикл", + progress: "Прогресс", + chart: "Диаграмма сгорания", + priority_issue: "Приоритетные рабочие элементы", + assignees: "Ответственные", + issue_burndown: "Выгорание рабочих элементов", + ideal: "Идеальный", + current: "Текущий", + labels: "Метки", + }, + upcoming_cycle: { + label: "Предстоящий цикл", + }, + completed_cycle: { + label: "Завершённый цикл", + }, + status: { + days_left: "Дней осталось", + completed: "Завершено", + yet_to_start: "Ещё не начато", + in_progress: "В процессе", + draft: "Черновик", + }, + action: { + restore: { + title: "Восстановить цикл", + success: { + title: "Цикл восстановлен", + description: "Цикл успешно восстановлен", + }, + failed: { + title: "Ошибка восстановления", + description: "Не удалось восстановить цикл", + }, + }, + favorite: { + loading: "Добавление в избранное", + success: { + description: "Цикл добавлен в избранное", + title: "Успех!", + }, + failed: { + description: "Ошибка добавления в избранное", + title: "Ошибка!", + }, + }, + unfavorite: { + loading: "Удаление из избранного", + success: { + description: "Цикл удалён из избранного", + title: "Успех!", + }, + failed: { + description: "Ошибка удаления цикла из избранного. Попробуйте снова.", + title: "Ошибка!", + }, + }, + update: { + loading: "Обновление цикла", + success: { + description: "Цикл успешно обновлён", + title: "Успех!", + }, + failed: { + description: "Ошибка обновления цикла. Попробуйте снова.", + title: "Ошибка!", + }, + error: { + already_exists: "Цикл на указанные даты уже существует. Для создания черновика удалите даты.", + }, + }, + }, + empty_state: { + general: { + title: "Организуйте работу в циклах", + description: "Разбивайте работу на временные интервалы, устанавливайте сроки и отслеживайте прогресс команды.", + primary_button: { + text: "Создать первый цикл", + comic: { + title: "Циклы - повторяющиеся временные интервалы", + description: "Спринт, итерация или любой другой термин для еженедельного/двухнедельного планирования.", + }, + }, + }, + no_issues: { + title: "Нет рабочих элементов в цикле", + description: "Добавьте существующие или создайте новые рабочие элементы для этого цикла", + primary_button: { + text: "Создать рабочий элемент", + }, + secondary_button: { + text: "Добавить существующий рабочий элемент", + }, + }, + completed_no_issues: { + title: "Нет рабочих элементов в цикле", + description: + "Нет рабочих элементов. Рабочие элементы были перенесены или скрыты. Для просмотра измените настройки отображения.", + }, + active: { + title: "Нет активных циклов", + description: "Активный цикл включает текущую дату. Здесь отображается прогресс активного цикла.", + }, + archived: { + title: "Нет архивных циклов", + description: "Архивируйте завершённые циклы для упорядочивания проекта.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Создайте рабочий элемент и назначьте исполнителя", + description: + "Рабочие элементы помогают организовать работу команды. Создавайте, назначайте и завершайте рабочие элементы для достижения целей проекта.", + primary_button: { + text: "Создать первый рабочий элемент", + comic: { + title: "Рабочие элементы - строительные блоки Plane", + description: + "Примеры рабочих элементов: редизайн интерфейса, ребрендинг компании или запуск новой системы.", + }, + }, + }, + no_archived_issues: { + title: "Нет архивных рабочих элементов", + description: "Архивируйте завершённые или отменённые рабочие элементы вручную или автоматически.", + primary_button: { + text: "Настроить автоматизацию", + }, + }, + issues_empty_filter: { + title: "Нет рабочих элементов подходящих фильтрам", + secondary_button: { + text: "Сбросить фильтры", + }, + }, + }, + }, + project_module: { + add_module: "Добавить модуль", + update_module: "Обновить модуль", + create_module: "Создать модуль", + archive_module: "Архивировать модуль", + restore_module: "Восстановить модуль", + delete_module: "Удалить модуль", + empty_state: { + general: { + title: "Связывайте этапы проекта с модулями для удобного отслеживания рабочих элементов.", + description: + "Модуль объединяет рабочие элементы по логическому или иерархическому признаку. Используйте модули для контроля этапов проекта. Каждый модуль имеет собственные сроки выполнения и аналитику для отслеживания прогресса.", + primary_button: { + text: "Создать первый модуль", + comic: { + title: "Модули группируют рабочие элементы по иерархии", + description: "Примеры группировки: модуль корзины, модуль шасси или модуль склада.", + }, + }, + }, + no_issues: { + title: "Нет рабочих элементов в модуле", + description: "Создавайте или добавляйте рабочие элементы, которые хотите выполнить в рамках этого модуля", + primary_button: { + text: "Создать новые рабочие элементы", + }, + secondary_button: { + text: "Добавить существующий рабочий элемент", + }, + }, + archived: { + title: "Нет архивных модулей", + description: + "Архивируйте завершённые или отменённые модули для упорядочивания проекта. Они появятся здесь после архивации.", + }, + sidebar: { + in_active: "Этот модуль ещё не активен.", + invalid_date: "Некорректная дата. Укажите правильную дату.", + }, + }, + quick_actions: { + archive_module: "Архивировать модуль", + archive_module_description: "Только завершённые или отменённые\nмодули можно архивировать.", + delete_module: "Удалить модуль", + }, + toast: { + copy: { + success: "Ссылка на модуль скопирована в буфер обмена", + }, + delete: { + success: "Модуль успешно удалён", + error: "Ошибка удаления модуля", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Сохраняйте фильтры в виде представлений. Создавайте неограниченное количество вариантов", + description: + "Представления - это сохранённые наборы фильтров для быстрого доступа. Все участники проекта видят созданные представления и могут выбирать подходящие.", + primary_button: { + text: "Создать первое представление", + comic: { + title: "Представления работают на основе свойств рабочих элементов", + description: "Создавайте представления с любым количеством свойств в качестве фильтров.", + }, + }, + }, + filter: { + title: "Подходящих представлений не найдено", + description: "Нет представлений, соответствующих критериям поиска. \n Создайте новое представление.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "Создавайте заметки, документы или базу знаний. Используйте Galileo, ИИ-помощник Plane.", + description: + "Страницы - пространство для организации мыслей в Plane. Делайте заметки, форматируйте текст, встраивайте рабочие элементы, используйте компоненты. Для быстрого создания документов используйте Galileo через горячие клавиши или кнопку.", + primary_button: { + text: "Создать первую страницу", + }, + }, + private: { + title: "Нет приватных страниц", + description: "Храните личные заметки здесь. Когда будете готовы поделиться, команда будет в одном клике.", + primary_button: { + text: "Создать первую страницу", + }, + }, + public: { + title: "Нет публичных страниц", + description: "Здесь отображаются страницы, доступные всем участникам проекта.", + primary_button: { + text: "Создать первую страницу", + }, + }, + archived: { + title: "Нет архивных страниц", + description: "Архивируйте неактуальные страницы. При необходимости вы найдете их здесь.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Ничего не найдено", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Не найдено подходящих рабочих элементов", + }, + no_issues: { + title: "Рабочие элементы не найдены", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Комментариев пока нет", + description: "Используйте комментарии для обсуждения и отслеживания задач", + }, + }, + }, + notification: { + label: "Входящие", + page_label: "{workspace} - Входящие", + options: { + mark_all_as_read: "Пометить все как прочитанные", + mark_read: "Пометить как прочитанное", + mark_unread: "Пометить как непрочитанное", + refresh: "Обновить", + filters: "Фильтры входящих", + show_unread: "Показать непрочитанные", + show_snoozed: "Показать отложенные", + show_archived: "Показать архивные", + mark_archive: "Архивировать", + mark_unarchive: "Разархивировать", + mark_snooze: "Отложить", + mark_unsnooze: "Возобновить", + }, + toasts: { + read: "Уведомление помечено как прочитанное", + unread: "Уведомление помечено как непрочитанное", + archived: "Уведомление архивировано", + unarchived: "Уведомление разархивировано", + snoozed: "Уведомление отложено", + unsnoozed: "Уведомление возобновлено", + }, + empty_state: { + detail: { + title: "Выберите для просмотра деталей", + }, + all: { + title: "Нет назначенных рабочих элементов", + description: "Обновления по назначенным вам рабочим элементам будут \n отображаться здесь", + }, + mentions: { + title: "Нет упомянутых рабочих элементов", + description: "Обновления по рабочим элементам, где вас упомянули, \n будут отображаться здесь", + }, + }, + tabs: { + all: "Все", + mentions: "Упоминания", + }, + filter: { + assigned: "Назначенные мне", + created: "Созданные мной", + subscribed: "Отслеживаемые мной", + }, + snooze: { + "1_day": "1 день", + "3_days": "3 дня", + "5_days": "5 дней", + "1_week": "1 неделя", + "2_weeks": "2 недели", + custom: "Другое", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Добавьте рабочие элементы в цикл, чтобы отслеживать прогресс", + }, + chart: { + title: "Добавьте рабочие элементы в цикл для построения графика выполнения", + }, + priority_issue: { + title: "Просматривайте рабочие элементы с высоким приоритетом в цикле", + }, + assignee: { + title: "Назначьте ответственных, чтобы видеть распределение рабочих элементов", + }, + label: { + title: "Добавьте метки, чтобы видеть распределение рабочих элементов по категориям", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Функция 'Входящие' отключена для проекта", + description: + "Входящие помогают управлять запросами и добавлять их в рабочий процесс. Включите функцию в настройках проекта.", + primary_button: { + text: "Управление функциями", + }, + }, + cycle: { + title: "Циклы отключены для этого проекта", + description: + "Разбивайте работу на временные интервалы, устанавливайте сроки и отслеживайте прогресс команды. Включите функцию циклов в настройках проекта.", + primary_button: { + text: "Управление функциями", + }, + }, + module: { + title: "Модули отключены для проекта", + description: "Модули - основные компоненты вашего проекта. Включите их в настройках проекта.", + primary_button: { + text: "Управление функциями", + }, + }, + page: { + title: "Страницы отключены для проекта", + description: "Страницы - основные компоненты вашего проекта. Включите их в настройках проекта.", + primary_button: { + text: "Управление функциями", + }, + }, + view: { + title: "Представления отключены для проекта", + description: "Представления - основные компоненты вашего проекта. Включите их в настройках проекта.", + primary_button: { + text: "Управление функциями", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Создать черновик рабочего элемента", + empty_state: { + title: "Черновики рабочих элементов, а вскоре и комментарии, будут отображаться здесь.", + description: + "Чтобы попробовать, начните добавлять рабочий элемент и прервитесь на полпути или создайте первый черновик ниже. 😉", + primary_button: { + text: "Создать первый черновик", + }, + }, + delete_modal: { + title: "Удалить черновик", + description: "Вы уверены, что хотите удалить этот черновик? Это действие нельзя отменить.", + }, + toasts: { + created: { + success: "Черновик создан", + error: "Не удалось создать рабочий элемент. Попробуйте снова.", + }, + deleted: { + success: "Черновик удалён", + }, + }, + }, + stickies: { + title: "Ваши стикеры", + placeholder: "нажмите, чтобы написать", + all: "Все стикеры", + "no-data": "Запишите идею, зафиксируйте озарение или сохраните мысль. Создайте стикер, чтобы начать.", + add: "Добавить стикер", + search_placeholder: "Поиск по названию", + delete: "Удалить стикер", + delete_confirmation: "Вы уверены, что хотите удалить этот стикер?", + empty_state: { + simple: "Запишите идею, зафиксируйте озарение или сохраните мысль. Создайте стикер, чтобы начать.", + general: { + title: "Стикеры - это быстрые заметки и рабочие элементы, которые вы создаёте на лету.", + description: + "Легко фиксируйте свои мысли и идеи с помощью стикеров, которые доступны в любое время и в любом месте.", + primary_button: { + text: "Добавить стикер", + }, + }, + search: { + title: "Ничего не найдено.", + description: "Попробуйте другой запрос или сообщите нам,\nесли уверены в правильности поиска.", + primary_button: { + text: "Добавить стикер", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Название стикера не может быть длиннее 100 символов.", + already_exists: "Стикер без описания уже существует", + }, + created: { + title: "Стикер создан", + message: "Стикер успешно создан", + }, + not_created: { + title: "Ошибка создания стикера", + message: "Не удалось создать стикер", + }, + updated: { + title: "Стикер обновлён", + message: "Стикер успешно обновлён", + }, + not_updated: { + title: "Ошибка обновления", + message: "Не удалось обновить стикер", + }, + removed: { + title: "Стикер удалён", + message: "Стикер успешно удалён", + }, + not_removed: { + title: "Ошибка удаления", + message: "Не удалось удалить стикер", + }, + }, + }, + role_details: { + guest: { + title: "Гость", + description: "Внешние участники организаций могут быть приглашены как гости.", + }, + member: { + title: "Участник", + description: "Чтение, создание, редактирование и удаление элементов внутри проектов, циклов и модулей", + }, + admin: { + title: "Администратор", + description: "Полные права доступа в рамках рабочего пространства.", + }, + }, + user_roles: { + product_or_project_manager: "Продукт / Проект менеджер", + development_or_engineering: "Разработка / Инжиниринг", + founder_or_executive: "Основатель / Руководитель", + freelancer_or_consultant: "Фрилансер / Консультант", + marketing_or_growth: "Маркетинг / Рост", + sales_or_business_development: "Продажи / Развитие бизнеса", + support_or_operations: "Поддержка / Операции", + student_or_professor: "Студент / Преподаватель", + human_resources: "HR / Кадры", + other: "Другое", + }, + importer: { + github: { + title: "GitHub", + description: "Импорт рабочих элементов из репозиториев GitHub с синхронизацией.", + }, + jira: { + title: "Jira", + description: "Импорт рабочих элементов и эпиков из проектов Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Экспорт рабочих элементов в CSV-файл.", + short_description: "Экспорт в csv", + }, + excel: { + title: "Excel", + description: "Экспорт рабочих элементов в файл Excel.", + short_description: "Экспорт в excel", + }, + xlsx: { + title: "Excel", + description: "Экспорт рабочих элементов в файл Excel.", + short_description: "Экспорт в excel", + }, + json: { + title: "JSON", + description: "Экспорт рабочих элементов в JSON-файл.", + short_description: "Экспорт в json", + }, + }, + default_global_view: { + all_issues: "Все рабочие элементы", + assigned: "Назначенные", + created: "Созданные", + subscribed: "Подписанные", + }, + themes: { + theme_options: { + system_preference: { + label: "Системные настройки", + }, + light: { + label: "Светлая", + }, + dark: { + label: "Тёмная", + }, + light_contrast: { + label: "Светлая высококонтрастностная", + }, + dark_contrast: { + label: "Тёмная высокая контрастность", + }, + custom: { + label: "Пользовательская тема", + }, + }, + }, + project_modules: { + status: { + backlog: "Бэклог", + planned: "Запланировано", + in_progress: "В процессе", + paused: "Приостановлено", + completed: "Завершено", + cancelled: "Отменено", + }, + layout: { + list: "Список", + board: "Галерея", + timeline: "Хронология", + }, + order_by: { + name: "Название", + progress: "Прогресс", + issues: "Количество рабочих элементов", + due_date: "Срок выполнения", + created_at: "Дата создания", + manual: "Вручную", + }, + }, + cycle: { + label: "{count, plural, one {Цикл} other {Циклы}}", + no_cycle: "Нет цикла", + }, + module: { + label: "{count, plural, one {Модуль} other {Модули}}", + no_module: "Нет модуля", + }, + description_versions: { + last_edited_by: "Последнее редактирование", + previously_edited_by: "Ранее отредактировано", + edited_by: "Отредактировано", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane не запустился. Это может быть из-за того, что один или несколько сервисов Plane не смогли запуститься.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Выберите View Logs из setup.sh и логов Docker, чтобы убедиться.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Структура", + empty_state: { + title: "Отсутствуют заголовки", + description: "Давайте добавим несколько заголовков на эту страницу, чтобы увидеть их здесь.", + }, + }, + info: { + label: "Информация", + document_info: { + words: "Слова", + characters: "Символы", + paragraphs: "Абзацы", + read_time: "Время чтения", + }, + actors_info: { + edited_by: "Отредактировано", + created_by: "Создано", + }, + version_history: { + label: "История версий", + current_version: "Текущая версия", + }, + }, + assets: { + label: "Ресурсы", + download_button: "Скачать", + empty_state: { + title: "Отсутствуют изображения", + description: "Добавьте изображения, чтобы увидеть их здесь.", + }, + }, + }, + open_button: "Открыть панель навигации", + close_button: "Закрыть панель навигации", + outline_floating_button: "Открыть структуру", + }, +} as const; diff --git a/packages/i18n/src/locales/sk/accessibility.json b/packages/i18n/src/locales/sk/accessibility.json deleted file mode 100644 index 26c5c8be6f..0000000000 --- a/packages/i18n/src/locales/sk/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo pracovného priestoru", - "open_workspace_switcher": "Otvoriť prepínač pracovného priestoru", - "open_user_menu": "Otvoriť používateľské menu", - "open_command_palette": "Otvoriť paletu príkazov", - "open_extended_sidebar": "Otvoriť rozšírený bočný panel", - "close_extended_sidebar": "Zavrieť rozšírený bočný panel", - "create_favorites_folder": "Vytvoriť priečinok obľúbených", - "open_folder": "Otvoriť priečinok", - "close_folder": "Zavrieť priečinok", - "open_favorites_menu": "Otvoriť menu obľúbených", - "close_favorites_menu": "Zavrieť menu obľúbených", - "enter_folder_name": "Zadajte názov priečinka", - "create_new_project": "Vytvoriť nový projekt", - "open_projects_menu": "Otvoriť menu projektov", - "close_projects_menu": "Zavrieť menu projektov", - "toggle_quick_actions_menu": "Prepnúť menu rýchlych akcií", - "open_project_menu": "Otvoriť menu projektu", - "close_project_menu": "Zavrieť menu projektu", - "collapse_sidebar": "Zbaliť bočný panel", - "expand_sidebar": "Rozbaliť bočný panel", - "edition_badge": "Otvoriť modal platených plánov" - }, - "auth_forms": { - "clear_email": "Vymazať e-mail", - "show_password": "Zobraziť heslo", - "hide_password": "Skryť heslo", - "close_alert": "Zavrieť upozornenie", - "close_popover": "Zavrieť vyskakovacie okno" - } - } -} diff --git a/packages/i18n/src/locales/sk/accessibility.ts b/packages/i18n/src/locales/sk/accessibility.ts new file mode 100644 index 0000000000..5038c41bee --- /dev/null +++ b/packages/i18n/src/locales/sk/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo pracovného priestoru", + open_workspace_switcher: "Otvoriť prepínač pracovného priestoru", + open_user_menu: "Otvoriť používateľské menu", + open_command_palette: "Otvoriť paletu príkazov", + open_extended_sidebar: "Otvoriť rozšírený bočný panel", + close_extended_sidebar: "Zavrieť rozšírený bočný panel", + create_favorites_folder: "Vytvoriť priečinok obľúbených", + open_folder: "Otvoriť priečinok", + close_folder: "Zavrieť priečinok", + open_favorites_menu: "Otvoriť menu obľúbených", + close_favorites_menu: "Zavrieť menu obľúbených", + enter_folder_name: "Zadajte názov priečinka", + create_new_project: "Vytvoriť nový projekt", + open_projects_menu: "Otvoriť menu projektov", + close_projects_menu: "Zavrieť menu projektov", + toggle_quick_actions_menu: "Prepnúť menu rýchlych akcií", + open_project_menu: "Otvoriť menu projektu", + close_project_menu: "Zavrieť menu projektu", + collapse_sidebar: "Zbaliť bočný panel", + expand_sidebar: "Rozbaliť bočný panel", + edition_badge: "Otvoriť modal platených plánov", + }, + auth_forms: { + clear_email: "Vymazať e-mail", + show_password: "Zobraziť heslo", + hide_password: "Skryť heslo", + close_alert: "Zavrieť upozornenie", + close_popover: "Zavrieť vyskakovacie okno", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/sk/editor.json b/packages/i18n/src/locales/sk/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/sk/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/sk/editor.ts b/packages/i18n/src/locales/sk/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/sk/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/sk/translations.json b/packages/i18n/src/locales/sk/translations.json deleted file mode 100644 index 08da7e2dd3..0000000000 --- a/packages/i18n/src/locales/sk/translations.json +++ /dev/null @@ -1,2534 +0,0 @@ -{ - "sidebar": { - "projects": "Projekty", - "pages": "Stránky", - "new_work_item": "Nová pracovná položka", - "home": "Domov", - "your_work": "Vaša práca", - "inbox": "Doručená pošta", - "workspace": "Pracovný priestor", - "views": "Pohľady", - "analytics": "Analytika", - "work_items": "Pracovné položky", - "cycles": "Cykly", - "modules": "Moduly", - "intake": "Príjem", - "drafts": "Koncepty", - "favorites": "Obľúbené", - "pro": "Pro", - "upgrade": "Upgrade" - }, - "auth": { - "common": { - "email": { - "label": "E-mail", - "placeholder": "meno@spolocnost.sk", - "errors": { - "required": "E-mail je povinný", - "invalid": "E-mail je neplatný" - } - }, - "password": { - "label": "Heslo", - "set_password": "Nastaviť heslo", - "placeholder": "Zadajte heslo", - "confirm_password": { - "label": "Potvrďte heslo", - "placeholder": "Potvrďte heslo" - }, - "current_password": { - "label": "Aktuálne heslo" - }, - "new_password": { - "label": "Nové heslo", - "placeholder": "Zadajte nové heslo" - }, - "change_password": { - "label": { - "default": "Zmeniť heslo", - "submitting": "Mení sa heslo" - } - }, - "errors": { - "match": "Heslá sa nezhodujú", - "empty": "Zadajte prosím svoje heslo", - "length": "Dĺžka hesla by mala byť viac ako 8 znakov", - "strength": { - "weak": "Heslo je slabé", - "strong": "Heslo je silné" - } - }, - "submit": "Nastaviť heslo", - "toast": { - "change_password": { - "success": { - "title": "Úspech!", - "message": "Heslo bolo úspešne zmenené." - }, - "error": { - "title": "Chyba!", - "message": "Niečo sa pokazilo. Skúste to prosím znova." - } - } - } - }, - "unique_code": { - "label": "Jedinečný kód", - "placeholder": "gets-sets-flys", - "paste_code": "Vložte kód zaslaný na váš e-mail", - "requesting_new_code": "Žiadam o nový kód", - "sending_code": "Odosielam kód" - }, - "already_have_an_account": "Už máte účet?", - "login": "Prihlásiť sa", - "create_account": "Vytvoriť účet", - "new_to_plane": "Nový v Plane?", - "back_to_sign_in": "Späť na prihlásenie", - "resend_in": "Znova odoslať za {seconds} sekúnd", - "sign_in_with_unique_code": "Prihlásiť sa pomocou jedinečného kódu", - "forgot_password": "Zabudli ste heslo?" - }, - "sign_up": { - "header": { - "label": "Vytvorte účet a začnite spravovať prácu so svojím tímom.", - "step": { - "email": { - "header": "Registrácia", - "sub_header": "" - }, - "password": { - "header": "Registrácia", - "sub_header": "Zaregistrujte sa pomocou kombinácie e-mailu a hesla." - }, - "unique_code": { - "header": "Registrácia", - "sub_header": "Zaregistrujte sa pomocou jedinečného kódu zaslaného na vyššie uvedenú e-mailovú adresu." - } - } - }, - "errors": { - "password": { - "strength": "Skúste nastaviť silné heslo, aby ste mohli pokračovať" - } - } - }, - "sign_in": { - "header": { - "label": "Prihláste sa a začnite spravovať prácu so svojím tímom.", - "step": { - "email": { - "header": "Prihlásiť sa alebo zaregistrovať", - "sub_header": "" - }, - "password": { - "header": "Prihlásiť sa alebo zaregistrovať", - "sub_header": "Použite svoju kombináciu e-mailu a hesla na prihlásenie." - }, - "unique_code": { - "header": "Prihlásiť sa alebo zaregistrovať", - "sub_header": "Prihláste sa pomocou jedinečného kódu zaslaného na vyššie uvedenú e-mailovú adresu." - } - } - } - }, - "forgot_password": { - "title": "Obnovte svoje heslo", - "description": "Zadajte overenú e-mailovú adresu vášho používateľského účtu a my vám zašleme odkaz na obnovenie hesla.", - "email_sent": "Odoslali sme odkaz na obnovenie na vašu e-mailovú adresu", - "send_reset_link": "Odoslať odkaz na obnovenie", - "errors": { - "smtp_not_enabled": "Vidíme, že váš správca neaktivoval SMTP, nebudeme môcť odoslať odkaz na obnovenie hesla" - }, - "toast": { - "success": { - "title": "E-mail odoslaný", - "message": "Skontrolujte si doručenú poštu pre odkaz na obnovenie hesla. Ak sa neobjaví v priebehu niekoľkých minút, skontrolujte si spam." - }, - "error": { - "title": "Chyba!", - "message": "Niečo sa pokazilo. Skúste to prosím znova." - } - } - }, - "reset_password": { - "title": "Nastaviť nové heslo", - "description": "Zabezpečte svoj účet silným heslom" - }, - "set_password": { - "title": "Zabezpečte svoj účet", - "description": "Nastavenie hesla vám pomôže bezpečne sa prihlásiť" - }, - "sign_out": { - "toast": { - "error": { - "title": "Chyba!", - "message": "Nepodarilo sa odhlásiť. Skúste to prosím znova." - } - } - } - }, - "submit": "Odoslať", - "cancel": "Zrušiť", - "loading": "Načítavanie", - "error": "Chyba", - "success": "Úspech", - "warning": "Varovanie", - "info": "Informácia", - "close": "Zatvoriť", - "yes": "Áno", - "no": "Nie", - "ok": "OK", - "name": "Názov", - "description": "Popis", - "search": "Hľadať", - "add_member": "Pridať člena", - "adding_members": "Pridávanie členov", - "remove_member": "Odstrániť člena", - "add_members": "Pridať členov", - "adding_member": "Pridávanie členov", - "remove_members": "Odstrániť členov", - "add": "Pridať", - "adding": "Pridávanie", - "remove": "Odstrániť", - "add_new": "Pridať nový", - "remove_selected": "Odstrániť vybrané", - "first_name": "Krstné meno", - "last_name": "Priezvisko", - "email": "E-mail", - "display_name": "Zobrazované meno", - "role": "Rola", - "timezone": "Časové pásmo", - "avatar": "Profilový obrázok", - "cover_image": "Úvodný obrázok", - "password": "Heslo", - "change_cover": "Zmeniť úvodný obrázok", - "language": "Jazyk", - "saving": "Ukladanie", - "save_changes": "Uložiť zmeny", - "deactivate_account": "Deaktivovať účet", - "deactivate_account_description": "Pri deaktivácii účtu budú všetky dáta a prostriedky v rámci tohto účtu trvalo odstránené a nedajú sa obnoviť.", - "profile_settings": "Nastavenia profilu", - "your_account": "Váš účet", - "security": "Zabezpečenie", - "activity": "Aktivita", - "appearance": "Vzhľad", - "notifications": "Oznámenia", - "workspaces": "Pracovné priestory", - "create_workspace": "Vytvoriť pracovný priestor", - "invitations": "Pozvánky", - "summary": "Zhrnutie", - "assigned": "Priradené", - "created": "Vytvorené", - "subscribed": "Odobierané", - "you_do_not_have_the_permission_to_access_this_page": "Nemáte oprávnenie na prístup k tejto stránke.", - "something_went_wrong_please_try_again": "Niečo sa pokazilo. Skúste to prosím znova.", - "load_more": "Načítať viac", - "select_or_customize_your_interface_color_scheme": "Vyberte alebo prispôsobte farebnú schému rozhrania.", - "theme": "Téma", - "system_preference": "Systémové predvoľby", - "light": "Svetlé", - "dark": "Tmavé", - "light_contrast": "Svetlý vysoký kontrast", - "dark_contrast": "Tmavý vysoký kontrast", - "custom": "Vlastná téma", - "select_your_theme": "Vyberte tému", - "customize_your_theme": "Prispôsobte si tému", - "background_color": "Farba pozadia", - "text_color": "Farba textu", - "primary_color": "Hlavná farba (téma)", - "sidebar_background_color": "Farba pozadia bočného panela", - "sidebar_text_color": "Farba textu bočného panela", - "set_theme": "Nastaviť tému", - "enter_a_valid_hex_code_of_6_characters": "Zadajte platný hexadecimálny kód so 6 znakmi", - "background_color_is_required": "Farba pozadia je povinná", - "text_color_is_required": "Farba textu je povinná", - "primary_color_is_required": "Hlavná farba je povinná", - "sidebar_background_color_is_required": "Farba pozadia bočného panela je povinná", - "sidebar_text_color_is_required": "Farba textu bočného panela je povinná", - "updating_theme": "Aktualizácia témy", - "theme_updated_successfully": "Téma bola úspešne aktualizovaná", - "failed_to_update_the_theme": "Aktualizácia témy zlyhala", - "email_notifications": "E-mailové oznámenia", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Majte prehľad o pracovných položkách, ktoré odoberáte. Aktivujte toto pre zasielanie oznámení.", - "email_notification_setting_updated_successfully": "Nastavenie e-mailových oznámení bolo úspešne aktualizované", - "failed_to_update_email_notification_setting": "Aktualizácia nastavenia e-mailových oznámení zlyhala", - "notify_me_when": "Upozorniť ma, keď", - "property_changes": "Zmeny vlastností", - "property_changes_description": "Upozorniť ma, keď sa zmenia vlastnosti pracovných položiek ako priradenie, priorita, odhady alebo čokoľvek iné.", - "state_change": "Zmena stavu", - "state_change_description": "Upozorniť ma, keď sa pracovná položka presunie do iného stavu", - "issue_completed": "Pracovná položka dokončená", - "issue_completed_description": "Upozorniť ma iba pri dokončení pracovnej položky", - "comments": "Komentáre", - "comments_description": "Upozorniť ma, keď niekto pridá komentár k pracovnej položke", - "mentions": "Zmienky", - "mentions_description": "Upozorniť ma iba, keď ma niekto spomenie v komentároch alebo popise", - "old_password": "Staré heslo", - "general_settings": "Všeobecné nastavenia", - "sign_out": "Odhlásiť sa", - "signing_out": "Odhlasovanie", - "active_cycles": "Aktívne cykly", - "active_cycles_description": "Sledujte cykly naprieč projektmi, monitorujte vysoko prioritné pracovné položky a zamerajte sa na cykly vyžadujúce pozornosť.", - "on_demand_snapshots_of_all_your_cycles": "Okamžité snapshoty všetkých vašich cyklov", - "upgrade": "Upgradovať", - "10000_feet_view": "Pohľad z výšky 10 000 stôp na všetky aktívne cykly.", - "10000_feet_view_description": "Priblížte si všetky prebiehajúce cykly naprieč všetkými projektmi naraz, namiesto prepínania medzi cyklami v každom projekte.", - "get_snapshot_of_each_active_cycle": "Získajte snapshot každého aktívneho cyklu.", - "get_snapshot_of_each_active_cycle_description": "Sledujte kľúčové metriky pre všetky aktívne cykly, zistite ich priebeh a porovnajte rozsah s termínmi.", - "compare_burndowns": "Porovnajte burndowny.", - "compare_burndowns_description": "Sledujte výkonnosť tímov prostredníctvom prehľadu burndown reportov každého cyklu.", - "quickly_see_make_or_break_issues": "Rýchlo zistite kľúčové pracovné položky.", - "quickly_see_make_or_break_issues_description": "Pozrite si vysoko prioritné pracovné položky pre každý cyklus vzhľadom na termíny. Zobrazte všetky jedným kliknutím.", - "zoom_into_cycles_that_need_attention": "Zamerajte sa na cykly vyžadujúce pozornosť.", - "zoom_into_cycles_that_need_attention_description": "Preskúmajte stav akéhokoľvek cyklu, ktorý nespĺňa očakávania, jedným kliknutím.", - "stay_ahead_of_blockers": "Buďte o krok pred prekážkami.", - "stay_ahead_of_blockers_description": "Identifikujte problémy medzi projektmi a zistite závislosti medzi cyklami, ktoré nie sú z iných pohľadov zrejmé.", - "analytics": "Analytika", - "workspace_invites": "Pozvánky do pracovného priestoru", - "enter_god_mode": "Vstúpiť do božského režimu", - "workspace_logo": "Logo pracovného priestoru", - "new_issue": "Nová pracovná položka", - "your_work": "Vaša práca", - "drafts": "Koncepty", - "projects": "Projekty", - "views": "Pohľady", - "workspace": "Pracovný priestor", - "archives": "Archívy", - "settings": "Nastavenia", - "failed_to_move_favorite": "Presunutie obľúbeného zlyhalo", - "favorites": "Obľúbené", - "no_favorites_yet": "Zatiaľ žiadne obľúbené", - "create_folder": "Vytvoriť priečinok", - "new_folder": "Nový priečinok", - "favorite_updated_successfully": "Obľúbené bolo úspešne aktualizované", - "favorite_created_successfully": "Obľúbené bolo úspešne vytvorené", - "folder_already_exists": "Priečinok už existuje", - "folder_name_cannot_be_empty": "Názov priečinka nemôže byť prázdny", - "something_went_wrong": "Niečo sa pokazilo", - "failed_to_reorder_favorite": "Zmena poradia obľúbeného zlyhala", - "favorite_removed_successfully": "Obľúbené bolo úspešne odstránené", - "failed_to_create_favorite": "Vytvorenie obľúbeného zlyhalo", - "failed_to_rename_favorite": "Premenovanie obľúbeného zlyhalo", - "project_link_copied_to_clipboard": "Odkaz na projekt bol skopírovaný do schránky", - "link_copied": "Odkaz skopírovaný", - "add_project": "Pridať projekt", - "create_project": "Vytvoriť projekt", - "failed_to_remove_project_from_favorites": "Nepodarilo sa odstrániť projekt z obľúbených. Skúste to prosím znova.", - "project_created_successfully": "Projekt bol úspešne vytvorený", - "project_created_successfully_description": "Projekt bol úspešne vytvorený. Teraz môžete začať pridávať pracovné položky.", - "project_name_already_taken": "Názov projektu je už použitý.", - "project_identifier_already_taken": "Identifikátor projektu je už použitý.", - "project_cover_image_alt": "Úvodný obrázok projektu", - "name_is_required": "Názov je povinný", - "title_should_be_less_than_255_characters": "Názov by mal byť kratší ako 255 znakov", - "project_name": "Názov projektu", - "project_id_must_be_at_least_1_character": "ID projektu musí mať aspoň 1 znak", - "project_id_must_be_at_most_5_characters": "ID projektu môže mať maximálne 5 znakov", - "project_id": "ID projektu", - "project_id_tooltip_content": "Pomáha jednoznačne identifikovať pracovné položky v projekte. Max. 5 znakov.", - "description_placeholder": "Popis", - "only_alphanumeric_non_latin_characters_allowed": "Sú povolené iba alfanumerické a nelatinské znaky.", - "project_id_is_required": "ID projektu je povinné", - "project_id_allowed_char": "Sú povolené iba alfanumerické a nelatinské znaky.", - "project_id_min_char": "ID projektu musí mať aspoň 1 znak", - "project_id_max_char": "ID projektu môže mať maximálne 5 znakov", - "project_description_placeholder": "Zadajte popis projektu", - "select_network": "Vybrať sieť", - "lead": "Vedúci", - "date_range": "Rozsah dát", - "private": "Súkromný", - "public": "Verejný", - "accessible_only_by_invite": "Prístupné iba na pozvanie", - "anyone_in_the_workspace_except_guests_can_join": "Ktokoľvek v pracovnom priestore okrem hostí sa môže pripojiť", - "creating": "Vytváranie", - "creating_project": "Vytváranie projektu", - "adding_project_to_favorites": "Pridávanie projektu do obľúbených", - "project_added_to_favorites": "Projekt pridaný do obľúbených", - "couldnt_add_the_project_to_favorites": "Nepodarilo sa pridať projekt do obľúbených. Skúste to prosím znova.", - "removing_project_from_favorites": "Odstraňovanie projektu z obľúbených", - "project_removed_from_favorites": "Projekt odstránený z obľúbených", - "couldnt_remove_the_project_from_favorites": "Nepodarilo sa odstrániť projekt z obľúbených. Skúste to prosím znova.", - "add_to_favorites": "Pridať do obľúbených", - "remove_from_favorites": "Odstrániť z obľúbených", - "publish_project": "Publikovať projekt", - "publish": "Publikovať", - "copy_link": "Kopírovať odkaz", - "leave_project": "Opustiť projekt", - "join_the_project_to_rearrange": "Pripojte sa k projektu pre zmenu usporiadania", - "drag_to_rearrange": "Pretiahnite pre usporiadanie", - "congrats": "Gratulujeme!", - "open_project": "Otvoriť projekt", - "issues": "Pracovné položky", - "cycles": "Cykly", - "modules": "Moduly", - "pages": "Stránky", - "intake": "Príjem", - "time_tracking": "Sledovanie času", - "work_management": "Správa práce", - "projects_and_issues": "Projekty a pracovné položky", - "projects_and_issues_description": "Aktivujte alebo deaktivujte tieto funkcie v projekte.", - "cycles_description": "Časovo ohraničte prácu podľa projektu a upravte obdobie podľa potreby. Jeden cyklus môže mať 2 týždne, ďalší 1 týždeň.", - "modules_description": "Organizujte prácu do podprojektov s určenými vedúcimi a priradenými osobami.", - "views_description": "Uložte vlastné triedenia, filtre a možnosti zobrazenia alebo ich zdieľajte so svojím tímom.", - "pages_description": "Vytvárajte a upravujte voľne štruktúrovaný obsah – poznámky, dokumenty, čokoľvek.", - "intake_description": "Umožnite nečlenom zdieľať chyby, spätnú väzbu a návrhy bez narušenia vášho pracovného postupu.", - "time_tracking_description": "Zaznamenajte čas strávený na pracovných položkách a projektoch.", - "work_management_description": "Spravujte svoju prácu a projekty jednoducho.", - "documentation": "Dokumentácia", - "message_support": "Kontaktovať podporu", - "contact_sales": "Kontaktovať predaj", - "hyper_mode": "Hyper režim", - "keyboard_shortcuts": "Klávesové skratky", - "whats_new": "Čo je nové?", - "version": "Verzia", - "we_are_having_trouble_fetching_the_updates": "Máme problém s načítaním aktualizácií.", - "our_changelogs": "naše zmenové protokoly", - "for_the_latest_updates": "pre najnovšie aktualizácie.", - "please_visit": "Navštívte", - "docs": "Dokumentáciu", - "full_changelog": "Úplný zmenový protokol", - "support": "Podpora", - "discord": "Discord", - "powered_by_plane_pages": "Poháňa Plane Pages", - "please_select_at_least_one_invitation": "Vyberte aspoň jednu pozvánku.", - "please_select_at_least_one_invitation_description": "Vyberte aspoň jednu pozvánku na pripojenie do pracovného priestoru.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Vidíme, že vás niekto pozval do pracovného priestoru", - "join_a_workspace": "Pripojiť sa k pracovnému priestoru", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Vidíme, že vás niekto pozval do pracovného priestoru", - "join_a_workspace_description": "Pripojiť sa k pracovnému priestoru", - "accept_and_join": "Prijať a pripojiť sa", - "go_home": "Domov", - "no_pending_invites": "Žiadne čakajúce pozvánky", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Tu uvidíte, ak vás niekto pozve do pracovného priestoru", - "back_to_home": "Späť na domovskú stránku", - "workspace_name": "názov-pracovného-priestoru", - "deactivate_your_account": "Deaktivovať váš účet", - "deactivate_your_account_description": "Po deaktivácii nebudete môcť byť priradení k pracovným položkám a nebude vám účtovaný poplatok za pracovný priestor. Na opätovnú aktiváciu účtu budete potrebovať pozvánku do pracovného priestoru na tento e-mail.", - "deactivating": "Deaktivácia", - "confirm": "Potvrdiť", - "confirming": "Potvrdzovanie", - "draft_created": "Koncept vytvorený", - "issue_created_successfully": "Pracovná položka bola úspešne vytvorená", - "draft_creation_failed": "Vytvorenie konceptu zlyhalo", - "issue_creation_failed": "Vytvorenie pracovnej položky zlyhalo", - "draft_issue": "Koncept pracovnej položky", - "issue_updated_successfully": "Pracovná položka bola úspešne aktualizovaná", - "issue_could_not_be_updated": "Aktualizácia pracovnej položky zlyhala", - "create_a_draft": "Vytvoriť koncept", - "save_to_drafts": "Uložiť do konceptov", - "save": "Uložiť", - "update": "Aktualizovať", - "updating": "Aktualizácia", - "create_new_issue": "Vytvoriť novú pracovnú položku", - "editor_is_not_ready_to_discard_changes": "Editor nie je pripravený zahodiť zmeny", - "failed_to_move_issue_to_project": "Presunutie pracovnej položky do projektu zlyhalo", - "create_more": "Vytvoriť viac", - "add_to_project": "Pridať do projektu", - "discard": "Zahodiť", - "duplicate_issue_found": "Nájdená duplicitná pracovná položka", - "duplicate_issues_found": "Nájdené duplicitné pracovné položky", - "no_matching_results": "Žiadne zodpovedajúce výsledky", - "title_is_required": "Názov je povinný", - "title": "Názov", - "state": "Stav", - "priority": "Priorita", - "none": "Žiadna", - "urgent": "Naliehavá", - "high": "Vysoká", - "medium": "Stredná", - "low": "Nízka", - "members": "Členovia", - "assignee": "Priradené", - "assignees": "Priradení", - "you": "Vy", - "labels": "Štítky", - "create_new_label": "Vytvoriť nový štítok", - "start_date": "Dátum začiatku", - "end_date": "Dátum ukončenia", - "due_date": "Termín", - "estimate": "Odhad", - "change_parent_issue": "Zmeniť nadradenú pracovnú položku", - "remove_parent_issue": "Odstrániť nadradenú pracovnú položku", - "add_parent": "Pridať nadradenú", - "loading_members": "Načítavam členov", - "view_link_copied_to_clipboard": "Odkaz na pohľad bol skopírovaný do schránky.", - "required": "Povinné", - "optional": "Voliteľné", - "Cancel": "Zrušiť", - "edit": "Upraviť", - "archive": "Archivovať", - "restore": "Obnoviť", - "open_in_new_tab": "Otvoriť na novej karte", - "delete": "Zmazať", - "deleting": "Mazanie", - "make_a_copy": "Vytvoriť kópiu", - "move_to_project": "Presunúť do projektu", - "good": "Dobrý", - "morning": "ráno", - "afternoon": "popoludnie", - "evening": "večer", - "show_all": "Zobraziť všetko", - "show_less": "Zobraziť menej", - "no_data_yet": "Zatiaľ žiadne dáta", - "syncing": "Synchronizácia", - "add_work_item": "Pridať pracovnú položku", - "advanced_description_placeholder": "Stlačte '/' pre príkazy", - "create_work_item": "Vytvoriť pracovnú položku", - "attachments": "Prílohy", - "declining": "Odmietanie", - "declined": "Odmietnuté", - "decline": "Odmietnuť", - "unassigned": "Nepriradené", - "work_items": "Pracovné položky", - "add_link": "Pridať odkaz", - "points": "Body", - "no_assignee": "Žiadne priradenie", - "no_assignees_yet": "Zatiaľ žiadni priradení", - "no_labels_yet": "Zatiaľ žiadne štítky", - "ideal": "Ideálne", - "current": "Aktuálne", - "no_matching_members": "Žiadni zodpovedajúci členovia", - "leaving": "Opúšťanie", - "removing": "Odstraňovanie", - "leave": "Opustiť", - "refresh": "Obnoviť", - "refreshing": "Obnovovanie", - "refresh_status": "Obnoviť stav", - "prev": "Predchádzajúci", - "next": "Ďalší", - "re_generating": "Znova generovanie", - "re_generate": "Znova generovať", - "re_generate_key": "Znova generovať kľúč", - "export": "Exportovať", - "member": "{count, plural, one{# člen} few{# členovia} other{# členov}}", - "new_password_must_be_different_from_old_password": "Nové heslo musí byť odlišné od starého hesla", - "edited": "Upravené", - "bot": "Bot", - "project_view": { - "sort_by": { - "created_at": "Vytvorené dňa", - "updated_at": "Aktualizované dňa", - "name": "Názov" - } - }, - "toast": { - "success": "Úspech!", - "error": "Chyba!" - }, - "links": { - "toasts": { - "created": { - "title": "Odkaz vytvorený", - "message": "Odkaz bol úspešne vytvorený" - }, - "not_created": { - "title": "Odkaz nebol vytvorený", - "message": "Odkaz sa nepodarilo vytvoriť" - }, - "updated": { - "title": "Odkaz aktualizovaný", - "message": "Odkaz bol úspešne aktualizovaný" - }, - "not_updated": { - "title": "Odkaz nebol aktualizovaný", - "message": "Odkaz sa nepodarilo aktualizovať" - }, - "removed": { - "title": "Odkaz odstránený", - "message": "Odkaz bol úspešne odstránený" - }, - "not_removed": { - "title": "Odkaz nebol odstránený", - "message": "Odkaz sa nepodarilo odstrániť" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Váš sprievodca rýchlym štartom", - "not_right_now": "Teraz nie", - "create_project": { - "title": "Vytvoriť projekt", - "description": "Väčšina vecí začína projektom v Plane.", - "cta": "Začať" - }, - "invite_team": { - "title": "Pozvať tím", - "description": "Spolupracujte s kolegami na tvorbe, dodávkach a správe.", - "cta": "Pozvať ich" - }, - "configure_workspace": { - "title": "Nastavte si svoj pracovný priestor.", - "description": "Aktivujte alebo deaktivujte funkcie alebo choďte ďalej.", - "cta": "Konfigurovať tento priestor" - }, - "personalize_account": { - "title": "Prispôsobte si Plane.", - "description": "Vyberte si obrázok, farby a ďalšie.", - "cta": "Prispôsobiť teraz" - }, - "widgets": { - "title": "Je ticho bez widgetov, zapnite ich", - "description": "Vyzerá to, že všetky vaše widgety sú vypnuté. Zapnite ich\npre lepší zážitok!", - "primary_button": { - "text": "Spravovať widgety" - } - } - }, - "quick_links": { - "empty": "Uložte si odkazy na dôležité veci, ktoré chcete mať po ruke.", - "add": "Pridať rýchly odkaz", - "title": "Rýchly odkaz", - "title_plural": "Rýchle odkazy" - }, - "recents": { - "title": "Nedávne", - "empty": { - "project": "Vaše nedávne projekty sa zobrazia po návšteve.", - "page": "Vaše nedávne stránky sa zobrazia po návšteve.", - "issue": "Vaše nedávne pracovné položky sa zobrazia po návšteve.", - "default": "Zatiaľ nemáte žiadne nedávne položky." - }, - "filters": { - "all": "Všetko", - "projects": "Projekty", - "pages": "Stránky", - "issues": "Pracovné položky" - } - }, - "new_at_plane": { - "title": "Novinky v Plane" - }, - "quick_tutorial": { - "title": "Rýchly tutoriál" - }, - "widget": { - "reordered_successfully": "Widget bol úspešne presunutý.", - "reordering_failed": "Pri presúvaní widgetu došlo k chybe." - }, - "manage_widgets": "Spravovať widgety", - "title": "Domov", - "star_us_on_github": "Ohodnoťte nás na GitHube" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL je neplatná", - "placeholder": "Zadajte alebo vložte URL" - }, - "title": { - "text": "Zobrazovaný názov", - "placeholder": "Ako chcete tento odkaz vidieť" - } - } - }, - "common": { - "all": "Všetko", - "states": "Stavy", - "state": "Stav", - "state_groups": "Skupiny stavov", - "state_group": "Skupina stavov", - "priorities": "Priority", - "priority": "Priorita", - "team_project": "Tímový projekt", - "project": "Projekt", - "cycle": "Cyklus", - "cycles": "Cykly", - "module": "Modul", - "modules": "Moduly", - "labels": "Štítky", - "label": "Štítok", - "assignees": "Priradení", - "assignee": "Priradené", - "created_by": "Vytvoril", - "none": "Žiadne", - "link": "Odkaz", - "estimates": "Odhady", - "estimate": "Odhad", - "created_at": "Vytvorené dňa", - "completed_at": "Dokončené dňa", - "layout": "Rozloženie", - "filters": "Filtre", - "display": "Zobrazenie", - "load_more": "Načítať viac", - "activity": "Aktivita", - "analytics": "Analytika", - "dates": "Dáta", - "success": "Úspech!", - "something_went_wrong": "Niečo sa pokazilo", - "error": { - "label": "Chyba!", - "message": "Došlo k chybe. Skúste to prosím znova." - }, - "group_by": "Zoskupiť podľa", - "epic": "Epika", - "epics": "Epiky", - "work_item": "Pracovná položka", - "work_items": "Pracovné položky", - "sub_work_item": "Podriadená pracovná položka", - "add": "Pridať", - "warning": "Varovanie", - "updating": "Aktualizácia", - "adding": "Pridávanie", - "update": "Aktualizovať", - "creating": "Vytváranie", - "create": "Vytvoriť", - "cancel": "Zrušiť", - "description": "Popis", - "title": "Názov", - "attachment": "Príloha", - "general": "Všeobecné", - "features": "Funkcie", - "automation": "Automatizácia", - "project_name": "Názov projektu", - "project_id": "ID projektu", - "project_timezone": "Časové pásmo projektu", - "created_on": "Vytvorené dňa", - "update_project": "Aktualizovať projekt", - "identifier_already_exists": "Identifikátor už existuje", - "add_more": "Pridať viac", - "defaults": "Predvolené", - "add_label": "Pridať štítok", - "customize_time_range": "Prispôsobiť časový rozsah", - "loading": "Načítavanie", - "attachments": "Prílohy", - "property": "Vlastnosť", - "properties": "Vlastnosti", - "parent": "Nadradený", - "page": "Stránka", - "remove": "Odstrániť", - "archiving": "Archivovanie", - "archive": "Archivovať", - "access": { - "public": "Verejný", - "private": "Súkromný" - }, - "done": "Hotovo", - "sub_work_items": "Podriadené pracovné položky", - "comment": "Komentár", - "workspace_level": "Úroveň pracovného priestoru", - "order_by": { - "label": "Triediť podľa", - "manual": "Manuálne", - "last_created": "Naposledy vytvorené", - "last_updated": "Naposledy aktualizované", - "start_date": "Dátum začiatku", - "due_date": "Termín", - "asc": "Vzostupne", - "desc": "Zostupne", - "updated_on": "Aktualizované dňa" - }, - "sort": { - "asc": "Vzostupne", - "desc": "Zostupne", - "created_on": "Vytvorené dňa", - "updated_on": "Aktualizované dňa" - }, - "comments": "Komentáre", - "updates": "Aktualizácie", - "clear_all": "Vymazať všetko", - "copied": "Skopírované!", - "link_copied": "Odkaz skopírovaný!", - "link_copied_to_clipboard": "Odkaz skopírovaný do schránky", - "copied_to_clipboard": "Odkaz na pracovnú položku bol skopírovaný do schránky", - "is_copied_to_clipboard": "Pracovná položka skopírovaná do schránky", - "no_links_added_yet": "Zatiaľ neboli pridané žiadne odkazy", - "add_link": "Pridať odkaz", - "links": "Odkazy", - "go_to_workspace": "Prejsť do pracovného priestoru", - "progress": "Pokrok", - "optional": "Voliteľné", - "join": "Pripojiť sa", - "go_back": "Späť", - "continue": "Pokračovať", - "resend": "Znova odoslať", - "relations": "Vzťahy", - "errors": { - "default": { - "title": "Chyba!", - "message": "Niečo sa pokazilo. Skúste to prosím znova." - }, - "required": "Toto pole je povinné", - "entity_required": "{entity} je povinná", - "restricted_entity": "{entity} je obmedzený" - }, - "update_link": "Aktualizovať odkaz", - "attach": "Pripojiť", - "create_new": "Vytvoriť nový", - "add_existing": "Pridať existujúci", - "type_or_paste_a_url": "Zadajte alebo vložte URL", - "url_is_invalid": "URL je neplatná", - "display_title": "Zobrazovaný názov", - "link_title_placeholder": "Ako chcete tento odkaz vidieť", - "url": "URL", - "side_peek": "Bočný náhľad", - "modal": "Modálne okno", - "full_screen": "Celá obrazovka", - "close_peek_view": "Zatvoriť náhľad", - "toggle_peek_view_layout": "Prepnúť rozloženie náhľadu", - "options": "Možnosti", - "duration": "Trvanie", - "today": "Dnes", - "week": "Týždeň", - "month": "Mesiac", - "quarter": "Kvartál", - "press_for_commands": "Stlačte '/' pre príkazy", - "click_to_add_description": "Kliknite pre pridanie popisu", - "search": { - "label": "Hľadať", - "placeholder": "Zadajte hľadaný výraz", - "no_matches_found": "Nenašli sa žiadne zhody", - "no_matching_results": "Žiadne zodpovedajúce výsledky" - }, - "actions": { - "edit": "Upraviť", - "make_a_copy": "Vytvoriť kópiu", - "open_in_new_tab": "Otvoriť na novej karte", - "copy_link": "Kopírovať odkaz", - "archive": "Archivovať", - "restore": "Obnoviť", - "delete": "Zmazať", - "remove_relation": "Odstrániť vzťah", - "subscribe": "Odoberať", - "unsubscribe": "Zrušiť odber", - "clear_sorting": "Vymazať triedenie", - "show_weekends": "Zobraziť víkendy", - "enable": "Povoliť", - "disable": "Zakázať" - }, - "name": "Názov", - "discard": "Zahodiť", - "confirm": "Potvrdiť", - "confirming": "Potvrdzovanie", - "read_the_docs": "Prečítajte si dokumentáciu", - "default": "Predvolené", - "active": "Aktívne", - "enabled": "Povolené", - "disabled": "Zakázané", - "mandate": "Mandát", - "mandatory": "Povinné", - "yes": "Áno", - "no": "Nie", - "please_wait": "Prosím čakajte", - "enabling": "Povoľovanie", - "disabling": "Zakazovanie", - "beta": "Beta", - "or": "alebo", - "next": "Ďalej", - "back": "Späť", - "cancelling": "Rušenie", - "configuring": "Konfigurácia", - "clear": "Vymazať", - "import": "Importovať", - "connect": "Pripojiť", - "authorizing": "Autorizácia", - "processing": "Spracovanie", - "no_data_available": "Nie sú k dispozícii žiadne dáta", - "from": "od {name}", - "authenticated": "Overené", - "select": "Vybrať", - "upgrade": "Upgradovať", - "add_seats": "Pridať miesta", - "projects": "Projekty", - "workspace": "Pracovný priestor", - "workspaces": "Pracovné priestory", - "team": "Tím", - "teams": "Tímy", - "entity": "Entita", - "entities": "Entity", - "task": "Úloha", - "tasks": "Úlohy", - "section": "Sekcia", - "sections": "Sekcie", - "edit": "Upraviť", - "connecting": "Pripájanie", - "connected": "Pripojené", - "disconnect": "Odpojiť", - "disconnecting": "Odpájanie", - "installing": "Inštalácia", - "install": "Nainštalovať", - "reset": "Resetovať", - "live": "Živé", - "change_history": "História zmien", - "coming_soon": "Už čoskoro", - "member": "Člen", - "members": "Členovia", - "you": "Vy", - "upgrade_cta": { - "higher_subscription": "Upgradovať na vyššie predplatné", - "talk_to_sales": "Porozprávajte sa s predajom" - }, - "category": "Kategória", - "categories": "Kategórie", - "saving": "Ukladanie", - "save_changes": "Uložiť zmeny", - "delete": "Zmazať", - "deleting": "Mazanie", - "pending": "Čakajúce", - "invite": "Pozvať", - "view": "Zobraziť", - "deactivated_user": "Deaktivovaný používateľ", - "apply": "Použiť", - "applying": "Používanie", - "users": "Používatelia", - "admins": "Administrátori", - "guests": "Hostia", - "on_track": "Na správnej ceste", - "off_track": "Mimo plán", - "at_risk": "V ohrození", - "timeline": "Časová os", - "completion": "Dokončenie", - "upcoming": "Nadchádzajúce", - "completed": "Dokončené", - "in_progress": "Prebieha", - "planned": "Plánované", - "paused": "Pozastavené", - "no_of": "Počet {entity}", - "resolved": "Vyriešené" - }, - "chart": { - "x_axis": "Os X", - "y_axis": "Os Y", - "metric": "Metrika" - }, - "form": { - "title": { - "required": "Názov je povinný", - "max_length": "Názov by mal byť kratší ako {length} znakov" - } - }, - "entity": { - "grouping_title": "Zoskupenie {entity}", - "priority": "Priorita {entity}", - "all": "Všetky {entity}", - "drop_here_to_move": "Pretiahnite sem pre presunutie {entity}", - "delete": { - "label": "Zmazať {entity}", - "success": "{entity} bola úspešne zmazaná", - "failed": "Mazanie {entity} zlyhalo" - }, - "update": { - "failed": "Aktualizácia {entity} zlyhala", - "success": "{entity} bola úspešne aktualizovaná" - }, - "link_copied_to_clipboard": "Odkaz na {entity} bol skopírovaný do schránky", - "fetch": { - "failed": "Chyba pri načítaní {entity}" - }, - "add": { - "success": "{entity} bola úspešne pridaná", - "failed": "Chyba pri pridávaní {entity}" - }, - "remove": { - "success": "{entity} bola úspešne odstránená", - "failed": "Chyba pri odstrávaní {entity}" - } - }, - "epic": { - "all": "Všetky epiky", - "label": "{count, plural, one {Epika} few {Epiky} other {Epík}}", - "new": "Nová epika", - "adding": "Pridávam epiku", - "create": { - "success": "Epika bola úspešne vytvorená" - }, - "add": { - "press_enter": "Pre pridanie ďalšej epiky stlačte 'Enter'", - "label": "Pridať epiku" - }, - "title": { - "label": "Názov epiky", - "required": "Názov epiky je povinný." - } - }, - "issue": { - "label": "{count, plural, one {Pracovná položka} few {Pracovné položky} other {Pracovných položiek}}", - "all": "Všetky pracovné položky", - "edit": "Upraviť pracovnú položku", - "title": { - "label": "Názov pracovnej položky", - "required": "Názov pracovnej položky je povinný." - }, - "add": { - "press_enter": "Stlačte 'Enter' pre pridanie ďalšej pracovnej položky", - "label": "Pridať pracovnú položku", - "cycle": { - "failed": "Pridanie pracovnej položky do cyklu zlyhalo. Skúste to prosím znova.", - "success": "{count, plural, one {Pracovná položka} few {Pracovné položky} other {Pracovných položiek}} pridaná do cyklu.", - "loading": "Pridávanie {count, plural, one {pracovnej položky} few {pracovných položiek} other {pracovných položiek}} do cyklu" - }, - "assignee": "Pridať priradených", - "start_date": "Pridať dátum začiatku", - "due_date": "Pridať termín", - "parent": "Pridať nadradenú pracovnú položku", - "sub_issue": "Pridať podriadenú pracovnú položku", - "relation": "Pridať vzťah", - "link": "Pridať odkaz", - "existing": "Pridať existujúcu pracovnú položku" - }, - "remove": { - "label": "Odstrániť pracovnú položku", - "cycle": { - "loading": "Odstraňovanie pracovnej položky z cyklu", - "success": "Pracovná položka odstránená z cyklu.", - "failed": "Odstránenie pracovnej položky z cyklu zlyhalo. Skúste to prosím znova." - }, - "module": { - "loading": "Odstraňovanie pracovnej položky z modulu", - "success": "Pracovná položka odstránená z modulu.", - "failed": "Odstránenie pracovnej položky z modulu zlyhalo. Skúste to prosím znova." - }, - "parent": { - "label": "Odstrániť nadradenú pracovnú položku" - } - }, - "new": "Nová pracovná položka", - "adding": "Pridávanie pracovnej položky", - "create": { - "success": "Pracovná položka bola úspešne vytvorená" - }, - "priority": { - "urgent": "Naliehavá", - "high": "Vysoká", - "medium": "Stredná", - "low": "Nízka" - }, - "display": { - "properties": { - "label": "Zobrazované vlastnosti", - "id": "ID", - "issue_type": "Typ pracovnej položky", - "sub_issue_count": "Počet podriadených položiek", - "attachment_count": "Počet príloh", - "created_on": "Vytvorené dňa", - "sub_issue": "Podriadená položka", - "work_item_count": "Počet pracovných položiek" - }, - "extra": { - "show_sub_issues": "Zobraziť podriadené položky", - "show_empty_groups": "Zobraziť prázdne skupiny" - } - }, - "layouts": { - "ordered_by_label": "Toto rozloženie je triedené podľa", - "list": "Zoznam", - "kanban": "Nástenka", - "calendar": "Kalendár", - "spreadsheet": "Tabuľka", - "gantt": "Časová os", - "title": { - "list": "Zoznamové rozloženie", - "kanban": "Nástenkové rozloženie", - "calendar": "Kalendárové rozloženie", - "spreadsheet": "Tabuľkové rozloženie", - "gantt": "Rozloženie časovej osi" - } - }, - "states": { - "active": "Aktívne", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Pridať komentár", - "switch": { - "private": "Prepnúť na súkromný komentár", - "public": "Prepnúť na verejný komentár" - }, - "create": { - "success": "Komentár bol úspešne vytvorený", - "error": "Vytvorenie komentára zlyhalo. Skúste to prosím neskôr." - }, - "update": { - "success": "Komentár bol úspešne aktualizovaný", - "error": "Aktualizácia komentára zlyhala. Skúste to prosím neskôr." - }, - "remove": { - "success": "Komentár bol úspešne odstránený", - "error": "Odstránenie komentára zlyhalo. Skúste to prosím neskôr." - }, - "upload": { - "error": "Nahratie prílohy zlyhalo. Skúste to prosím neskôr." - }, - "copy_link": { - "success": "Odkaz na komentár bol skopírovaný do schránky", - "error": "Chyba pri kopírovaní odkazu na komentár. Skúste to prosím neskôr." - } - }, - "empty_state": { - "issue_detail": { - "title": "Pracovná položka neexistuje", - "description": "Pracovná položka, ktorú hľadáte, neexistuje, bola archivovaná alebo zmazaná.", - "primary_button": { - "text": "Zobraziť ďalšie pracovné položky" - } - } - }, - "sibling": { - "label": "Súvisiace pracovné položky" - }, - "archive": { - "description": "Archivovať je možné iba dokončené alebo zrušené\npracovné položky", - "label": "Archivovať pracovnú položku", - "confirm_message": "Naozaj chcete archivovať túto pracovnú položku? Všetky archivované položky je možné neskôr obnoviť.", - "success": { - "label": "Archivácia úspešná", - "message": "Vaše archívy nájdete v archívoch projektu." - }, - "failed": { - "message": "Archivácia pracovnej položky zlyhala. Skúste to prosím znova." - } - }, - "restore": { - "success": { - "title": "Obnovenie úspešné", - "message": "Vaša pracovná položka je na nájdenie v pracovných položkách projektu." - }, - "failed": { - "message": "Obnovenie pracovnej položky zlyhalo. Skúste to prosím znova." - } - }, - "relation": { - "relates_to": "Súvisiace s", - "duplicate": "Duplikát", - "blocked_by": "Blokované", - "blocking": "Blokujúce" - }, - "copy_link": "Kopírovať odkaz na pracovnú položku", - "delete": { - "label": "Zmazať pracovnú položku", - "error": "Chyba pri mazaní pracovnej položky" - }, - "subscription": { - "actions": { - "subscribed": "Pracovná položka úspešne prihlásená na odber", - "unsubscribed": "Odber pracovnej položky zrušený" - } - }, - "select": { - "error": "Vyberte aspoň jednu pracovnú položku", - "empty": "Nie sú vybrané žiadne pracovné položky", - "add_selected": "Pridať vybrané pracovné položky", - "select_all": "Vybrať všetko", - "deselect_all": "Zrušiť výber všetkého" - }, - "open_in_full_screen": "Otvoriť pracovnú položku na celú obrazovku" - }, - "attachment": { - "error": "Súbor sa nedá pripojiť. Skúste to prosím znova.", - "only_one_file_allowed": "Je možné nahrať iba jeden súbor naraz.", - "file_size_limit": "Súbor musí byť menší ako {size}MB.", - "drag_and_drop": "Pretiahnite súbor kamkoľvek pre nahratie", - "delete": "Zmazať prílohu" - }, - "label": { - "select": "Vybrať štítok", - "create": { - "success": "Štítok bol úspešne vytvorený", - "failed": "Vytvorenie štítka zlyhalo", - "already_exists": "Štítok už existuje", - "type": "Zadajte pre vytvorenie nového štítka" - } - }, - "sub_work_item": { - "update": { - "success": "Podriadená pracovná položka bola úspešne aktualizovaná", - "error": "Chyba pri aktualizácii podriadenej položky" - }, - "remove": { - "success": "Podriadená pracovná položka bola úspešne odstránená", - "error": "Chyba pri odstraňovaní podriadenej položky" - }, - "empty_state": { - "sub_list_filters": { - "title": "Nemáte podriadené pracovné položky, ktoré zodpovedajú použitým filtrom.", - "description": "Pre zobrazenie všetkých podriadených pracovných položiek vymažte všetky použité filtre.", - "action": "Vymazať filtre" - }, - "list_filters": { - "title": "Nemáte pracovné položky, ktoré zodpovedajú použitým filtrom.", - "description": "Pre zobrazenie všetkých pracovných položiek vymažte všetky použité filtre.", - "action": "Vymazať filtre" - } - } - }, - "view": { - "label": "{count, plural, one {Pohľad} few {Pohľady} other {Pohľadov}}", - "create": { - "label": "Vytvoriť pohľad" - }, - "update": { - "label": "Aktualizovať pohľad" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Čakajúce", - "description": "Čakajúce" - }, - "declined": { - "title": "Odmietnuté", - "description": "Odmietnuté" - }, - "snoozed": { - "title": "Odložené", - "description": "Zostáva {days, plural, one{# deň} few{# dni} other{# dní}}" - }, - "accepted": { - "title": "Prijaté", - "description": "Prijaté" - }, - "duplicate": { - "title": "Duplikát", - "description": "Duplikát" - } - }, - "modals": { - "decline": { - "title": "Odmietnuť pracovnú položku", - "content": "Naozaj chcete odmietnuť pracovnú položku {value}?" - }, - "delete": { - "title": "Zmazať pracovnú položku", - "content": "Naozaj chcete zmazať pracovnú položku {value}?", - "success": "Pracovná položka bola úspešne zmazaná" - } - }, - "errors": { - "snooze_permission": "Iba správcovia projektu môžu odkladať/zrušiť odloženie pracovných položiek", - "accept_permission": "Iba správcovia projektu môžu prijímať pracovné položky", - "decline_permission": "Iba správcovia projektu môžu odmietnuť pracovné položky" - }, - "actions": { - "accept": "Prijať", - "decline": "Odmietnuť", - "snooze": "Odložiť", - "unsnooze": "Zrušiť odloženie", - "copy": "Kopírovať odkaz na pracovnú položku", - "delete": "Zmazať", - "open": "Otvoriť pracovnú položku", - "mark_as_duplicate": "Označiť ako duplikát", - "move": "Presunúť {value} do pracovných položiek projektu" - }, - "source": { - "in-app": "v aplikácii" - }, - "order_by": { - "created_at": "Vytvorené dňa", - "updated_at": "Aktualizované dňa", - "id": "ID" - }, - "label": "Príjem", - "page_label": "{workspace} - Príjem", - "modal": { - "title": "Vytvoriť prijatú pracovnú položku" - }, - "tabs": { - "open": "Otvorené", - "closed": "Uzavreté" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Žiadne otvorené pracovné položky", - "description": "Tu nájdete otvorené pracovné položky. Vytvorte novú." - }, - "sidebar_closed_tab": { - "title": "Žiadne uzavreté pracovné položky", - "description": "Všetky prijaté alebo odmietnuté pracovné položky nájdete tu." - }, - "sidebar_filter": { - "title": "Žiadne zodpovedajúce pracovné položky", - "description": "Žiadna položka nezodpovedá filtru v príjme. Vytvorte novú." - }, - "detail": { - "title": "Vyberte pracovnú položku pre zobrazenie detailov." - } - } - }, - "workspace_creation": { - "heading": "Vytvorte si pracovný priestor", - "subheading": "Na používanie Plane musíte vytvoriť alebo sa pripojiť k pracovnému priestoru.", - "form": { - "name": { - "label": "Pomenujte svoj pracovný priestor", - "placeholder": "Vhodné je použiť niečo známe a rozpoznateľné." - }, - "url": { - "label": "Nastavte URL vášho priestoru", - "placeholder": "Zadajte alebo vložte URL", - "edit_slug": "Môžete upraviť iba časť URL (slug)" - }, - "organization_size": { - "label": "Koľko ľudí bude tento priestor používať?", - "placeholder": "Vyberte rozsah" - } - }, - "errors": { - "creation_disabled": { - "title": "Len správca inštancie môže vytvárať pracovné priestory", - "description": "Ak poznáte e-mail správcu inštancie, kliknite na tlačidlo nižšie pre kontakt.", - "request_button": "Požiadať správcu inštancie" - }, - "validation": { - "name_alphanumeric": "Názvy pracovných priestorov môžu obsahovať iba (' '), ('-'), ('_') a alfanumerické znaky.", - "name_length": "Názov je obmedzený na 80 znakov.", - "url_alphanumeric": "URL môžu obsahovať iba ('-') a alfanumerické znaky.", - "url_length": "URL je obmedzená na 48 znakov.", - "url_already_taken": "URL pracovného priestoru je už obsadená!" - } - }, - "request_email": { - "subject": "Žiadosť o nový pracovný priestor", - "body": "Ahoj správca,\n\nProsím, vytvor nový pracovný priestor s URL [/workspace-name] pre [účel vytvorenia].\n\nVďaka,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Vytvoriť pracovný priestor", - "loading": "Vytváranie pracovného priestoru" - }, - "toast": { - "success": { - "title": "Úspech", - "message": "Pracovný priestor bol úspešne vytvorený" - }, - "error": { - "title": "Chyba", - "message": "Vytvorenie pracovného priestoru zlyhalo. Skúste to prosím znova." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Prehľad projektov, aktivít a metrík", - "description": "Vitajte v Plane, teší nás, že ste tu. Vytvorte prvý projekt, sledujte pracovné položky a táto stránka sa zmení na priestor pre váš pokrok. Správcovia tu uvidia aj položky pomáhajúce tímu.", - "primary_button": { - "text": "Vytvorte prvý projekt", - "comic": { - "title": "Všetko začína projektom v Plane", - "description": "Projektom môže byť roadmapa produktu, marketingová kampaň alebo uvedenie nového auta." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analytika", - "page_label": "{workspace} - Analytika", - "open_tasks": "Celkovo otvorených úloh", - "error": "Pri načítaní dát došlo k chybe.", - "work_items_closed_in": "Pracovné položky uzavreté v", - "selected_projects": "Vybrané projekty", - "total_members": "Celkovo členov", - "total_cycles": "Celkovo cyklov", - "total_modules": "Celkovo modulov", - "pending_work_items": { - "title": "Čakajúce pracovné položky", - "empty_state": "Tu sa zobrazí analýza čakajúcich položiek podľa spolupracovníkov." - }, - "work_items_closed_in_a_year": { - "title": "Pracovné položky uzavreté v roku", - "empty_state": "Uzatvárajte položky, aby ste videli analýzu stavov v grafe." - }, - "most_work_items_created": { - "title": "Najviac vytvorených položiek", - "empty_state": "Zobrazia sa spolupracovníci a počet nimi vytvorených položiek." - }, - "most_work_items_closed": { - "title": "Najviac uzavretých položiek", - "empty_state": "Zobrazia sa spolupracovníci a počet nimi uzavretých položiek." - }, - "tabs": { - "scope_and_demand": "Rozsah a dopyt", - "custom": "Vlastná analytika" - }, - "empty_state": { - "customized_insights": { - "description": "Pracovné položky priradené vám, rozdelené podľa stavu, sa zobrazia tu.", - "title": "Zatiaľ žiadne údaje" - }, - "created_vs_resolved": { - "description": "Pracovné položky vytvorené a vyriešené v priebehu času sa zobrazia tu.", - "title": "Zatiaľ žiadne údaje" - }, - "project_insights": { - "title": "Zatiaľ žiadne údaje", - "description": "Pracovné položky priradené vám, rozdelené podľa stavu, sa zobrazia tu." - }, - "general": { - "title": "Sledujte pokrok, pracovné zaťaženie a alokácie. Identifikujte trendy, odstráňte prekážky a urýchlite prácu", - "description": "Porovnávajte rozsah s dopytom, odhady a rozširovanie rozsahu. Získajte výkonnosť podľa členov tímu a tímov, a uistite sa, že váš projekt beží načas.", - "primary_button": { - "text": "Začnite svoj prvý projekt", - "comic": { - "title": "Analytika funguje najlepšie s Cyklami + Modulmi", - "description": "Najprv časovo ohraničte svoje problémy do Cyklov a, ak môžete, zoskupte problémy, ktoré trvajú viac ako jeden cyklus, do Modulov. Pozrite si oboje v ľavej navigácii." - } - } - } - }, - "created_vs_resolved": "Vytvorené vs Vyriešené", - "customized_insights": "Prispôsobené prehľady", - "backlog_work_items": "{entity} v backlogu", - "active_projects": "Aktívne projekty", - "trend_on_charts": "Trend na grafoch", - "all_projects": "Všetky projekty", - "summary_of_projects": "Súhrn projektov", - "project_insights": "Prehľad projektu", - "started_work_items": "Spustené {entity}", - "total_work_items": "Celkový počet {entity}", - "total_projects": "Celkový počet projektov", - "total_admins": "Celkový počet administrátorov", - "total_users": "Celkový počet používateľov", - "total_intake": "Celkový príjem", - "un_started_work_items": "Nespustené {entity}", - "total_guests": "Celkový počet hostí", - "completed_work_items": "Dokončené {entity}", - "total": "Celkový počet {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Projekt} few {Projekty} other {Projektov}}", - "create": { - "label": "Pridať projekt" - }, - "network": { - "label": "Sieť", - "private": { - "title": "Súkromný", - "description": "Prístupné iba na pozvanie" - }, - "public": { - "title": "Verejný", - "description": "Ktokoľvek v priestore okrem hostí sa môže pripojiť" - } - }, - "error": { - "permission": "Nemáte oprávnenie na túto akciu.", - "cycle_delete": "Odstránenie cyklu zlyhalo", - "module_delete": "Odstránenie modulu zlyhalo", - "issue_delete": "Odstránenie pracovnej položky zlyhalo" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Nezačaté", - "started": "Začaté", - "completed": "Dokončené", - "cancelled": "Zrušené" - }, - "sort": { - "manual": "Manuálne", - "name": "Názov", - "created_at": "Dátum vytvorenia", - "members_length": "Počet členov" - }, - "scope": { - "my_projects": "Moje projekty", - "archived_projects": "Archivované" - }, - "common": { - "months_count": "{months, plural, one{# mesiac} few{# mesiace} other{# mesiacov}}" - }, - "empty_state": { - "general": { - "title": "Žiadne aktívne projekty", - "description": "Projekt je nadradený cieľom. Projekty obsahujú Úlohy, Cykly a Moduly. Vytvorte nový alebo filtrujte archivované.", - "primary_button": { - "text": "Začnite prvý projekt", - "comic": { - "title": "Všetko začína projektom v Plane", - "description": "Projektom môže byť roadmapa produktu, marketingová kampaň alebo uvedenie nového auta." - } - } - }, - "no_projects": { - "title": "Žiadne projekty", - "description": "Na vytváranie pracovných položiek potrebujete vytvoriť alebo byť súčasťou projektu.", - "primary_button": { - "text": "Začnite prvý projekt", - "comic": { - "title": "Všetko začína projektom v Plane", - "description": "Projektom môže byť roadmapa produktu, marketingová kampaň alebo uvedenie nového auta." - } - } - }, - "filter": { - "title": "Žiadne zodpovedajúce projekty", - "description": "Nenašli sa projekty zodpovedajúce kritériám. \n Vytvorte nový." - }, - "search": { - "description": "Nenašli sa projekty zodpovedajúce kritériám.\nVytvorte nový." - } - } - }, - "workspace_views": { - "add_view": "Pridať pohľad", - "empty_state": { - "all-issues": { - "title": "Žiadne pracovné položky v projekte", - "description": "Vytvorte prvú položku a sledujte svoj pokrok!", - "primary_button": { - "text": "Vytvoriť pracovnú položku" - } - }, - "assigned": { - "title": "Žiadne priradené položky", - "description": "Tu uvidíte položky priradené vám.", - "primary_button": { - "text": "Vytvoriť pracovnú položku" - } - }, - "created": { - "title": "Žiadne vytvorené položky", - "description": "Tu sú položky, ktoré ste vytvorili.", - "primary_button": { - "text": "Vytvoriť pracovnú položku" - } - }, - "subscribed": { - "title": "Žiadne odoberané položky", - "description": "Prihláste sa na odber položiek, ktoré vás zaujímajú." - }, - "custom-view": { - "title": "Žiadne zodpovedajúce položky", - "description": "Zobrazia sa položky zodpovedajúce filtru." - } - } - }, - "workspace_settings": { - "label": "Nastavenia pracovného priestoru", - "page_label": "{workspace} - Všeobecné nastavenia", - "key_created": "Kľúč vytvorený", - "copy_key": "Skopírujte a uložte tento kľúč do Plane Pages. Po zatvorení ho neuvidíte. CSV súbor s kľúčom bol stiahnutý.", - "token_copied": "Token skopírovaný do schránky.", - "settings": { - "general": { - "title": "Všeobecné", - "upload_logo": "Nahrať logo", - "edit_logo": "Upraviť logo", - "name": "Názov pracovného priestoru", - "company_size": "Veľkosť spoločnosti", - "url": "URL pracovného priestoru", - "update_workspace": "Aktualizovať priestor", - "delete_workspace": "Zmazať tento priestor", - "delete_workspace_description": "Zmazaním priestoru odstránite všetky dáta a zdroje. Akcia je nevratná.", - "delete_btn": "Zmazať priestor", - "delete_modal": { - "title": "Naozaj chcete zmazať tento priestor?", - "description": "Máte aktívnu skúšobnú verziu. Najprv ju zrušte.", - "dismiss": "Zatvoriť", - "cancel": "Zrušiť skúšobnú verziu", - "success_title": "Priestor zmazaný.", - "success_message": "Budete presmerovaný na profil.", - "error_title": "Nepodarilo sa.", - "error_message": "Skúste to prosím znova." - }, - "errors": { - "name": { - "required": "Názov je povinný", - "max_length": "Názov priestoru nesmie presiahnuť 80 znakov" - }, - "company_size": { - "required": "Veľkosť spoločnosti je povinná" - } - } - }, - "members": { - "title": "Členovia", - "add_member": "Pridať člena", - "pending_invites": "Čakajúce pozvánky", - "invitations_sent_successfully": "Pozvánky boli úspešne odoslané", - "leave_confirmation": "Naozaj chcete opustiť priestor? Stratíte prístup. Akcia je nevratná.", - "details": { - "full_name": "Celé meno", - "display_name": "Zobrazované meno", - "email_address": "E-mailová adresa", - "account_type": "Typ účtu", - "authentication": "Overovanie", - "joining_date": "Dátum pripojenia" - }, - "modal": { - "title": "Pozvať spolupracovníkov", - "description": "Pozvite ľudí na spoluprácu.", - "button": "Odoslať pozvánky", - "button_loading": "Odosielanie pozvánok", - "placeholder": "meno@spoločnosť.sk", - "errors": { - "required": "Vyžaduje sa e-mailová adresa.", - "invalid": "E-mail je neplatný" - } - } - }, - "billing_and_plans": { - "title": "Fakturácia a plány", - "current_plan": "Aktuálny plán", - "free_plan": "Používate bezplatný plán", - "view_plans": "Zobraziť plány" - }, - "exports": { - "title": "Exporty", - "exporting": "Exportovanie", - "previous_exports": "Predchádzajúce exporty", - "export_separate_files": "Exportovať dáta do samostatných súborov", - "modal": { - "title": "Exportovať do", - "toasts": { - "success": { - "title": "Export úspešný", - "message": "Exportované {entity} si môžete stiahnuť z predchádzajúceho exportu." - }, - "error": { - "title": "Export zlyhal", - "message": "Skúste to prosím znova." - } - } - } - }, - "webhooks": { - "title": "Webhooky", - "add_webhook": "Pridať webhook", - "modal": { - "title": "Vytvoriť webhook", - "details": "Detaily webhooku", - "payload": "URL pre payload", - "question": "Ktoré udalosti majú spustiť tento webhook?", - "error": "URL je povinná" - }, - "secret_key": { - "title": "Tajný kľúč", - "message": "Vygenerujte token na prihlásenie k webhooku" - }, - "options": { - "all": "Posielať všetko", - "individual": "Vybrať jednotlivé udalosti" - }, - "toasts": { - "created": { - "title": "Webhook vytvorený", - "message": "Webhook bol úspešne vytvorený" - }, - "not_created": { - "title": "Webhook nebol vytvorený", - "message": "Vytvorenie webhooku zlyhalo" - }, - "updated": { - "title": "Webhook aktualizovaný", - "message": "Webhook bol úspešne aktualizovaný" - }, - "not_updated": { - "title": "Aktualizácia webhooku zlyhala", - "message": "Webhook sa nepodarilo aktualizovať" - }, - "removed": { - "title": "Webhook odstránený", - "message": "Webhook bol úspešne odstránený" - }, - "not_removed": { - "title": "Odstránenie webhooku zlyhalo", - "message": "Webhook sa nepodarilo odstrániť" - }, - "secret_key_copied": { - "message": "Tajný kľúč skopírovaný do schránky." - }, - "secret_key_not_copied": { - "message": "Chyba pri kopírovaní kľúča." - } - } - }, - "api_tokens": { - "title": "API Tokeny", - "add_token": "Pridať API token", - "create_token": "Vytvoriť token", - "never_expires": "Nikdy neexpiruje", - "generate_token": "Generovať token", - "generating": "Generovanie", - "delete": { - "title": "Zmazať API token", - "description": "Aplikácie používajúce tento token stratia prístup. Akcia je nevratná.", - "success": { - "title": "Úspech!", - "message": "Token úspešne zmazaný" - }, - "error": { - "title": "Chyba!", - "message": "Mazanie tokenu zlyhalo" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Žiadne API tokeny", - "description": "Používajte API na integráciu Plane s externými systémami." - }, - "webhooks": { - "title": "Žiadne webhooky", - "description": "Vytvorte webhooky na automatizáciu akcií." - }, - "exports": { - "title": "Žiadne exporty", - "description": "Tu nájdete históriu exportov." - }, - "imports": { - "title": "Žiadne importy", - "description": "Tu nájdete históriu importov." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Vaša práca", - "work": "Práca", - "details": { - "joined_on": "Pripojený dňa", - "time_zone": "Časové pásmo" - }, - "stats": { - "workload": "Vyťaženie", - "overview": "Prehľad", - "created": "Vytvorené položky", - "assigned": "Priradené položky", - "subscribed": "Odobierané položky", - "state_distribution": { - "title": "Položky podľa stavu", - "empty": "Vytvárajte položky pre analýzu stavov." - }, - "priority_distribution": { - "title": "Položky podľa priority", - "empty": "Vytvárajte položky pre analýzu priorít." - }, - "recent_activity": { - "title": "Nedávna aktivita", - "empty": "Nebola nájdená žiadna aktivita.", - "button": "Stiahnuť dnešnú aktivitu", - "button_loading": "Sťahovanie" - } - }, - "actions": { - "profile": "Profil", - "security": "Zabezpečenie", - "activity": "Aktivita", - "appearance": "Vzhľad", - "notifications": "Oznámenia" - }, - "tabs": { - "summary": "Zhrnutie", - "assigned": "Priradené", - "created": "Vytvorené", - "subscribed": "Odobierané", - "activity": "Aktivita" - }, - "empty_state": { - "activity": { - "title": "Žiadna aktivita", - "description": "Vytvorte pracovnú položku pre začiatok." - }, - "assigned": { - "title": "Žiadne priradené pracovné položky", - "description": "Tu uvidíte priradené pracovné položky." - }, - "created": { - "title": "Žiadne vytvorené pracovné položky", - "description": "Tu sú pracovné položky, ktoré ste vytvorili." - }, - "subscribed": { - "title": "Žiadne odoberané pracovné položky", - "description": "Odobierajte pracovné položky, ktoré vás zaujímajú, a sledujte ich tu." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Zadajte ID projektu", - "please_select_a_timezone": "Vyberte časové pásmo", - "archive_project": { - "title": "Archivovať projekt", - "description": "Archivácia skryje projekt z menu. Prístup zostane cez stránku projektov.", - "button": "Archivovať projekt" - }, - "delete_project": { - "title": "Zmazať projekt", - "description": "Zmazaním projektu odstránite všetky dáta. Akcia je nevratná.", - "button": "Zmazať projekt" - }, - "toast": { - "success": "Projekt aktualizovaný", - "error": "Aktualizácia zlyhala. Skúste to znova." - } - }, - "members": { - "label": "Členovia", - "project_lead": "Vedúci projektu", - "default_assignee": "Predvolené priradenie", - "guest_super_permissions": { - "title": "Udeľovať hosťom prístup ku všetkým položkám:", - "sub_heading": "Hostia uvidia všetky položky v projekte." - }, - "invite_members": { - "title": "Pozvať členov", - "sub_heading": "Pozvite členov do projektu.", - "select_co_worker": "Vybrať spolupracovníka" - } - }, - "states": { - "describe_this_state_for_your_members": "Opíšte tento stav členom.", - "empty_state": { - "title": "Žiadne stavy pre skupinu {groupKey}", - "description": "Vytvorte nový stav" - } - }, - "labels": { - "label_title": "Názov štítka", - "label_title_is_required": "Názov štítka je povinný", - "label_max_char": "Názov štítka nesmie presiahnuť 255 znakov", - "toast": { - "error": "Chyba pri aktualizácii štítka" - } - }, - "estimates": { - "label": "Odhady", - "title": "Povoliť odhady pre môj projekt", - "description": "Pomáhajú vám komunikovať zložitosť a pracovné zaťaženie tímu.", - "no_estimate": "Bez odhadu", - "new": "Nový systém odhadov", - "create": { - "custom": "Vlastné", - "start_from_scratch": "Začať od nuly", - "choose_template": "Vybrať šablónu", - "choose_estimate_system": "Vybrať systém odhadov", - "enter_estimate_point": "Zadať bod odhadu", - "step": "Krok {step} z {total}", - "label": "Vytvoriť odhad" - }, - "toasts": { - "created": { - "success": { - "title": "Bod odhadu vytvorený", - "message": "Bod odhadu bol úspešne vytvorený" - }, - "error": { - "title": "Vytvorenie bodu odhadu zlyhalo", - "message": "Nepodarilo sa vytvoriť nový bod odhadu, skúste to prosím znova." - } - }, - "updated": { - "success": { - "title": "Odhad upravený", - "message": "Bod odhadu bol aktualizovaný vo vašom projekte." - }, - "error": { - "title": "Úprava odhadu zlyhala", - "message": "Nepodarilo sa upraviť odhad, skúste to prosím znova" - } - }, - "enabled": { - "success": { - "title": "Úspech!", - "message": "Odhady boli povolené." - } - }, - "disabled": { - "success": { - "title": "Úspech!", - "message": "Odhady boli zakázané." - }, - "error": { - "title": "Chyba!", - "message": "Odhad sa nepodarilo zakázať. Skúste to prosím znova" - } - } - }, - "validation": { - "min_length": "Bod odhadu musí byť väčší ako 0.", - "unable_to_process": "Nemôžeme spracovať vašu požiadavku, skúste to prosím znova.", - "numeric": "Bod odhadu musí byť číselná hodnota.", - "character": "Bod odhadu musí byť znakovou hodnotou.", - "empty": "Hodnota odhadu nemôže byť prázdna.", - "already_exists": "Hodnota odhadu už existuje.", - "unsaved_changes": "Máte neuložené zmeny. Prosím, uložte ich pred kliknutím na hotovo", - "remove_empty": "Odhad nemôže byť prázdny. Zadajte hodnotu do každého poľa alebo odstráňte prázdne polia." - }, - "systems": { - "points": { - "label": "Body", - "fibonacci": "Fibonacci", - "linear": "Lineárne", - "squares": "Štvorce", - "custom": "Vlastné" - }, - "categories": { - "label": "Kategórie", - "t_shirt_sizes": "Veľkosti tričiek", - "easy_to_hard": "Od jednoduchého po náročné", - "custom": "Vlastné" - }, - "time": { - "label": "Čas", - "hours": "Hodiny" - } - } - }, - "automations": { - "label": "Automatizácie", - "auto-archive": { - "title": "Automaticky archivovať uzavreté položky", - "description": "Plane bude archivovať dokončené alebo zrušené položky.", - "duration": "Archivovať položky uzavreté dlhšie ako" - }, - "auto-close": { - "title": "Automaticky uzatvárať položky", - "description": "Plane uzavrie neaktívne položky.", - "duration": "Uzatvoriť položky neaktívne dlhšie ako", - "auto_close_status": "Stav pre automatické uzatvorenie" - } - }, - "empty_state": { - "labels": { - "title": "Žiadne štítky", - "description": "Vytvárajte štítky na organizáciu položiek." - }, - "estimates": { - "title": "Žiadne systémy odhadov", - "description": "Vytvorte systém odhadov na komunikáciu vyťaženia.", - "primary_button": "Pridať systém odhadov" - } - } - }, - "project_cycles": { - "add_cycle": "Pridať cyklus", - "more_details": "Viac detailov", - "cycle": "Cyklus", - "update_cycle": "Aktualizovať cyklus", - "create_cycle": "Vytvoriť cyklus", - "no_matching_cycles": "Žiadne zodpovedajúce cykly", - "remove_filters_to_see_all_cycles": "Odstráňte filtre pre zobrazenie všetkých cyklov", - "remove_search_criteria_to_see_all_cycles": "Odstráňte kritériá pre zobrazenie všetkých cyklov", - "only_completed_cycles_can_be_archived": "Archivovať je možné iba dokončené cykly", - "start_date": "Dátum začiatku", - "end_date": "Dátum konca", - "in_your_timezone": "Váš časový pásmo", - "transfer_work_items": "Presunúť {count} pracovných položiek", - "date_range": "Dátumový rozsah", - "add_date": "Pridať dátum", - "active_cycle": { - "label": "Aktívny cyklus", - "progress": "Pokrok", - "chart": "Burndown graf", - "priority_issue": "Vysoko prioritné položky", - "assignees": "Priradení", - "issue_burndown": "Burndown pracovných položiek", - "ideal": "Ideálne", - "current": "Aktuálne", - "labels": "Štítky" - }, - "upcoming_cycle": { - "label": "Nadchádzajúci cyklus" - }, - "completed_cycle": { - "label": "Dokončený cyklus" - }, - "status": { - "days_left": "Zostáva dní", - "completed": "Dokončené", - "yet_to_start": "Ešte nezačaté", - "in_progress": "Prebieha", - "draft": "Koncept" - }, - "action": { - "restore": { - "title": "Obnoviť cyklus", - "success": { - "title": "Cyklus obnovený", - "description": "Cyklus bol obnovený." - }, - "failed": { - "title": "Obnovenie zlyhalo", - "description": "Obnovenie cyklu sa nepodarilo." - } - }, - "favorite": { - "loading": "Pridávanie do obľúbených", - "success": { - "description": "Cyklus pridaný do obľúbených.", - "title": "Úspech!" - }, - "failed": { - "description": "Pridanie do obľúbených zlyhalo.", - "title": "Chyba!" - } - }, - "unfavorite": { - "loading": "Odstraňovanie z obľúbených", - "success": { - "description": "Cyklus odstránený z obľúbených.", - "title": "Úspech!" - }, - "failed": { - "description": "Odstránenie zlyhalo.", - "title": "Chyba!" - } - }, - "update": { - "loading": "Aktualizácia cyklu", - "success": { - "description": "Cyklus aktualizovaný.", - "title": "Úspech!" - }, - "failed": { - "description": "Aktualizácia zlyhala.", - "title": "Chyba!" - }, - "error": { - "already_exists": "Cyklus s týmito dátami už existuje. Pre koncept odstráňte dáta." - } - } - }, - "empty_state": { - "general": { - "title": "Zoskupujte prácu do cyklov.", - "description": "Časovo ohraničte prácu, sledujte termíny a robte pokroky.", - "primary_button": { - "text": "Vytvorte prvý cyklus", - "comic": { - "title": "Cykly sú opakované časové obdobia.", - "description": "Sprint, iterácia alebo akékoľvek iné časové obdobie na sledovanie práce." - } - } - }, - "no_issues": { - "title": "Žiadne položky v cykle", - "description": "Pridajte položky, ktoré chcete sledovať.", - "primary_button": { - "text": "Vytvoriť položku" - }, - "secondary_button": { - "text": "Pridať existujúcu položku" - } - }, - "completed_no_issues": { - "title": "Žiadne položky v cykle", - "description": "Položky boli presunuté alebo skryté. Pre zobrazenie upravte vlastnosti." - }, - "active": { - "title": "Žiadny aktívny cyklus", - "description": "Aktívny cyklus zahŕňa dnešný dátum. Sledujte jeho priebeh tu." - }, - "archived": { - "title": "Žiadne archivované cykly", - "description": "Archivujte dokončené cykly pre poriadok." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Vytvorte a priraďte pracovnú položku", - "description": "Položky sú úlohy, ktoré priraďujete sebe alebo tímu. Sledujte ich postup.", - "primary_button": { - "text": "Vytvoriť prvú položku", - "comic": { - "title": "Položky sú stavebnými kameňmi", - "description": "Príklady: Redizajn UI, Rebranding, Nový systém." - } - } - }, - "no_archived_issues": { - "title": "Žiadne archivované položky", - "description": "Archivujte dokončené alebo zrušené položky. Nastavte automatizáciu.", - "primary_button": { - "text": "Nastaviť automatizáciu" - } - }, - "issues_empty_filter": { - "title": "Žiadne zodpovedajúce položky", - "secondary_button": { - "text": "Vymazať filtre" - } - } - } - }, - "project_module": { - "add_module": "Pridať modul", - "update_module": "Aktualizovať modul", - "create_module": "Vytvoriť modul", - "archive_module": "Archivovať modul", - "restore_module": "Obnoviť modul", - "delete_module": "Zmazať modul", - "empty_state": { - "general": { - "title": "Zoskupujte míľniky do modulov.", - "description": "Moduly zoskupujú položky pod logického nadradeného. Sledujte termíny a pokrok.", - "primary_button": { - "text": "Vytvorte prvý modul", - "comic": { - "title": "Moduly zoskupujú hierarchicky.", - "description": "Príklady: Modul košíka, podvozku, skladu." - } - } - }, - "no_issues": { - "title": "Žiadne položky v module", - "description": "Pridajte položky do modulu.", - "primary_button": { - "text": "Vytvoriť položky" - }, - "secondary_button": { - "text": "Pridať existujúcu položku" - } - }, - "archived": { - "title": "Žiadne archivované moduly", - "description": "Archivujte dokončené alebo zrušené moduly." - }, - "sidebar": { - "in_active": "Modul nie je aktívny.", - "invalid_date": "Neplatný dátum. Zadajte platný." - } - }, - "quick_actions": { - "archive_module": "Archivovať modul", - "archive_module_description": "Archivovať je možné iba dokončené/zrušené moduly.", - "delete_module": "Zmazať modul" - }, - "toast": { - "copy": { - "success": "Odkaz na modul bol skopírovaný" - }, - "delete": { - "success": "Modul zmazaný", - "error": "Mazanie zlyhalo" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Ukladajte filtre ako pohľady.", - "description": "Pohľady sú uložené filtre na jednoduchý prístup. Zdieľajte ich v tíme.", - "primary_button": { - "text": "Vytvoriť prvý pohľad", - "comic": { - "title": "Pohľady pracujú s vlastnosťami položiek.", - "description": "Vytvorte pohľad s požadovanými filtrami." - } - } - }, - "filter": { - "title": "Žiadne zodpovedajúce zobrazenia", - "description": "Vytvorte nové zobrazenie." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Píšte poznámky, dokumenty alebo znalostnú bázu. Využite AI Galileo.", - "description": "Stránky sú priestorom pre myšlienky. Píšte, formátujte, vkladajte položky a používajte komponenty.", - "primary_button": { - "text": "Vytvoriť prvú stránku" - } - }, - "private": { - "title": "Žiadne súkromné stránky", - "description": "Uchovávajte súkromné myšlienky. Zdieľajte ich, až budete pripravení.", - "primary_button": { - "text": "Vytvoriť stránku" - } - }, - "public": { - "title": "Žiadne verejné stránky", - "description": "Tu uvidíte stránky zdieľané v projekte.", - "primary_button": { - "text": "Vytvoriť stránku" - } - }, - "archived": { - "title": "Žiadne archivované stránky", - "description": "Archivujte stránky pre neskorší prístup." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Nenašli sa žiadne výsledky" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Žiadne zodpovedajúce položky" - }, - "no_issues": { - "title": "Žiadne položky" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Žiadne komentáre", - "description": "Komentáre slúžia na diskusiu a sledovanie položiek." - } - } - }, - "notification": { - "label": "Schránka", - "page_label": "{workspace} - Schránka", - "options": { - "mark_all_as_read": "Označiť všetko ako prečítané", - "mark_read": "Označiť ako prečítané", - "mark_unread": "Označiť ako neprečítané", - "refresh": "Obnoviť", - "filters": "Filtre schránky", - "show_unread": "Zobraziť neprečítané", - "show_snoozed": "Zobraziť odložené", - "show_archived": "Zobraziť archivované", - "mark_archive": "Archivovať", - "mark_unarchive": "Zrušiť archiváciu", - "mark_snooze": "Odložiť", - "mark_unsnooze": "Zrušiť odloženie" - }, - "toasts": { - "read": "Oznámenie prečítané", - "unread": "Označené ako neprečítané", - "archived": "Archivované", - "unarchived": "Archivácia zrušená", - "snoozed": "Odložené", - "unsnoozed": "Odloženie zrušené" - }, - "empty_state": { - "detail": { - "title": "Vyberte pre podrobnosti." - }, - "all": { - "title": "Žiadne priradené položky", - "description": "Aktualizácie k priradeným položkám sa zobrazia tu." - }, - "mentions": { - "title": "Žiadne zmienky", - "description": "Zobrazia sa tu zmienky o vás." - } - }, - "tabs": { - "all": "Všetko", - "mentions": "Zmienky" - }, - "filter": { - "assigned": "Priradené mne", - "created": "Vytvoril som", - "subscribed": "Odobieram" - }, - "snooze": { - "1_day": "1 deň", - "3_days": "3 dni", - "5_days": "5 dní", - "1_week": "1 týždeň", - "2_weeks": "2 týždne", - "custom": "Vlastné" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Pridajte položky pre sledovanie pokroku" - }, - "chart": { - "title": "Pridajte položky pre zobrazenie burndown grafu." - }, - "priority_issue": { - "title": "Zobrazia sa vysoko prioritné pracovné položky." - }, - "assignee": { - "title": "Priraďte položky pre prehľad priradení." - }, - "label": { - "title": "Pridajte štítky pre analýzu podľa štítkov." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Príjem nie je povolený", - "description": "Aktivujte príjem v nastaveniach projektu pre správu požiadaviek.", - "primary_button": { - "text": "Spravovať funkcie" - } - }, - "cycle": { - "title": "Cykly nie sú povolené", - "description": "Aktivujte cykly pre časové ohraničenie práce.", - "primary_button": { - "text": "Spravovať funkcie" - } - }, - "module": { - "title": "Moduly nie sú povolené", - "description": "Aktivujte moduly v nastaveniach projektu.", - "primary_button": { - "text": "Spravovať funkcie" - } - }, - "page": { - "title": "Stránky nie sú povolené", - "description": "Aktivujte stránky v nastaveniach projektu.", - "primary_button": { - "text": "Spravovať funkcie" - } - }, - "view": { - "title": "Pohľady nie sú povolené", - "description": "Aktivujte pohľady v nastaveniach projektu.", - "primary_button": { - "text": "Spravovať funkcie" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Vytvoriť koncept položky", - "empty_state": { - "title": "Rozpracované položky a komentáre sa zobrazia tu.", - "description": "Začnite vytvárať položku a nechajte ju rozpracovanú.", - "primary_button": { - "text": "Vytvoriť prvý koncept" - } - }, - "delete_modal": { - "title": "Zmazať koncept", - "description": "Naozaj chcete zmazať tento koncept? Akcia je nevratná." - }, - "toasts": { - "created": { - "success": "Koncept vytvorený", - "error": "Vytvorenie zlyhalo" - }, - "deleted": { - "success": "Koncept zmazaný" - } - } - }, - "stickies": { - "title": "Vaše poznámky", - "placeholder": "kliknutím začnite písať", - "all": "Všetky poznámky", - "no-data": "Zapisujte nápady a myšlienky. Pridajte prvú poznámku.", - "add": "Pridať poznámku", - "search_placeholder": "Hľadať podľa názvu", - "delete": "Zmazať poznámku", - "delete_confirmation": "Naozaj chcete zmazať túto poznámku?", - "empty_state": { - "simple": "Zapisujte nápady a myšlienky. Pridajte prvú poznámku.", - "general": { - "title": "Poznámky sú rýchle záznamy.", - "description": "Zapisujte myšlienky a pristupujte k nim odkiaľkoľvek.", - "primary_button": { - "text": "Pridať poznámku" - } - }, - "search": { - "title": "Nenašli sa žiadne poznámky.", - "description": "Skúste iný výraz alebo vytvorte novú.", - "primary_button": { - "text": "Pridať poznámku" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Názov poznámky môže mať max. 100 znakov.", - "already_exists": "Poznámka bez popisu už existuje" - }, - "created": { - "title": "Poznámka vytvorená", - "message": "Poznámka bola úspešne vytvorená" - }, - "not_created": { - "title": "Vytvorenie zlyhalo", - "message": "Poznámku sa nepodarilo vytvoriť" - }, - "updated": { - "title": "Poznámka aktualizovaná", - "message": "Poznámka bola úspešne aktualizovaná" - }, - "not_updated": { - "title": "Aktualizácia zlyhala", - "message": "Poznámku sa nepodarilo aktualizovať" - }, - "removed": { - "title": "Poznámka zmazaná", - "message": "Poznámka bola úspešne zmazaná" - }, - "not_removed": { - "title": "Mazanie zlyhalo", - "message": "Poznámku sa nepodarilo zmazať" - } - } - }, - "role_details": { - "guest": { - "title": "Hosť", - "description": "Externí členovia môžu byť pozvaní ako hostia." - }, - "member": { - "title": "Člen", - "description": "Môže čítať, písať, upravovať a mazať entity." - }, - "admin": { - "title": "Správca", - "description": "Má všetky oprávnenia v priestore." - } - }, - "user_roles": { - "product_or_project_manager": "Produktový/Projektový manažér", - "development_or_engineering": "Vývoj/Inžinierstvo", - "founder_or_executive": "Zakladateľ/Vedenie", - "freelancer_or_consultant": "Freelancer/Konzultant", - "marketing_or_growth": "Marketing/Rast", - "sales_or_business_development": "Predaj/Business Development", - "support_or_operations": "Podpora/Operácie", - "student_or_professor": "Študent/Profesor", - "human_resources": "Ľudské zdroje", - "other": "Iné" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Importujte položky z repozitárov GitHub." - }, - "jira": { - "title": "Jira", - "description": "Importujte položky a epiky z Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Exportujte položky do CSV.", - "short_description": "Exportovať ako CSV" - }, - "excel": { - "title": "Excel", - "description": "Exportujte položky do Excelu.", - "short_description": "Exportovať ako Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Exportujte položky do Excelu.", - "short_description": "Exportovať ako Excel" - }, - "json": { - "title": "JSON", - "description": "Exportujte položky do JSON.", - "short_description": "Exportovať ako JSON" - } - }, - "default_global_view": { - "all_issues": "Všetky položky", - "assigned": "Priradené", - "created": "Vytvorené", - "subscribed": "Odobierané" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Systémové predvoľby" - }, - "light": { - "label": "Svetlé" - }, - "dark": { - "label": "Tmavé" - }, - "light_contrast": { - "label": "Svetlý vysoký kontrast" - }, - "dark_contrast": { - "label": "Tmavý vysoký kontrast" - }, - "custom": { - "label": "Vlastná téma" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Plánované", - "in_progress": "Prebieha", - "paused": "Pozastavené", - "completed": "Dokončené", - "cancelled": "Zrušené" - }, - "layout": { - "list": "Zoznam", - "board": "Nástenka", - "timeline": "Časová os" - }, - "order_by": { - "name": "Názov", - "progress": "Pokrok", - "issues": "Počet položiek", - "due_date": "Termín", - "created_at": "Dátum vytvorenia", - "manual": "Manuálne" - } - }, - "cycle": { - "label": "{count, plural, one {Cyklus} few {Cykly} other {Cyklov}}", - "no_cycle": "Žiadny cyklus" - }, - "module": { - "label": "{count, plural, one {Modul} few {Moduly} other {Modulov}}", - "no_module": "Žiadny modul" - }, - "description_versions": { - "last_edited_by": "Naposledy upravené používateľom", - "previously_edited_by": "Predtým upravené používateľom", - "edited_by": "Upravené používateľom" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane sa nespustil. Toto môže byť spôsobené tým, že sa jedna alebo viac služieb Plane nepodarilo spustiť.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Vyberte View Logs z setup.sh a Docker logov, aby ste si boli istí." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Osnova", - "empty_state": { - "title": "Chýbajú nadpisy", - "description": "Pridajme na túto stránku nejaké nadpisy, aby sa tu zobrazili." - } - }, - "info": { - "label": "Info", - "document_info": { - "words": "Slová", - "characters": "Znaky", - "paragraphs": "Odseky", - "read_time": "Čas čítania" - }, - "actors_info": { - "edited_by": "Upravil", - "created_by": "Vytvoril" - }, - "version_history": { - "label": "História verzií", - "current_version": "Aktuálna verzia" - } - }, - "assets": { - "label": "Prílohy", - "download_button": "Stiahnuť", - "empty_state": { - "title": "Chýbajú obrázky", - "description": "Pridajte obrázky, aby sa tu zobrazili." - } - } - }, - "open_button": "Otvoriť navigačný panel", - "close_button": "Zavrieť navigačný panel", - "outline_floating_button": "Otvoriť osnovu" - } -} diff --git a/packages/i18n/src/locales/sk/translations.ts b/packages/i18n/src/locales/sk/translations.ts new file mode 100644 index 0000000000..5b3ec845ca --- /dev/null +++ b/packages/i18n/src/locales/sk/translations.ts @@ -0,0 +1,2562 @@ +export default { + sidebar: { + projects: "Projekty", + pages: "Stránky", + new_work_item: "Nová pracovná položka", + home: "Domov", + your_work: "Vaša práca", + inbox: "Doručená pošta", + workspace: "Pracovný priestor", + views: "Pohľady", + analytics: "Analytika", + work_items: "Pracovné položky", + cycles: "Cykly", + modules: "Moduly", + intake: "Príjem", + drafts: "Koncepty", + favorites: "Obľúbené", + pro: "Pro", + upgrade: "Upgrade", + }, + auth: { + common: { + email: { + label: "E-mail", + placeholder: "meno@spolocnost.sk", + errors: { + required: "E-mail je povinný", + invalid: "E-mail je neplatný", + }, + }, + password: { + label: "Heslo", + set_password: "Nastaviť heslo", + placeholder: "Zadajte heslo", + confirm_password: { + label: "Potvrďte heslo", + placeholder: "Potvrďte heslo", + }, + current_password: { + label: "Aktuálne heslo", + }, + new_password: { + label: "Nové heslo", + placeholder: "Zadajte nové heslo", + }, + change_password: { + label: { + default: "Zmeniť heslo", + submitting: "Mení sa heslo", + }, + }, + errors: { + match: "Heslá sa nezhodujú", + empty: "Zadajte prosím svoje heslo", + length: "Dĺžka hesla by mala byť viac ako 8 znakov", + strength: { + weak: "Heslo je slabé", + strong: "Heslo je silné", + }, + }, + submit: "Nastaviť heslo", + toast: { + change_password: { + success: { + title: "Úspech!", + message: "Heslo bolo úspešne zmenené.", + }, + error: { + title: "Chyba!", + message: "Niečo sa pokazilo. Skúste to prosím znova.", + }, + }, + }, + }, + unique_code: { + label: "Jedinečný kód", + placeholder: "gets-sets-flys", + paste_code: "Vložte kód zaslaný na váš e-mail", + requesting_new_code: "Žiadam o nový kód", + sending_code: "Odosielam kód", + }, + already_have_an_account: "Už máte účet?", + login: "Prihlásiť sa", + create_account: "Vytvoriť účet", + new_to_plane: "Nový v Plane?", + back_to_sign_in: "Späť na prihlásenie", + resend_in: "Znova odoslať za {seconds} sekúnd", + sign_in_with_unique_code: "Prihlásiť sa pomocou jedinečného kódu", + forgot_password: "Zabudli ste heslo?", + }, + sign_up: { + header: { + label: "Vytvorte účet a začnite spravovať prácu so svojím tímom.", + step: { + email: { + header: "Registrácia", + sub_header: "", + }, + password: { + header: "Registrácia", + sub_header: "Zaregistrujte sa pomocou kombinácie e-mailu a hesla.", + }, + unique_code: { + header: "Registrácia", + sub_header: "Zaregistrujte sa pomocou jedinečného kódu zaslaného na vyššie uvedenú e-mailovú adresu.", + }, + }, + }, + errors: { + password: { + strength: "Skúste nastaviť silné heslo, aby ste mohli pokračovať", + }, + }, + }, + sign_in: { + header: { + label: "Prihláste sa a začnite spravovať prácu so svojím tímom.", + step: { + email: { + header: "Prihlásiť sa alebo zaregistrovať", + sub_header: "", + }, + password: { + header: "Prihlásiť sa alebo zaregistrovať", + sub_header: "Použite svoju kombináciu e-mailu a hesla na prihlásenie.", + }, + unique_code: { + header: "Prihlásiť sa alebo zaregistrovať", + sub_header: "Prihláste sa pomocou jedinečného kódu zaslaného na vyššie uvedenú e-mailovú adresu.", + }, + }, + }, + }, + forgot_password: { + title: "Obnovte svoje heslo", + description: + "Zadajte overenú e-mailovú adresu vášho používateľského účtu a my vám zašleme odkaz na obnovenie hesla.", + email_sent: "Odoslali sme odkaz na obnovenie na vašu e-mailovú adresu", + send_reset_link: "Odoslať odkaz na obnovenie", + errors: { + smtp_not_enabled: "Vidíme, že váš správca neaktivoval SMTP, nebudeme môcť odoslať odkaz na obnovenie hesla", + }, + toast: { + success: { + title: "E-mail odoslaný", + message: + "Skontrolujte si doručenú poštu pre odkaz na obnovenie hesla. Ak sa neobjaví v priebehu niekoľkých minút, skontrolujte si spam.", + }, + error: { + title: "Chyba!", + message: "Niečo sa pokazilo. Skúste to prosím znova.", + }, + }, + }, + reset_password: { + title: "Nastaviť nové heslo", + description: "Zabezpečte svoj účet silným heslom", + }, + set_password: { + title: "Zabezpečte svoj účet", + description: "Nastavenie hesla vám pomôže bezpečne sa prihlásiť", + }, + sign_out: { + toast: { + error: { + title: "Chyba!", + message: "Nepodarilo sa odhlásiť. Skúste to prosím znova.", + }, + }, + }, + }, + submit: "Odoslať", + cancel: "Zrušiť", + loading: "Načítavanie", + error: "Chyba", + success: "Úspech", + warning: "Varovanie", + info: "Informácia", + close: "Zatvoriť", + yes: "Áno", + no: "Nie", + ok: "OK", + name: "Názov", + description: "Popis", + search: "Hľadať", + add_member: "Pridať člena", + adding_members: "Pridávanie členov", + remove_member: "Odstrániť člena", + add_members: "Pridať členov", + adding_member: "Pridávanie členov", + remove_members: "Odstrániť členov", + add: "Pridať", + adding: "Pridávanie", + remove: "Odstrániť", + add_new: "Pridať nový", + remove_selected: "Odstrániť vybrané", + first_name: "Krstné meno", + last_name: "Priezvisko", + email: "E-mail", + display_name: "Zobrazované meno", + role: "Rola", + timezone: "Časové pásmo", + avatar: "Profilový obrázok", + cover_image: "Úvodný obrázok", + password: "Heslo", + change_cover: "Zmeniť úvodný obrázok", + language: "Jazyk", + saving: "Ukladanie", + save_changes: "Uložiť zmeny", + deactivate_account: "Deaktivovať účet", + deactivate_account_description: + "Pri deaktivácii účtu budú všetky dáta a prostriedky v rámci tohto účtu trvalo odstránené a nedajú sa obnoviť.", + profile_settings: "Nastavenia profilu", + your_account: "Váš účet", + security: "Zabezpečenie", + activity: "Aktivita", + appearance: "Vzhľad", + notifications: "Oznámenia", + workspaces: "Pracovné priestory", + create_workspace: "Vytvoriť pracovný priestor", + invitations: "Pozvánky", + summary: "Zhrnutie", + assigned: "Priradené", + created: "Vytvorené", + subscribed: "Odobierané", + you_do_not_have_the_permission_to_access_this_page: "Nemáte oprávnenie na prístup k tejto stránke.", + something_went_wrong_please_try_again: "Niečo sa pokazilo. Skúste to prosím znova.", + load_more: "Načítať viac", + select_or_customize_your_interface_color_scheme: "Vyberte alebo prispôsobte farebnú schému rozhrania.", + theme: "Téma", + system_preference: "Systémové predvoľby", + light: "Svetlé", + dark: "Tmavé", + light_contrast: "Svetlý vysoký kontrast", + dark_contrast: "Tmavý vysoký kontrast", + custom: "Vlastná téma", + select_your_theme: "Vyberte tému", + customize_your_theme: "Prispôsobte si tému", + background_color: "Farba pozadia", + text_color: "Farba textu", + primary_color: "Hlavná farba (téma)", + sidebar_background_color: "Farba pozadia bočného panela", + sidebar_text_color: "Farba textu bočného panela", + set_theme: "Nastaviť tému", + enter_a_valid_hex_code_of_6_characters: "Zadajte platný hexadecimálny kód so 6 znakmi", + background_color_is_required: "Farba pozadia je povinná", + text_color_is_required: "Farba textu je povinná", + primary_color_is_required: "Hlavná farba je povinná", + sidebar_background_color_is_required: "Farba pozadia bočného panela je povinná", + sidebar_text_color_is_required: "Farba textu bočného panela je povinná", + updating_theme: "Aktualizácia témy", + theme_updated_successfully: "Téma bola úspešne aktualizovaná", + failed_to_update_the_theme: "Aktualizácia témy zlyhala", + email_notifications: "E-mailové oznámenia", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Majte prehľad o pracovných položkách, ktoré odoberáte. Aktivujte toto pre zasielanie oznámení.", + email_notification_setting_updated_successfully: "Nastavenie e-mailových oznámení bolo úspešne aktualizované", + failed_to_update_email_notification_setting: "Aktualizácia nastavenia e-mailových oznámení zlyhala", + notify_me_when: "Upozorniť ma, keď", + property_changes: "Zmeny vlastností", + property_changes_description: + "Upozorniť ma, keď sa zmenia vlastnosti pracovných položiek ako priradenie, priorita, odhady alebo čokoľvek iné.", + state_change: "Zmena stavu", + state_change_description: "Upozorniť ma, keď sa pracovná položka presunie do iného stavu", + issue_completed: "Pracovná položka dokončená", + issue_completed_description: "Upozorniť ma iba pri dokončení pracovnej položky", + comments: "Komentáre", + comments_description: "Upozorniť ma, keď niekto pridá komentár k pracovnej položke", + mentions: "Zmienky", + mentions_description: "Upozorniť ma iba, keď ma niekto spomenie v komentároch alebo popise", + old_password: "Staré heslo", + general_settings: "Všeobecné nastavenia", + sign_out: "Odhlásiť sa", + signing_out: "Odhlasovanie", + active_cycles: "Aktívne cykly", + active_cycles_description: + "Sledujte cykly naprieč projektmi, monitorujte vysoko prioritné pracovné položky a zamerajte sa na cykly vyžadujúce pozornosť.", + on_demand_snapshots_of_all_your_cycles: "Okamžité snapshoty všetkých vašich cyklov", + upgrade: "Upgradovať", + "10000_feet_view": "Pohľad z výšky 10 000 stôp na všetky aktívne cykly.", + "10000_feet_view_description": + "Priblížte si všetky prebiehajúce cykly naprieč všetkými projektmi naraz, namiesto prepínania medzi cyklami v každom projekte.", + get_snapshot_of_each_active_cycle: "Získajte snapshot každého aktívneho cyklu.", + get_snapshot_of_each_active_cycle_description: + "Sledujte kľúčové metriky pre všetky aktívne cykly, zistite ich priebeh a porovnajte rozsah s termínmi.", + compare_burndowns: "Porovnajte burndowny.", + compare_burndowns_description: "Sledujte výkonnosť tímov prostredníctvom prehľadu burndown reportov každého cyklu.", + quickly_see_make_or_break_issues: "Rýchlo zistite kľúčové pracovné položky.", + quickly_see_make_or_break_issues_description: + "Pozrite si vysoko prioritné pracovné položky pre každý cyklus vzhľadom na termíny. Zobrazte všetky jedným kliknutím.", + zoom_into_cycles_that_need_attention: "Zamerajte sa na cykly vyžadujúce pozornosť.", + zoom_into_cycles_that_need_attention_description: + "Preskúmajte stav akéhokoľvek cyklu, ktorý nespĺňa očakávania, jedným kliknutím.", + stay_ahead_of_blockers: "Buďte o krok pred prekážkami.", + stay_ahead_of_blockers_description: + "Identifikujte problémy medzi projektmi a zistite závislosti medzi cyklami, ktoré nie sú z iných pohľadov zrejmé.", + analytics: "Analytika", + workspace_invites: "Pozvánky do pracovného priestoru", + enter_god_mode: "Vstúpiť do božského režimu", + workspace_logo: "Logo pracovného priestoru", + new_issue: "Nová pracovná položka", + your_work: "Vaša práca", + drafts: "Koncepty", + projects: "Projekty", + views: "Pohľady", + workspace: "Pracovný priestor", + archives: "Archívy", + settings: "Nastavenia", + failed_to_move_favorite: "Presunutie obľúbeného zlyhalo", + favorites: "Obľúbené", + no_favorites_yet: "Zatiaľ žiadne obľúbené", + create_folder: "Vytvoriť priečinok", + new_folder: "Nový priečinok", + favorite_updated_successfully: "Obľúbené bolo úspešne aktualizované", + favorite_created_successfully: "Obľúbené bolo úspešne vytvorené", + folder_already_exists: "Priečinok už existuje", + folder_name_cannot_be_empty: "Názov priečinka nemôže byť prázdny", + something_went_wrong: "Niečo sa pokazilo", + failed_to_reorder_favorite: "Zmena poradia obľúbeného zlyhala", + favorite_removed_successfully: "Obľúbené bolo úspešne odstránené", + failed_to_create_favorite: "Vytvorenie obľúbeného zlyhalo", + failed_to_rename_favorite: "Premenovanie obľúbeného zlyhalo", + project_link_copied_to_clipboard: "Odkaz na projekt bol skopírovaný do schránky", + link_copied: "Odkaz skopírovaný", + add_project: "Pridať projekt", + create_project: "Vytvoriť projekt", + failed_to_remove_project_from_favorites: "Nepodarilo sa odstrániť projekt z obľúbených. Skúste to prosím znova.", + project_created_successfully: "Projekt bol úspešne vytvorený", + project_created_successfully_description: + "Projekt bol úspešne vytvorený. Teraz môžete začať pridávať pracovné položky.", + project_name_already_taken: "Názov projektu je už použitý.", + project_identifier_already_taken: "Identifikátor projektu je už použitý.", + project_cover_image_alt: "Úvodný obrázok projektu", + name_is_required: "Názov je povinný", + title_should_be_less_than_255_characters: "Názov by mal byť kratší ako 255 znakov", + project_name: "Názov projektu", + project_id_must_be_at_least_1_character: "ID projektu musí mať aspoň 1 znak", + project_id_must_be_at_most_5_characters: "ID projektu môže mať maximálne 5 znakov", + project_id: "ID projektu", + project_id_tooltip_content: "Pomáha jednoznačne identifikovať pracovné položky v projekte. Max. 5 znakov.", + description_placeholder: "Popis", + only_alphanumeric_non_latin_characters_allowed: "Sú povolené iba alfanumerické a nelatinské znaky.", + project_id_is_required: "ID projektu je povinné", + project_id_allowed_char: "Sú povolené iba alfanumerické a nelatinské znaky.", + project_id_min_char: "ID projektu musí mať aspoň 1 znak", + project_id_max_char: "ID projektu môže mať maximálne 5 znakov", + project_description_placeholder: "Zadajte popis projektu", + select_network: "Vybrať sieť", + lead: "Vedúci", + date_range: "Rozsah dát", + private: "Súkromný", + public: "Verejný", + accessible_only_by_invite: "Prístupné iba na pozvanie", + anyone_in_the_workspace_except_guests_can_join: "Ktokoľvek v pracovnom priestore okrem hostí sa môže pripojiť", + creating: "Vytváranie", + creating_project: "Vytváranie projektu", + adding_project_to_favorites: "Pridávanie projektu do obľúbených", + project_added_to_favorites: "Projekt pridaný do obľúbených", + couldnt_add_the_project_to_favorites: "Nepodarilo sa pridať projekt do obľúbených. Skúste to prosím znova.", + removing_project_from_favorites: "Odstraňovanie projektu z obľúbených", + project_removed_from_favorites: "Projekt odstránený z obľúbených", + couldnt_remove_the_project_from_favorites: "Nepodarilo sa odstrániť projekt z obľúbených. Skúste to prosím znova.", + add_to_favorites: "Pridať do obľúbených", + remove_from_favorites: "Odstrániť z obľúbených", + publish_project: "Publikovať projekt", + publish: "Publikovať", + copy_link: "Kopírovať odkaz", + leave_project: "Opustiť projekt", + join_the_project_to_rearrange: "Pripojte sa k projektu pre zmenu usporiadania", + drag_to_rearrange: "Pretiahnite pre usporiadanie", + congrats: "Gratulujeme!", + open_project: "Otvoriť projekt", + issues: "Pracovné položky", + cycles: "Cykly", + modules: "Moduly", + pages: "Stránky", + intake: "Príjem", + time_tracking: "Sledovanie času", + work_management: "Správa práce", + projects_and_issues: "Projekty a pracovné položky", + projects_and_issues_description: "Aktivujte alebo deaktivujte tieto funkcie v projekte.", + cycles_description: + "Časovo ohraničte prácu podľa projektu a upravte obdobie podľa potreby. Jeden cyklus môže mať 2 týždne, ďalší 1 týždeň.", + modules_description: "Organizujte prácu do podprojektov s určenými vedúcimi a priradenými osobami.", + views_description: "Uložte vlastné triedenia, filtre a možnosti zobrazenia alebo ich zdieľajte so svojím tímom.", + pages_description: "Vytvárajte a upravujte voľne štruktúrovaný obsah – poznámky, dokumenty, čokoľvek.", + intake_description: "Umožnite nečlenom zdieľať chyby, spätnú väzbu a návrhy bez narušenia vášho pracovného postupu.", + time_tracking_description: "Zaznamenajte čas strávený na pracovných položkách a projektoch.", + work_management_description: "Spravujte svoju prácu a projekty jednoducho.", + documentation: "Dokumentácia", + message_support: "Kontaktovať podporu", + contact_sales: "Kontaktovať predaj", + hyper_mode: "Hyper režim", + keyboard_shortcuts: "Klávesové skratky", + whats_new: "Čo je nové?", + version: "Verzia", + we_are_having_trouble_fetching_the_updates: "Máme problém s načítaním aktualizácií.", + our_changelogs: "naše zmenové protokoly", + for_the_latest_updates: "pre najnovšie aktualizácie.", + please_visit: "Navštívte", + docs: "Dokumentáciu", + full_changelog: "Úplný zmenový protokol", + support: "Podpora", + discord: "Discord", + powered_by_plane_pages: "Poháňa Plane Pages", + please_select_at_least_one_invitation: "Vyberte aspoň jednu pozvánku.", + please_select_at_least_one_invitation_description: + "Vyberte aspoň jednu pozvánku na pripojenie do pracovného priestoru.", + we_see_that_someone_has_invited_you_to_join_a_workspace: "Vidíme, že vás niekto pozval do pracovného priestoru", + join_a_workspace: "Pripojiť sa k pracovnému priestoru", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Vidíme, že vás niekto pozval do pracovného priestoru", + join_a_workspace_description: "Pripojiť sa k pracovnému priestoru", + accept_and_join: "Prijať a pripojiť sa", + go_home: "Domov", + no_pending_invites: "Žiadne čakajúce pozvánky", + you_can_see_here_if_someone_invites_you_to_a_workspace: "Tu uvidíte, ak vás niekto pozve do pracovného priestoru", + back_to_home: "Späť na domovskú stránku", + workspace_name: "názov-pracovného-priestoru", + deactivate_your_account: "Deaktivovať váš účet", + deactivate_your_account_description: + "Po deaktivácii nebudete môcť byť priradení k pracovným položkám a nebude vám účtovaný poplatok za pracovný priestor. Na opätovnú aktiváciu účtu budete potrebovať pozvánku do pracovného priestoru na tento e-mail.", + deactivating: "Deaktivácia", + confirm: "Potvrdiť", + confirming: "Potvrdzovanie", + draft_created: "Koncept vytvorený", + issue_created_successfully: "Pracovná položka bola úspešne vytvorená", + draft_creation_failed: "Vytvorenie konceptu zlyhalo", + issue_creation_failed: "Vytvorenie pracovnej položky zlyhalo", + draft_issue: "Koncept pracovnej položky", + issue_updated_successfully: "Pracovná položka bola úspešne aktualizovaná", + issue_could_not_be_updated: "Aktualizácia pracovnej položky zlyhala", + create_a_draft: "Vytvoriť koncept", + save_to_drafts: "Uložiť do konceptov", + save: "Uložiť", + update: "Aktualizovať", + updating: "Aktualizácia", + create_new_issue: "Vytvoriť novú pracovnú položku", + editor_is_not_ready_to_discard_changes: "Editor nie je pripravený zahodiť zmeny", + failed_to_move_issue_to_project: "Presunutie pracovnej položky do projektu zlyhalo", + create_more: "Vytvoriť viac", + add_to_project: "Pridať do projektu", + discard: "Zahodiť", + duplicate_issue_found: "Nájdená duplicitná pracovná položka", + duplicate_issues_found: "Nájdené duplicitné pracovné položky", + no_matching_results: "Žiadne zodpovedajúce výsledky", + title_is_required: "Názov je povinný", + title: "Názov", + state: "Stav", + priority: "Priorita", + none: "Žiadna", + urgent: "Naliehavá", + high: "Vysoká", + medium: "Stredná", + low: "Nízka", + members: "Členovia", + assignee: "Priradené", + assignees: "Priradení", + you: "Vy", + labels: "Štítky", + create_new_label: "Vytvoriť nový štítok", + start_date: "Dátum začiatku", + end_date: "Dátum ukončenia", + due_date: "Termín", + estimate: "Odhad", + change_parent_issue: "Zmeniť nadradenú pracovnú položku", + remove_parent_issue: "Odstrániť nadradenú pracovnú položku", + add_parent: "Pridať nadradenú", + loading_members: "Načítavam členov", + view_link_copied_to_clipboard: "Odkaz na pohľad bol skopírovaný do schránky.", + required: "Povinné", + optional: "Voliteľné", + Cancel: "Zrušiť", + edit: "Upraviť", + archive: "Archivovať", + restore: "Obnoviť", + open_in_new_tab: "Otvoriť na novej karte", + delete: "Zmazať", + deleting: "Mazanie", + make_a_copy: "Vytvoriť kópiu", + move_to_project: "Presunúť do projektu", + good: "Dobrý", + morning: "ráno", + afternoon: "popoludnie", + evening: "večer", + show_all: "Zobraziť všetko", + show_less: "Zobraziť menej", + no_data_yet: "Zatiaľ žiadne dáta", + syncing: "Synchronizácia", + add_work_item: "Pridať pracovnú položku", + advanced_description_placeholder: "Stlačte '/' pre príkazy", + create_work_item: "Vytvoriť pracovnú položku", + attachments: "Prílohy", + declining: "Odmietanie", + declined: "Odmietnuté", + decline: "Odmietnuť", + unassigned: "Nepriradené", + work_items: "Pracovné položky", + add_link: "Pridať odkaz", + points: "Body", + no_assignee: "Žiadne priradenie", + no_assignees_yet: "Zatiaľ žiadni priradení", + no_labels_yet: "Zatiaľ žiadne štítky", + ideal: "Ideálne", + current: "Aktuálne", + no_matching_members: "Žiadni zodpovedajúci členovia", + leaving: "Opúšťanie", + removing: "Odstraňovanie", + leave: "Opustiť", + refresh: "Obnoviť", + refreshing: "Obnovovanie", + refresh_status: "Obnoviť stav", + prev: "Predchádzajúci", + next: "Ďalší", + re_generating: "Znova generovanie", + re_generate: "Znova generovať", + re_generate_key: "Znova generovať kľúč", + export: "Exportovať", + member: "{count, plural, one{# člen} few{# členovia} other{# členov}}", + new_password_must_be_different_from_old_password: "Nové heslo musí byť odlišné od starého hesla", + edited: "Upravené", + bot: "Bot", + project_view: { + sort_by: { + created_at: "Vytvorené dňa", + updated_at: "Aktualizované dňa", + name: "Názov", + }, + }, + toast: { + success: "Úspech!", + error: "Chyba!", + }, + links: { + toasts: { + created: { + title: "Odkaz vytvorený", + message: "Odkaz bol úspešne vytvorený", + }, + not_created: { + title: "Odkaz nebol vytvorený", + message: "Odkaz sa nepodarilo vytvoriť", + }, + updated: { + title: "Odkaz aktualizovaný", + message: "Odkaz bol úspešne aktualizovaný", + }, + not_updated: { + title: "Odkaz nebol aktualizovaný", + message: "Odkaz sa nepodarilo aktualizovať", + }, + removed: { + title: "Odkaz odstránený", + message: "Odkaz bol úspešne odstránený", + }, + not_removed: { + title: "Odkaz nebol odstránený", + message: "Odkaz sa nepodarilo odstrániť", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Váš sprievodca rýchlym štartom", + not_right_now: "Teraz nie", + create_project: { + title: "Vytvoriť projekt", + description: "Väčšina vecí začína projektom v Plane.", + cta: "Začať", + }, + invite_team: { + title: "Pozvať tím", + description: "Spolupracujte s kolegami na tvorbe, dodávkach a správe.", + cta: "Pozvať ich", + }, + configure_workspace: { + title: "Nastavte si svoj pracovný priestor.", + description: "Aktivujte alebo deaktivujte funkcie alebo choďte ďalej.", + cta: "Konfigurovať tento priestor", + }, + personalize_account: { + title: "Prispôsobte si Plane.", + description: "Vyberte si obrázok, farby a ďalšie.", + cta: "Prispôsobiť teraz", + }, + widgets: { + title: "Je ticho bez widgetov, zapnite ich", + description: "Vyzerá to, že všetky vaše widgety sú vypnuté. Zapnite ich\npre lepší zážitok!", + primary_button: { + text: "Spravovať widgety", + }, + }, + }, + quick_links: { + empty: "Uložte si odkazy na dôležité veci, ktoré chcete mať po ruke.", + add: "Pridať rýchly odkaz", + title: "Rýchly odkaz", + title_plural: "Rýchle odkazy", + }, + recents: { + title: "Nedávne", + empty: { + project: "Vaše nedávne projekty sa zobrazia po návšteve.", + page: "Vaše nedávne stránky sa zobrazia po návšteve.", + issue: "Vaše nedávne pracovné položky sa zobrazia po návšteve.", + default: "Zatiaľ nemáte žiadne nedávne položky.", + }, + filters: { + all: "Všetko", + projects: "Projekty", + pages: "Stránky", + issues: "Pracovné položky", + }, + }, + new_at_plane: { + title: "Novinky v Plane", + }, + quick_tutorial: { + title: "Rýchly tutoriál", + }, + widget: { + reordered_successfully: "Widget bol úspešne presunutý.", + reordering_failed: "Pri presúvaní widgetu došlo k chybe.", + }, + manage_widgets: "Spravovať widgety", + title: "Domov", + star_us_on_github: "Ohodnoťte nás na GitHube", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL je neplatná", + placeholder: "Zadajte alebo vložte URL", + }, + title: { + text: "Zobrazovaný názov", + placeholder: "Ako chcete tento odkaz vidieť", + }, + }, + }, + common: { + all: "Všetko", + states: "Stavy", + state: "Stav", + state_groups: "Skupiny stavov", + state_group: "Skupina stavov", + priorities: "Priority", + priority: "Priorita", + team_project: "Tímový projekt", + project: "Projekt", + cycle: "Cyklus", + cycles: "Cykly", + module: "Modul", + modules: "Moduly", + labels: "Štítky", + label: "Štítok", + assignees: "Priradení", + assignee: "Priradené", + created_by: "Vytvoril", + none: "Žiadne", + link: "Odkaz", + estimates: "Odhady", + estimate: "Odhad", + created_at: "Vytvorené dňa", + completed_at: "Dokončené dňa", + layout: "Rozloženie", + filters: "Filtre", + display: "Zobrazenie", + load_more: "Načítať viac", + activity: "Aktivita", + analytics: "Analytika", + dates: "Dáta", + success: "Úspech!", + something_went_wrong: "Niečo sa pokazilo", + error: { + label: "Chyba!", + message: "Došlo k chybe. Skúste to prosím znova.", + }, + group_by: "Zoskupiť podľa", + epic: "Epika", + epics: "Epiky", + work_item: "Pracovná položka", + work_items: "Pracovné položky", + sub_work_item: "Podriadená pracovná položka", + add: "Pridať", + warning: "Varovanie", + updating: "Aktualizácia", + adding: "Pridávanie", + update: "Aktualizovať", + creating: "Vytváranie", + create: "Vytvoriť", + cancel: "Zrušiť", + description: "Popis", + title: "Názov", + attachment: "Príloha", + general: "Všeobecné", + features: "Funkcie", + automation: "Automatizácia", + project_name: "Názov projektu", + project_id: "ID projektu", + project_timezone: "Časové pásmo projektu", + created_on: "Vytvorené dňa", + update_project: "Aktualizovať projekt", + identifier_already_exists: "Identifikátor už existuje", + add_more: "Pridať viac", + defaults: "Predvolené", + add_label: "Pridať štítok", + customize_time_range: "Prispôsobiť časový rozsah", + loading: "Načítavanie", + attachments: "Prílohy", + property: "Vlastnosť", + properties: "Vlastnosti", + parent: "Nadradený", + page: "Stránka", + remove: "Odstrániť", + archiving: "Archivovanie", + archive: "Archivovať", + access: { + public: "Verejný", + private: "Súkromný", + }, + done: "Hotovo", + sub_work_items: "Podriadené pracovné položky", + comment: "Komentár", + workspace_level: "Úroveň pracovného priestoru", + order_by: { + label: "Triediť podľa", + manual: "Manuálne", + last_created: "Naposledy vytvorené", + last_updated: "Naposledy aktualizované", + start_date: "Dátum začiatku", + due_date: "Termín", + asc: "Vzostupne", + desc: "Zostupne", + updated_on: "Aktualizované dňa", + }, + sort: { + asc: "Vzostupne", + desc: "Zostupne", + created_on: "Vytvorené dňa", + updated_on: "Aktualizované dňa", + }, + comments: "Komentáre", + updates: "Aktualizácie", + clear_all: "Vymazať všetko", + copied: "Skopírované!", + link_copied: "Odkaz skopírovaný!", + link_copied_to_clipboard: "Odkaz skopírovaný do schránky", + copied_to_clipboard: "Odkaz na pracovnú položku bol skopírovaný do schránky", + is_copied_to_clipboard: "Pracovná položka skopírovaná do schránky", + no_links_added_yet: "Zatiaľ neboli pridané žiadne odkazy", + add_link: "Pridať odkaz", + links: "Odkazy", + go_to_workspace: "Prejsť do pracovného priestoru", + progress: "Pokrok", + optional: "Voliteľné", + join: "Pripojiť sa", + go_back: "Späť", + continue: "Pokračovať", + resend: "Znova odoslať", + relations: "Vzťahy", + errors: { + default: { + title: "Chyba!", + message: "Niečo sa pokazilo. Skúste to prosím znova.", + }, + required: "Toto pole je povinné", + entity_required: "{entity} je povinná", + restricted_entity: "{entity} je obmedzený", + }, + update_link: "Aktualizovať odkaz", + attach: "Pripojiť", + create_new: "Vytvoriť nový", + add_existing: "Pridať existujúci", + type_or_paste_a_url: "Zadajte alebo vložte URL", + url_is_invalid: "URL je neplatná", + display_title: "Zobrazovaný názov", + link_title_placeholder: "Ako chcete tento odkaz vidieť", + url: "URL", + side_peek: "Bočný náhľad", + modal: "Modálne okno", + full_screen: "Celá obrazovka", + close_peek_view: "Zatvoriť náhľad", + toggle_peek_view_layout: "Prepnúť rozloženie náhľadu", + options: "Možnosti", + duration: "Trvanie", + today: "Dnes", + week: "Týždeň", + month: "Mesiac", + quarter: "Kvartál", + press_for_commands: "Stlačte '/' pre príkazy", + click_to_add_description: "Kliknite pre pridanie popisu", + search: { + label: "Hľadať", + placeholder: "Zadajte hľadaný výraz", + no_matches_found: "Nenašli sa žiadne zhody", + no_matching_results: "Žiadne zodpovedajúce výsledky", + }, + actions: { + edit: "Upraviť", + make_a_copy: "Vytvoriť kópiu", + open_in_new_tab: "Otvoriť na novej karte", + copy_link: "Kopírovať odkaz", + archive: "Archivovať", + restore: "Obnoviť", + delete: "Zmazať", + remove_relation: "Odstrániť vzťah", + subscribe: "Odoberať", + unsubscribe: "Zrušiť odber", + clear_sorting: "Vymazať triedenie", + show_weekends: "Zobraziť víkendy", + enable: "Povoliť", + disable: "Zakázať", + }, + name: "Názov", + discard: "Zahodiť", + confirm: "Potvrdiť", + confirming: "Potvrdzovanie", + read_the_docs: "Prečítajte si dokumentáciu", + default: "Predvolené", + active: "Aktívne", + enabled: "Povolené", + disabled: "Zakázané", + mandate: "Mandát", + mandatory: "Povinné", + yes: "Áno", + no: "Nie", + please_wait: "Prosím čakajte", + enabling: "Povoľovanie", + disabling: "Zakazovanie", + beta: "Beta", + or: "alebo", + next: "Ďalej", + back: "Späť", + cancelling: "Rušenie", + configuring: "Konfigurácia", + clear: "Vymazať", + import: "Importovať", + connect: "Pripojiť", + authorizing: "Autorizácia", + processing: "Spracovanie", + no_data_available: "Nie sú k dispozícii žiadne dáta", + from: "od {name}", + authenticated: "Overené", + select: "Vybrať", + upgrade: "Upgradovať", + add_seats: "Pridať miesta", + projects: "Projekty", + workspace: "Pracovný priestor", + workspaces: "Pracovné priestory", + team: "Tím", + teams: "Tímy", + entity: "Entita", + entities: "Entity", + task: "Úloha", + tasks: "Úlohy", + section: "Sekcia", + sections: "Sekcie", + edit: "Upraviť", + connecting: "Pripájanie", + connected: "Pripojené", + disconnect: "Odpojiť", + disconnecting: "Odpájanie", + installing: "Inštalácia", + install: "Nainštalovať", + reset: "Resetovať", + live: "Živé", + change_history: "História zmien", + coming_soon: "Už čoskoro", + member: "Člen", + members: "Členovia", + you: "Vy", + upgrade_cta: { + higher_subscription: "Upgradovať na vyššie predplatné", + talk_to_sales: "Porozprávajte sa s predajom", + }, + category: "Kategória", + categories: "Kategórie", + saving: "Ukladanie", + save_changes: "Uložiť zmeny", + delete: "Zmazať", + deleting: "Mazanie", + pending: "Čakajúce", + invite: "Pozvať", + view: "Zobraziť", + deactivated_user: "Deaktivovaný používateľ", + apply: "Použiť", + applying: "Používanie", + users: "Používatelia", + admins: "Administrátori", + guests: "Hostia", + on_track: "Na správnej ceste", + off_track: "Mimo plán", + at_risk: "V ohrození", + timeline: "Časová os", + completion: "Dokončenie", + upcoming: "Nadchádzajúce", + completed: "Dokončené", + in_progress: "Prebieha", + planned: "Plánované", + paused: "Pozastavené", + no_of: "Počet {entity}", + resolved: "Vyriešené", + }, + chart: { + x_axis: "Os X", + y_axis: "Os Y", + metric: "Metrika", + }, + form: { + title: { + required: "Názov je povinný", + max_length: "Názov by mal byť kratší ako {length} znakov", + }, + }, + entity: { + grouping_title: "Zoskupenie {entity}", + priority: "Priorita {entity}", + all: "Všetky {entity}", + drop_here_to_move: "Pretiahnite sem pre presunutie {entity}", + delete: { + label: "Zmazať {entity}", + success: "{entity} bola úspešne zmazaná", + failed: "Mazanie {entity} zlyhalo", + }, + update: { + failed: "Aktualizácia {entity} zlyhala", + success: "{entity} bola úspešne aktualizovaná", + }, + link_copied_to_clipboard: "Odkaz na {entity} bol skopírovaný do schránky", + fetch: { + failed: "Chyba pri načítaní {entity}", + }, + add: { + success: "{entity} bola úspešne pridaná", + failed: "Chyba pri pridávaní {entity}", + }, + remove: { + success: "{entity} bola úspešne odstránená", + failed: "Chyba pri odstrávaní {entity}", + }, + }, + epic: { + all: "Všetky epiky", + label: "{count, plural, one {Epika} few {Epiky} other {Epík}}", + new: "Nová epika", + adding: "Pridávam epiku", + create: { + success: "Epika bola úspešne vytvorená", + }, + add: { + press_enter: "Pre pridanie ďalšej epiky stlačte 'Enter'", + label: "Pridať epiku", + }, + title: { + label: "Názov epiky", + required: "Názov epiky je povinný.", + }, + }, + issue: { + label: "{count, plural, one {Pracovná položka} few {Pracovné položky} other {Pracovných položiek}}", + all: "Všetky pracovné položky", + edit: "Upraviť pracovnú položku", + title: { + label: "Názov pracovnej položky", + required: "Názov pracovnej položky je povinný.", + }, + add: { + press_enter: "Stlačte 'Enter' pre pridanie ďalšej pracovnej položky", + label: "Pridať pracovnú položku", + cycle: { + failed: "Pridanie pracovnej položky do cyklu zlyhalo. Skúste to prosím znova.", + success: + "{count, plural, one {Pracovná položka} few {Pracovné položky} other {Pracovných položiek}} pridaná do cyklu.", + loading: + "Pridávanie {count, plural, one {pracovnej položky} few {pracovných položiek} other {pracovných položiek}} do cyklu", + }, + assignee: "Pridať priradených", + start_date: "Pridať dátum začiatku", + due_date: "Pridať termín", + parent: "Pridať nadradenú pracovnú položku", + sub_issue: "Pridať podriadenú pracovnú položku", + relation: "Pridať vzťah", + link: "Pridať odkaz", + existing: "Pridať existujúcu pracovnú položku", + }, + remove: { + label: "Odstrániť pracovnú položku", + cycle: { + loading: "Odstraňovanie pracovnej položky z cyklu", + success: "Pracovná položka odstránená z cyklu.", + failed: "Odstránenie pracovnej položky z cyklu zlyhalo. Skúste to prosím znova.", + }, + module: { + loading: "Odstraňovanie pracovnej položky z modulu", + success: "Pracovná položka odstránená z modulu.", + failed: "Odstránenie pracovnej položky z modulu zlyhalo. Skúste to prosím znova.", + }, + parent: { + label: "Odstrániť nadradenú pracovnú položku", + }, + }, + new: "Nová pracovná položka", + adding: "Pridávanie pracovnej položky", + create: { + success: "Pracovná položka bola úspešne vytvorená", + }, + priority: { + urgent: "Naliehavá", + high: "Vysoká", + medium: "Stredná", + low: "Nízka", + }, + display: { + properties: { + label: "Zobrazované vlastnosti", + id: "ID", + issue_type: "Typ pracovnej položky", + sub_issue_count: "Počet podriadených položiek", + attachment_count: "Počet príloh", + created_on: "Vytvorené dňa", + sub_issue: "Podriadená položka", + work_item_count: "Počet pracovných položiek", + }, + extra: { + show_sub_issues: "Zobraziť podriadené položky", + show_empty_groups: "Zobraziť prázdne skupiny", + }, + }, + layouts: { + ordered_by_label: "Toto rozloženie je triedené podľa", + list: "Zoznam", + kanban: "Nástenka", + calendar: "Kalendár", + spreadsheet: "Tabuľka", + gantt: "Časová os", + title: { + list: "Zoznamové rozloženie", + kanban: "Nástenkové rozloženie", + calendar: "Kalendárové rozloženie", + spreadsheet: "Tabuľkové rozloženie", + gantt: "Rozloženie časovej osi", + }, + }, + states: { + active: "Aktívne", + backlog: "Backlog", + }, + comments: { + placeholder: "Pridať komentár", + switch: { + private: "Prepnúť na súkromný komentár", + public: "Prepnúť na verejný komentár", + }, + create: { + success: "Komentár bol úspešne vytvorený", + error: "Vytvorenie komentára zlyhalo. Skúste to prosím neskôr.", + }, + update: { + success: "Komentár bol úspešne aktualizovaný", + error: "Aktualizácia komentára zlyhala. Skúste to prosím neskôr.", + }, + remove: { + success: "Komentár bol úspešne odstránený", + error: "Odstránenie komentára zlyhalo. Skúste to prosím neskôr.", + }, + upload: { + error: "Nahratie prílohy zlyhalo. Skúste to prosím neskôr.", + }, + copy_link: { + success: "Odkaz na komentár bol skopírovaný do schránky", + error: "Chyba pri kopírovaní odkazu na komentár. Skúste to prosím neskôr.", + }, + }, + empty_state: { + issue_detail: { + title: "Pracovná položka neexistuje", + description: "Pracovná položka, ktorú hľadáte, neexistuje, bola archivovaná alebo zmazaná.", + primary_button: { + text: "Zobraziť ďalšie pracovné položky", + }, + }, + }, + sibling: { + label: "Súvisiace pracovné položky", + }, + archive: { + description: "Archivovať je možné iba dokončené alebo zrušené\npracovné položky", + label: "Archivovať pracovnú položku", + confirm_message: + "Naozaj chcete archivovať túto pracovnú položku? Všetky archivované položky je možné neskôr obnoviť.", + success: { + label: "Archivácia úspešná", + message: "Vaše archívy nájdete v archívoch projektu.", + }, + failed: { + message: "Archivácia pracovnej položky zlyhala. Skúste to prosím znova.", + }, + }, + restore: { + success: { + title: "Obnovenie úspešné", + message: "Vaša pracovná položka je na nájdenie v pracovných položkách projektu.", + }, + failed: { + message: "Obnovenie pracovnej položky zlyhalo. Skúste to prosím znova.", + }, + }, + relation: { + relates_to: "Súvisiace s", + duplicate: "Duplikát", + blocked_by: "Blokované", + blocking: "Blokujúce", + }, + copy_link: "Kopírovať odkaz na pracovnú položku", + delete: { + label: "Zmazať pracovnú položku", + error: "Chyba pri mazaní pracovnej položky", + }, + subscription: { + actions: { + subscribed: "Pracovná položka úspešne prihlásená na odber", + unsubscribed: "Odber pracovnej položky zrušený", + }, + }, + select: { + error: "Vyberte aspoň jednu pracovnú položku", + empty: "Nie sú vybrané žiadne pracovné položky", + add_selected: "Pridať vybrané pracovné položky", + select_all: "Vybrať všetko", + deselect_all: "Zrušiť výber všetkého", + }, + open_in_full_screen: "Otvoriť pracovnú položku na celú obrazovku", + }, + attachment: { + error: "Súbor sa nedá pripojiť. Skúste to prosím znova.", + only_one_file_allowed: "Je možné nahrať iba jeden súbor naraz.", + file_size_limit: "Súbor musí byť menší ako {size}MB.", + drag_and_drop: "Pretiahnite súbor kamkoľvek pre nahratie", + delete: "Zmazať prílohu", + }, + label: { + select: "Vybrať štítok", + create: { + success: "Štítok bol úspešne vytvorený", + failed: "Vytvorenie štítka zlyhalo", + already_exists: "Štítok už existuje", + type: "Zadajte pre vytvorenie nového štítka", + }, + }, + sub_work_item: { + update: { + success: "Podriadená pracovná položka bola úspešne aktualizovaná", + error: "Chyba pri aktualizácii podriadenej položky", + }, + remove: { + success: "Podriadená pracovná položka bola úspešne odstránená", + error: "Chyba pri odstraňovaní podriadenej položky", + }, + empty_state: { + sub_list_filters: { + title: "Nemáte podriadené pracovné položky, ktoré zodpovedajú použitým filtrom.", + description: "Pre zobrazenie všetkých podriadených pracovných položiek vymažte všetky použité filtre.", + action: "Vymazať filtre", + }, + list_filters: { + title: "Nemáte pracovné položky, ktoré zodpovedajú použitým filtrom.", + description: "Pre zobrazenie všetkých pracovných položiek vymažte všetky použité filtre.", + action: "Vymazať filtre", + }, + }, + }, + view: { + label: "{count, plural, one {Pohľad} few {Pohľady} other {Pohľadov}}", + create: { + label: "Vytvoriť pohľad", + }, + update: { + label: "Aktualizovať pohľad", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Čakajúce", + description: "Čakajúce", + }, + declined: { + title: "Odmietnuté", + description: "Odmietnuté", + }, + snoozed: { + title: "Odložené", + description: "Zostáva {days, plural, one{# deň} few{# dni} other{# dní}}", + }, + accepted: { + title: "Prijaté", + description: "Prijaté", + }, + duplicate: { + title: "Duplikát", + description: "Duplikát", + }, + }, + modals: { + decline: { + title: "Odmietnuť pracovnú položku", + content: "Naozaj chcete odmietnuť pracovnú položku {value}?", + }, + delete: { + title: "Zmazať pracovnú položku", + content: "Naozaj chcete zmazať pracovnú položku {value}?", + success: "Pracovná položka bola úspešne zmazaná", + }, + }, + errors: { + snooze_permission: "Iba správcovia projektu môžu odkladať/zrušiť odloženie pracovných položiek", + accept_permission: "Iba správcovia projektu môžu prijímať pracovné položky", + decline_permission: "Iba správcovia projektu môžu odmietnuť pracovné položky", + }, + actions: { + accept: "Prijať", + decline: "Odmietnuť", + snooze: "Odložiť", + unsnooze: "Zrušiť odloženie", + copy: "Kopírovať odkaz na pracovnú položku", + delete: "Zmazať", + open: "Otvoriť pracovnú položku", + mark_as_duplicate: "Označiť ako duplikát", + move: "Presunúť {value} do pracovných položiek projektu", + }, + source: { + "in-app": "v aplikácii", + }, + order_by: { + created_at: "Vytvorené dňa", + updated_at: "Aktualizované dňa", + id: "ID", + }, + label: "Príjem", + page_label: "{workspace} - Príjem", + modal: { + title: "Vytvoriť prijatú pracovnú položku", + }, + tabs: { + open: "Otvorené", + closed: "Uzavreté", + }, + empty_state: { + sidebar_open_tab: { + title: "Žiadne otvorené pracovné položky", + description: "Tu nájdete otvorené pracovné položky. Vytvorte novú.", + }, + sidebar_closed_tab: { + title: "Žiadne uzavreté pracovné položky", + description: "Všetky prijaté alebo odmietnuté pracovné položky nájdete tu.", + }, + sidebar_filter: { + title: "Žiadne zodpovedajúce pracovné položky", + description: "Žiadna položka nezodpovedá filtru v príjme. Vytvorte novú.", + }, + detail: { + title: "Vyberte pracovnú položku pre zobrazenie detailov.", + }, + }, + }, + workspace_creation: { + heading: "Vytvorte si pracovný priestor", + subheading: "Na používanie Plane musíte vytvoriť alebo sa pripojiť k pracovnému priestoru.", + form: { + name: { + label: "Pomenujte svoj pracovný priestor", + placeholder: "Vhodné je použiť niečo známe a rozpoznateľné.", + }, + url: { + label: "Nastavte URL vášho priestoru", + placeholder: "Zadajte alebo vložte URL", + edit_slug: "Môžete upraviť iba časť URL (slug)", + }, + organization_size: { + label: "Koľko ľudí bude tento priestor používať?", + placeholder: "Vyberte rozsah", + }, + }, + errors: { + creation_disabled: { + title: "Len správca inštancie môže vytvárať pracovné priestory", + description: "Ak poznáte e-mail správcu inštancie, kliknite na tlačidlo nižšie pre kontakt.", + request_button: "Požiadať správcu inštancie", + }, + validation: { + name_alphanumeric: "Názvy pracovných priestorov môžu obsahovať iba (' '), ('-'), ('_') a alfanumerické znaky.", + name_length: "Názov je obmedzený na 80 znakov.", + url_alphanumeric: "URL môžu obsahovať iba ('-') a alfanumerické znaky.", + url_length: "URL je obmedzená na 48 znakov.", + url_already_taken: "URL pracovného priestoru je už obsadená!", + }, + }, + request_email: { + subject: "Žiadosť o nový pracovný priestor", + body: "Ahoj správca,\n\nProsím, vytvor nový pracovný priestor s URL [/workspace-name] pre [účel vytvorenia].\n\nVďaka,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Vytvoriť pracovný priestor", + loading: "Vytváranie pracovného priestoru", + }, + toast: { + success: { + title: "Úspech", + message: "Pracovný priestor bol úspešne vytvorený", + }, + error: { + title: "Chyba", + message: "Vytvorenie pracovného priestoru zlyhalo. Skúste to prosím znova.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Prehľad projektov, aktivít a metrík", + description: + "Vitajte v Plane, teší nás, že ste tu. Vytvorte prvý projekt, sledujte pracovné položky a táto stránka sa zmení na priestor pre váš pokrok. Správcovia tu uvidia aj položky pomáhajúce tímu.", + primary_button: { + text: "Vytvorte prvý projekt", + comic: { + title: "Všetko začína projektom v Plane", + description: "Projektom môže byť roadmapa produktu, marketingová kampaň alebo uvedenie nového auta.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analytika", + page_label: "{workspace} - Analytika", + open_tasks: "Celkovo otvorených úloh", + error: "Pri načítaní dát došlo k chybe.", + work_items_closed_in: "Pracovné položky uzavreté v", + selected_projects: "Vybrané projekty", + total_members: "Celkovo členov", + total_cycles: "Celkovo cyklov", + total_modules: "Celkovo modulov", + pending_work_items: { + title: "Čakajúce pracovné položky", + empty_state: "Tu sa zobrazí analýza čakajúcich položiek podľa spolupracovníkov.", + }, + work_items_closed_in_a_year: { + title: "Pracovné položky uzavreté v roku", + empty_state: "Uzatvárajte položky, aby ste videli analýzu stavov v grafe.", + }, + most_work_items_created: { + title: "Najviac vytvorených položiek", + empty_state: "Zobrazia sa spolupracovníci a počet nimi vytvorených položiek.", + }, + most_work_items_closed: { + title: "Najviac uzavretých položiek", + empty_state: "Zobrazia sa spolupracovníci a počet nimi uzavretých položiek.", + }, + tabs: { + scope_and_demand: "Rozsah a dopyt", + custom: "Vlastná analytika", + }, + empty_state: { + customized_insights: { + description: "Pracovné položky priradené vám, rozdelené podľa stavu, sa zobrazia tu.", + title: "Zatiaľ žiadne údaje", + }, + created_vs_resolved: { + description: "Pracovné položky vytvorené a vyriešené v priebehu času sa zobrazia tu.", + title: "Zatiaľ žiadne údaje", + }, + project_insights: { + title: "Zatiaľ žiadne údaje", + description: "Pracovné položky priradené vám, rozdelené podľa stavu, sa zobrazia tu.", + }, + general: { + title: + "Sledujte pokrok, pracovné zaťaženie a alokácie. Identifikujte trendy, odstráňte prekážky a urýchlite prácu", + description: + "Porovnávajte rozsah s dopytom, odhady a rozširovanie rozsahu. Získajte výkonnosť podľa členov tímu a tímov, a uistite sa, že váš projekt beží načas.", + primary_button: { + text: "Začnite svoj prvý projekt", + comic: { + title: "Analytika funguje najlepšie s Cyklami + Modulmi", + description: + "Najprv časovo ohraničte svoje problémy do Cyklov a, ak môžete, zoskupte problémy, ktoré trvajú viac ako jeden cyklus, do Modulov. Pozrite si oboje v ľavej navigácii.", + }, + }, + }, + }, + created_vs_resolved: "Vytvorené vs Vyriešené", + customized_insights: "Prispôsobené prehľady", + backlog_work_items: "{entity} v backlogu", + active_projects: "Aktívne projekty", + trend_on_charts: "Trend na grafoch", + all_projects: "Všetky projekty", + summary_of_projects: "Súhrn projektov", + project_insights: "Prehľad projektu", + started_work_items: "Spustené {entity}", + total_work_items: "Celkový počet {entity}", + total_projects: "Celkový počet projektov", + total_admins: "Celkový počet administrátorov", + total_users: "Celkový počet používateľov", + total_intake: "Celkový príjem", + un_started_work_items: "Nespustené {entity}", + total_guests: "Celkový počet hostí", + completed_work_items: "Dokončené {entity}", + total: "Celkový počet {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Projekt} few {Projekty} other {Projektov}}", + create: { + label: "Pridať projekt", + }, + network: { + label: "Sieť", + private: { + title: "Súkromný", + description: "Prístupné iba na pozvanie", + }, + public: { + title: "Verejný", + description: "Ktokoľvek v priestore okrem hostí sa môže pripojiť", + }, + }, + error: { + permission: "Nemáte oprávnenie na túto akciu.", + cycle_delete: "Odstránenie cyklu zlyhalo", + module_delete: "Odstránenie modulu zlyhalo", + issue_delete: "Odstránenie pracovnej položky zlyhalo", + }, + state: { + backlog: "Backlog", + unstarted: "Nezačaté", + started: "Začaté", + completed: "Dokončené", + cancelled: "Zrušené", + }, + sort: { + manual: "Manuálne", + name: "Názov", + created_at: "Dátum vytvorenia", + members_length: "Počet členov", + }, + scope: { + my_projects: "Moje projekty", + archived_projects: "Archivované", + }, + common: { + months_count: "{months, plural, one{# mesiac} few{# mesiace} other{# mesiacov}}", + }, + empty_state: { + general: { + title: "Žiadne aktívne projekty", + description: + "Projekt je nadradený cieľom. Projekty obsahujú Úlohy, Cykly a Moduly. Vytvorte nový alebo filtrujte archivované.", + primary_button: { + text: "Začnite prvý projekt", + comic: { + title: "Všetko začína projektom v Plane", + description: "Projektom môže byť roadmapa produktu, marketingová kampaň alebo uvedenie nového auta.", + }, + }, + }, + no_projects: { + title: "Žiadne projekty", + description: "Na vytváranie pracovných položiek potrebujete vytvoriť alebo byť súčasťou projektu.", + primary_button: { + text: "Začnite prvý projekt", + comic: { + title: "Všetko začína projektom v Plane", + description: "Projektom môže byť roadmapa produktu, marketingová kampaň alebo uvedenie nového auta.", + }, + }, + }, + filter: { + title: "Žiadne zodpovedajúce projekty", + description: "Nenašli sa projekty zodpovedajúce kritériám. \n Vytvorte nový.", + }, + search: { + description: "Nenašli sa projekty zodpovedajúce kritériám.\nVytvorte nový.", + }, + }, + }, + workspace_views: { + add_view: "Pridať pohľad", + empty_state: { + "all-issues": { + title: "Žiadne pracovné položky v projekte", + description: "Vytvorte prvú položku a sledujte svoj pokrok!", + primary_button: { + text: "Vytvoriť pracovnú položku", + }, + }, + assigned: { + title: "Žiadne priradené položky", + description: "Tu uvidíte položky priradené vám.", + primary_button: { + text: "Vytvoriť pracovnú položku", + }, + }, + created: { + title: "Žiadne vytvorené položky", + description: "Tu sú položky, ktoré ste vytvorili.", + primary_button: { + text: "Vytvoriť pracovnú položku", + }, + }, + subscribed: { + title: "Žiadne odoberané položky", + description: "Prihláste sa na odber položiek, ktoré vás zaujímajú.", + }, + "custom-view": { + title: "Žiadne zodpovedajúce položky", + description: "Zobrazia sa položky zodpovedajúce filtru.", + }, + }, + }, + workspace_settings: { + label: "Nastavenia pracovného priestoru", + page_label: "{workspace} - Všeobecné nastavenia", + key_created: "Kľúč vytvorený", + copy_key: + "Skopírujte a uložte tento kľúč do Plane Pages. Po zatvorení ho neuvidíte. CSV súbor s kľúčom bol stiahnutý.", + token_copied: "Token skopírovaný do schránky.", + settings: { + general: { + title: "Všeobecné", + upload_logo: "Nahrať logo", + edit_logo: "Upraviť logo", + name: "Názov pracovného priestoru", + company_size: "Veľkosť spoločnosti", + url: "URL pracovného priestoru", + update_workspace: "Aktualizovať priestor", + delete_workspace: "Zmazať tento priestor", + delete_workspace_description: "Zmazaním priestoru odstránite všetky dáta a zdroje. Akcia je nevratná.", + delete_btn: "Zmazať priestor", + delete_modal: { + title: "Naozaj chcete zmazať tento priestor?", + description: "Máte aktívnu skúšobnú verziu. Najprv ju zrušte.", + dismiss: "Zatvoriť", + cancel: "Zrušiť skúšobnú verziu", + success_title: "Priestor zmazaný.", + success_message: "Budete presmerovaný na profil.", + error_title: "Nepodarilo sa.", + error_message: "Skúste to prosím znova.", + }, + errors: { + name: { + required: "Názov je povinný", + max_length: "Názov priestoru nesmie presiahnuť 80 znakov", + }, + company_size: { + required: "Veľkosť spoločnosti je povinná", + }, + }, + }, + members: { + title: "Členovia", + add_member: "Pridať člena", + pending_invites: "Čakajúce pozvánky", + invitations_sent_successfully: "Pozvánky boli úspešne odoslané", + leave_confirmation: "Naozaj chcete opustiť priestor? Stratíte prístup. Akcia je nevratná.", + details: { + full_name: "Celé meno", + display_name: "Zobrazované meno", + email_address: "E-mailová adresa", + account_type: "Typ účtu", + authentication: "Overovanie", + joining_date: "Dátum pripojenia", + }, + modal: { + title: "Pozvať spolupracovníkov", + description: "Pozvite ľudí na spoluprácu.", + button: "Odoslať pozvánky", + button_loading: "Odosielanie pozvánok", + placeholder: "meno@spoločnosť.sk", + errors: { + required: "Vyžaduje sa e-mailová adresa.", + invalid: "E-mail je neplatný", + }, + }, + }, + billing_and_plans: { + title: "Fakturácia a plány", + current_plan: "Aktuálny plán", + free_plan: "Používate bezplatný plán", + view_plans: "Zobraziť plány", + }, + exports: { + title: "Exporty", + exporting: "Exportovanie", + previous_exports: "Predchádzajúce exporty", + export_separate_files: "Exportovať dáta do samostatných súborov", + modal: { + title: "Exportovať do", + toasts: { + success: { + title: "Export úspešný", + message: "Exportované {entity} si môžete stiahnuť z predchádzajúceho exportu.", + }, + error: { + title: "Export zlyhal", + message: "Skúste to prosím znova.", + }, + }, + }, + }, + webhooks: { + title: "Webhooky", + add_webhook: "Pridať webhook", + modal: { + title: "Vytvoriť webhook", + details: "Detaily webhooku", + payload: "URL pre payload", + question: "Ktoré udalosti majú spustiť tento webhook?", + error: "URL je povinná", + }, + secret_key: { + title: "Tajný kľúč", + message: "Vygenerujte token na prihlásenie k webhooku", + }, + options: { + all: "Posielať všetko", + individual: "Vybrať jednotlivé udalosti", + }, + toasts: { + created: { + title: "Webhook vytvorený", + message: "Webhook bol úspešne vytvorený", + }, + not_created: { + title: "Webhook nebol vytvorený", + message: "Vytvorenie webhooku zlyhalo", + }, + updated: { + title: "Webhook aktualizovaný", + message: "Webhook bol úspešne aktualizovaný", + }, + not_updated: { + title: "Aktualizácia webhooku zlyhala", + message: "Webhook sa nepodarilo aktualizovať", + }, + removed: { + title: "Webhook odstránený", + message: "Webhook bol úspešne odstránený", + }, + not_removed: { + title: "Odstránenie webhooku zlyhalo", + message: "Webhook sa nepodarilo odstrániť", + }, + secret_key_copied: { + message: "Tajný kľúč skopírovaný do schránky.", + }, + secret_key_not_copied: { + message: "Chyba pri kopírovaní kľúča.", + }, + }, + }, + api_tokens: { + title: "API Tokeny", + add_token: "Pridať API token", + create_token: "Vytvoriť token", + never_expires: "Nikdy neexpiruje", + generate_token: "Generovať token", + generating: "Generovanie", + delete: { + title: "Zmazať API token", + description: "Aplikácie používajúce tento token stratia prístup. Akcia je nevratná.", + success: { + title: "Úspech!", + message: "Token úspešne zmazaný", + }, + error: { + title: "Chyba!", + message: "Mazanie tokenu zlyhalo", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Žiadne API tokeny", + description: "Používajte API na integráciu Plane s externými systémami.", + }, + webhooks: { + title: "Žiadne webhooky", + description: "Vytvorte webhooky na automatizáciu akcií.", + }, + exports: { + title: "Žiadne exporty", + description: "Tu nájdete históriu exportov.", + }, + imports: { + title: "Žiadne importy", + description: "Tu nájdete históriu importov.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Vaša práca", + work: "Práca", + details: { + joined_on: "Pripojený dňa", + time_zone: "Časové pásmo", + }, + stats: { + workload: "Vyťaženie", + overview: "Prehľad", + created: "Vytvorené položky", + assigned: "Priradené položky", + subscribed: "Odobierané položky", + state_distribution: { + title: "Položky podľa stavu", + empty: "Vytvárajte položky pre analýzu stavov.", + }, + priority_distribution: { + title: "Položky podľa priority", + empty: "Vytvárajte položky pre analýzu priorít.", + }, + recent_activity: { + title: "Nedávna aktivita", + empty: "Nebola nájdená žiadna aktivita.", + button: "Stiahnuť dnešnú aktivitu", + button_loading: "Sťahovanie", + }, + }, + actions: { + profile: "Profil", + security: "Zabezpečenie", + activity: "Aktivita", + appearance: "Vzhľad", + notifications: "Oznámenia", + }, + tabs: { + summary: "Zhrnutie", + assigned: "Priradené", + created: "Vytvorené", + subscribed: "Odobierané", + activity: "Aktivita", + }, + empty_state: { + activity: { + title: "Žiadna aktivita", + description: "Vytvorte pracovnú položku pre začiatok.", + }, + assigned: { + title: "Žiadne priradené pracovné položky", + description: "Tu uvidíte priradené pracovné položky.", + }, + created: { + title: "Žiadne vytvorené pracovné položky", + description: "Tu sú pracovné položky, ktoré ste vytvorili.", + }, + subscribed: { + title: "Žiadne odoberané pracovné položky", + description: "Odobierajte pracovné položky, ktoré vás zaujímajú, a sledujte ich tu.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Zadajte ID projektu", + please_select_a_timezone: "Vyberte časové pásmo", + archive_project: { + title: "Archivovať projekt", + description: "Archivácia skryje projekt z menu. Prístup zostane cez stránku projektov.", + button: "Archivovať projekt", + }, + delete_project: { + title: "Zmazať projekt", + description: "Zmazaním projektu odstránite všetky dáta. Akcia je nevratná.", + button: "Zmazať projekt", + }, + toast: { + success: "Projekt aktualizovaný", + error: "Aktualizácia zlyhala. Skúste to znova.", + }, + }, + members: { + label: "Členovia", + project_lead: "Vedúci projektu", + default_assignee: "Predvolené priradenie", + guest_super_permissions: { + title: "Udeľovať hosťom prístup ku všetkým položkám:", + sub_heading: "Hostia uvidia všetky položky v projekte.", + }, + invite_members: { + title: "Pozvať členov", + sub_heading: "Pozvite členov do projektu.", + select_co_worker: "Vybrať spolupracovníka", + }, + }, + states: { + describe_this_state_for_your_members: "Opíšte tento stav členom.", + empty_state: { + title: "Žiadne stavy pre skupinu {groupKey}", + description: "Vytvorte nový stav", + }, + }, + labels: { + label_title: "Názov štítka", + label_title_is_required: "Názov štítka je povinný", + label_max_char: "Názov štítka nesmie presiahnuť 255 znakov", + toast: { + error: "Chyba pri aktualizácii štítka", + }, + }, + estimates: { + label: "Odhady", + title: "Povoliť odhady pre môj projekt", + description: "Pomáhajú vám komunikovať zložitosť a pracovné zaťaženie tímu.", + no_estimate: "Bez odhadu", + new: "Nový systém odhadov", + create: { + custom: "Vlastné", + start_from_scratch: "Začať od nuly", + choose_template: "Vybrať šablónu", + choose_estimate_system: "Vybrať systém odhadov", + enter_estimate_point: "Zadať bod odhadu", + step: "Krok {step} z {total}", + label: "Vytvoriť odhad", + }, + toasts: { + created: { + success: { + title: "Bod odhadu vytvorený", + message: "Bod odhadu bol úspešne vytvorený", + }, + error: { + title: "Vytvorenie bodu odhadu zlyhalo", + message: "Nepodarilo sa vytvoriť nový bod odhadu, skúste to prosím znova.", + }, + }, + updated: { + success: { + title: "Odhad upravený", + message: "Bod odhadu bol aktualizovaný vo vašom projekte.", + }, + error: { + title: "Úprava odhadu zlyhala", + message: "Nepodarilo sa upraviť odhad, skúste to prosím znova", + }, + }, + enabled: { + success: { + title: "Úspech!", + message: "Odhady boli povolené.", + }, + }, + disabled: { + success: { + title: "Úspech!", + message: "Odhady boli zakázané.", + }, + error: { + title: "Chyba!", + message: "Odhad sa nepodarilo zakázať. Skúste to prosím znova", + }, + }, + }, + validation: { + min_length: "Bod odhadu musí byť väčší ako 0.", + unable_to_process: "Nemôžeme spracovať vašu požiadavku, skúste to prosím znova.", + numeric: "Bod odhadu musí byť číselná hodnota.", + character: "Bod odhadu musí byť znakovou hodnotou.", + empty: "Hodnota odhadu nemôže byť prázdna.", + already_exists: "Hodnota odhadu už existuje.", + unsaved_changes: "Máte neuložené zmeny. Prosím, uložte ich pred kliknutím na hotovo", + remove_empty: "Odhad nemôže byť prázdny. Zadajte hodnotu do každého poľa alebo odstráňte prázdne polia.", + }, + systems: { + points: { + label: "Body", + fibonacci: "Fibonacci", + linear: "Lineárne", + squares: "Štvorce", + custom: "Vlastné", + }, + categories: { + label: "Kategórie", + t_shirt_sizes: "Veľkosti tričiek", + easy_to_hard: "Od jednoduchého po náročné", + custom: "Vlastné", + }, + time: { + label: "Čas", + hours: "Hodiny", + }, + }, + }, + automations: { + label: "Automatizácie", + "auto-archive": { + title: "Automaticky archivovať uzavreté položky", + description: "Plane bude archivovať dokončené alebo zrušené položky.", + duration: "Archivovať položky uzavreté dlhšie ako", + }, + "auto-close": { + title: "Automaticky uzatvárať položky", + description: "Plane uzavrie neaktívne položky.", + duration: "Uzatvoriť položky neaktívne dlhšie ako", + auto_close_status: "Stav pre automatické uzatvorenie", + }, + }, + empty_state: { + labels: { + title: "Žiadne štítky", + description: "Vytvárajte štítky na organizáciu položiek.", + }, + estimates: { + title: "Žiadne systémy odhadov", + description: "Vytvorte systém odhadov na komunikáciu vyťaženia.", + primary_button: "Pridať systém odhadov", + }, + }, + }, + project_cycles: { + add_cycle: "Pridať cyklus", + more_details: "Viac detailov", + cycle: "Cyklus", + update_cycle: "Aktualizovať cyklus", + create_cycle: "Vytvoriť cyklus", + no_matching_cycles: "Žiadne zodpovedajúce cykly", + remove_filters_to_see_all_cycles: "Odstráňte filtre pre zobrazenie všetkých cyklov", + remove_search_criteria_to_see_all_cycles: "Odstráňte kritériá pre zobrazenie všetkých cyklov", + only_completed_cycles_can_be_archived: "Archivovať je možné iba dokončené cykly", + start_date: "Dátum začiatku", + end_date: "Dátum konca", + in_your_timezone: "Váš časový pásmo", + transfer_work_items: "Presunúť {count} pracovných položiek", + date_range: "Dátumový rozsah", + add_date: "Pridať dátum", + active_cycle: { + label: "Aktívny cyklus", + progress: "Pokrok", + chart: "Burndown graf", + priority_issue: "Vysoko prioritné položky", + assignees: "Priradení", + issue_burndown: "Burndown pracovných položiek", + ideal: "Ideálne", + current: "Aktuálne", + labels: "Štítky", + }, + upcoming_cycle: { + label: "Nadchádzajúci cyklus", + }, + completed_cycle: { + label: "Dokončený cyklus", + }, + status: { + days_left: "Zostáva dní", + completed: "Dokončené", + yet_to_start: "Ešte nezačaté", + in_progress: "Prebieha", + draft: "Koncept", + }, + action: { + restore: { + title: "Obnoviť cyklus", + success: { + title: "Cyklus obnovený", + description: "Cyklus bol obnovený.", + }, + failed: { + title: "Obnovenie zlyhalo", + description: "Obnovenie cyklu sa nepodarilo.", + }, + }, + favorite: { + loading: "Pridávanie do obľúbených", + success: { + description: "Cyklus pridaný do obľúbených.", + title: "Úspech!", + }, + failed: { + description: "Pridanie do obľúbených zlyhalo.", + title: "Chyba!", + }, + }, + unfavorite: { + loading: "Odstraňovanie z obľúbených", + success: { + description: "Cyklus odstránený z obľúbených.", + title: "Úspech!", + }, + failed: { + description: "Odstránenie zlyhalo.", + title: "Chyba!", + }, + }, + update: { + loading: "Aktualizácia cyklu", + success: { + description: "Cyklus aktualizovaný.", + title: "Úspech!", + }, + failed: { + description: "Aktualizácia zlyhala.", + title: "Chyba!", + }, + error: { + already_exists: "Cyklus s týmito dátami už existuje. Pre koncept odstráňte dáta.", + }, + }, + }, + empty_state: { + general: { + title: "Zoskupujte prácu do cyklov.", + description: "Časovo ohraničte prácu, sledujte termíny a robte pokroky.", + primary_button: { + text: "Vytvorte prvý cyklus", + comic: { + title: "Cykly sú opakované časové obdobia.", + description: "Sprint, iterácia alebo akékoľvek iné časové obdobie na sledovanie práce.", + }, + }, + }, + no_issues: { + title: "Žiadne položky v cykle", + description: "Pridajte položky, ktoré chcete sledovať.", + primary_button: { + text: "Vytvoriť položku", + }, + secondary_button: { + text: "Pridať existujúcu položku", + }, + }, + completed_no_issues: { + title: "Žiadne položky v cykle", + description: "Položky boli presunuté alebo skryté. Pre zobrazenie upravte vlastnosti.", + }, + active: { + title: "Žiadny aktívny cyklus", + description: "Aktívny cyklus zahŕňa dnešný dátum. Sledujte jeho priebeh tu.", + }, + archived: { + title: "Žiadne archivované cykly", + description: "Archivujte dokončené cykly pre poriadok.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Vytvorte a priraďte pracovnú položku", + description: "Položky sú úlohy, ktoré priraďujete sebe alebo tímu. Sledujte ich postup.", + primary_button: { + text: "Vytvoriť prvú položku", + comic: { + title: "Položky sú stavebnými kameňmi", + description: "Príklady: Redizajn UI, Rebranding, Nový systém.", + }, + }, + }, + no_archived_issues: { + title: "Žiadne archivované položky", + description: "Archivujte dokončené alebo zrušené položky. Nastavte automatizáciu.", + primary_button: { + text: "Nastaviť automatizáciu", + }, + }, + issues_empty_filter: { + title: "Žiadne zodpovedajúce položky", + secondary_button: { + text: "Vymazať filtre", + }, + }, + }, + }, + project_module: { + add_module: "Pridať modul", + update_module: "Aktualizovať modul", + create_module: "Vytvoriť modul", + archive_module: "Archivovať modul", + restore_module: "Obnoviť modul", + delete_module: "Zmazať modul", + empty_state: { + general: { + title: "Zoskupujte míľniky do modulov.", + description: "Moduly zoskupujú položky pod logického nadradeného. Sledujte termíny a pokrok.", + primary_button: { + text: "Vytvorte prvý modul", + comic: { + title: "Moduly zoskupujú hierarchicky.", + description: "Príklady: Modul košíka, podvozku, skladu.", + }, + }, + }, + no_issues: { + title: "Žiadne položky v module", + description: "Pridajte položky do modulu.", + primary_button: { + text: "Vytvoriť položky", + }, + secondary_button: { + text: "Pridať existujúcu položku", + }, + }, + archived: { + title: "Žiadne archivované moduly", + description: "Archivujte dokončené alebo zrušené moduly.", + }, + sidebar: { + in_active: "Modul nie je aktívny.", + invalid_date: "Neplatný dátum. Zadajte platný.", + }, + }, + quick_actions: { + archive_module: "Archivovať modul", + archive_module_description: "Archivovať je možné iba dokončené/zrušené moduly.", + delete_module: "Zmazať modul", + }, + toast: { + copy: { + success: "Odkaz na modul bol skopírovaný", + }, + delete: { + success: "Modul zmazaný", + error: "Mazanie zlyhalo", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Ukladajte filtre ako pohľady.", + description: "Pohľady sú uložené filtre na jednoduchý prístup. Zdieľajte ich v tíme.", + primary_button: { + text: "Vytvoriť prvý pohľad", + comic: { + title: "Pohľady pracujú s vlastnosťami položiek.", + description: "Vytvorte pohľad s požadovanými filtrami.", + }, + }, + }, + filter: { + title: "Žiadne zodpovedajúce zobrazenia", + description: "Vytvorte nové zobrazenie.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "Píšte poznámky, dokumenty alebo znalostnú bázu. Využite AI Galileo.", + description: + "Stránky sú priestorom pre myšlienky. Píšte, formátujte, vkladajte položky a používajte komponenty.", + primary_button: { + text: "Vytvoriť prvú stránku", + }, + }, + private: { + title: "Žiadne súkromné stránky", + description: "Uchovávajte súkromné myšlienky. Zdieľajte ich, až budete pripravení.", + primary_button: { + text: "Vytvoriť stránku", + }, + }, + public: { + title: "Žiadne verejné stránky", + description: "Tu uvidíte stránky zdieľané v projekte.", + primary_button: { + text: "Vytvoriť stránku", + }, + }, + archived: { + title: "Žiadne archivované stránky", + description: "Archivujte stránky pre neskorší prístup.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Nenašli sa žiadne výsledky", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Žiadne zodpovedajúce položky", + }, + no_issues: { + title: "Žiadne položky", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Žiadne komentáre", + description: "Komentáre slúžia na diskusiu a sledovanie položiek.", + }, + }, + }, + notification: { + label: "Schránka", + page_label: "{workspace} - Schránka", + options: { + mark_all_as_read: "Označiť všetko ako prečítané", + mark_read: "Označiť ako prečítané", + mark_unread: "Označiť ako neprečítané", + refresh: "Obnoviť", + filters: "Filtre schránky", + show_unread: "Zobraziť neprečítané", + show_snoozed: "Zobraziť odložené", + show_archived: "Zobraziť archivované", + mark_archive: "Archivovať", + mark_unarchive: "Zrušiť archiváciu", + mark_snooze: "Odložiť", + mark_unsnooze: "Zrušiť odloženie", + }, + toasts: { + read: "Oznámenie prečítané", + unread: "Označené ako neprečítané", + archived: "Archivované", + unarchived: "Archivácia zrušená", + snoozed: "Odložené", + unsnoozed: "Odloženie zrušené", + }, + empty_state: { + detail: { + title: "Vyberte pre podrobnosti.", + }, + all: { + title: "Žiadne priradené položky", + description: "Aktualizácie k priradeným položkám sa zobrazia tu.", + }, + mentions: { + title: "Žiadne zmienky", + description: "Zobrazia sa tu zmienky o vás.", + }, + }, + tabs: { + all: "Všetko", + mentions: "Zmienky", + }, + filter: { + assigned: "Priradené mne", + created: "Vytvoril som", + subscribed: "Odobieram", + }, + snooze: { + "1_day": "1 deň", + "3_days": "3 dni", + "5_days": "5 dní", + "1_week": "1 týždeň", + "2_weeks": "2 týždne", + custom: "Vlastné", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Pridajte položky pre sledovanie pokroku", + }, + chart: { + title: "Pridajte položky pre zobrazenie burndown grafu.", + }, + priority_issue: { + title: "Zobrazia sa vysoko prioritné pracovné položky.", + }, + assignee: { + title: "Priraďte položky pre prehľad priradení.", + }, + label: { + title: "Pridajte štítky pre analýzu podľa štítkov.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Príjem nie je povolený", + description: "Aktivujte príjem v nastaveniach projektu pre správu požiadaviek.", + primary_button: { + text: "Spravovať funkcie", + }, + }, + cycle: { + title: "Cykly nie sú povolené", + description: "Aktivujte cykly pre časové ohraničenie práce.", + primary_button: { + text: "Spravovať funkcie", + }, + }, + module: { + title: "Moduly nie sú povolené", + description: "Aktivujte moduly v nastaveniach projektu.", + primary_button: { + text: "Spravovať funkcie", + }, + }, + page: { + title: "Stránky nie sú povolené", + description: "Aktivujte stránky v nastaveniach projektu.", + primary_button: { + text: "Spravovať funkcie", + }, + }, + view: { + title: "Pohľady nie sú povolené", + description: "Aktivujte pohľady v nastaveniach projektu.", + primary_button: { + text: "Spravovať funkcie", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Vytvoriť koncept položky", + empty_state: { + title: "Rozpracované položky a komentáre sa zobrazia tu.", + description: "Začnite vytvárať položku a nechajte ju rozpracovanú.", + primary_button: { + text: "Vytvoriť prvý koncept", + }, + }, + delete_modal: { + title: "Zmazať koncept", + description: "Naozaj chcete zmazať tento koncept? Akcia je nevratná.", + }, + toasts: { + created: { + success: "Koncept vytvorený", + error: "Vytvorenie zlyhalo", + }, + deleted: { + success: "Koncept zmazaný", + }, + }, + }, + stickies: { + title: "Vaše poznámky", + placeholder: "kliknutím začnite písať", + all: "Všetky poznámky", + "no-data": "Zapisujte nápady a myšlienky. Pridajte prvú poznámku.", + add: "Pridať poznámku", + search_placeholder: "Hľadať podľa názvu", + delete: "Zmazať poznámku", + delete_confirmation: "Naozaj chcete zmazať túto poznámku?", + empty_state: { + simple: "Zapisujte nápady a myšlienky. Pridajte prvú poznámku.", + general: { + title: "Poznámky sú rýchle záznamy.", + description: "Zapisujte myšlienky a pristupujte k nim odkiaľkoľvek.", + primary_button: { + text: "Pridať poznámku", + }, + }, + search: { + title: "Nenašli sa žiadne poznámky.", + description: "Skúste iný výraz alebo vytvorte novú.", + primary_button: { + text: "Pridať poznámku", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Názov poznámky môže mať max. 100 znakov.", + already_exists: "Poznámka bez popisu už existuje", + }, + created: { + title: "Poznámka vytvorená", + message: "Poznámka bola úspešne vytvorená", + }, + not_created: { + title: "Vytvorenie zlyhalo", + message: "Poznámku sa nepodarilo vytvoriť", + }, + updated: { + title: "Poznámka aktualizovaná", + message: "Poznámka bola úspešne aktualizovaná", + }, + not_updated: { + title: "Aktualizácia zlyhala", + message: "Poznámku sa nepodarilo aktualizovať", + }, + removed: { + title: "Poznámka zmazaná", + message: "Poznámka bola úspešne zmazaná", + }, + not_removed: { + title: "Mazanie zlyhalo", + message: "Poznámku sa nepodarilo zmazať", + }, + }, + }, + role_details: { + guest: { + title: "Hosť", + description: "Externí členovia môžu byť pozvaní ako hostia.", + }, + member: { + title: "Člen", + description: "Môže čítať, písať, upravovať a mazať entity.", + }, + admin: { + title: "Správca", + description: "Má všetky oprávnenia v priestore.", + }, + }, + user_roles: { + product_or_project_manager: "Produktový/Projektový manažér", + development_or_engineering: "Vývoj/Inžinierstvo", + founder_or_executive: "Zakladateľ/Vedenie", + freelancer_or_consultant: "Freelancer/Konzultant", + marketing_or_growth: "Marketing/Rast", + sales_or_business_development: "Predaj/Business Development", + support_or_operations: "Podpora/Operácie", + student_or_professor: "Študent/Profesor", + human_resources: "Ľudské zdroje", + other: "Iné", + }, + importer: { + github: { + title: "GitHub", + description: "Importujte položky z repozitárov GitHub.", + }, + jira: { + title: "Jira", + description: "Importujte položky a epiky z Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Exportujte položky do CSV.", + short_description: "Exportovať ako CSV", + }, + excel: { + title: "Excel", + description: "Exportujte položky do Excelu.", + short_description: "Exportovať ako Excel", + }, + xlsx: { + title: "Excel", + description: "Exportujte položky do Excelu.", + short_description: "Exportovať ako Excel", + }, + json: { + title: "JSON", + description: "Exportujte položky do JSON.", + short_description: "Exportovať ako JSON", + }, + }, + default_global_view: { + all_issues: "Všetky položky", + assigned: "Priradené", + created: "Vytvorené", + subscribed: "Odobierané", + }, + themes: { + theme_options: { + system_preference: { + label: "Systémové predvoľby", + }, + light: { + label: "Svetlé", + }, + dark: { + label: "Tmavé", + }, + light_contrast: { + label: "Svetlý vysoký kontrast", + }, + dark_contrast: { + label: "Tmavý vysoký kontrast", + }, + custom: { + label: "Vlastná téma", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Plánované", + in_progress: "Prebieha", + paused: "Pozastavené", + completed: "Dokončené", + cancelled: "Zrušené", + }, + layout: { + list: "Zoznam", + board: "Nástenka", + timeline: "Časová os", + }, + order_by: { + name: "Názov", + progress: "Pokrok", + issues: "Počet položiek", + due_date: "Termín", + created_at: "Dátum vytvorenia", + manual: "Manuálne", + }, + }, + cycle: { + label: "{count, plural, one {Cyklus} few {Cykly} other {Cyklov}}", + no_cycle: "Žiadny cyklus", + }, + module: { + label: "{count, plural, one {Modul} few {Moduly} other {Modulov}}", + no_module: "Žiadny modul", + }, + description_versions: { + last_edited_by: "Naposledy upravené používateľom", + previously_edited_by: "Predtým upravené používateľom", + edited_by: "Upravené používateľom", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane sa nespustil. Toto môže byť spôsobené tým, že sa jedna alebo viac služieb Plane nepodarilo spustiť.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Vyberte View Logs z setup.sh a Docker logov, aby ste si boli istí.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Osnova", + empty_state: { + title: "Chýbajú nadpisy", + description: "Pridajme na túto stránku nejaké nadpisy, aby sa tu zobrazili.", + }, + }, + info: { + label: "Info", + document_info: { + words: "Slová", + characters: "Znaky", + paragraphs: "Odseky", + read_time: "Čas čítania", + }, + actors_info: { + edited_by: "Upravil", + created_by: "Vytvoril", + }, + version_history: { + label: "História verzií", + current_version: "Aktuálna verzia", + }, + }, + assets: { + label: "Prílohy", + download_button: "Stiahnuť", + empty_state: { + title: "Chýbajú obrázky", + description: "Pridajte obrázky, aby sa tu zobrazili.", + }, + }, + }, + open_button: "Otvoriť navigačný panel", + close_button: "Zavrieť navigačný panel", + outline_floating_button: "Otvoriť osnovu", + }, +} as const; diff --git a/packages/i18n/src/locales/tr-TR/accessibility.json b/packages/i18n/src/locales/tr-TR/accessibility.json deleted file mode 100644 index 80a35611c2..0000000000 --- a/packages/i18n/src/locales/tr-TR/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Çalışma alanı logosu", - "open_workspace_switcher": "Çalışma alanı değiştiricisini aç", - "open_user_menu": "Kullanıcı menüsünü aç", - "open_command_palette": "Komut paletini aç", - "open_extended_sidebar": "Genişletilmiş kenar çubuğunu aç", - "close_extended_sidebar": "Genişletilmiş kenar çubuğunu kapat", - "create_favorites_folder": "Favoriler klasörü oluştur", - "open_folder": "Klasörü aç", - "close_folder": "Klasörü kapat", - "open_favorites_menu": "Favoriler menüsünü aç", - "close_favorites_menu": "Favoriler menüsünü kapat", - "enter_folder_name": "Klasör adını girin", - "create_new_project": "Yeni proje oluştur", - "open_projects_menu": "Projeler menüsünü aç", - "close_projects_menu": "Projeler menüsünü kapat", - "toggle_quick_actions_menu": "Hızlı eylemler menüsünü aç/kapat", - "open_project_menu": "Proje menüsünü aç", - "close_project_menu": "Proje menüsünü kapat", - "collapse_sidebar": "Kenar çubuğunu daralt", - "expand_sidebar": "Kenar çubuğunu genişlet", - "edition_badge": "Ücretli planlar modalını aç" - }, - "auth_forms": { - "clear_email": "E-postayı temizle", - "show_password": "Şifreyi göster", - "hide_password": "Şifreyi gizle", - "close_alert": "Uyarıyı kapat", - "close_popover": "Açılır pencereyi kapat" - } - } -} diff --git a/packages/i18n/src/locales/tr-TR/accessibility.ts b/packages/i18n/src/locales/tr-TR/accessibility.ts new file mode 100644 index 0000000000..9675474d06 --- /dev/null +++ b/packages/i18n/src/locales/tr-TR/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Çalışma alanı logosu", + open_workspace_switcher: "Çalışma alanı değiştiricisini aç", + open_user_menu: "Kullanıcı menüsünü aç", + open_command_palette: "Komut paletini aç", + open_extended_sidebar: "Genişletilmiş kenar çubuğunu aç", + close_extended_sidebar: "Genişletilmiş kenar çubuğunu kapat", + create_favorites_folder: "Favoriler klasörü oluştur", + open_folder: "Klasörü aç", + close_folder: "Klasörü kapat", + open_favorites_menu: "Favoriler menüsünü aç", + close_favorites_menu: "Favoriler menüsünü kapat", + enter_folder_name: "Klasör adını girin", + create_new_project: "Yeni proje oluştur", + open_projects_menu: "Projeler menüsünü aç", + close_projects_menu: "Projeler menüsünü kapat", + toggle_quick_actions_menu: "Hızlı eylemler menüsünü aç/kapat", + open_project_menu: "Proje menüsünü aç", + close_project_menu: "Proje menüsünü kapat", + collapse_sidebar: "Kenar çubuğunu daralt", + expand_sidebar: "Kenar çubuğunu genişlet", + edition_badge: "Ücretli planlar modalını aç", + }, + auth_forms: { + clear_email: "E-postayı temizle", + show_password: "Şifreyi göster", + hide_password: "Şifreyi gizle", + close_alert: "Uyarıyı kapat", + close_popover: "Açılır pencereyi kapat", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/tr-TR/editor.json b/packages/i18n/src/locales/tr-TR/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/tr-TR/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/tr-TR/editor.ts b/packages/i18n/src/locales/tr-TR/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/tr-TR/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/tr-TR/translations.json b/packages/i18n/src/locales/tr-TR/translations.json deleted file mode 100644 index 8088ff2135..0000000000 --- a/packages/i18n/src/locales/tr-TR/translations.json +++ /dev/null @@ -1,2514 +0,0 @@ -{ - "sidebar": { - "projects": "Projeler", - "pages": "Sayfalar", - "new_work_item": "Yeni iş öğesi", - "home": "Ana Sayfa", - "your_work": "Çalışmalarınız", - "inbox": "Gelen Kutusu", - "workspace": "Çalışma Alanı", - "views": "Görünümler", - "analytics": "Analizler", - "work_items": "İş öğeleri", - "cycles": "Döngüler", - "modules": "Modüller", - "intake": "Talep", - "drafts": "Taslaklar", - "favorites": "Favoriler", - "pro": "Pro", - "upgrade": "Yükselt" - }, - "auth": { - "common": { - "email": { - "label": "E-posta", - "placeholder": "isim@şirket.com", - "errors": { - "required": "E-posta gerekli", - "invalid": "Geçersiz e-posta" - } - }, - "password": { - "label": "Şifre", - "set_password": "Şifre belirle", - "placeholder": "Şifreyi girin", - "confirm_password": { - "label": "Şifreyi onayla", - "placeholder": "Şifreyi onayla" - }, - "current_password": { - "label": "Mevcut şifre", - "placeholder": "Mevcut şifreyi girin" - }, - "new_password": { - "label": "Yeni şifre", - "placeholder": "Yeni şifreyi girin" - }, - "change_password": { - "label": { - "default": "Şifreyi değiştir", - "submitting": "Şifre değiştiriliyor" - } - }, - "errors": { - "match": "Şifreler eşleşmiyor", - "empty": "Lütfen şifrenizi girin", - "length": "Şifre uzunluğu 8 karakterden fazla olmalı", - "strength": { - "weak": "Şifre zayıf", - "strong": "Şifre güçlü" - } - }, - "submit": "Şifreyi belirle", - "toast": { - "change_password": { - "success": { - "title": "Başarılı!", - "message": "Şifre başarıyla değiştirildi." - }, - "error": { - "title": "Hata!", - "message": "Bir şeyler ters gitti. Lütfen tekrar deneyin." - } - } - } - }, - "unique_code": { - "label": "Benzersiz kod", - "placeholder": "alır-atar-uçar", - "paste_code": "E-postanıza gönderilen kodu yapıştırın", - "requesting_new_code": "Yeni kod isteniyor", - "sending_code": "Kod gönderiliyor" - }, - "already_have_an_account": "Zaten bir hesabınız var mı?", - "login": "Giriş yap", - "create_account": "Hesap oluştur", - "new_to_plane": "Plane'e yeni mi geldiniz?", - "back_to_sign_in": "Giriş yapmaya geri dön", - "resend_in": "{seconds} saniye içinde tekrar gönder", - "sign_in_with_unique_code": "Benzersiz kod ile giriş yap", - "forgot_password": "Şifrenizi mi unuttunuz?" - }, - "sign_up": { - "header": { - "label": "Ekibinizle işleri yönetmeye başlamak için bir hesap oluşturun.", - "step": { - "email": { - "header": "Kaydol", - "sub_header": "" - }, - "password": { - "header": "Kaydol", - "sub_header": "E-posta-şifre kombinasyonu kullanarak kaydolun." - }, - "unique_code": { - "header": "Kaydol", - "sub_header": "Yukarıdaki e-posta adresine gönderilen benzersiz bir kod kullanarak kaydolun." - } - } - }, - "errors": { - "password": { - "strength": "Devam etmek için güçlü bir şifre belirlemeyi deneyin" - } - } - }, - "sign_in": { - "header": { - "label": "Ekibinizle işleri yönetmeye başlamak için giriş yapın.", - "step": { - "email": { - "header": "Giriş yap veya kaydol", - "sub_header": "" - }, - "password": { - "header": "Giriş yap veya kaydol", - "sub_header": "Giriş yapmak için e-posta-şifre kombinasyonunuzu kullanın." - }, - "unique_code": { - "header": "Giriş yap veya kaydol", - "sub_header": "Yukarıdaki e-posta adresine gönderilen benzersiz bir kod kullanarak giriş yapın." - } - } - } - }, - "forgot_password": { - "title": "Şifrenizi sıfırlayın", - "description": "Kullanıcı hesabınızın doğrulanmış e-posta adresini girin, size bir şifre sıfırlama bağlantısı göndereceğiz.", - "email_sent": "Sıfırlama bağlantısını e-posta adresinize gönderdik", - "send_reset_link": "Sıfırlama bağlantısı gönder", - "errors": { - "smtp_not_enabled": "Yöneticinizin SMTP'yi etkinleştirmediğini görüyoruz, bu yüzden şifre sıfırlama bağlantısı gönderemeyeceğiz" - }, - "toast": { - "success": { - "title": "E-posta gönderildi", - "message": "Şifrenizi sıfırlamak için gelen kutunuzu kontrol edin. Birkaç dakika içinde gelmezse, spam klasörünüzü kontrol edin." - }, - "error": { - "title": "Hata!", - "message": "Bir şeyler ters gitti. Lütfen tekrar deneyin." - } - } - }, - "reset_password": { - "title": "Yeni şifre belirle", - "description": "Hesabınızı güçlü bir şifreyle güvence altına alın" - }, - "set_password": { - "title": "Hesabınızı güvence altına alın", - "description": "Şifre belirlemek güvenli bir şekilde giriş yapmanıza yardımcı olur" - }, - "sign_out": { - "toast": { - "error": { - "title": "Hata!", - "message": "Çıkış yapılamadı. Lütfen tekrar deneyin." - } - } - } - }, - "submit": "Gönder", - "cancel": "İptal", - "loading": "Yükleniyor", - "error": "Hata", - "success": "Başarılı", - "warning": "Uyarı", - "info": "Bilgi", - "close": "Kapat", - "yes": "Evet", - "no": "Hayır", - "ok": "Tamam", - "name": "Ad", - "description": "Açıklama", - "search": "Ara", - "add_member": "Üye ekle", - "adding_members": "Üyeler ekleniyor", - "remove_member": "Üyeyi kaldır", - "add_members": "Üyeler ekle", - "adding_member": "Üye ekleniyor", - "remove_members": "Üyeleri kaldır", - "add": "Ekle", - "adding": "Ekleniyor", - "remove": "Kaldır", - "add_new": "Yeni ekle", - "remove_selected": "Seçileni kaldır", - "first_name": "Ad", - "last_name": "Soyad", - "email": "E-posta", - "display_name": "Görünen ad", - "role": "Rol", - "timezone": "Saat dilimi", - "avatar": "Profil resmi", - "cover_image": "Kapak resmi", - "password": "Şifre", - "change_cover": "Kapağı değiştir", - "language": "Dil", - "saving": "Kaydediliyor", - "save_changes": "Değişiklikleri kaydet", - "deactivate_account": "Hesabı devre dışı bırak", - "deactivate_account_description": "Bir hesap devre dışı bırakıldığında, o hesaptaki tüm veri ve kaynaklar kalıcı olarak kaldırılır ve kurtarılamaz.", - "profile_settings": "Profil ayarları", - "your_account": "Hesabınız", - "security": "Güvenlik", - "activity": "Aktivite", - "appearance": "Görünüm", - "notifications": "Bildirimler", - "workspaces": "Çalışma Alanları", - "create_workspace": "Çalışma Alanı Oluştur", - "invitations": "Davetler", - "summary": "Özet", - "assigned": "Atanan", - "created": "Oluşturulan", - "subscribed": "Abone olunan", - "you_do_not_have_the_permission_to_access_this_page": "Bu sayfaya erişim izniniz yok.", - "something_went_wrong_please_try_again": "Bir hata oluştu. Lütfen tekrar deneyin.", - "load_more": "Daha fazla yükle", - "select_or_customize_your_interface_color_scheme": "Arayüz renk şemanızı seçin veya özelleştirin.", - "theme": "Tema", - "system_preference": "Sistem tercihi", - "light": "Açık", - "dark": "Koyu", - "light_contrast": "Yüksek kontrastlı açık", - "dark_contrast": "Yüksek kontrastlı koyu", - "custom": "Özel tema", - "select_your_theme": "Temanızı seçin", - "customize_your_theme": "Temanızı özelleştirin", - "background_color": "Arkaplan rengi", - "text_color": "Metin rengi", - "primary_color": "Ana (Tema) rengi", - "sidebar_background_color": "Kenar çubuğu arkaplan rengi", - "sidebar_text_color": "Kenar çubuğu metin rengi", - "set_theme": "Temayı ayarla", - "enter_a_valid_hex_code_of_6_characters": "6 karakterlik geçerli bir hex kodu girin", - "background_color_is_required": "Arkaplan rengi gereklidir", - "text_color_is_required": "Metin rengi gereklidir", - "primary_color_is_required": "Ana renk gereklidir", - "sidebar_background_color_is_required": "Kenar çubuğu arkaplan rengi gereklidir", - "sidebar_text_color_is_required": "Kenar çubuğu metin rengi gereklidir", - "updating_theme": "Tema güncelleniyor", - "theme_updated_successfully": "Tema başarıyla güncellendi", - "failed_to_update_the_theme": "Tema güncellenemedi", - "email_notifications": "E-posta bildirimleri", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Abone olduğunuz iş öğelerinden haberdar olun. Bildirim almak için bunu etkinleştirin.", - "email_notification_setting_updated_successfully": "E-posta bildirim ayarı başarıyla güncellendi", - "failed_to_update_email_notification_setting": "E-posta bildirim ayarı güncellenemedi", - "notify_me_when": "Bana ne zaman bildirilsin", - "property_changes": "Özellik değişiklikleri", - "property_changes_description": "Bir iş öğesinin atananlar, öncelik, tahminler gibi özellikleri değiştiğinde bildir.", - "state_change": "Durum değişikliği", - "state_change_description": "İş öğesi farklı bir duruma geçtiğinde bildir.", - "issue_completed": "İş öğesi tamamlandı", - "issue_completed_description": "Yalnızca bir iş öğesi tamamlandığında bildir.", - "comments": "Yorumlar", - "comments_description": "Birisi iş öğesine yorum yaptığında bildir.", - "mentions": "Bahsetmeler", - "mentions_description": "Yalnızca birisi yorumlarda veya açıklamada beni etiketlediğinde bildir.", - "old_password": "Eski şifre", - "general_settings": "Genel ayarlar", - "sign_out": "Çıkış yap", - "signing_out": "Çıkış yapılıyor", - "active_cycles": "Aktif Döngüler", - "active_cycles_description": "Projeler arasında döngüleri izleyin, yüksek öncelikli iş öğelerini takip edin ve dikkat gerektiren döngülere odaklanın.", - "on_demand_snapshots_of_all_your_cycles": "Tüm döngülerinizin anlık görüntüleri", - "upgrade": "Yükselt", - "10000_feet_view": "Tüm aktif döngülerin genel görünümü", - "10000_feet_view_description": "Her projede tek tek dolaşmak yerine, tüm projelerinizdeki çalışan döngüleri bir arada görün.", - "get_snapshot_of_each_active_cycle": "Her aktif döngünün anlık görüntüsünü alın", - "get_snapshot_of_each_active_cycle_description": "Tüm aktif döngüler için üst düzey metrikleri takip edin, ilerleme durumlarını görün ve son teslim tarihlerine göre kapsamı anlayın.", - "compare_burndowns": "Burndown'ları karşılaştırın", - "compare_burndowns_description": "Her ekibin performansını her döngünün burndown raporuyla izleyin.", - "quickly_see_make_or_break_issues": "Kritik iş öğelerini hızlıca görün", - "quickly_see_make_or_break_issues_description": "Her döngü için yüksek öncelikli iş öğelerini son teslim tarihlerine göre önizleyin. Tümünü tek tıkla görün.", - "zoom_into_cycles_that_need_attention": "Dikkat gerektiren döngülere odaklanın", - "zoom_into_cycles_that_need_attention_description": "Beklentilere uymayan herhangi bir döngünün durumunu tek tıkla inceleyin.", - "stay_ahead_of_blockers": "Engellerin önüne geçin", - "stay_ahead_of_blockers_description": "Projeler arası zorlukları ve diğer görünümlerde belirgin olmayan döngü bağımlılıklarını tespit edin.", - "analytics": "Analitik", - "workspace_invites": "Çalışma Alanı Davetleri", - "enter_god_mode": "Yönetici Moduna Geç", - "workspace_logo": "Çalışma Alanı Logosu", - "new_issue": "Yeni İş Öğesi", - "your_work": "Sizin İşleriniz", - "drafts": "Taslaklar", - "projects": "Projeler", - "views": "Görünümler", - "workspace": "Çalışma Alanı", - "archives": "Arşivler", - "settings": "Ayarlar", - "failed_to_move_favorite": "Favori taşınamadı", - "favorites": "Favoriler", - "no_favorites_yet": "Henüz favori yok", - "create_folder": "Klasör oluştur", - "new_folder": "Yeni Klasör", - "favorite_updated_successfully": "Favori başarıyla güncellendi", - "favorite_created_successfully": "Favori başarıyla oluşturuldu", - "folder_already_exists": "Klasör zaten var", - "folder_name_cannot_be_empty": "Klasör adı boş olamaz", - "something_went_wrong": "Bir şeyler yanlış gitti", - "failed_to_reorder_favorite": "Favori sıralaması değiştirilemedi", - "favorite_removed_successfully": "Favori başarıyla kaldırıldı", - "failed_to_create_favorite": "Favori oluşturulamadı", - "failed_to_rename_favorite": "Favori yeniden adlandırılamadı", - "project_link_copied_to_clipboard": "Proje bağlantısı panoya kopyalandı", - "link_copied": "Bağlantı kopyalandı", - "add_project": "Proje ekle", - "create_project": "Proje oluştur", - "failed_to_remove_project_from_favorites": "Proje favorilerden kaldırılamadı. Lütfen tekrar deneyin.", - "project_created_successfully": "Proje başarıyla oluşturuldu", - "project_created_successfully_description": "Proje başarıyla oluşturuldu. Artık iş öğeleri eklemeye başlayabilirsiniz.", - "project_name_already_taken": "Proje ismi zaten kullanılıyor.", - "project_identifier_already_taken": "Proje kimliği zaten kullanılıyor.", - "project_cover_image_alt": "Proje kapak resmi", - "name_is_required": "Ad gereklidir", - "title_should_be_less_than_255_characters": "Başlık 255 karakterden az olmalı", - "project_name": "Proje Adı", - "project_id_must_be_at_least_1_character": "Proje ID en az 1 karakter olmalı", - "project_id_must_be_at_most_5_characters": "Proje ID en fazla 5 karakter olmalı", - "project_id": "Proje ID", - "project_id_tooltip_content": "Projedeki iş öğelerini benzersiz şekilde tanımlamanıza yardımcı olur. Maks. 5 karakter.", - "description_placeholder": "Açıklama", - "only_alphanumeric_non_latin_characters_allowed": "Yalnızca alfasayısal ve Latin olmayan karakterlere izin verilir.", - "project_id_is_required": "Proje ID gereklidir", - "project_id_allowed_char": "Yalnızca alfasayısal ve Latin olmayan karakterlere izin verilir.", - "project_id_min_char": "Proje ID en az 1 karakter olmalı", - "project_id_max_char": "Proje ID en fazla 5 karakter olmalı", - "project_description_placeholder": "Proje açıklamasını girin", - "select_network": "Ağ seç", - "lead": "Lider", - "date_range": "Tarih aralığı", - "private": "Özel", - "public": "Herkese Açık", - "accessible_only_by_invite": "Yalnızca davetle erişilebilir", - "anyone_in_the_workspace_except_guests_can_join": "Çalışma alanındaki herkes (Misafirler hariç) katılabilir", - "creating": "Oluşturuluyor", - "creating_project": "Proje oluşturuluyor", - "adding_project_to_favorites": "Proje favorilere ekleniyor", - "project_added_to_favorites": "Proje favorilere eklendi", - "couldnt_add_the_project_to_favorites": "Proje favorilere eklenemedi. Lütfen tekrar deneyin.", - "removing_project_from_favorites": "Proje favorilerden kaldırılıyor", - "project_removed_from_favorites": "Proje favorilerden kaldırıldı", - "couldnt_remove_the_project_from_favorites": "Proje favorilerden kaldırılamadı. Lütfen tekrar deneyin.", - "add_to_favorites": "Favorilere ekle", - "remove_from_favorites": "Favorilerden kaldır", - "publish_project": "Projeyi yayımla", - "publish": "Yayınla", - "copy_link": "Bağlantıyı kopyala", - "leave_project": "Projeden ayrıl", - "join_the_project_to_rearrange": "Yeniden düzenlemek için projeye katılın", - "drag_to_rearrange": "Sürükleyerek yeniden düzenle", - "congrats": "Tebrikler!", - "open_project": "Projeyi aç", - "issues": "İş Öğeleri", - "cycles": "Döngüler", - "modules": "Modüller", - "pages": "Sayfalar", - "intake": "Talep", - "time_tracking": "Zaman Takibi", - "work_management": "İş Yönetimi", - "projects_and_issues": "Projeler ve İş Öğeleri", - "projects_and_issues_description": "Bu projede bu özellikleri açıp kapatın.", - "cycles_description": "Projeye göre işi zamanla sınırlandırın ve gerektiğinde zaman dilimini ayarlayın. Bir döngü 2 hafta, bir sonraki 1 hafta olabilir.", - "modules_description": "İşi, özel liderler ve atanmış kişilerle alt projelere ayırın.", - "views_description": "Özel sıralamaları, filtreleri ve görüntüleme seçeneklerini kaydedin veya ekibinizle paylaşın.", - "pages_description": "Serbest biçimli içerikler oluşturun ve düzenleyin; notlar, belgeler, her şey.", - "intake_description": "Üye olmayanların hata, geri bildirim ve öneri paylaşmasına izin verin; iş akışınızı bozmadan.", - "time_tracking_description": "İş öğeleri ve projelerde harcanan zamanı kaydedin.", - "work_management_description": "İşlerinizi ve projelerinizi kolayca yönetin.", - "documentation": "Dokümantasyon", - "message_support": "Destekle iletişim", - "contact_sales": "Satış Ekibiyle İletişim", - "hyper_mode": "Hiper Mod", - "keyboard_shortcuts": "Klavye Kısayolları", - "whats_new": "Yenilikler", - "version": "Sürüm", - "we_are_having_trouble_fetching_the_updates": "Güncellemeler alınırken sorun oluştu.", - "our_changelogs": "değişiklik kayıtlarımızı", - "for_the_latest_updates": "en son güncellemeler için", - "please_visit": "Lütfen ziyaret edin", - "docs": "Dokümanlar", - "full_changelog": "Tam Değişiklik Kaydı", - "support": "Destek", - "discord": "Discord", - "powered_by_plane_pages": "Plane Pages tarafından desteklenmektedir", - "please_select_at_least_one_invitation": "Lütfen en az bir davet seçin.", - "please_select_at_least_one_invitation_description": "Çalışma alanına katılmak için lütfen en az bir davet seçin.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Birinin sizi bir çalışma alanına davet ettiğini görüyoruz", - "join_a_workspace": "Bir çalışma alanına katıl", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Birinin sizi bir çalışma alanına davet ettiğini görüyoruz", - "join_a_workspace_description": "Bir çalışma alanına katıl", - "accept_and_join": "Kabul Et ve Katıl", - "go_home": "Ana Sayfaya Dön", - "no_pending_invites": "Bekleyen davet yok", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Biri sizi bir çalışma alanına davet ederse burada görebilirsiniz", - "back_to_home": "Ana Sayfaya Dön", - "workspace_name": "çalışma-alanı-adı", - "deactivate_your_account": "Hesabınızı devre dışı bırakın", - "deactivate_your_account_description": "Devre dışı bırakıldığında, iş öğelerine atanamazsınız ve çalışma alanınız için faturalandırılmazsınız. Hesabınızı yeniden etkinleştirmek için bu e-posta adresine bir çalışma alanı daveti gerekecektir.", - "deactivating": "Devre dışı bırakılıyor", - "confirm": "Onayla", - "confirming": "Onaylanıyor", - "draft_created": "Taslak oluşturuldu", - "issue_created_successfully": "İş öğesi başarıyla oluşturuldu", - "draft_creation_failed": "Taslak oluşturulamadı", - "issue_creation_failed": "İş öğesi oluşturulamadı", - "draft_issue": "Taslak İş Öğesi", - "issue_updated_successfully": "İş öğesi başarıyla güncellendi", - "issue_could_not_be_updated": "İş öğesi güncellenemedi", - "create_a_draft": "Taslak oluştur", - "save_to_drafts": "Taslaklara Kaydet", - "save": "Kaydet", - "update": "Güncelle", - "updating": "Güncelleniyor", - "create_new_issue": "Yeni iş öğesi oluştur", - "editor_is_not_ready_to_discard_changes": "Düzenleyici değişiklikleri atmaya hazır değil", - "failed_to_move_issue_to_project": "İş öğesi projeye taşınamadı", - "create_more": "Daha fazla oluştur", - "add_to_project": "Projeye ekle", - "discard": "Vazgeç", - "duplicate_issue_found": "Yinelenen iş öğesi bulundu", - "duplicate_issues_found": "Yinelenen iş öğeleri bulundu", - "no_matching_results": "Eşleşen sonuç yok", - "title_is_required": "Başlık gereklidir", - "title": "Başlık", - "state": "Durum", - "priority": "Öncelik", - "none": "Yok", - "urgent": "Acil", - "high": "Yüksek", - "medium": "Orta", - "low": "Düşük", - "members": "Üyeler", - "assignee": "Atanan", - "assignees": "Atananlar", - "you": "Siz", - "labels": "Etiketler", - "create_new_label": "Yeni etiket oluştur", - "start_date": "Başlangıç tarihi", - "end_date": "Bitiş tarihi", - "due_date": "Son tarih", - "estimate": "Tahmin", - "change_parent_issue": "Üst iş öğesini değiştir", - "remove_parent_issue": "Üst iş öğesini kaldır", - "add_parent": "Üst ekle", - "loading_members": "Üyeler yükleniyor", - "view_link_copied_to_clipboard": "Görünüm bağlantısı panoya kopyalandı.", - "required": "Gerekli", - "optional": "İsteğe Bağlı", - "Cancel": "İptal", - "edit": "Düzenle", - "archive": "Arşivle", - "restore": "Geri Yükle", - "open_in_new_tab": "Yeni sekmede aç", - "delete": "Sil", - "deleting": "Siliniyor", - "make_a_copy": "Kopyasını oluştur", - "move_to_project": "Projeye taşı", - "good": "İyi", - "morning": "sabah", - "afternoon": "öğleden sonra", - "evening": "akşam", - "show_all": "Tümünü göster", - "show_less": "Daha az göster", - "no_data_yet": "Henüz veri yok", - "syncing": "Senkronize ediliyor", - "add_work_item": "İş öğesi ekle", - "advanced_description_placeholder": "Komutlar için '/' tuşuna basın", - "create_work_item": "İş öğesi oluştur", - "attachments": "Ekler", - "declining": "Reddediliyor", - "declined": "Reddedildi", - "decline": "Reddet", - "unassigned": "Atanmamış", - "work_items": "İş Öğeleri", - "add_link": "Bağlantı ekle", - "points": "Puanlar", - "no_assignee": "Atanan yok", - "no_assignees_yet": "Henüz atanan yok", - "no_labels_yet": "Henüz etiket yok", - "ideal": "İdeal", - "current": "Mevcut", - "no_matching_members": "Eşleşen üye yok", - "leaving": "Ayrılıyor", - "removing": "Kaldırılıyor", - "leave": "Ayrıl", - "refresh": "Yenile", - "refreshing": "Yenileniyor", - "refresh_status": "Durumu yenile", - "prev": "Önceki", - "next": "Sonraki", - "re_generating": "Yeniden oluşturuluyor", - "re_generate": "Yeniden oluştur", - "re_generate_key": "Anahtarı yeniden oluştur", - "export": "Dışa aktar", - "member": "{count, plural, one{# üye} other{# üye}}", - "new_password_must_be_different_from_old_password": "Yeni şifre eski şifreden farklı olmalı", - "edited": "düzenlendi", - "bot": "Bot", - "project_view": { - "sort_by": { - "created_at": "Oluşturulma tarihi", - "updated_at": "Güncelleme tarihi", - "name": "Ad" - } - }, - "toast": { - "success": "Başarılı!", - "error": "Hata!" - }, - "links": { - "toasts": { - "created": { - "title": "Bağlantı oluşturuldu", - "message": "Bağlantı başarıyla oluşturuldu" - }, - "not_created": { - "title": "Bağlantı oluşturulamadı", - "message": "Bağlantı oluşturulamadı" - }, - "updated": { - "title": "Bağlantı güncellendi", - "message": "Bağlantı başarıyla güncellendi" - }, - "not_updated": { - "title": "Bağlantı güncellenemedi", - "message": "Bağlantı güncellenemedi" - }, - "removed": { - "title": "Bağlantı kaldırıldı", - "message": "Bağlantı başarıyla kaldırıldı" - }, - "not_removed": { - "title": "Bağlantı kaldırılamadı", - "message": "Bağlantı kaldırılamadı" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Hızlı başlangıç rehberiniz", - "not_right_now": "Şimdi değil", - "create_project": { - "title": "Proje oluştur", - "description": "Çoğu şey Plane'de bir projeyle başlar.", - "cta": "Başla" - }, - "invite_team": { - "title": "Ekibinizi davet edin", - "description": "Ekip arkadaşlarınızla birlikte inşa edin, gönderin ve yönetin.", - "cta": "Davet et" - }, - "configure_workspace": { - "title": "Çalışma alanınızı ayarlayın.", - "description": "Özellikleri açıp kapatın veya daha fazlasını yapın.", - "cta": "Yapılandır" - }, - "personalize_account": { - "title": "Plane'yi kendinize özelleştirin.", - "description": "Resminizi, renklerinizi ve daha fazlasını seçin.", - "cta": "Kişiselleştir" - }, - "widgets": { - "title": "Widget'lar Kapalıyken Sessiz, Onları Açın", - "description": "Görünüşe göre tüm widget'larınız kapalı. Deneyiminizi geliştirmek için şimdi etkinleştirin!", - "primary_button": { - "text": "Widget'ları yönet" - } - } - }, - "quick_links": { - "empty": "Kolay erişim için hızlı bağlantılar ekleyin.", - "add": "Hızlı bağlantı ekle", - "title": "Hızlı Bağlantı", - "title_plural": "Hızlı Bağlantılar" - }, - "recents": { - "title": "Sonlar", - "empty": { - "project": "Bir projeyi ziyaret ettikten sonra son projeleriniz burada görünecek.", - "page": "Bir sayfayı ziyaret ettikten sonra son sayfalarınız burada görünecek.", - "issue": "Bir iş öğesini ziyaret ettikten sonra son iş öğeleriniz burada görünecek.", - "default": "Henüz hiç sonunuz yok." - }, - "filters": { - "all": "Tüm öğeler", - "projects": "Projeler", - "pages": "Sayfalar", - "issues": "İş öğeleri" - } - }, - "new_at_plane": { - "title": "Plane'de Yenilikler" - }, - "quick_tutorial": { - "title": "Hızlı eğitim" - }, - "widget": { - "reordered_successfully": "Widget başarıyla yeniden sıralandı.", - "reordering_failed": "Widget yeniden sıralanırken hata oluştu." - }, - "manage_widgets": "Widget'ları yönet", - "title": "Ana Sayfa", - "star_us_on_github": "Bizi GitHub'da yıldızlayın" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL geçersiz", - "placeholder": "URL yazın veya yapıştırın" - }, - "title": { - "text": "Görünen başlık", - "placeholder": "Bu bağlantıyı nasıl görmek istersiniz" - } - } - }, - "common": { - "all": "Tümü", - "states": "Durumlar", - "state": "Durum", - "state_groups": "Durum grupları", - "state_group": "Durum grubu", - "priorities": "Öncelikler", - "priority": "Öncelik", - "team_project": "Takım projesi", - "project": "Proje", - "cycle": "Döngü", - "cycles": "Döngüler", - "module": "Modül", - "modules": "Modüller", - "labels": "Etiketler", - "label": "Etiket", - "assignees": "Atananlar", - "assignee": "Atanan", - "created_by": "Oluşturan", - "none": "Yok", - "link": "Bağlantı", - "estimates": "Tahminler", - "estimate": "Tahmin", - "created_at": "Oluşturulma tarihi", - "completed_at": "Tamamlanma tarihi", - "layout": "Düzen", - "filters": "Filtreler", - "display": "Görüntüle", - "load_more": "Daha fazla yükle", - "activity": "Aktivite", - "analytics": "Analitik", - "dates": "Tarihler", - "success": "Başarılı!", - "something_went_wrong": "Bir şeyler yanlış gitti", - "error": { - "label": "Hata!", - "message": "Bir hata oluştu. Lütfen tekrar deneyin." - }, - "group_by": "Gruplandır", - "epic": "Epik", - "epics": "Epikler", - "work_item": "İş öğesi", - "work_items": "İş Öğeleri", - "sub_work_item": "Alt iş öğesi", - "add": "Ekle", - "warning": "Uyarı", - "updating": "Güncelleniyor", - "adding": "Ekleniyor", - "update": "Güncelle", - "creating": "Oluşturuluyor", - "create": "Oluştur", - "cancel": "İptal", - "description": "Açıklama", - "title": "Başlık", - "attachment": "Ek", - "general": "Genel", - "features": "Özellikler", - "automation": "Otomasyon", - "project_name": "Proje Adı", - "project_id": "Proje ID", - "project_timezone": "Proje Saat Dilimi", - "created_on": "Oluşturulma tarihi", - "update_project": "Projeyi güncelle", - "identifier_already_exists": "Tanımlayıcı zaten var", - "add_more": "Daha fazla ekle", - "defaults": "Varsayılanlar", - "add_label": "Etiket ekle", - "customize_time_range": "Zaman aralığını özelleştir", - "loading": "Yükleniyor", - "attachments": "Ekler", - "property": "Özellik", - "properties": "Özellikler", - "parent": "Üst", - "page": "Sayfa", - "remove": "Kaldır", - "archiving": "Arşivleniyor", - "archive": "Arşivle", - "access": { - "public": "Herkese Açık", - "private": "Özel" - }, - "done": "Tamamlandı", - "sub_work_items": "Alt iş öğeleri", - "comment": "Yorum", - "workspace_level": "Çalışma Alanı Seviyesi", - "order_by": { - "label": "Sırala", - "manual": "Manuel", - "last_created": "Son oluşturulan", - "last_updated": "Son güncellenen", - "start_date": "Başlangıç tarihi", - "due_date": "Son tarih", - "asc": "Artan", - "desc": "Azalan", - "updated_on": "Güncellenme tarihi" - }, - "sort": { - "asc": "Artan", - "desc": "Azalan", - "created_on": "Oluşturulma tarihi", - "updated_on": "Güncellenme tarihi" - }, - "comments": "Yorumlar", - "updates": "Güncellemeler", - "clear_all": "Tümünü temizle", - "copied": "Kopyalandı!", - "link_copied": "Bağlantı kopyalandı!", - "link_copied_to_clipboard": "Bağlantı panoya kopyalandı", - "copied_to_clipboard": "İş öğesi bağlantısı panoya kopyalandı", - "is_copied_to_clipboard": "İş öğesi panoya kopyalandı", - "no_links_added_yet": "Henüz bağlantı eklenmedi", - "add_link": "Bağlantı ekle", - "links": "Bağlantılar", - "go_to_workspace": "Çalışma Alanına Git", - "progress": "İlerleme", - "optional": "İsteğe Bağlı", - "join": "Katıl", - "go_back": "Geri Dön", - "continue": "Devam Et", - "resend": "Yeniden Gönder", - "relations": "İlişkiler", - "errors": { - "default": { - "title": "Hata!", - "message": "Bir hata oluştu. Lütfen tekrar deneyin." - }, - "required": "Bu alan gereklidir", - "entity_required": "{entity} gereklidir", - "restricted_entity": "{entity} kısıtlanmıştır" - }, - "update_link": "Bağlantıyı güncelle", - "attach": "Ekle", - "create_new": "Yeni oluştur", - "add_existing": "Varolanı ekle", - "type_or_paste_a_url": "URL yazın veya yapıştırın", - "url_is_invalid": "URL geçersiz", - "display_title": "Görünen başlık", - "link_title_placeholder": "Bu bağlantıyı nasıl görmek istersiniz", - "url": "URL", - "side_peek": "Yan Görünüm", - "modal": "Modal", - "full_screen": "Tam Ekran", - "close_peek_view": "Yan görünümü kapat", - "toggle_peek_view_layout": "Yan görünüm düzenini değiştir", - "options": "Seçenekler", - "duration": "Süre", - "today": "Bugün", - "week": "Hafta", - "month": "Ay", - "quarter": "Çeyrek", - "press_for_commands": "Komutlar için '/' tuşuna basın", - "click_to_add_description": "Açıklama eklemek için tıkla", - "search": { - "label": "Ara", - "placeholder": "Aramak için yazın", - "no_matches_found": "Eşleşme bulunamadı", - "no_matching_results": "Eşleşen sonuç yok" - }, - "actions": { - "edit": "Düzenle", - "make_a_copy": "Kopyasını oluştur", - "open_in_new_tab": "Yeni sekmede aç", - "copy_link": "Bağlantıyı kopyala", - "archive": "Arşivle", - "restore": "Geri yükle", - "delete": "Sil", - "remove_relation": "İlişkiyi kaldır", - "subscribe": "Abone ol", - "unsubscribe": "Abonelikten çık", - "clear_sorting": "Sıralamayı temizle", - "show_weekends": "Hafta sonlarını göster", - "enable": "Etkinleştir", - "disable": "Devre dışı bırak", - "copy_markdown": "Markdown'ı kopyala" - }, - "name": "Ad", - "discard": "Vazgeç", - "confirm": "Onayla", - "confirming": "Onaylanıyor", - "read_the_docs": "Dokümanları oku", - "default": "Varsayılan", - "active": "Aktif", - "enabled": "Etkin", - "disabled": "Devre Dışı", - "mandate": "Yetki", - "mandatory": "Zorunlu", - "yes": "Evet", - "no": "Hayır", - "please_wait": "Lütfen bekleyin", - "enabling": "Etkinleştiriliyor", - "disabling": "Devre Dışı Bırakılıyor", - "beta": "Beta", - "or": "veya", - "next": "Sonraki", - "back": "Geri", - "cancelling": "İptal ediliyor", - "configuring": "Yapılandırılıyor", - "clear": "Temizle", - "import": "İçe aktar", - "connect": "Bağlan", - "authorizing": "Yetkilendiriliyor", - "processing": "İşleniyor", - "no_data_available": "Veri yok", - "from": "{name} kaynaklı", - "authenticated": "Kimliği doğrulandı", - "select": "Seç", - "upgrade": "Yükselt", - "add_seats": "Koltuk Ekle", - "projects": "Projeler", - "workspace": "Çalışma Alanı", - "workspaces": "Çalışma Alanları", - "team": "Takım", - "teams": "Takımlar", - "entity": "Varlık", - "entities": "Varlıklar", - "task": "Görev", - "tasks": "Görevler", - "section": "Bölüm", - "sections": "Bölümler", - "edit": "Düzenle", - "connecting": "Bağlanılıyor", - "connected": "Bağlı", - "disconnect": "Bağlantıyı kes", - "disconnecting": "Bağlantı kesiliyor", - "installing": "Yükleniyor", - "install": "Yükle", - "reset": "Sıfırla", - "live": "Canlı", - "change_history": "Değişiklik Geçmişi", - "coming_soon": "Çok Yakında", - "member": "Üye", - "members": "Üyeler", - "you": "Siz", - "upgrade_cta": { - "higher_subscription": "Daha yüksek aboneliğe yükselt", - "talk_to_sales": "Satış Ekibiyle Görüş" - }, - "category": "Kategori", - "categories": "Kategoriler", - "saving": "Kaydediliyor", - "save_changes": "Değişiklikleri Kaydet", - "delete": "Sil", - "deleting": "Siliniyor", - "pending": "Beklemede", - "invite": "Davet Et", - "view": "Görünüm", - "deactivated_user": "Devre dışı bırakılmış kullanıcı", - "apply": "Uygula", - "applying": "Uygulanıyor", - "users": "Kullanıcılar", - "admins": "Yöneticiler", - "guests": "Misafirler", - "on_track": "Yolunda", - "off_track": "Yolunda değil", - "at_risk": "Risk altında", - "timeline": "Zaman çizelgesi", - "completion": "Tamamlama", - "upcoming": "Yaklaşan", - "completed": "Tamamlandı", - "in_progress": "Devam ediyor", - "planned": "Planlandı", - "paused": "Durduruldu", - "no_of": "{entity} sayısı", - "resolved": "Çözüldü" - }, - "chart": { - "x_axis": "X ekseni", - "y_axis": "Y ekseni", - "metric": "Metrik" - }, - "form": { - "title": { - "required": "Başlık gereklidir", - "max_length": "Başlık {length} karakterden az olmalı" - } - }, - "entity": { - "grouping_title": "{entity} Gruplandırma", - "priority": "{entity} Önceliği", - "all": "Tüm {entity}", - "drop_here_to_move": "{entity} taşımak için buraya bırakın", - "delete": { - "label": "{entity} Sil", - "success": "{entity} başarıyla silindi", - "failed": "{entity} silinemedi" - }, - "update": { - "failed": "{entity} güncellenemedi", - "success": "{entity} başarıyla güncellendi" - }, - "link_copied_to_clipboard": "{entity} bağlantısı panoya kopyalandı", - "fetch": { - "failed": "{entity} alınırken hata oluştu" - }, - "add": { - "success": "{entity} başarıyla eklendi", - "failed": "{entity} eklenirken hata oluştu" - }, - "remove": { - "success": "{entity} başarıyla kaldırıldı", - "failed": "{entity} kaldırılırken hata oluştu" - } - }, - "epic": { - "all": "Tüm Epikler", - "label": "{count, plural, one {Epik} other {Epikler}}", - "new": "Yeni Epik", - "adding": "Epik ekleniyor", - "create": { - "success": "Epik başarıyla oluşturuldu" - }, - "add": { - "press_enter": "Başka bir epik eklemek için 'Enter'a basın", - "label": "Epik Ekle" - }, - "title": { - "label": "Epik Başlığı", - "required": "Epik başlığı gereklidir." - } - }, - "issue": { - "label": "{count, plural, one {İş öğesi} other {İş öğeleri}}", - "all": "Tüm İş Öğeleri", - "edit": "İş öğesini düzenle", - "title": { - "label": "İş öğesi başlığı", - "required": "İş öğesi başlığı gereklidir." - }, - "add": { - "press_enter": "Başka bir iş öğesi eklemek için 'Enter'a basın", - "label": "İş öğesi ekle", - "cycle": { - "failed": "İş öğesi döngüye eklenemedi. Lütfen tekrar deneyin.", - "success": "{count, plural, one {İş öğesi} other {İş öğeleri}} döngüye başarıyla eklendi.", - "loading": "{count, plural, one {İş öğesi} other {İş öğeleri}} döngüye ekleniyor" - }, - "assignee": "Atanan ekle", - "start_date": "Başlangıç tarihi ekle", - "due_date": "Son tarih ekle", - "parent": "Üst iş öğesi ekle", - "sub_issue": "Alt iş öğesi ekle", - "relation": "İlişki ekle", - "link": "Bağlantı ekle", - "existing": "Varolan iş öğesi ekle" - }, - "remove": { - "label": "İş öğesini kaldır", - "cycle": { - "loading": "İş öğesi döngüden kaldırılıyor", - "success": "İş öğesi döngüden başarıyla kaldırıldı.", - "failed": "İş öğesi döngüden kaldırılamadı. Lütfen tekrar deneyin." - }, - "module": { - "loading": "İş öğesi modülden kaldırılıyor", - "success": "İş öğesi modülden başarıyla kaldırıldı.", - "failed": "İş öğesi modülden kaldırılamadı. Lütfen tekrar deneyin." - }, - "parent": { - "label": "Üst iş öğesini kaldır" - } - }, - "new": "Yeni İş Öğesi", - "adding": "İş öğesi ekleniyor", - "create": { - "success": "İş öğesi başarıyla oluşturuldu" - }, - "priority": { - "urgent": "Acil", - "high": "Yüksek", - "medium": "Orta", - "low": "Düşük" - }, - "display": { - "properties": { - "label": "Görünen Özellikler", - "id": "ID", - "issue_type": "İş Öğesi Türü", - "sub_issue_count": "Alt iş öğesi sayısı", - "attachment_count": "Ek sayısı", - "created_on": "Oluşturulma tarihi", - "sub_issue": "Alt iş öğesi", - "work_item_count": "İş öğesi sayısı" - }, - "extra": { - "show_sub_issues": "Alt iş öğelerini göster", - "show_empty_groups": "Boş grupları göster" - } - }, - "layouts": { - "ordered_by_label": "Bu düzen şu şekilde sıralanmıştır", - "list": "Liste", - "kanban": "Pano", - "calendar": "Takvim", - "spreadsheet": "Tablo", - "gantt": "Zaman Çizelgesi", - "title": { - "list": "Liste Düzeni", - "kanban": "Pano Düzeni", - "calendar": "Takvim Düzeni", - "spreadsheet": "Tablo Düzeni", - "gantt": "Zaman Çizelgesi Düzeni" - } - }, - "states": { - "active": "Aktif", - "backlog": "Bekleme Listesi" - }, - "comments": { - "placeholder": "Yorum ekle", - "switch": { - "private": "Özel yoruma geç", - "public": "Genel yoruma geç" - }, - "create": { - "success": "Yorum başarıyla oluşturuldu", - "error": "Yorum oluşturulamadı. Lütfen daha sonra tekrar deneyin." - }, - "update": { - "success": "Yorum başarıyla güncellendi", - "error": "Yorum güncellenemedi. Lütfen daha sonra tekrar deneyin." - }, - "remove": { - "success": "Yorum başarıyla kaldırıldı", - "error": "Yorum kaldırılamadı. Lütfen daha sonra tekrar deneyin." - }, - "upload": { - "error": "Dosya yüklenemedi. Lütfen daha sonra tekrar deneyin." - }, - "copy_link": { - "success": "Yorum bağlantısı panoya kopyalandı", - "error": "Yorum bağlantısı kopyalanırken hata oluştu. Lütfen daha sonra tekrar deneyin." - } - }, - "empty_state": { - "issue_detail": { - "title": "İş öğesi mevcut değil", - "description": "Aradığınız iş öğesi mevcut değil, arşivlenmiş veya silinmiş.", - "primary_button": { - "text": "Diğer iş öğelerini görüntüle" - } - } - }, - "sibling": { - "label": "Kardeş iş öğeleri" - }, - "archive": { - "description": "Yalnızca tamamlanmış veya iptal edilmiş\niş öğeleri arşivlenebilir", - "label": "İş Öğesini Arşivle", - "confirm_message": "Bu iş öğesini arşivlemek istediğinizden emin misiniz? Arşivlenen tüm iş öğelerinizi daha sonra geri yükleyebilirsiniz.", - "success": { - "label": "Arşivleme başarılı", - "message": "Arşivleriniz proje arşivlerinde bulunabilir." - }, - "failed": { - "message": "İş öğesi arşivlenemedi. Lütfen tekrar deneyin." - } - }, - "restore": { - "success": { - "title": "Geri yükleme başarılı", - "message": "İş öğeniz proje iş öğelerinde bulunabilir." - }, - "failed": { - "message": "İş öğesi geri yüklenemedi. Lütfen tekrar deneyin." - } - }, - "relation": { - "relates_to": "İlişkili", - "duplicate": "Kopyası", - "blocked_by": "Engellendi", - "blocking": "Engelliyor" - }, - "copy_link": "İş öğesi bağlantısını kopyala", - "delete": { - "label": "İş öğesini sil", - "error": "İş öğesi silinirken hata oluştu" - }, - "subscription": { - "actions": { - "subscribed": "İş öğesine abone olundu", - "unsubscribed": "İş öğesi aboneliği sonlandırıldı" - } - }, - "select": { - "error": "Lütfen en az bir iş öğesi seçin", - "empty": "Hiç iş öğesi seçilmedi", - "add_selected": "Seçilen iş öğelerini ekle", - "select_all": "Tümünü seç", - "deselect_all": "Tümünü seçme" - }, - "open_in_full_screen": "İş öğesini tam ekranda aç" - }, - "attachment": { - "error": "Dosya eklenemedi. Tekrar yüklemeyi deneyin.", - "only_one_file_allowed": "Aynı anda yalnızca bir dosya yüklenebilir.", - "file_size_limit": "Dosya boyutu {size}MB veya daha az olmalıdır.", - "drag_and_drop": "Yüklemek için herhangi bir yere sürükleyip bırakın", - "delete": "Eki sil" - }, - "label": { - "select": "Etiket seç", - "create": { - "success": "Etiket başarıyla oluşturuldu", - "failed": "Etiket oluşturulamadı", - "already_exists": "Etiket zaten mevcut", - "type": "Yeni etiket eklemek için yazın" - } - }, - "sub_work_item": { - "update": { - "success": "Alt iş öğesi başarıyla güncellendi", - "error": "Alt iş öğesi güncellenirken hata oluştu" - }, - "remove": { - "success": "Alt iş öğesi başarıyla kaldırıldı", - "error": "Alt iş öğesi kaldırılırken hata oluştu" - }, - "empty_state": { - "sub_list_filters": { - "title": "Alt iş öğelerinizin filtreleriyle eşleşmiyor.", - "description": "Tüm alt iş öğelerini görmek için tüm uygulanan filtreleri temizleyin.", - "action": "Filtreleri temizle" - }, - "list_filters": { - "title": "İş öğelerinizin filtreleriyle eşleşmiyor.", - "description": "Tüm iş öğelerini görmek için tüm uygulanan filtreleri temizleyin.", - "action": "Filtreleri temizle" - } - } - }, - "view": { - "label": "{count, plural, one {Görünüm} other {Görünümler}}", - "create": { - "label": "Görünüm Oluştur" - }, - "update": { - "label": "Görünümü Güncelle" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Beklemede", - "description": "Beklemede" - }, - "declined": { - "title": "Reddedildi", - "description": "Reddedildi" - }, - "snoozed": { - "title": "Erteleme", - "description": "{days, plural, one{# gün} other{# gün}} kaldı" - }, - "accepted": { - "title": "Kabul Edildi", - "description": "Kabul Edildi" - }, - "duplicate": { - "title": "Kopya", - "description": "Kopya" - } - }, - "modals": { - "decline": { - "title": "İş öğesini reddet", - "content": "{value} iş öğesini reddetmek istediğinizden emin misiniz?" - }, - "delete": { - "title": "İş öğesini sil", - "content": "{value} iş öğesini silmek istediğinizden emin misiniz?", - "success": "İş öğesi başarıyla silindi" - } - }, - "errors": { - "snooze_permission": "Yalnızca proje yöneticileri iş öğelerini erteleyebilir/ertelemeyi kaldırabilir", - "accept_permission": "Yalnızca proje yöneticileri iş öğelerini kabul edebilir", - "decline_permission": "Yalnızca proje yöneticileri iş öğelerini reddedebilir" - }, - "actions": { - "accept": "Kabul Et", - "decline": "Reddet", - "snooze": "Ertele", - "unsnooze": "Ertelemeyi Kaldır", - "copy": "İş öğesi bağlantısını kopyala", - "delete": "Sil", - "open": "İş öğesini aç", - "mark_as_duplicate": "Kopya olarak işaretle", - "move": "{value} proje iş öğelerine taşı" - }, - "source": { - "in-app": "uygulama içi" - }, - "order_by": { - "created_at": "Oluşturulma tarihi", - "updated_at": "Güncelleme tarihi", - "id": "ID" - }, - "label": "Talep", - "page_label": "{workspace} - Talep", - "modal": { - "title": "Talep iş öğesi oluştur" - }, - "tabs": { - "open": "Açık", - "closed": "Kapalı" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Açık iş öğesi yok", - "description": "Açık iş öğelerini burada bulabilirsiniz. Yeni iş öğesi oluşturun." - }, - "sidebar_closed_tab": { - "title": "Kapalı iş öğesi yok", - "description": "Kabul edilen veya reddedilen tüm iş öğeleri burada bulunabilir." - }, - "sidebar_filter": { - "title": "Eşleşen iş öğesi yok", - "description": "Talep bölümünde uygulanan filtreyle eşleşen iş öğesi yok. Yeni bir iş öğesi oluşturun." - }, - "detail": { - "title": "Detaylarını görüntülemek için bir iş öğesi seçin." - } - } - }, - "workspace_creation": { - "heading": "Çalışma Alanınızı Oluşturun", - "subheading": "Plane'i kullanmaya başlamak için bir çalışma alanı oluşturmalı veya katılmalısınız.", - "form": { - "name": { - "label": "Çalışma Alanınıza Ad Verin", - "placeholder": "Tanıdık ve tanınabilir bir şey her zaman iyidir." - }, - "url": { - "label": "Çalışma Alanı URL'nizi Belirleyin", - "placeholder": "URL yazın veya yapıştırın", - "edit_slug": "Yalnızca URL'nin kısa adını düzenleyebilirsiniz" - }, - "organization_size": { - "label": "Bu çalışma alanını kaç kişi kullanacak?", - "placeholder": "Bir aralık seçin" - } - }, - "errors": { - "creation_disabled": { - "title": "Yalnızca örnek yöneticiniz çalışma alanları oluşturabilir", - "description": "Örnek yöneticinizin e-posta adresini biliyorsanız, iletişime geçmek için aşağıdaki düğmeye tıklayın.", - "request_button": "Örnek yönetici iste" - }, - "validation": { - "name_alphanumeric": "Çalışma alanı adları yalnızca (' '), ('-'), ('_') ve alfasayısal karakterler içerebilir.", - "name_length": "Adınızı 80 karakterle sınırlayın.", - "url_alphanumeric": "URL'ler yalnızca ('-') ve alfasayısal karakterler içerebilir.", - "url_length": "URL'nizi 48 karakterle sınırlayın.", - "url_already_taken": "Çalışma alanı URL'si zaten alınmış!" - } - }, - "request_email": { - "subject": "Yeni çalışma alanı isteği", - "body": "Merhaba örnek yönetici(ler),\n\nLütfen [çalışma-alanı-adı] URL'si ile [çalışma alanı oluşturma amacı] için yeni bir çalışma alanı oluşturun.\n\nTeşekkürler,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Çalışma alanı oluştur", - "loading": "Çalışma alanı oluşturuluyor" - }, - "toast": { - "success": { - "title": "Başarılı", - "message": "Çalışma alanı başarıyla oluşturuldu" - }, - "error": { - "title": "Hata", - "message": "Çalışma alanı oluşturulamadı. Lütfen tekrar deneyin." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Projelerinizin, aktivitenizin ve metriklerinizin genel görünümü", - "description": "Plane'e hoş geldiniz, sizi aramızda görmekten heyecan duyuyoruz. İlk projenizi oluşturun ve iş öğelerinizi takip edin, bu sayfa ilerlemenize yardımcı olacak bir alana dönüşecek. Yöneticiler ayrıca ekiplerinin ilerlemesine yardımcı olacak öğeler görecek.", - "primary_button": { - "text": "İlk projenizi oluşturun", - "comic": { - "title": "Plane'de her şey bir projeyle başlar", - "description": "Bir proje, bir ürünün yol haritası, bir pazarlama kampanyası veya yeni bir araba lansmanı olabilir." - } - } - } - } - }, - "workspace_analytics": { - "label": "Analitik", - "page_label": "{workspace} - Analitik", - "open_tasks": "Toplam açık görev", - "error": "Veri alınırken bir hata oluştu.", - "work_items_closed_in": "Kapanan iş öğeleri", - "selected_projects": "Seçilen projeler", - "total_members": "Toplam üye", - "total_cycles": "Toplam döngü", - "total_modules": "Toplam modül", - "pending_work_items": { - "title": "Bekleyen iş öğeleri", - "empty_state": "Ekip arkadaşlarınız tarafından bekleyen iş öğelerinin analizi burada görünür." - }, - "work_items_closed_in_a_year": { - "title": "Bir yılda kapanan iş öğeleri", - "empty_state": "Aynı grafikte analizini görmek için iş öğelerini kapatın." - }, - "most_work_items_created": { - "title": "En çok iş öğesi oluşturan", - "empty_state": "Ekip arkadaşlarınız ve onların oluşturduğu iş öğesi sayıları burada görünür." - }, - "most_work_items_closed": { - "title": "En çok iş öğesi kapatan", - "empty_state": "Ekip arkadaşlarınız ve onların kapattığı iş öğesi sayıları burada görünür." - }, - "tabs": { - "scope_and_demand": "Kapsam ve Talep", - "custom": "Özel Analitik" - }, - "empty_state": { - "customized_insights": { - "description": "Size atanan iş öğeleri, duruma göre ayrılarak burada gösterilecektir.", - "title": "Henüz veri yok" - }, - "created_vs_resolved": { - "description": "Zaman içinde oluşturulan ve çözümlenen iş öğeleri burada gösterilecektir.", - "title": "Henüz veri yok" - }, - "project_insights": { - "title": "Henüz veri yok", - "description": "Size atanan iş öğeleri, duruma göre ayrılarak burada gösterilecektir." - }, - "general": { - "title": "İlerlemeyi, iş yüklerini ve tahsisleri takip edin. Eğilimleri tespit edin, engelleri kaldırın ve işi hızlandırın", - "description": "Kapsam ile talep, tahminler ve kapsam genişlemesini görün. Takım üyeleri ve takımlar bazında performans alın ve projenizin zamanında çalıştığından emin olun.", - "primary_button": { - "text": "İlk projenizi başlatın", - "comic": { - "title": "Analitik en iyi Döngüler + Modüller ile çalışır", - "description": "İlk olarak, sorunlarınızı Döngülere sınırlandırın ve eğer mümkünse, bir döngüden fazla süren sorunları Modüllere gruplandırın. Sol navigasyonda ikisini de kontrol edin." - } - } - } - }, - "created_vs_resolved": "Oluşturulan vs Çözülen", - "customized_insights": "Özelleştirilmiş İçgörüler", - "backlog_work_items": "Backlog {entity}", - "active_projects": "Aktif Projeler", - "trend_on_charts": "Grafiklerdeki eğilim", - "all_projects": "Tüm Projeler", - "summary_of_projects": "Projelerin Özeti", - "project_insights": "Proje İçgörüleri", - "started_work_items": "Başlatılan {entity}", - "total_work_items": "Toplam {entity}", - "total_projects": "Toplam Proje", - "total_admins": "Toplam Yönetici", - "total_users": "Toplam Kullanıcı", - "total_intake": "Toplam Gelir", - "un_started_work_items": "Başlanmamış {entity}", - "total_guests": "Toplam Misafir", - "completed_work_items": "Tamamlanmış {entity}", - "total": "Toplam {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Proje} other {Projeler}}", - "create": { - "label": "Proje Ekle" - }, - "network": { - "label": "Ağ", - "private": { - "title": "Özel", - "description": "Yalnızca davetle erişilebilir" - }, - "public": { - "title": "Herkese Açık", - "description": "Çalışma alanındaki herkes (Misafirler hariç) katılabilir" - } - }, - "error": { - "permission": "Bu işlemi yapma izniniz yok.", - "cycle_delete": "Döngü silinemedi", - "module_delete": "Modül silinemedi", - "issue_delete": "İş öğesi silinemedi" - }, - "state": { - "backlog": "Bekleme Listesi", - "unstarted": "Başlatılmadı", - "started": "Başlatıldı", - "completed": "Tamamlandı", - "cancelled": "İptal Edildi" - }, - "sort": { - "manual": "Manuel", - "name": "Ad", - "created_at": "Oluşturulma tarihi", - "members_length": "Üye sayısı" - }, - "scope": { - "my_projects": "Projelerim", - "archived_projects": "Arşivlenmiş" - }, - "common": { - "months_count": "{months, plural, one{# ay} other{# ay}}" - }, - "empty_state": { - "general": { - "title": "Aktif proje yok", - "description": "Her projeyi hedef odaklı çalışmanın üst öğesi olarak düşünün. Projeler, İşler, Döngüler ve Modüllerin yaşadığı ve meslektaşlarınızla birlikte bu hedefe ulaşmanıza yardımcı olan yerlerdir. Yeni bir proje oluşturun veya arşivlenmiş projeler için filtreleyin.", - "primary_button": { - "text": "İlk projenizi başlatın", - "comic": { - "title": "Plane'de her şey bir projeyle başlar", - "description": "Bir proje, bir ürünün yol haritası, bir pazarlama kampanyası veya yeni bir araba lansmanı olabilir." - } - } - }, - "no_projects": { - "title": "Proje yok", - "description": "İş öğesi oluşturmak veya işlerinizi yönetmek için bir proje oluşturmalı veya bir parçası olmalısınız.", - "primary_button": { - "text": "İlk projenizi başlatın", - "comic": { - "title": "Plane'de her şey bir projeyle başlar", - "description": "Bir proje, bir ürünün yol haritası, bir pazarlama kampanyası veya yeni bir araba lansmanı olabilir." - } - } - }, - "filter": { - "title": "Eşleşen proje yok", - "description": "Eşleşen kriterlerle proje bulunamadı. \n Bunun yerine yeni bir proje oluşturun." - }, - "search": { - "description": "Eşleşen kriterlerle proje bulunamadı.\nBunun yerine yeni bir proje oluşturun" - } - } - }, - "workspace_views": { - "add_view": "Görünüm ekle", - "empty_state": { - "all-issues": { - "title": "Projede iş öğesi yok", - "description": "İlk projeniz tamamlandı! Şimdi, işlerinizi izlenebilir parçalara bölün. Hadi başlayalım!", - "primary_button": { - "text": "Yeni iş öğesi oluştur" - } - }, - "assigned": { - "title": "Henüz iş öğesi yok", - "description": "Size atanan iş öğeleri buradan takip edilebilir.", - "primary_button": { - "text": "Yeni iş öğesi oluştur" - } - }, - "created": { - "title": "Henüz iş öğesi yok", - "description": "Sizin oluşturduğunuz tüm iş öğeleri burada görünecek, doğrudan buradan takip edin.", - "primary_button": { - "text": "Yeni iş öğesi oluştur" - } - }, - "subscribed": { - "title": "Henüz iş öğesi yok", - "description": "İlgilendiğiniz iş öğelerine abone olun, hepsini buradan takip edin." - }, - "custom-view": { - "title": "Henüz iş öğesi yok", - "description": "Filtrelere uyan iş öğeleri burada takip edilebilir." - } - } - }, - "workspace_settings": { - "label": "Çalışma Alanı Ayarları", - "page_label": "{workspace} - Genel ayarlar", - "key_created": "Anahtar oluşturuldu", - "copy_key": "Bu gizli anahtarı Plane Pages'e kopyalayıp kaydedin. Kapat düğmesine bastıktan sonra bu anahtarı göremezsiniz. Anahtar içeren bir CSV dosyası indirildi.", - "token_copied": "Token panoya kopyalandı.", - "settings": { - "general": { - "title": "Genel", - "upload_logo": "Logo yükle", - "edit_logo": "Logoyu düzenle", - "name": "Çalışma Alanı Adı", - "company_size": "Şirket Büyüklüğü", - "url": "Çalışma Alanı URL'si", - "update_workspace": "Çalışma Alanını Güncelle", - "delete_workspace": "Bu çalışma alanını sil", - "delete_workspace_description": "Bir çalışma alanı silindiğinde, içindeki tüm veri ve kaynaklar kalıcı olarak kaldırılır ve kurtarılamaz.", - "delete_btn": "Bu çalışma alanını sil", - "delete_modal": { - "title": "Bu çalışma alanını silmek istediğinizden emin misiniz?", - "description": "Ücretli planlarımızdan birine aktif bir deneme sürümünüz var. Devam etmek için önce iptal edin.", - "dismiss": "Kapat", - "cancel": "Denemeyi iptal et", - "success_title": "Çalışma alanı silindi.", - "success_message": "Kısa süre sonra profil sayfanıza yönlendirileceksiniz.", - "error_title": "Bu işe yaramadı.", - "error_message": "Lütfen tekrar deneyin." - }, - "errors": { - "name": { - "required": "Ad gereklidir", - "max_length": "Çalışma alanı adı 80 karakteri geçmemeli" - }, - "company_size": { - "required": "Şirket büyüklüğü gereklidir", - "select_a_range": "Kuruluş büyüklüğünü seçin" - } - } - }, - "members": { - "title": "Üyeler", - "add_member": "Üye ekle", - "pending_invites": "Bekleyen davetler", - "invitations_sent_successfully": "Davetler başarıyla gönderildi", - "leave_confirmation": "Çalışma alanından ayrılmak istediğinizden emin misiniz? Artık bu çalışma alanına erişiminiz olmayacak. Bu işlem geri alınamaz.", - "details": { - "full_name": "Tam ad", - "display_name": "Görünen ad", - "email_address": "E-posta adresi", - "account_type": "Hesap türü", - "authentication": "Kimlik Doğrulama", - "joining_date": "Katılma tarihi" - }, - "modal": { - "title": "İşbirliği yapmaları için kişileri davet edin", - "description": "Kişileri çalışma alanınızda işbirliği yapmaları için davet edin.", - "button": "Davetleri gönder", - "button_loading": "Davetler gönderiliyor", - "placeholder": "isim@firma.com", - "errors": { - "required": "Davet etmek için bir e-posta adresine ihtiyacımız var.", - "invalid": "E-posta geçersiz" - } - } - }, - "billing_and_plans": { - "title": "Faturalandırma ve Planlar", - "current_plan": "Mevcut plan", - "free_plan": "Şu anda ücretsiz planı kullanıyorsunuz", - "view_plans": "Planları görüntüle" - }, - "exports": { - "title": "Dışa Aktarımlar", - "exporting": "Dışa aktarılıyor", - "previous_exports": "Önceki dışa aktarımlar", - "export_separate_files": "Verileri ayrı dosyalara aktar", - "modal": { - "title": "Şuraya aktar", - "toasts": { - "success": { - "title": "Dışa aktarma başarılı", - "message": "{entity} önceki dışa aktarmadan indirilebilir." - }, - "error": { - "title": "Dışa aktarma başarısız", - "message": "Dışa aktarma başarısız oldu. Lütfen tekrar deneyin." - } - } - } - }, - "webhooks": { - "title": "Webhook'lar", - "add_webhook": "Webhook ekle", - "modal": { - "title": "Webhook oluştur", - "details": "Webhook detayları", - "payload": "Payload URL", - "question": "Bu webhook'u hangi olaylar tetiklesin?", - "error": "URL gereklidir" - }, - "secret_key": { - "title": "Gizli anahtar", - "message": "Webhook payload'ında oturum açmak için bir token oluşturun" - }, - "options": { - "all": "Her şeyi gönder", - "individual": "Tek tek olayları seç" - }, - "toasts": { - "created": { - "title": "Webhook oluşturuldu", - "message": "Webhook başarıyla oluşturuldu" - }, - "not_created": { - "title": "Webhook oluşturulamadı", - "message": "Webhook oluşturulamadı" - }, - "updated": { - "title": "Webhook güncellendi", - "message": "Webhook başarıyla güncellendi" - }, - "not_updated": { - "title": "Webhook güncellenemedi", - "message": "Webhook güncellenemedi" - }, - "removed": { - "title": "Webhook kaldırıldı", - "message": "Webhook başarıyla kaldırıldı" - }, - "not_removed": { - "title": "Webhook kaldırılamadı", - "message": "Webhook kaldırılamadı" - }, - "secret_key_copied": { - "message": "Gizli anahtar panoya kopyalandı." - }, - "secret_key_not_copied": { - "message": "Gizli anahtar kopyalanırken hata oluştu." - } - } - }, - "api_tokens": { - "title": "API Token'ları", - "add_token": "API Token'ı ekle", - "create_token": "Token oluştur", - "never_expires": "Süresi dolmaz", - "generate_token": "Token oluştur", - "generating": "Oluşturuluyor", - "delete": { - "title": "API Token'ını sil", - "description": "Bu token'ı kullanan uygulamalar artık Plane verilerine erişemeyecek. Bu işlem geri alınamaz.", - "success": { - "title": "Başarılı!", - "message": "API token'ı başarıyla silindi" - }, - "error": { - "title": "Hata!", - "message": "API token'ı silinemedi" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "API token'ı oluşturulmadı", - "description": "Plane API'lerini harici sistemlere entegre etmek için bir token oluşturun." - }, - "webhooks": { - "title": "Webhook eklenmedi", - "description": "Gerçek zamanlı güncellemeler almak ve otomatik eylemler gerçekleştirmek için webhook'lar oluşturun." - }, - "exports": { - "title": "Henüz dışa aktarma yok", - "description": "Dışa aktardığınızda, referans için burada bir kopya bulunur." - }, - "imports": { - "title": "Henüz içe aktarma yok", - "description": "Tüm önceki içe aktarmalarınızı burada bulabilir ve indirebilirsiniz." - } - } - }, - "profile": { - "label": "Profil", - "page_label": "Sizin İşleriniz", - "work": "İş", - "details": { - "joined_on": "Katılma tarihi", - "time_zone": "Saat Dilimi" - }, - "stats": { - "workload": "İş Yükü", - "overview": "Genel Bakış", - "created": "Oluşturulan iş öğeleri", - "assigned": "Atanan iş öğeleri", - "subscribed": "Abone olunan iş öğeleri", - "state_distribution": { - "title": "Duruma göre iş öğeleri", - "empty": "Daha iyi analiz için durumlarına göre iş öğelerini görmek üzere iş öğesi oluşturun." - }, - "priority_distribution": { - "title": "Önceliğe göre iş öğeleri", - "empty": "Daha iyi analiz için önceliklerine göre iş öğelerini görmek üzere iş öğesi oluşturun." - }, - "recent_activity": { - "title": "Son aktiviteler", - "empty": "Veri bulunamadı. Lütfen girdilerinizi kontrol edin", - "button": "Bugünün aktivitesini indir", - "button_loading": "İndiriliyor" - } - }, - "actions": { - "profile": "Profil", - "security": "Güvenlik", - "activity": "Aktivite", - "appearance": "Görünüm", - "notifications": "Bildirimler" - }, - "tabs": { - "summary": "Özet", - "assigned": "Atanan", - "created": "Oluşturulan", - "subscribed": "Abone olunan", - "activity": "Aktivite" - }, - "empty_state": { - "activity": { - "title": "Henüz aktivite yok", - "description": "Yeni bir iş öğesi oluşturarak başlayın! Detaylar ve özellikler ekleyin. Aktivitenizi görmek için Plane'de daha fazlasını keşfedin." - }, - "assigned": { - "title": "Size atanan iş öğesi yok", - "description": "Size atanan iş öğeleri buradan takip edilebilir." - }, - "created": { - "title": "Henüz iş öğesi yok", - "description": "Sizin oluşturduğunuz tüm iş öğeleri burada görünecek, doğrudan buradan takip edin." - }, - "subscribed": { - "title": "Henüz iş öğesi yok", - "description": "İlgilendiğiniz iş öğelerine abone olun, hepsini buradan takip edin." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Proje ID girin", - "please_select_a_timezone": "Lütfen bir saat dilimi seçin", - "archive_project": { - "title": "Projeyi arşivle", - "description": "Bir projeyi arşivlemek, projenizi yan gezintiden kaldırır ancak yine de projeler sayfasından erişebilirsiniz. Projeyi istediğiniz zaman geri yükleyebilir veya silebilirsiniz.", - "button": "Projeyi arşivle" - }, - "delete_project": { - "title": "Projeyi sil", - "description": "Bir proje silindiğinde, içindeki tüm veri ve kaynaklar kalıcı olarak kaldırılır ve kurtarılamaz.", - "button": "Projemi sil" - }, - "toast": { - "success": "Proje başarıyla güncellendi", - "error": "Proje güncellenemedi. Lütfen tekrar deneyin." - } - }, - "members": { - "label": "Üyeler", - "project_lead": "Proje lideri", - "default_assignee": "Varsayılan atanan", - "guest_super_permissions": { - "title": "Misafir kullanıcılara tüm iş öğelerini görüntüleme izni ver:", - "sub_heading": "Bu, misafirlerin tüm proje iş öğelerini görüntülemesine izin verecektir." - }, - "invite_members": { - "title": "Üyeleri davet et", - "sub_heading": "Projenizde çalışmaları için üyeleri davet edin.", - "select_co_worker": "İş arkadaşı seç" - } - }, - "states": { - "describe_this_state_for_your_members": "Bu durumu üyeleriniz için açıklayın.", - "empty_state": { - "title": "{groupKey} grubu için durum yok", - "description": "Lütfen yeni bir durum oluşturun" - } - }, - "labels": { - "label_title": "Etiket başlığı", - "label_title_is_required": "Etiket başlığı gereklidir", - "label_max_char": "Etiket adı 255 karakteri geçmemeli", - "toast": { - "error": "Etiket güncellenirken hata oluştu" - } - }, - "estimates": { - "label": "Tahminler", - "title": "Projem için tahminleri etkinleştir", - "description": "Takımınızın karmaşıklık ve iş yükünü iletişim kurmanıza yardımcı olurlar.", - "no_estimate": "Tahmin yok", - "create": { - "custom": "Özel", - "start_from_scratch": "Sıfırdan başla", - "choose_template": "Şablon seç", - "choose_estimate_system": "Tahmin sistemi seç", - "enter_estimate_point": "Tahmin puanı girin" - }, - "toasts": { - "created": { - "success": { - "title": "Tahmin puanı oluşturuldu", - "message": "Tahmin puanı başarıyla oluşturuldu" - }, - "error": { - "title": "Tahmin puanı oluşturulamadı", - "message": "Yeni tahmin puanı oluşturulamadı, lütfen tekrar deneyin." - } - }, - "updated": { - "success": { - "title": "Tahmin değiştirildi", - "message": "Tahmin puanı projenizde güncellendi." - }, - "error": { - "title": "Tahmin değiştirilemedi", - "message": "Tahmin değiştirilemedi, lütfen tekrar deneyin" - } - }, - "enabled": { - "success": { - "title": "Başarılı!", - "message": "Tahminler etkinleştirildi." - } - }, - "disabled": { - "success": { - "title": "Başarılı!", - "message": "Tahminler devre dışı bırakıldı." - }, - "error": { - "title": "Hata!", - "message": "Tahmin devre dışı bırakılamadı. Lütfen tekrar deneyin" - } - } - }, - "validation": { - "min_length": "Tahmin puanı 0'dan büyük olmalı.", - "unable_to_process": "İsteğiniz işlenemedi, lütfen tekrar deneyin.", - "numeric": "Tahmin puanı sayısal bir değer olmalı.", - "character": "Tahmin puanı karakter değeri olmalı.", - "empty": "Tahmin değeri boş olamaz.", - "already_exists": "Tahmin değeri zaten var.", - "unsaved_changes": "Kaydedilmemiş değişiklikleriniz var, bitirmeden önce lütfen kaydedin" - } - }, - "automations": { - "label": "Otomasyonlar", - "auto-archive": { - "title": "Tamamlanan iş öğelerini otomatik arşivle", - "description": "Plane, tamamlanan veya iptal edilen iş öğelerini otomatik arşivleyecek.", - "duration": "Şu süre kapalı kalan iş öğelerini otomatik arşivle" - }, - "auto-close": { - "title": "İş öğelerini otomatik kapat", - "description": "Plane, tamamlanmamış veya iptal edilmemiş iş öğelerini otomatik kapatacak.", - "duration": "Şu süre etkin olmayan iş öğelerini otomatik kapat", - "auto_close_status": "Otomatik kapatma durumu" - } - }, - "empty_state": { - "labels": { - "title": "Henüz etiket yok", - "description": "Projenizdeki iş öğelerini düzenlemek ve filtrelemek için etiketler oluşturun." - }, - "estimates": { - "title": "Henüz tahmin sistemi yok", - "description": "İş öğesi başına çalışma miktarını iletişim kurmak için bir tahmin seti oluşturun.", - "primary_button": "Tahmin sistemi ekle" - } - } - }, - "project_cycles": { - "add_cycle": "Döngü ekle", - "more_details": "Daha fazla detay", - "cycle": "Döngü", - "update_cycle": "Döngüyü güncelle", - "create_cycle": "Döngü oluştur", - "no_matching_cycles": "Eşleşen döngü yok", - "remove_filters_to_see_all_cycles": "Tüm döngüleri görmek için filtreleri kaldırın", - "remove_search_criteria_to_see_all_cycles": "Tüm döngüleri görmek için arama kriterlerini kaldırın", - "only_completed_cycles_can_be_archived": "Yalnızca tamamlanmış döngüler arşivlenebilir", - "start_date": "Başlangıç tarihi", - "end_date": "Bitiş tarihi", - "in_your_timezone": "Saat diliminizde", - "transfer_work_items": "{count} iş öğesini aktar", - "date_range": "Tarih aralığı", - "add_date": "Tarih ekle", - "active_cycle": { - "label": "Aktif döngü", - "progress": "İlerleme", - "chart": "Burndown grafiği", - "priority_issue": "Öncelikli iş öğeleri", - "assignees": "Atananlar", - "issue_burndown": "İş öğesi burndown", - "ideal": "İdeal", - "current": "Mevcut", - "labels": "Etiketler" - }, - "upcoming_cycle": { - "label": "Yaklaşan döngü" - }, - "completed_cycle": { - "label": "Tamamlanan döngü" - }, - "status": { - "days_left": "Kalan gün", - "completed": "Tamamlandı", - "yet_to_start": "Başlamadı", - "in_progress": "Devam Ediyor", - "draft": "Taslak" - }, - "action": { - "restore": { - "title": "Döngüyü geri yükle", - "success": { - "title": "Döngü geri yüklendi", - "description": "Döngü başarıyla geri yüklendi." - }, - "failed": { - "title": "Döngü geri yüklenemedi", - "description": "Döngü geri yüklenemedi. Lütfen tekrar deneyin." - } - }, - "favorite": { - "loading": "Döngü favorilere ekleniyor", - "success": { - "description": "Döngü favorilere eklendi.", - "title": "Başarılı!" - }, - "failed": { - "description": "Döngü favorilere eklenemedi. Lütfen tekrar deneyin.", - "title": "Hata!" - } - }, - "unfavorite": { - "loading": "Döngü favorilerden kaldırılıyor", - "success": { - "description": "Döngü favorilerden kaldırıldı.", - "title": "Başarılı!" - }, - "failed": { - "description": "Döngü favorilerden kaldırılamadı. Lütfen tekrar deneyin.", - "title": "Hata!" - } - }, - "update": { - "loading": "Döngü güncelleniyor", - "success": { - "description": "Döngü başarıyla güncellendi.", - "title": "Başarılı!" - }, - "failed": { - "description": "Döngü güncellenirken hata oluştu. Lütfen tekrar deneyin.", - "title": "Hata!" - }, - "error": { - "already_exists": "Belirtilen tarihlerde zaten bir döngünüz var, taslak bir döngü oluşturmak istiyorsanız, her iki tarihi de kaldırarak oluşturabilirsiniz." - } - } - }, - "empty_state": { - "general": { - "title": "İşlerinizi Döngülerde gruplayın ve zamanlayın.", - "description": "İşleri zaman dilimlerine bölün, proje son teslim tarihinden geriye çalışarak tarihler belirleyin ve takım olarak somut ilerleme kaydedin.", - "primary_button": { - "text": "İlk döngünüzü ayarlayın", - "comic": { - "title": "Döngüler tekrarlayan zaman dilimleridir.", - "description": "Haftalık veya iki haftalık iş takibi için kullandığınız sprint, iterasyon veya başka bir terim bir döngüdür." - } - } - }, - "no_issues": { - "title": "Döngüye iş öğesi eklenmedi", - "description": "Bu döngüde tamamlamak istediğiniz iş öğelerini ekleyin veya oluşturun", - "primary_button": { - "text": "Yeni iş öğesi oluştur" - }, - "secondary_button": { - "text": "Varolan iş öğesi ekle" - } - }, - "completed_no_issues": { - "title": "Döngüde iş öğesi yok", - "description": "Döngüde iş öğesi yok. İş öğeleri ya aktarıldı ya da gizlendi. Gizli iş öğelerini görmek için görüntüleme özelliklerinizi güncelleyin." - }, - "active": { - "title": "Aktif döngü yok", - "description": "Aktif bir döngü, bugünün tarihini içeren herhangi bir dönemi kapsar. Aktif döngünün ilerleme ve detaylarını burada bulabilirsiniz." - }, - "archived": { - "title": "Henüz arşivlenmiş döngü yok", - "description": "Projenizi düzenli tutmak için tamamlanmış döngüleri arşivleyin. Arşivlendikten sonra burada bulabilirsiniz." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Bir iş öğesi oluşturun ve birine, hatta kendinize atayın", - "description": "İş öğelerini işler, görevler, çalışma veya JTBD olarak düşünün. Bir iş öğesi ve alt iş öğeleri genellikle takım üyelerinize atanan zaman temelli eylemlerdir. Takımınız, projenizi hedefine doğru ilerletmek için iş öğeleri oluşturur, atar ve tamamlar.", - "primary_button": { - "text": "İlk iş öğenizi oluşturun", - "comic": { - "title": "İş öğeleri Plane'de yapı taşlarıdır.", - "description": "Plane UI'yi yeniden tasarlamak, şirketi yeniden markalaştırmak veya yeni yakıt enjeksiyon sistemini başlatmak, muhtemelen alt iş öğeleri olan iş öğesi örnekleridir." - } - } - }, - "no_archived_issues": { - "title": "Henüz arşivlenmiş iş öğesi yok", - "description": "Tamamlanan veya iptal edilen iş öğelerini manuel olarak veya otomasyonla arşivleyebilirsiniz. Arşivlendikten sonra burada bulabilirsiniz.", - "primary_button": { - "text": "Otomasyon ayarla" - } - }, - "issues_empty_filter": { - "title": "Uygulanan filtrelerle eşleşen iş öğesi bulunamadı", - "secondary_button": { - "text": "Tüm filtreleri temizle" - } - } - } - }, - "project_module": { - "add_module": "Modül Ekle", - "update_module": "Modülü Güncelle", - "create_module": "Modül Oluştur", - "archive_module": "Modülü Arşivle", - "restore_module": "Modülü Geri Yükle", - "delete_module": "Modülü sil", - "empty_state": { - "general": { - "title": "Proje kilometre taşlarınızı Modüllere eşleyin ve toplu işleri kolayca takip edin.", - "description": "Mantıksal bir üst öğeye ait iş öğeleri grubu bir modül oluşturur. Bunları bir kilometre taşını takip etmenin bir yolu olarak düşünün. Kendi dönemleri ve son teslim tarihleri ile birlikte, bir kilometre taşına ne kadar yakın veya uzak olduğunuzu görmenize yardımcı olacak analitiklere sahiptirler.", - "primary_button": { - "text": "İlk modülünüzü oluşturun", - "comic": { - "title": "Modüller işleri hiyerarşiye göre gruplamaya yardımcı olur.", - "description": "Bir araba modülü, bir şasi modülü ve bir depo modülü bu gruplandırmanın iyi örnekleridir." - } - } - }, - "no_issues": { - "title": "Modülde iş öğesi yok", - "description": "Bu modülün bir parçası olarak gerçekleştirmek istediğiniz iş öğelerini oluşturun veya ekleyin", - "primary_button": { - "text": "Yeni iş öğeleri oluştur" - }, - "secondary_button": { - "text": "Varolan bir iş öğesi ekle" - } - }, - "archived": { - "title": "Henüz arşivlenmiş Modül yok", - "description": "Projenizi düzenli tutmak için tamamlanmış veya iptal edilmiş modülleri arşivleyin. Arşivlendikten sonra burada bulabilirsiniz." - }, - "sidebar": { - "in_active": "Bu modül henüz aktif değil.", - "invalid_date": "Geçersiz tarih. Lütfen geçerli bir tarih girin." - } - }, - "quick_actions": { - "archive_module": "Modülü arşivle", - "archive_module_description": "Yalnızca tamamlanmış veya iptal edilmiş\nmodüller arşivlenebilir.", - "delete_module": "Modülü sil" - }, - "toast": { - "copy": { - "success": "Modül bağlantısı panoya kopyalandı" - }, - "delete": { - "success": "Modül başarıyla silindi", - "error": "Modül silinemedi" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Projeniz için filtreli görünümleri kaydedin. İhtiyacınız olduğu kadar oluşturun", - "description": "Görünümler, sık kullandığınız veya kolay erişim istediğiniz kayıtlı filtrelerdir. Bir projedeki tüm meslektaşlarınız herkesin görünümlerini görebilir ve ihtiyaçlarına en uygun olanı seçebilir.", - "primary_button": { - "text": "İlk görünümünüzü oluşturun", - "comic": { - "title": "Görünümler İş Öğesi özellikleri üzerinde çalışır.", - "description": "Buradan istediğiniz kadar özellikle filtre içeren bir görünüm oluşturabilirsiniz." - } - } - }, - "filter": { - "title": "Eşleşen görünüm yok", - "description": "Arama kriterleriyle eşleşen görünüm yok. \n Bunun yerine yeni bir görünüm oluşturun." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Bir not, belge veya tam bir bilgi bankası yazın. Plane'in AI asistanı Galileo'nun başlamanıza yardımcı olmasını sağlayın", - "description": "Sayfalar Plane'de düşüncelerinizi döktüğünüz alanlardır. Toplantı notları alın, kolayca biçimlendirin, iş öğelerini yerleştirin, bir bileşen kitaplığı kullanarak düzenleyin ve hepsini proje bağlamınızda tutun. Herhangi bir belgeyi hızlıca tamamlamak için bir kısayol veya düğme ile Plane'in AI'sı Galileo'yu çağırın.", - "primary_button": { - "text": "İlk sayfanızı oluşturun" - } - }, - "private": { - "title": "Henüz özel sayfa yok", - "description": "Özel düşüncelerinizi burada saklayın. Paylaşmaya hazır olduğunuzda, ekip bir tık uzağınızda.", - "primary_button": { - "text": "İlk sayfanızı oluşturun" - } - }, - "public": { - "title": "Henüz genel sayfa yok", - "description": "Projenizdeki herkesle paylaşılan sayfaları burada görün.", - "primary_button": { - "text": "İlk sayfanızı oluşturun" - } - }, - "archived": { - "title": "Henüz arşivlenmiş sayfa yok", - "description": "Radarınızda olmayan sayfaları arşivleyin. İhtiyaç duyduğunuzda buradan erişin." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Sonuç bulunamadı" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Eşleşen iş öğesi bulunamadı" - }, - "no_issues": { - "title": "İş öğesi bulunamadı" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Henüz yorum yok", - "description": "Yorumlar, iş öğeleri için tartışma ve takip alanı olarak kullanılabilir" - } - } - }, - "notification": { - "label": "Bildirimler", - "page_label": "{workspace} - Bildirimler", - "options": { - "mark_all_as_read": "Tümünü okundu olarak işaretle", - "mark_read": "Okundu olarak işaretle", - "mark_unread": "Okunmamış olarak işaretle", - "refresh": "Yenile", - "filters": "Bildirim Filtreleri", - "show_unread": "Okunmamışları göster", - "show_snoozed": "Ertelenenleri göster", - "show_archived": "Arşivlenmişleri göster", - "mark_archive": "Arşivle", - "mark_unarchive": "Arşivden çıkar", - "mark_snooze": "Ertelenmiş", - "mark_unsnooze": "Ertelenmemiş" - }, - "toasts": { - "read": "Bildirim okundu olarak işaretlendi", - "unread": "Bildirim okunmamış olarak işaretlendi", - "archived": "Bildirim arşivlendi", - "unarchived": "Bildirim arşivden çıkarıldı", - "snoozed": "Bildirim ertelendi", - "unsnoozed": "Bildirim ertelenmedi" - }, - "empty_state": { - "detail": { - "title": "Detayları görüntülemek için seçin." - }, - "all": { - "title": "Atanan iş öğesi yok", - "description": "Size atanan iş öğelerinin güncellemelerini \n burada görebilirsiniz" - }, - "mentions": { - "title": "Atanan iş öğesi yok", - "description": "Size atanan iş öğelerinin güncellemelerini \n burada görebilirsiniz" - } - }, - "tabs": { - "all": "Tümü", - "mentions": "Bahsetmeler" - }, - "filter": { - "assigned": "Bana atanan", - "created": "Benim oluşturduğum", - "subscribed": "Abone olduğum" - }, - "snooze": { - "1_day": "1 gün", - "3_days": "3 gün", - "5_days": "5 gün", - "1_week": "1 hafta", - "2_weeks": "2 hafta", - "custom": "Özel" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "İlerlemeyi görüntülemek için döngüye iş öğeleri ekleyin" - }, - "chart": { - "title": "Burndown grafiğini görüntülemek için döngüye iş öğeleri ekleyin." - }, - "priority_issue": { - "title": "Döngüde ele alınan yüksek öncelikli iş öğelerini bir bakışta görün." - }, - "assignee": { - "title": "Atananları iş öğelerine ekleyerek iş dağılımını görün." - }, - "label": { - "title": "Etiketleri iş öğelerine ekleyerek iş dağılımını görün." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Talep bu proje için etkin değil.", - "description": "Talep, projenize gelen istekleri yönetmenize ve bunları iş akışınıza iş öğesi olarak eklemenize yardımcı olur. İstekleri yönetmek için proje ayarlarından talebi etkinleştirin.", - "primary_button": { - "text": "Özellikleri yönet" - } - }, - "cycle": { - "title": "Döngüler bu proje için etkin değil.", - "description": "İşleri zaman dilimlerine bölün, proje son teslim tarihinden geriye çalışarak tarihler belirleyin ve takım olarak somut ilerleme kaydedin. Döngüleri kullanmaya başlamak için projenizde döngü özelliğini etkinleştirin.", - "primary_button": { - "text": "Özellikleri yönet" - } - }, - "module": { - "title": "Modüller bu proje için etkin değil.", - "description": "Modüller projenizin yapı taşlarıdır. Kullanmaya başlamak için proje ayarlarından modülleri etkinleştirin.", - "primary_button": { - "text": "Özellikleri yönet" - } - }, - "page": { - "title": "Sayfalar bu proje için etkin değil.", - "description": "Sayfalar projenizin yapı taşlarıdır. Kullanmaya başlamak için proje ayarlarından sayfaları etkinleştirin.", - "primary_button": { - "text": "Özellikleri yönet" - } - }, - "view": { - "title": "Görünümler bu proje için etkin değil.", - "description": "Görünümler projenizin yapı taşlarıdır. Kullanmaya başlamak için proje ayarlarından görünümleri etkinleştirin.", - "primary_button": { - "text": "Özellikleri yönet" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Taslak iş öğesi oluştur", - "empty_state": { - "title": "Yarı yazılmış iş öğeleri ve yakında yorumlar burada görünecek.", - "description": "Bunu denemek için bir iş öğesi eklemeye başlayın ve yarıda bırakın veya ilk taslağınızı aşağıda oluşturun. 😉", - "primary_button": { - "text": "İlk taslağınızı oluşturun" - } - }, - "delete_modal": { - "title": "Taslağı sil", - "description": "Bu taslağı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz." - }, - "toasts": { - "created": { - "success": "Taslak oluşturuldu", - "error": "İş öğesi oluşturulamadı. Lütfen tekrar deneyin." - }, - "deleted": { - "success": "Taslak silindi" - } - } - }, - "stickies": { - "title": "Yapışkan Notlarınız", - "placeholder": "buraya yazmak için tıkla", - "all": "Tüm yapışkan notlar", - "no-data": "Bir fikir yazın, bir aydınlanma anını yakalayın veya bir beyin fırtınasını kaydedin. Başlamak için bir yapışkan not ekleyin.", - "add": "Yapışkan not ekle", - "search_placeholder": "Başlığa göre ara", - "delete": "Yapışkan notu sil", - "delete_confirmation": "Bu yapışkan notu silmek istediğinizden emin misiniz?", - "empty_state": { - "simple": "Bir fikir yazın, bir aydınlanma anını yakalayın veya bir beyin fırtınasını kaydedin. Başlamak için bir yapışkan not ekleyin.", - "general": { - "title": "Yapışkan notlar anlık notlar ve yapılacaklardır.", - "description": "Düşünce ve fikirlerinizi her zaman ve her yerden erişebileceğiniz yapışkan notlar oluşturarak zahmetsizce yakalayın.", - "primary_button": { - "text": "Yapışkan not ekle" - } - }, - "search": { - "title": "Hiçbir yapışkan not eşleşmiyor.", - "description": "Farklı bir terim deneyin veya aramanızın doğru olduğundan eminseniz bize bildirin. ", - "primary_button": { - "text": "Yapışkan not ekle" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Yapışkan not adı 100 karakteri geçemez.", - "already_exists": "Açıklamasız bir yapışkan not zaten var" - }, - "created": { - "title": "Yapışkan not oluşturuldu", - "message": "Yapışkan not başarıyla oluşturuldu" - }, - "not_created": { - "title": "Yapışkan not oluşturulamadı", - "message": "Yapışkan not oluşturulamadı" - }, - "updated": { - "title": "Yapışkan not güncellendi", - "message": "Yapışkan not başarıyla güncellendi" - }, - "not_updated": { - "title": "Yapışkan not güncellenemedi", - "message": "Yapışkan not güncellenemedi" - }, - "removed": { - "title": "Yapışkan not kaldırıldı", - "message": "Yapışkan not başarıyla kaldırıldı" - }, - "not_removed": { - "title": "Yapışkan not kaldırılamadı", - "message": "Yapışkan not kaldırılamadı" - } - } - }, - "role_details": { - "guest": { - "title": "Misafir", - "description": "Kuruluşların dış üyeleri misafir olarak davet edilebilir." - }, - "member": { - "title": "Üye", - "description": "Projeler, döngüler ve modüller içindeki varlıkları okuma, yazma, düzenleme ve silme yetkisi" - }, - "admin": { - "title": "Yönetici", - "description": "Çalışma alanı içinde tüm izinler aktif." - } - }, - "user_roles": { - "product_or_project_manager": "Ürün / Proje Yöneticisi", - "development_or_engineering": "Geliştirme / Mühendislik", - "founder_or_executive": "Kurucu / Yönetici", - "freelancer_or_consultant": "Serbest Çalışan / Danışman", - "marketing_or_growth": "Pazarlama / Büyüme", - "sales_or_business_development": "Satış / İş Geliştirme", - "support_or_operations": "Destek / Operasyonlar", - "student_or_professor": "Öğrenci / Profesör", - "human_resources": "İnsan Kaynakları", - "other": "Diğer" - }, - "importer": { - "github": { - "title": "Github", - "description": "GitHub depolarından iş öğelerini içe aktarın ve senkronize edin." - }, - "jira": { - "title": "Jira", - "description": "Jira projelerinden ve epiklerinden iş öğelerini içe aktarın." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "İş öğelerini CSV dosyasına aktarın.", - "short_description": "CSV olarak aktar" - }, - "excel": { - "title": "Excel", - "description": "İş öğelerini Excel dosyasına aktarın.", - "short_description": "Excel olarak aktar" - }, - "xlsx": { - "title": "Excel", - "description": "İş öğelerini Excel dosyasına aktarın.", - "short_description": "Excel olarak aktar" - }, - "json": { - "title": "JSON", - "description": "İş öğelerini JSON dosyasına aktarın.", - "short_description": "JSON olarak aktar" - } - }, - "default_global_view": { - "all_issues": "Tüm iş öğeleri", - "assigned": "Atanan", - "created": "Oluşturulan", - "subscribed": "Abone olunan" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Sistem tercihi" - }, - "light": { - "label": "Açık" - }, - "dark": { - "label": "Koyu" - }, - "light_contrast": { - "label": "Yüksek kontrastlı açık" - }, - "dark_contrast": { - "label": "Yüksek kontrastlı koyu" - }, - "custom": { - "label": "Özel tema" - } - } - }, - "project_modules": { - "status": { - "backlog": "Bekleme Listesi", - "planned": "Planlandı", - "in_progress": "Devam Ediyor", - "paused": "Duraklatıldı", - "completed": "Tamamlandı", - "cancelled": "İptal Edildi" - }, - "layout": { - "list": "Liste düzeni", - "board": "Galeri düzeni", - "timeline": "Zaman çizelgesi düzeni" - }, - "order_by": { - "name": "Ad", - "progress": "İlerleme", - "issues": "İş öğesi sayısı", - "due_date": "Son tarih", - "created_at": "Oluşturulma tarihi", - "manual": "Manuel" - } - }, - "cycle": { - "label": "{count, plural, one {Döngü} other {Döngüler}}", - "no_cycle": "Döngü yok" - }, - "module": { - "label": "{count, plural, one {Modül} other {Modüller}}", - "no_module": "Modül yok" - }, - "description_versions": { - "last_edited_by": "Son düzenleyen", - "previously_edited_by": "Önceki düzenleyen", - "edited_by": "Tarafından düzenlendi" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane başlatılamadı. Bu, bir veya daha fazla Plane servisinin başlatılamaması nedeniyle olabilir.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Emin olmak için setup.sh ve Docker loglarından View Logs'u seçin." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Ana Hat", - "empty_state": { - "title": "Eksik başlıklar", - "description": "Bu sayfaya bazı başlıklar ekleyelim ki burada görebilelim." - } - }, - "info": { - "label": "Bilgi", - "document_info": { - "words": "Kelimeler", - "characters": "Karakterler", - "paragraphs": "Paragraflar", - "read_time": "Okuma süresi" - }, - "actors_info": { - "edited_by": "Düzenleyen", - "created_by": "Oluşturan" - }, - "version_history": { - "label": "Sürüm geçmişi", - "current_version": "Mevcut sürüm" - } - }, - "assets": { - "label": "Varlıklar", - "download_button": "İndir", - "empty_state": { - "title": "Eksik görseller", - "description": "Burada görmek için görseller ekleyin." - } - } - }, - "open_button": "Navigasyon panelini aç", - "close_button": "Navigasyon panelini kapat", - "outline_floating_button": "Ana hatları aç" - } -} diff --git a/packages/i18n/src/locales/tr-TR/translations.ts b/packages/i18n/src/locales/tr-TR/translations.ts new file mode 100644 index 0000000000..92683a6598 --- /dev/null +++ b/packages/i18n/src/locales/tr-TR/translations.ts @@ -0,0 +1,2572 @@ +export default { + sidebar: { + projects: "Projeler", + pages: "Sayfalar", + new_work_item: "Yeni iş öğesi", + home: "Ana Sayfa", + your_work: "Çalışmalarınız", + inbox: "Gelen Kutusu", + workspace: "Çalışma Alanı", + views: "Görünümler", + analytics: "Analizler", + work_items: "İş öğeleri", + cycles: "Döngüler", + modules: "Modüller", + intake: "Talep", + drafts: "Taslaklar", + favorites: "Favoriler", + pro: "Pro", + upgrade: "Yükselt", + }, + auth: { + common: { + email: { + label: "E-posta", + placeholder: "isim@şirket.com", + errors: { + required: "E-posta gerekli", + invalid: "Geçersiz e-posta", + }, + }, + password: { + label: "Şifre", + set_password: "Şifre belirle", + placeholder: "Şifreyi girin", + confirm_password: { + label: "Şifreyi onayla", + placeholder: "Şifreyi onayla", + }, + current_password: { + label: "Mevcut şifre", + placeholder: "Mevcut şifreyi girin", + }, + new_password: { + label: "Yeni şifre", + placeholder: "Yeni şifreyi girin", + }, + change_password: { + label: { + default: "Şifreyi değiştir", + submitting: "Şifre değiştiriliyor", + }, + }, + errors: { + match: "Şifreler eşleşmiyor", + empty: "Lütfen şifrenizi girin", + length: "Şifre uzunluğu 8 karakterden fazla olmalı", + strength: { + weak: "Şifre zayıf", + strong: "Şifre güçlü", + }, + }, + submit: "Şifreyi belirle", + toast: { + change_password: { + success: { + title: "Başarılı!", + message: "Şifre başarıyla değiştirildi.", + }, + error: { + title: "Hata!", + message: "Bir şeyler ters gitti. Lütfen tekrar deneyin.", + }, + }, + }, + }, + unique_code: { + label: "Benzersiz kod", + placeholder: "alır-atar-uçar", + paste_code: "E-postanıza gönderilen kodu yapıştırın", + requesting_new_code: "Yeni kod isteniyor", + sending_code: "Kod gönderiliyor", + }, + already_have_an_account: "Zaten bir hesabınız var mı?", + login: "Giriş yap", + create_account: "Hesap oluştur", + new_to_plane: "Plane'e yeni mi geldiniz?", + back_to_sign_in: "Giriş yapmaya geri dön", + resend_in: "{seconds} saniye içinde tekrar gönder", + sign_in_with_unique_code: "Benzersiz kod ile giriş yap", + forgot_password: "Şifrenizi mi unuttunuz?", + }, + sign_up: { + header: { + label: "Ekibinizle işleri yönetmeye başlamak için bir hesap oluşturun.", + step: { + email: { + header: "Kaydol", + sub_header: "", + }, + password: { + header: "Kaydol", + sub_header: "E-posta-şifre kombinasyonu kullanarak kaydolun.", + }, + unique_code: { + header: "Kaydol", + sub_header: "Yukarıdaki e-posta adresine gönderilen benzersiz bir kod kullanarak kaydolun.", + }, + }, + }, + errors: { + password: { + strength: "Devam etmek için güçlü bir şifre belirlemeyi deneyin", + }, + }, + }, + sign_in: { + header: { + label: "Ekibinizle işleri yönetmeye başlamak için giriş yapın.", + step: { + email: { + header: "Giriş yap veya kaydol", + sub_header: "", + }, + password: { + header: "Giriş yap veya kaydol", + sub_header: "Giriş yapmak için e-posta-şifre kombinasyonunuzu kullanın.", + }, + unique_code: { + header: "Giriş yap veya kaydol", + sub_header: "Yukarıdaki e-posta adresine gönderilen benzersiz bir kod kullanarak giriş yapın.", + }, + }, + }, + }, + forgot_password: { + title: "Şifrenizi sıfırlayın", + description: + "Kullanıcı hesabınızın doğrulanmış e-posta adresini girin, size bir şifre sıfırlama bağlantısı göndereceğiz.", + email_sent: "Sıfırlama bağlantısını e-posta adresinize gönderdik", + send_reset_link: "Sıfırlama bağlantısı gönder", + errors: { + smtp_not_enabled: + "Yöneticinizin SMTP'yi etkinleştirmediğini görüyoruz, bu yüzden şifre sıfırlama bağlantısı gönderemeyeceğiz", + }, + toast: { + success: { + title: "E-posta gönderildi", + message: + "Şifrenizi sıfırlamak için gelen kutunuzu kontrol edin. Birkaç dakika içinde gelmezse, spam klasörünüzü kontrol edin.", + }, + error: { + title: "Hata!", + message: "Bir şeyler ters gitti. Lütfen tekrar deneyin.", + }, + }, + }, + reset_password: { + title: "Yeni şifre belirle", + description: "Hesabınızı güçlü bir şifreyle güvence altına alın", + }, + set_password: { + title: "Hesabınızı güvence altına alın", + description: "Şifre belirlemek güvenli bir şekilde giriş yapmanıza yardımcı olur", + }, + sign_out: { + toast: { + error: { + title: "Hata!", + message: "Çıkış yapılamadı. Lütfen tekrar deneyin.", + }, + }, + }, + }, + submit: "Gönder", + cancel: "İptal", + loading: "Yükleniyor", + error: "Hata", + success: "Başarılı", + warning: "Uyarı", + info: "Bilgi", + close: "Kapat", + yes: "Evet", + no: "Hayır", + ok: "Tamam", + name: "Ad", + description: "Açıklama", + search: "Ara", + add_member: "Üye ekle", + adding_members: "Üyeler ekleniyor", + remove_member: "Üyeyi kaldır", + add_members: "Üyeler ekle", + adding_member: "Üye ekleniyor", + remove_members: "Üyeleri kaldır", + add: "Ekle", + adding: "Ekleniyor", + remove: "Kaldır", + add_new: "Yeni ekle", + remove_selected: "Seçileni kaldır", + first_name: "Ad", + last_name: "Soyad", + email: "E-posta", + display_name: "Görünen ad", + role: "Rol", + timezone: "Saat dilimi", + avatar: "Profil resmi", + cover_image: "Kapak resmi", + password: "Şifre", + change_cover: "Kapağı değiştir", + language: "Dil", + saving: "Kaydediliyor", + save_changes: "Değişiklikleri kaydet", + deactivate_account: "Hesabı devre dışı bırak", + deactivate_account_description: + "Bir hesap devre dışı bırakıldığında, o hesaptaki tüm veri ve kaynaklar kalıcı olarak kaldırılır ve kurtarılamaz.", + profile_settings: "Profil ayarları", + your_account: "Hesabınız", + security: "Güvenlik", + activity: "Aktivite", + appearance: "Görünüm", + notifications: "Bildirimler", + workspaces: "Çalışma Alanları", + create_workspace: "Çalışma Alanı Oluştur", + invitations: "Davetler", + summary: "Özet", + assigned: "Atanan", + created: "Oluşturulan", + subscribed: "Abone olunan", + you_do_not_have_the_permission_to_access_this_page: "Bu sayfaya erişim izniniz yok.", + something_went_wrong_please_try_again: "Bir hata oluştu. Lütfen tekrar deneyin.", + load_more: "Daha fazla yükle", + select_or_customize_your_interface_color_scheme: "Arayüz renk şemanızı seçin veya özelleştirin.", + theme: "Tema", + system_preference: "Sistem tercihi", + light: "Açık", + dark: "Koyu", + light_contrast: "Yüksek kontrastlı açık", + dark_contrast: "Yüksek kontrastlı koyu", + custom: "Özel tema", + select_your_theme: "Temanızı seçin", + customize_your_theme: "Temanızı özelleştirin", + background_color: "Arkaplan rengi", + text_color: "Metin rengi", + primary_color: "Ana (Tema) rengi", + sidebar_background_color: "Kenar çubuğu arkaplan rengi", + sidebar_text_color: "Kenar çubuğu metin rengi", + set_theme: "Temayı ayarla", + enter_a_valid_hex_code_of_6_characters: "6 karakterlik geçerli bir hex kodu girin", + background_color_is_required: "Arkaplan rengi gereklidir", + text_color_is_required: "Metin rengi gereklidir", + primary_color_is_required: "Ana renk gereklidir", + sidebar_background_color_is_required: "Kenar çubuğu arkaplan rengi gereklidir", + sidebar_text_color_is_required: "Kenar çubuğu metin rengi gereklidir", + updating_theme: "Tema güncelleniyor", + theme_updated_successfully: "Tema başarıyla güncellendi", + failed_to_update_the_theme: "Tema güncellenemedi", + email_notifications: "E-posta bildirimleri", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Abone olduğunuz iş öğelerinden haberdar olun. Bildirim almak için bunu etkinleştirin.", + email_notification_setting_updated_successfully: "E-posta bildirim ayarı başarıyla güncellendi", + failed_to_update_email_notification_setting: "E-posta bildirim ayarı güncellenemedi", + notify_me_when: "Bana ne zaman bildirilsin", + property_changes: "Özellik değişiklikleri", + property_changes_description: "Bir iş öğesinin atananlar, öncelik, tahminler gibi özellikleri değiştiğinde bildir.", + state_change: "Durum değişikliği", + state_change_description: "İş öğesi farklı bir duruma geçtiğinde bildir.", + issue_completed: "İş öğesi tamamlandı", + issue_completed_description: "Yalnızca bir iş öğesi tamamlandığında bildir.", + comments: "Yorumlar", + comments_description: "Birisi iş öğesine yorum yaptığında bildir.", + mentions: "Bahsetmeler", + mentions_description: "Yalnızca birisi yorumlarda veya açıklamada beni etiketlediğinde bildir.", + old_password: "Eski şifre", + general_settings: "Genel ayarlar", + sign_out: "Çıkış yap", + signing_out: "Çıkış yapılıyor", + active_cycles: "Aktif Döngüler", + active_cycles_description: + "Projeler arasında döngüleri izleyin, yüksek öncelikli iş öğelerini takip edin ve dikkat gerektiren döngülere odaklanın.", + on_demand_snapshots_of_all_your_cycles: "Tüm döngülerinizin anlık görüntüleri", + upgrade: "Yükselt", + "10000_feet_view": "Tüm aktif döngülerin genel görünümü", + "10000_feet_view_description": + "Her projede tek tek dolaşmak yerine, tüm projelerinizdeki çalışan döngüleri bir arada görün.", + get_snapshot_of_each_active_cycle: "Her aktif döngünün anlık görüntüsünü alın", + get_snapshot_of_each_active_cycle_description: + "Tüm aktif döngüler için üst düzey metrikleri takip edin, ilerleme durumlarını görün ve son teslim tarihlerine göre kapsamı anlayın.", + compare_burndowns: "Burndown'ları karşılaştırın", + compare_burndowns_description: "Her ekibin performansını her döngünün burndown raporuyla izleyin.", + quickly_see_make_or_break_issues: "Kritik iş öğelerini hızlıca görün", + quickly_see_make_or_break_issues_description: + "Her döngü için yüksek öncelikli iş öğelerini son teslim tarihlerine göre önizleyin. Tümünü tek tıkla görün.", + zoom_into_cycles_that_need_attention: "Dikkat gerektiren döngülere odaklanın", + zoom_into_cycles_that_need_attention_description: + "Beklentilere uymayan herhangi bir döngünün durumunu tek tıkla inceleyin.", + stay_ahead_of_blockers: "Engellerin önüne geçin", + stay_ahead_of_blockers_description: + "Projeler arası zorlukları ve diğer görünümlerde belirgin olmayan döngü bağımlılıklarını tespit edin.", + analytics: "Analitik", + workspace_invites: "Çalışma Alanı Davetleri", + enter_god_mode: "Yönetici Moduna Geç", + workspace_logo: "Çalışma Alanı Logosu", + new_issue: "Yeni İş Öğesi", + your_work: "Sizin İşleriniz", + drafts: "Taslaklar", + projects: "Projeler", + views: "Görünümler", + workspace: "Çalışma Alanı", + archives: "Arşivler", + settings: "Ayarlar", + failed_to_move_favorite: "Favori taşınamadı", + favorites: "Favoriler", + no_favorites_yet: "Henüz favori yok", + create_folder: "Klasör oluştur", + new_folder: "Yeni Klasör", + favorite_updated_successfully: "Favori başarıyla güncellendi", + favorite_created_successfully: "Favori başarıyla oluşturuldu", + folder_already_exists: "Klasör zaten var", + folder_name_cannot_be_empty: "Klasör adı boş olamaz", + something_went_wrong: "Bir şeyler yanlış gitti", + failed_to_reorder_favorite: "Favori sıralaması değiştirilemedi", + favorite_removed_successfully: "Favori başarıyla kaldırıldı", + failed_to_create_favorite: "Favori oluşturulamadı", + failed_to_rename_favorite: "Favori yeniden adlandırılamadı", + project_link_copied_to_clipboard: "Proje bağlantısı panoya kopyalandı", + link_copied: "Bağlantı kopyalandı", + add_project: "Proje ekle", + create_project: "Proje oluştur", + failed_to_remove_project_from_favorites: "Proje favorilerden kaldırılamadı. Lütfen tekrar deneyin.", + project_created_successfully: "Proje başarıyla oluşturuldu", + project_created_successfully_description: "Proje başarıyla oluşturuldu. Artık iş öğeleri eklemeye başlayabilirsiniz.", + project_name_already_taken: "Proje ismi zaten kullanılıyor.", + project_identifier_already_taken: "Proje kimliği zaten kullanılıyor.", + project_cover_image_alt: "Proje kapak resmi", + name_is_required: "Ad gereklidir", + title_should_be_less_than_255_characters: "Başlık 255 karakterden az olmalı", + project_name: "Proje Adı", + project_id_must_be_at_least_1_character: "Proje ID en az 1 karakter olmalı", + project_id_must_be_at_most_5_characters: "Proje ID en fazla 5 karakter olmalı", + project_id: "Proje ID", + project_id_tooltip_content: "Projedeki iş öğelerini benzersiz şekilde tanımlamanıza yardımcı olur. Maks. 5 karakter.", + description_placeholder: "Açıklama", + only_alphanumeric_non_latin_characters_allowed: "Yalnızca alfasayısal ve Latin olmayan karakterlere izin verilir.", + project_id_is_required: "Proje ID gereklidir", + project_id_allowed_char: "Yalnızca alfasayısal ve Latin olmayan karakterlere izin verilir.", + project_id_min_char: "Proje ID en az 1 karakter olmalı", + project_id_max_char: "Proje ID en fazla 5 karakter olmalı", + project_description_placeholder: "Proje açıklamasını girin", + select_network: "Ağ seç", + lead: "Lider", + date_range: "Tarih aralığı", + private: "Özel", + public: "Herkese Açık", + accessible_only_by_invite: "Yalnızca davetle erişilebilir", + anyone_in_the_workspace_except_guests_can_join: "Çalışma alanındaki herkes (Misafirler hariç) katılabilir", + creating: "Oluşturuluyor", + creating_project: "Proje oluşturuluyor", + adding_project_to_favorites: "Proje favorilere ekleniyor", + project_added_to_favorites: "Proje favorilere eklendi", + couldnt_add_the_project_to_favorites: "Proje favorilere eklenemedi. Lütfen tekrar deneyin.", + removing_project_from_favorites: "Proje favorilerden kaldırılıyor", + project_removed_from_favorites: "Proje favorilerden kaldırıldı", + couldnt_remove_the_project_from_favorites: "Proje favorilerden kaldırılamadı. Lütfen tekrar deneyin.", + add_to_favorites: "Favorilere ekle", + remove_from_favorites: "Favorilerden kaldır", + publish_project: "Projeyi yayımla", + publish: "Yayınla", + copy_link: "Bağlantıyı kopyala", + leave_project: "Projeden ayrıl", + join_the_project_to_rearrange: "Yeniden düzenlemek için projeye katılın", + drag_to_rearrange: "Sürükleyerek yeniden düzenle", + congrats: "Tebrikler!", + open_project: "Projeyi aç", + issues: "İş Öğeleri", + cycles: "Döngüler", + modules: "Modüller", + pages: "Sayfalar", + intake: "Talep", + time_tracking: "Zaman Takibi", + work_management: "İş Yönetimi", + projects_and_issues: "Projeler ve İş Öğeleri", + projects_and_issues_description: "Bu projede bu özellikleri açıp kapatın.", + cycles_description: + "Projeye göre işi zamanla sınırlandırın ve gerektiğinde zaman dilimini ayarlayın. Bir döngü 2 hafta, bir sonraki 1 hafta olabilir.", + modules_description: "İşi, özel liderler ve atanmış kişilerle alt projelere ayırın.", + views_description: "Özel sıralamaları, filtreleri ve görüntüleme seçeneklerini kaydedin veya ekibinizle paylaşın.", + pages_description: "Serbest biçimli içerikler oluşturun ve düzenleyin; notlar, belgeler, her şey.", + intake_description: "Üye olmayanların hata, geri bildirim ve öneri paylaşmasına izin verin; iş akışınızı bozmadan.", + time_tracking_description: "İş öğeleri ve projelerde harcanan zamanı kaydedin.", + work_management_description: "İşlerinizi ve projelerinizi kolayca yönetin.", + documentation: "Dokümantasyon", + message_support: "Destekle iletişim", + contact_sales: "Satış Ekibiyle İletişim", + hyper_mode: "Hiper Mod", + keyboard_shortcuts: "Klavye Kısayolları", + whats_new: "Yenilikler", + version: "Sürüm", + we_are_having_trouble_fetching_the_updates: "Güncellemeler alınırken sorun oluştu.", + our_changelogs: "değişiklik kayıtlarımızı", + for_the_latest_updates: "en son güncellemeler için", + please_visit: "Lütfen ziyaret edin", + docs: "Dokümanlar", + full_changelog: "Tam Değişiklik Kaydı", + support: "Destek", + discord: "Discord", + powered_by_plane_pages: "Plane Pages tarafından desteklenmektedir", + please_select_at_least_one_invitation: "Lütfen en az bir davet seçin.", + please_select_at_least_one_invitation_description: "Çalışma alanına katılmak için lütfen en az bir davet seçin.", + we_see_that_someone_has_invited_you_to_join_a_workspace: "Birinin sizi bir çalışma alanına davet ettiğini görüyoruz", + join_a_workspace: "Bir çalışma alanına katıl", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Birinin sizi bir çalışma alanına davet ettiğini görüyoruz", + join_a_workspace_description: "Bir çalışma alanına katıl", + accept_and_join: "Kabul Et ve Katıl", + go_home: "Ana Sayfaya Dön", + no_pending_invites: "Bekleyen davet yok", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Biri sizi bir çalışma alanına davet ederse burada görebilirsiniz", + back_to_home: "Ana Sayfaya Dön", + workspace_name: "çalışma-alanı-adı", + deactivate_your_account: "Hesabınızı devre dışı bırakın", + deactivate_your_account_description: + "Devre dışı bırakıldığında, iş öğelerine atanamazsınız ve çalışma alanınız için faturalandırılmazsınız. Hesabınızı yeniden etkinleştirmek için bu e-posta adresine bir çalışma alanı daveti gerekecektir.", + deactivating: "Devre dışı bırakılıyor", + confirm: "Onayla", + confirming: "Onaylanıyor", + draft_created: "Taslak oluşturuldu", + issue_created_successfully: "İş öğesi başarıyla oluşturuldu", + draft_creation_failed: "Taslak oluşturulamadı", + issue_creation_failed: "İş öğesi oluşturulamadı", + draft_issue: "Taslak İş Öğesi", + issue_updated_successfully: "İş öğesi başarıyla güncellendi", + issue_could_not_be_updated: "İş öğesi güncellenemedi", + create_a_draft: "Taslak oluştur", + save_to_drafts: "Taslaklara Kaydet", + save: "Kaydet", + update: "Güncelle", + updating: "Güncelleniyor", + create_new_issue: "Yeni iş öğesi oluştur", + editor_is_not_ready_to_discard_changes: "Düzenleyici değişiklikleri atmaya hazır değil", + failed_to_move_issue_to_project: "İş öğesi projeye taşınamadı", + create_more: "Daha fazla oluştur", + add_to_project: "Projeye ekle", + discard: "Vazgeç", + duplicate_issue_found: "Yinelenen iş öğesi bulundu", + duplicate_issues_found: "Yinelenen iş öğeleri bulundu", + no_matching_results: "Eşleşen sonuç yok", + title_is_required: "Başlık gereklidir", + title: "Başlık", + state: "Durum", + priority: "Öncelik", + none: "Yok", + urgent: "Acil", + high: "Yüksek", + medium: "Orta", + low: "Düşük", + members: "Üyeler", + assignee: "Atanan", + assignees: "Atananlar", + you: "Siz", + labels: "Etiketler", + create_new_label: "Yeni etiket oluştur", + start_date: "Başlangıç tarihi", + end_date: "Bitiş tarihi", + due_date: "Son tarih", + estimate: "Tahmin", + change_parent_issue: "Üst iş öğesini değiştir", + remove_parent_issue: "Üst iş öğesini kaldır", + add_parent: "Üst ekle", + loading_members: "Üyeler yükleniyor", + view_link_copied_to_clipboard: "Görünüm bağlantısı panoya kopyalandı.", + required: "Gerekli", + optional: "İsteğe Bağlı", + Cancel: "İptal", + edit: "Düzenle", + archive: "Arşivle", + restore: "Geri Yükle", + open_in_new_tab: "Yeni sekmede aç", + delete: "Sil", + deleting: "Siliniyor", + make_a_copy: "Kopyasını oluştur", + move_to_project: "Projeye taşı", + good: "İyi", + morning: "sabah", + afternoon: "öğleden sonra", + evening: "akşam", + show_all: "Tümünü göster", + show_less: "Daha az göster", + no_data_yet: "Henüz veri yok", + syncing: "Senkronize ediliyor", + add_work_item: "İş öğesi ekle", + advanced_description_placeholder: "Komutlar için '/' tuşuna basın", + create_work_item: "İş öğesi oluştur", + attachments: "Ekler", + declining: "Reddediliyor", + declined: "Reddedildi", + decline: "Reddet", + unassigned: "Atanmamış", + work_items: "İş Öğeleri", + add_link: "Bağlantı ekle", + points: "Puanlar", + no_assignee: "Atanan yok", + no_assignees_yet: "Henüz atanan yok", + no_labels_yet: "Henüz etiket yok", + ideal: "İdeal", + current: "Mevcut", + no_matching_members: "Eşleşen üye yok", + leaving: "Ayrılıyor", + removing: "Kaldırılıyor", + leave: "Ayrıl", + refresh: "Yenile", + refreshing: "Yenileniyor", + refresh_status: "Durumu yenile", + prev: "Önceki", + next: "Sonraki", + re_generating: "Yeniden oluşturuluyor", + re_generate: "Yeniden oluştur", + re_generate_key: "Anahtarı yeniden oluştur", + export: "Dışa aktar", + member: "{count, plural, one{# üye} other{# üye}}", + new_password_must_be_different_from_old_password: "Yeni şifre eski şifreden farklı olmalı", + edited: "düzenlendi", + bot: "Bot", + project_view: { + sort_by: { + created_at: "Oluşturulma tarihi", + updated_at: "Güncelleme tarihi", + name: "Ad", + }, + }, + toast: { + success: "Başarılı!", + error: "Hata!", + }, + links: { + toasts: { + created: { + title: "Bağlantı oluşturuldu", + message: "Bağlantı başarıyla oluşturuldu", + }, + not_created: { + title: "Bağlantı oluşturulamadı", + message: "Bağlantı oluşturulamadı", + }, + updated: { + title: "Bağlantı güncellendi", + message: "Bağlantı başarıyla güncellendi", + }, + not_updated: { + title: "Bağlantı güncellenemedi", + message: "Bağlantı güncellenemedi", + }, + removed: { + title: "Bağlantı kaldırıldı", + message: "Bağlantı başarıyla kaldırıldı", + }, + not_removed: { + title: "Bağlantı kaldırılamadı", + message: "Bağlantı kaldırılamadı", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Hızlı başlangıç rehberiniz", + not_right_now: "Şimdi değil", + create_project: { + title: "Proje oluştur", + description: "Çoğu şey Plane'de bir projeyle başlar.", + cta: "Başla", + }, + invite_team: { + title: "Ekibinizi davet edin", + description: "Ekip arkadaşlarınızla birlikte inşa edin, gönderin ve yönetin.", + cta: "Davet et", + }, + configure_workspace: { + title: "Çalışma alanınızı ayarlayın.", + description: "Özellikleri açıp kapatın veya daha fazlasını yapın.", + cta: "Yapılandır", + }, + personalize_account: { + title: "Plane'yi kendinize özelleştirin.", + description: "Resminizi, renklerinizi ve daha fazlasını seçin.", + cta: "Kişiselleştir", + }, + widgets: { + title: "Widget'lar Kapalıyken Sessiz, Onları Açın", + description: "Görünüşe göre tüm widget'larınız kapalı. Deneyiminizi geliştirmek için şimdi etkinleştirin!", + primary_button: { + text: "Widget'ları yönet", + }, + }, + }, + quick_links: { + empty: "Kolay erişim için hızlı bağlantılar ekleyin.", + add: "Hızlı bağlantı ekle", + title: "Hızlı Bağlantı", + title_plural: "Hızlı Bağlantılar", + }, + recents: { + title: "Sonlar", + empty: { + project: "Bir projeyi ziyaret ettikten sonra son projeleriniz burada görünecek.", + page: "Bir sayfayı ziyaret ettikten sonra son sayfalarınız burada görünecek.", + issue: "Bir iş öğesini ziyaret ettikten sonra son iş öğeleriniz burada görünecek.", + default: "Henüz hiç sonunuz yok.", + }, + filters: { + all: "Tüm öğeler", + projects: "Projeler", + pages: "Sayfalar", + issues: "İş öğeleri", + }, + }, + new_at_plane: { + title: "Plane'de Yenilikler", + }, + quick_tutorial: { + title: "Hızlı eğitim", + }, + widget: { + reordered_successfully: "Widget başarıyla yeniden sıralandı.", + reordering_failed: "Widget yeniden sıralanırken hata oluştu.", + }, + manage_widgets: "Widget'ları yönet", + title: "Ana Sayfa", + star_us_on_github: "Bizi GitHub'da yıldızlayın", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL geçersiz", + placeholder: "URL yazın veya yapıştırın", + }, + title: { + text: "Görünen başlık", + placeholder: "Bu bağlantıyı nasıl görmek istersiniz", + }, + }, + }, + common: { + all: "Tümü", + states: "Durumlar", + state: "Durum", + state_groups: "Durum grupları", + state_group: "Durum grubu", + priorities: "Öncelikler", + priority: "Öncelik", + team_project: "Takım projesi", + project: "Proje", + cycle: "Döngü", + cycles: "Döngüler", + module: "Modül", + modules: "Modüller", + labels: "Etiketler", + label: "Etiket", + assignees: "Atananlar", + assignee: "Atanan", + created_by: "Oluşturan", + none: "Yok", + link: "Bağlantı", + estimates: "Tahminler", + estimate: "Tahmin", + created_at: "Oluşturulma tarihi", + completed_at: "Tamamlanma tarihi", + layout: "Düzen", + filters: "Filtreler", + display: "Görüntüle", + load_more: "Daha fazla yükle", + activity: "Aktivite", + analytics: "Analitik", + dates: "Tarihler", + success: "Başarılı!", + something_went_wrong: "Bir şeyler yanlış gitti", + error: { + label: "Hata!", + message: "Bir hata oluştu. Lütfen tekrar deneyin.", + }, + group_by: "Gruplandır", + epic: "Epik", + epics: "Epikler", + work_item: "İş öğesi", + work_items: "İş Öğeleri", + sub_work_item: "Alt iş öğesi", + add: "Ekle", + warning: "Uyarı", + updating: "Güncelleniyor", + adding: "Ekleniyor", + update: "Güncelle", + creating: "Oluşturuluyor", + create: "Oluştur", + cancel: "İptal", + description: "Açıklama", + title: "Başlık", + attachment: "Ek", + general: "Genel", + features: "Özellikler", + automation: "Otomasyon", + project_name: "Proje Adı", + project_id: "Proje ID", + project_timezone: "Proje Saat Dilimi", + created_on: "Oluşturulma tarihi", + update_project: "Projeyi güncelle", + identifier_already_exists: "Tanımlayıcı zaten var", + add_more: "Daha fazla ekle", + defaults: "Varsayılanlar", + add_label: "Etiket ekle", + customize_time_range: "Zaman aralığını özelleştir", + loading: "Yükleniyor", + attachments: "Ekler", + property: "Özellik", + properties: "Özellikler", + parent: "Üst", + page: "Sayfa", + remove: "Kaldır", + archiving: "Arşivleniyor", + archive: "Arşivle", + access: { + public: "Herkese Açık", + private: "Özel", + }, + done: "Tamamlandı", + sub_work_items: "Alt iş öğeleri", + comment: "Yorum", + workspace_level: "Çalışma Alanı Seviyesi", + order_by: { + label: "Sırala", + manual: "Manuel", + last_created: "Son oluşturulan", + last_updated: "Son güncellenen", + start_date: "Başlangıç tarihi", + due_date: "Son tarih", + asc: "Artan", + desc: "Azalan", + updated_on: "Güncellenme tarihi", + }, + sort: { + asc: "Artan", + desc: "Azalan", + created_on: "Oluşturulma tarihi", + updated_on: "Güncellenme tarihi", + }, + comments: "Yorumlar", + updates: "Güncellemeler", + clear_all: "Tümünü temizle", + copied: "Kopyalandı!", + link_copied: "Bağlantı kopyalandı!", + link_copied_to_clipboard: "Bağlantı panoya kopyalandı", + copied_to_clipboard: "İş öğesi bağlantısı panoya kopyalandı", + is_copied_to_clipboard: "İş öğesi panoya kopyalandı", + no_links_added_yet: "Henüz bağlantı eklenmedi", + add_link: "Bağlantı ekle", + links: "Bağlantılar", + go_to_workspace: "Çalışma Alanına Git", + progress: "İlerleme", + optional: "İsteğe Bağlı", + join: "Katıl", + go_back: "Geri Dön", + continue: "Devam Et", + resend: "Yeniden Gönder", + relations: "İlişkiler", + errors: { + default: { + title: "Hata!", + message: "Bir hata oluştu. Lütfen tekrar deneyin.", + }, + required: "Bu alan gereklidir", + entity_required: "{entity} gereklidir", + restricted_entity: "{entity} kısıtlanmıştır", + }, + update_link: "Bağlantıyı güncelle", + attach: "Ekle", + create_new: "Yeni oluştur", + add_existing: "Varolanı ekle", + type_or_paste_a_url: "URL yazın veya yapıştırın", + url_is_invalid: "URL geçersiz", + display_title: "Görünen başlık", + link_title_placeholder: "Bu bağlantıyı nasıl görmek istersiniz", + url: "URL", + side_peek: "Yan Görünüm", + modal: "Modal", + full_screen: "Tam Ekran", + close_peek_view: "Yan görünümü kapat", + toggle_peek_view_layout: "Yan görünüm düzenini değiştir", + options: "Seçenekler", + duration: "Süre", + today: "Bugün", + week: "Hafta", + month: "Ay", + quarter: "Çeyrek", + press_for_commands: "Komutlar için '/' tuşuna basın", + click_to_add_description: "Açıklama eklemek için tıkla", + search: { + label: "Ara", + placeholder: "Aramak için yazın", + no_matches_found: "Eşleşme bulunamadı", + no_matching_results: "Eşleşen sonuç yok", + }, + actions: { + edit: "Düzenle", + make_a_copy: "Kopyasını oluştur", + open_in_new_tab: "Yeni sekmede aç", + copy_link: "Bağlantıyı kopyala", + archive: "Arşivle", + restore: "Geri yükle", + delete: "Sil", + remove_relation: "İlişkiyi kaldır", + subscribe: "Abone ol", + unsubscribe: "Abonelikten çık", + clear_sorting: "Sıralamayı temizle", + show_weekends: "Hafta sonlarını göster", + enable: "Etkinleştir", + disable: "Devre dışı bırak", + copy_markdown: "Markdown'ı kopyala", + }, + name: "Ad", + discard: "Vazgeç", + confirm: "Onayla", + confirming: "Onaylanıyor", + read_the_docs: "Dokümanları oku", + default: "Varsayılan", + active: "Aktif", + enabled: "Etkin", + disabled: "Devre Dışı", + mandate: "Yetki", + mandatory: "Zorunlu", + yes: "Evet", + no: "Hayır", + please_wait: "Lütfen bekleyin", + enabling: "Etkinleştiriliyor", + disabling: "Devre Dışı Bırakılıyor", + beta: "Beta", + or: "veya", + next: "Sonraki", + back: "Geri", + cancelling: "İptal ediliyor", + configuring: "Yapılandırılıyor", + clear: "Temizle", + import: "İçe aktar", + connect: "Bağlan", + authorizing: "Yetkilendiriliyor", + processing: "İşleniyor", + no_data_available: "Veri yok", + from: "{name} kaynaklı", + authenticated: "Kimliği doğrulandı", + select: "Seç", + upgrade: "Yükselt", + add_seats: "Koltuk Ekle", + projects: "Projeler", + workspace: "Çalışma Alanı", + workspaces: "Çalışma Alanları", + team: "Takım", + teams: "Takımlar", + entity: "Varlık", + entities: "Varlıklar", + task: "Görev", + tasks: "Görevler", + section: "Bölüm", + sections: "Bölümler", + edit: "Düzenle", + connecting: "Bağlanılıyor", + connected: "Bağlı", + disconnect: "Bağlantıyı kes", + disconnecting: "Bağlantı kesiliyor", + installing: "Yükleniyor", + install: "Yükle", + reset: "Sıfırla", + live: "Canlı", + change_history: "Değişiklik Geçmişi", + coming_soon: "Çok Yakında", + member: "Üye", + members: "Üyeler", + you: "Siz", + upgrade_cta: { + higher_subscription: "Daha yüksek aboneliğe yükselt", + talk_to_sales: "Satış Ekibiyle Görüş", + }, + category: "Kategori", + categories: "Kategoriler", + saving: "Kaydediliyor", + save_changes: "Değişiklikleri Kaydet", + delete: "Sil", + deleting: "Siliniyor", + pending: "Beklemede", + invite: "Davet Et", + view: "Görünüm", + deactivated_user: "Devre dışı bırakılmış kullanıcı", + apply: "Uygula", + applying: "Uygulanıyor", + users: "Kullanıcılar", + admins: "Yöneticiler", + guests: "Misafirler", + on_track: "Yolunda", + off_track: "Yolunda değil", + at_risk: "Risk altında", + timeline: "Zaman çizelgesi", + completion: "Tamamlama", + upcoming: "Yaklaşan", + completed: "Tamamlandı", + in_progress: "Devam ediyor", + planned: "Planlandı", + paused: "Durduruldu", + no_of: "{entity} sayısı", + resolved: "Çözüldü", + }, + chart: { + x_axis: "X ekseni", + y_axis: "Y ekseni", + metric: "Metrik", + }, + form: { + title: { + required: "Başlık gereklidir", + max_length: "Başlık {length} karakterden az olmalı", + }, + }, + entity: { + grouping_title: "{entity} Gruplandırma", + priority: "{entity} Önceliği", + all: "Tüm {entity}", + drop_here_to_move: "{entity} taşımak için buraya bırakın", + delete: { + label: "{entity} Sil", + success: "{entity} başarıyla silindi", + failed: "{entity} silinemedi", + }, + update: { + failed: "{entity} güncellenemedi", + success: "{entity} başarıyla güncellendi", + }, + link_copied_to_clipboard: "{entity} bağlantısı panoya kopyalandı", + fetch: { + failed: "{entity} alınırken hata oluştu", + }, + add: { + success: "{entity} başarıyla eklendi", + failed: "{entity} eklenirken hata oluştu", + }, + remove: { + success: "{entity} başarıyla kaldırıldı", + failed: "{entity} kaldırılırken hata oluştu", + }, + }, + epic: { + all: "Tüm Epikler", + label: "{count, plural, one {Epik} other {Epikler}}", + new: "Yeni Epik", + adding: "Epik ekleniyor", + create: { + success: "Epik başarıyla oluşturuldu", + }, + add: { + press_enter: "Başka bir epik eklemek için 'Enter'a basın", + label: "Epik Ekle", + }, + title: { + label: "Epik Başlığı", + required: "Epik başlığı gereklidir.", + }, + }, + issue: { + label: "{count, plural, one {İş öğesi} other {İş öğeleri}}", + all: "Tüm İş Öğeleri", + edit: "İş öğesini düzenle", + title: { + label: "İş öğesi başlığı", + required: "İş öğesi başlığı gereklidir.", + }, + add: { + press_enter: "Başka bir iş öğesi eklemek için 'Enter'a basın", + label: "İş öğesi ekle", + cycle: { + failed: "İş öğesi döngüye eklenemedi. Lütfen tekrar deneyin.", + success: "{count, plural, one {İş öğesi} other {İş öğeleri}} döngüye başarıyla eklendi.", + loading: "{count, plural, one {İş öğesi} other {İş öğeleri}} döngüye ekleniyor", + }, + assignee: "Atanan ekle", + start_date: "Başlangıç tarihi ekle", + due_date: "Son tarih ekle", + parent: "Üst iş öğesi ekle", + sub_issue: "Alt iş öğesi ekle", + relation: "İlişki ekle", + link: "Bağlantı ekle", + existing: "Varolan iş öğesi ekle", + }, + remove: { + label: "İş öğesini kaldır", + cycle: { + loading: "İş öğesi döngüden kaldırılıyor", + success: "İş öğesi döngüden başarıyla kaldırıldı.", + failed: "İş öğesi döngüden kaldırılamadı. Lütfen tekrar deneyin.", + }, + module: { + loading: "İş öğesi modülden kaldırılıyor", + success: "İş öğesi modülden başarıyla kaldırıldı.", + failed: "İş öğesi modülden kaldırılamadı. Lütfen tekrar deneyin.", + }, + parent: { + label: "Üst iş öğesini kaldır", + }, + }, + new: "Yeni İş Öğesi", + adding: "İş öğesi ekleniyor", + create: { + success: "İş öğesi başarıyla oluşturuldu", + }, + priority: { + urgent: "Acil", + high: "Yüksek", + medium: "Orta", + low: "Düşük", + }, + display: { + properties: { + label: "Görünen Özellikler", + id: "ID", + issue_type: "İş Öğesi Türü", + sub_issue_count: "Alt iş öğesi sayısı", + attachment_count: "Ek sayısı", + created_on: "Oluşturulma tarihi", + sub_issue: "Alt iş öğesi", + work_item_count: "İş öğesi sayısı", + }, + extra: { + show_sub_issues: "Alt iş öğelerini göster", + show_empty_groups: "Boş grupları göster", + }, + }, + layouts: { + ordered_by_label: "Bu düzen şu şekilde sıralanmıştır", + list: "Liste", + kanban: "Pano", + calendar: "Takvim", + spreadsheet: "Tablo", + gantt: "Zaman Çizelgesi", + title: { + list: "Liste Düzeni", + kanban: "Pano Düzeni", + calendar: "Takvim Düzeni", + spreadsheet: "Tablo Düzeni", + gantt: "Zaman Çizelgesi Düzeni", + }, + }, + states: { + active: "Aktif", + backlog: "Bekleme Listesi", + }, + comments: { + placeholder: "Yorum ekle", + switch: { + private: "Özel yoruma geç", + public: "Genel yoruma geç", + }, + create: { + success: "Yorum başarıyla oluşturuldu", + error: "Yorum oluşturulamadı. Lütfen daha sonra tekrar deneyin.", + }, + update: { + success: "Yorum başarıyla güncellendi", + error: "Yorum güncellenemedi. Lütfen daha sonra tekrar deneyin.", + }, + remove: { + success: "Yorum başarıyla kaldırıldı", + error: "Yorum kaldırılamadı. Lütfen daha sonra tekrar deneyin.", + }, + upload: { + error: "Dosya yüklenemedi. Lütfen daha sonra tekrar deneyin.", + }, + copy_link: { + success: "Yorum bağlantısı panoya kopyalandı", + error: "Yorum bağlantısı kopyalanırken hata oluştu. Lütfen daha sonra tekrar deneyin.", + }, + }, + empty_state: { + issue_detail: { + title: "İş öğesi mevcut değil", + description: "Aradığınız iş öğesi mevcut değil, arşivlenmiş veya silinmiş.", + primary_button: { + text: "Diğer iş öğelerini görüntüle", + }, + }, + }, + sibling: { + label: "Kardeş iş öğeleri", + }, + archive: { + description: "Yalnızca tamamlanmış veya iptal edilmiş\niş öğeleri arşivlenebilir", + label: "İş Öğesini Arşivle", + confirm_message: + "Bu iş öğesini arşivlemek istediğinizden emin misiniz? Arşivlenen tüm iş öğelerinizi daha sonra geri yükleyebilirsiniz.", + success: { + label: "Arşivleme başarılı", + message: "Arşivleriniz proje arşivlerinde bulunabilir.", + }, + failed: { + message: "İş öğesi arşivlenemedi. Lütfen tekrar deneyin.", + }, + }, + restore: { + success: { + title: "Geri yükleme başarılı", + message: "İş öğeniz proje iş öğelerinde bulunabilir.", + }, + failed: { + message: "İş öğesi geri yüklenemedi. Lütfen tekrar deneyin.", + }, + }, + relation: { + relates_to: "İlişkili", + duplicate: "Kopyası", + blocked_by: "Engellendi", + blocking: "Engelliyor", + }, + copy_link: "İş öğesi bağlantısını kopyala", + delete: { + label: "İş öğesini sil", + error: "İş öğesi silinirken hata oluştu", + }, + subscription: { + actions: { + subscribed: "İş öğesine abone olundu", + unsubscribed: "İş öğesi aboneliği sonlandırıldı", + }, + }, + select: { + error: "Lütfen en az bir iş öğesi seçin", + empty: "Hiç iş öğesi seçilmedi", + add_selected: "Seçilen iş öğelerini ekle", + select_all: "Tümünü seç", + deselect_all: "Tümünü seçme", + }, + open_in_full_screen: "İş öğesini tam ekranda aç", + }, + attachment: { + error: "Dosya eklenemedi. Tekrar yüklemeyi deneyin.", + only_one_file_allowed: "Aynı anda yalnızca bir dosya yüklenebilir.", + file_size_limit: "Dosya boyutu {size}MB veya daha az olmalıdır.", + drag_and_drop: "Yüklemek için herhangi bir yere sürükleyip bırakın", + delete: "Eki sil", + }, + label: { + select: "Etiket seç", + create: { + success: "Etiket başarıyla oluşturuldu", + failed: "Etiket oluşturulamadı", + already_exists: "Etiket zaten mevcut", + type: "Yeni etiket eklemek için yazın", + }, + }, + sub_work_item: { + update: { + success: "Alt iş öğesi başarıyla güncellendi", + error: "Alt iş öğesi güncellenirken hata oluştu", + }, + remove: { + success: "Alt iş öğesi başarıyla kaldırıldı", + error: "Alt iş öğesi kaldırılırken hata oluştu", + }, + empty_state: { + sub_list_filters: { + title: "Alt iş öğelerinizin filtreleriyle eşleşmiyor.", + description: "Tüm alt iş öğelerini görmek için tüm uygulanan filtreleri temizleyin.", + action: "Filtreleri temizle", + }, + list_filters: { + title: "İş öğelerinizin filtreleriyle eşleşmiyor.", + description: "Tüm iş öğelerini görmek için tüm uygulanan filtreleri temizleyin.", + action: "Filtreleri temizle", + }, + }, + }, + view: { + label: "{count, plural, one {Görünüm} other {Görünümler}}", + create: { + label: "Görünüm Oluştur", + }, + update: { + label: "Görünümü Güncelle", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Beklemede", + description: "Beklemede", + }, + declined: { + title: "Reddedildi", + description: "Reddedildi", + }, + snoozed: { + title: "Erteleme", + description: "{days, plural, one{# gün} other{# gün}} kaldı", + }, + accepted: { + title: "Kabul Edildi", + description: "Kabul Edildi", + }, + duplicate: { + title: "Kopya", + description: "Kopya", + }, + }, + modals: { + decline: { + title: "İş öğesini reddet", + content: "{value} iş öğesini reddetmek istediğinizden emin misiniz?", + }, + delete: { + title: "İş öğesini sil", + content: "{value} iş öğesini silmek istediğinizden emin misiniz?", + success: "İş öğesi başarıyla silindi", + }, + }, + errors: { + snooze_permission: "Yalnızca proje yöneticileri iş öğelerini erteleyebilir/ertelemeyi kaldırabilir", + accept_permission: "Yalnızca proje yöneticileri iş öğelerini kabul edebilir", + decline_permission: "Yalnızca proje yöneticileri iş öğelerini reddedebilir", + }, + actions: { + accept: "Kabul Et", + decline: "Reddet", + snooze: "Ertele", + unsnooze: "Ertelemeyi Kaldır", + copy: "İş öğesi bağlantısını kopyala", + delete: "Sil", + open: "İş öğesini aç", + mark_as_duplicate: "Kopya olarak işaretle", + move: "{value} proje iş öğelerine taşı", + }, + source: { + "in-app": "uygulama içi", + }, + order_by: { + created_at: "Oluşturulma tarihi", + updated_at: "Güncelleme tarihi", + id: "ID", + }, + label: "Talep", + page_label: "{workspace} - Talep", + modal: { + title: "Talep iş öğesi oluştur", + }, + tabs: { + open: "Açık", + closed: "Kapalı", + }, + empty_state: { + sidebar_open_tab: { + title: "Açık iş öğesi yok", + description: "Açık iş öğelerini burada bulabilirsiniz. Yeni iş öğesi oluşturun.", + }, + sidebar_closed_tab: { + title: "Kapalı iş öğesi yok", + description: "Kabul edilen veya reddedilen tüm iş öğeleri burada bulunabilir.", + }, + sidebar_filter: { + title: "Eşleşen iş öğesi yok", + description: "Talep bölümünde uygulanan filtreyle eşleşen iş öğesi yok. Yeni bir iş öğesi oluşturun.", + }, + detail: { + title: "Detaylarını görüntülemek için bir iş öğesi seçin.", + }, + }, + }, + workspace_creation: { + heading: "Çalışma Alanınızı Oluşturun", + subheading: "Plane'i kullanmaya başlamak için bir çalışma alanı oluşturmalı veya katılmalısınız.", + form: { + name: { + label: "Çalışma Alanınıza Ad Verin", + placeholder: "Tanıdık ve tanınabilir bir şey her zaman iyidir.", + }, + url: { + label: "Çalışma Alanı URL'nizi Belirleyin", + placeholder: "URL yazın veya yapıştırın", + edit_slug: "Yalnızca URL'nin kısa adını düzenleyebilirsiniz", + }, + organization_size: { + label: "Bu çalışma alanını kaç kişi kullanacak?", + placeholder: "Bir aralık seçin", + }, + }, + errors: { + creation_disabled: { + title: "Yalnızca örnek yöneticiniz çalışma alanları oluşturabilir", + description: + "Örnek yöneticinizin e-posta adresini biliyorsanız, iletişime geçmek için aşağıdaki düğmeye tıklayın.", + request_button: "Örnek yönetici iste", + }, + validation: { + name_alphanumeric: "Çalışma alanı adları yalnızca (' '), ('-'), ('_') ve alfasayısal karakterler içerebilir.", + name_length: "Adınızı 80 karakterle sınırlayın.", + url_alphanumeric: "URL'ler yalnızca ('-') ve alfasayısal karakterler içerebilir.", + url_length: "URL'nizi 48 karakterle sınırlayın.", + url_already_taken: "Çalışma alanı URL'si zaten alınmış!", + }, + }, + request_email: { + subject: "Yeni çalışma alanı isteği", + body: "Merhaba örnek yönetici(ler),\n\nLütfen [çalışma-alanı-adı] URL'si ile [çalışma alanı oluşturma amacı] için yeni bir çalışma alanı oluşturun.\n\nTeşekkürler,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Çalışma alanı oluştur", + loading: "Çalışma alanı oluşturuluyor", + }, + toast: { + success: { + title: "Başarılı", + message: "Çalışma alanı başarıyla oluşturuldu", + }, + error: { + title: "Hata", + message: "Çalışma alanı oluşturulamadı. Lütfen tekrar deneyin.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Projelerinizin, aktivitenizin ve metriklerinizin genel görünümü", + description: + "Plane'e hoş geldiniz, sizi aramızda görmekten heyecan duyuyoruz. İlk projenizi oluşturun ve iş öğelerinizi takip edin, bu sayfa ilerlemenize yardımcı olacak bir alana dönüşecek. Yöneticiler ayrıca ekiplerinin ilerlemesine yardımcı olacak öğeler görecek.", + primary_button: { + text: "İlk projenizi oluşturun", + comic: { + title: "Plane'de her şey bir projeyle başlar", + description: + "Bir proje, bir ürünün yol haritası, bir pazarlama kampanyası veya yeni bir araba lansmanı olabilir.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Analitik", + page_label: "{workspace} - Analitik", + open_tasks: "Toplam açık görev", + error: "Veri alınırken bir hata oluştu.", + work_items_closed_in: "Kapanan iş öğeleri", + selected_projects: "Seçilen projeler", + total_members: "Toplam üye", + total_cycles: "Toplam döngü", + total_modules: "Toplam modül", + pending_work_items: { + title: "Bekleyen iş öğeleri", + empty_state: "Ekip arkadaşlarınız tarafından bekleyen iş öğelerinin analizi burada görünür.", + }, + work_items_closed_in_a_year: { + title: "Bir yılda kapanan iş öğeleri", + empty_state: "Aynı grafikte analizini görmek için iş öğelerini kapatın.", + }, + most_work_items_created: { + title: "En çok iş öğesi oluşturan", + empty_state: "Ekip arkadaşlarınız ve onların oluşturduğu iş öğesi sayıları burada görünür.", + }, + most_work_items_closed: { + title: "En çok iş öğesi kapatan", + empty_state: "Ekip arkadaşlarınız ve onların kapattığı iş öğesi sayıları burada görünür.", + }, + tabs: { + scope_and_demand: "Kapsam ve Talep", + custom: "Özel Analitik", + }, + empty_state: { + customized_insights: { + description: "Size atanan iş öğeleri, duruma göre ayrılarak burada gösterilecektir.", + title: "Henüz veri yok", + }, + created_vs_resolved: { + description: "Zaman içinde oluşturulan ve çözümlenen iş öğeleri burada gösterilecektir.", + title: "Henüz veri yok", + }, + project_insights: { + title: "Henüz veri yok", + description: "Size atanan iş öğeleri, duruma göre ayrılarak burada gösterilecektir.", + }, + general: { + title: + "İlerlemeyi, iş yüklerini ve tahsisleri takip edin. Eğilimleri tespit edin, engelleri kaldırın ve işi hızlandırın", + description: + "Kapsam ile talep, tahminler ve kapsam genişlemesini görün. Takım üyeleri ve takımlar bazında performans alın ve projenizin zamanında çalıştığından emin olun.", + primary_button: { + text: "İlk projenizi başlatın", + comic: { + title: "Analitik en iyi Döngüler + Modüller ile çalışır", + description: + "İlk olarak, sorunlarınızı Döngülere sınırlandırın ve eğer mümkünse, bir döngüden fazla süren sorunları Modüllere gruplandırın. Sol navigasyonda ikisini de kontrol edin.", + }, + }, + }, + }, + created_vs_resolved: "Oluşturulan vs Çözülen", + customized_insights: "Özelleştirilmiş İçgörüler", + backlog_work_items: "Backlog {entity}", + active_projects: "Aktif Projeler", + trend_on_charts: "Grafiklerdeki eğilim", + all_projects: "Tüm Projeler", + summary_of_projects: "Projelerin Özeti", + project_insights: "Proje İçgörüleri", + started_work_items: "Başlatılan {entity}", + total_work_items: "Toplam {entity}", + total_projects: "Toplam Proje", + total_admins: "Toplam Yönetici", + total_users: "Toplam Kullanıcı", + total_intake: "Toplam Gelir", + un_started_work_items: "Başlanmamış {entity}", + total_guests: "Toplam Misafir", + completed_work_items: "Tamamlanmış {entity}", + total: "Toplam {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Proje} other {Projeler}}", + create: { + label: "Proje Ekle", + }, + network: { + label: "Ağ", + private: { + title: "Özel", + description: "Yalnızca davetle erişilebilir", + }, + public: { + title: "Herkese Açık", + description: "Çalışma alanındaki herkes (Misafirler hariç) katılabilir", + }, + }, + error: { + permission: "Bu işlemi yapma izniniz yok.", + cycle_delete: "Döngü silinemedi", + module_delete: "Modül silinemedi", + issue_delete: "İş öğesi silinemedi", + }, + state: { + backlog: "Bekleme Listesi", + unstarted: "Başlatılmadı", + started: "Başlatıldı", + completed: "Tamamlandı", + cancelled: "İptal Edildi", + }, + sort: { + manual: "Manuel", + name: "Ad", + created_at: "Oluşturulma tarihi", + members_length: "Üye sayısı", + }, + scope: { + my_projects: "Projelerim", + archived_projects: "Arşivlenmiş", + }, + common: { + months_count: "{months, plural, one{# ay} other{# ay}}", + }, + empty_state: { + general: { + title: "Aktif proje yok", + description: + "Her projeyi hedef odaklı çalışmanın üst öğesi olarak düşünün. Projeler, İşler, Döngüler ve Modüllerin yaşadığı ve meslektaşlarınızla birlikte bu hedefe ulaşmanıza yardımcı olan yerlerdir. Yeni bir proje oluşturun veya arşivlenmiş projeler için filtreleyin.", + primary_button: { + text: "İlk projenizi başlatın", + comic: { + title: "Plane'de her şey bir projeyle başlar", + description: + "Bir proje, bir ürünün yol haritası, bir pazarlama kampanyası veya yeni bir araba lansmanı olabilir.", + }, + }, + }, + no_projects: { + title: "Proje yok", + description: + "İş öğesi oluşturmak veya işlerinizi yönetmek için bir proje oluşturmalı veya bir parçası olmalısınız.", + primary_button: { + text: "İlk projenizi başlatın", + comic: { + title: "Plane'de her şey bir projeyle başlar", + description: + "Bir proje, bir ürünün yol haritası, bir pazarlama kampanyası veya yeni bir araba lansmanı olabilir.", + }, + }, + }, + filter: { + title: "Eşleşen proje yok", + description: "Eşleşen kriterlerle proje bulunamadı. \n Bunun yerine yeni bir proje oluşturun.", + }, + search: { + description: "Eşleşen kriterlerle proje bulunamadı.\nBunun yerine yeni bir proje oluşturun", + }, + }, + }, + workspace_views: { + add_view: "Görünüm ekle", + empty_state: { + "all-issues": { + title: "Projede iş öğesi yok", + description: "İlk projeniz tamamlandı! Şimdi, işlerinizi izlenebilir parçalara bölün. Hadi başlayalım!", + primary_button: { + text: "Yeni iş öğesi oluştur", + }, + }, + assigned: { + title: "Henüz iş öğesi yok", + description: "Size atanan iş öğeleri buradan takip edilebilir.", + primary_button: { + text: "Yeni iş öğesi oluştur", + }, + }, + created: { + title: "Henüz iş öğesi yok", + description: "Sizin oluşturduğunuz tüm iş öğeleri burada görünecek, doğrudan buradan takip edin.", + primary_button: { + text: "Yeni iş öğesi oluştur", + }, + }, + subscribed: { + title: "Henüz iş öğesi yok", + description: "İlgilendiğiniz iş öğelerine abone olun, hepsini buradan takip edin.", + }, + "custom-view": { + title: "Henüz iş öğesi yok", + description: "Filtrelere uyan iş öğeleri burada takip edilebilir.", + }, + }, + }, + workspace_settings: { + label: "Çalışma Alanı Ayarları", + page_label: "{workspace} - Genel ayarlar", + key_created: "Anahtar oluşturuldu", + copy_key: + "Bu gizli anahtarı Plane Pages'e kopyalayıp kaydedin. Kapat düğmesine bastıktan sonra bu anahtarı göremezsiniz. Anahtar içeren bir CSV dosyası indirildi.", + token_copied: "Token panoya kopyalandı.", + settings: { + general: { + title: "Genel", + upload_logo: "Logo yükle", + edit_logo: "Logoyu düzenle", + name: "Çalışma Alanı Adı", + company_size: "Şirket Büyüklüğü", + url: "Çalışma Alanı URL'si", + update_workspace: "Çalışma Alanını Güncelle", + delete_workspace: "Bu çalışma alanını sil", + delete_workspace_description: + "Bir çalışma alanı silindiğinde, içindeki tüm veri ve kaynaklar kalıcı olarak kaldırılır ve kurtarılamaz.", + delete_btn: "Bu çalışma alanını sil", + delete_modal: { + title: "Bu çalışma alanını silmek istediğinizden emin misiniz?", + description: + "Ücretli planlarımızdan birine aktif bir deneme sürümünüz var. Devam etmek için önce iptal edin.", + dismiss: "Kapat", + cancel: "Denemeyi iptal et", + success_title: "Çalışma alanı silindi.", + success_message: "Kısa süre sonra profil sayfanıza yönlendirileceksiniz.", + error_title: "Bu işe yaramadı.", + error_message: "Lütfen tekrar deneyin.", + }, + errors: { + name: { + required: "Ad gereklidir", + max_length: "Çalışma alanı adı 80 karakteri geçmemeli", + }, + company_size: { + required: "Şirket büyüklüğü gereklidir", + select_a_range: "Kuruluş büyüklüğünü seçin", + }, + }, + }, + members: { + title: "Üyeler", + add_member: "Üye ekle", + pending_invites: "Bekleyen davetler", + invitations_sent_successfully: "Davetler başarıyla gönderildi", + leave_confirmation: + "Çalışma alanından ayrılmak istediğinizden emin misiniz? Artık bu çalışma alanına erişiminiz olmayacak. Bu işlem geri alınamaz.", + details: { + full_name: "Tam ad", + display_name: "Görünen ad", + email_address: "E-posta adresi", + account_type: "Hesap türü", + authentication: "Kimlik Doğrulama", + joining_date: "Katılma tarihi", + }, + modal: { + title: "İşbirliği yapmaları için kişileri davet edin", + description: "Kişileri çalışma alanınızda işbirliği yapmaları için davet edin.", + button: "Davetleri gönder", + button_loading: "Davetler gönderiliyor", + placeholder: "isim@firma.com", + errors: { + required: "Davet etmek için bir e-posta adresine ihtiyacımız var.", + invalid: "E-posta geçersiz", + }, + }, + }, + billing_and_plans: { + title: "Faturalandırma ve Planlar", + current_plan: "Mevcut plan", + free_plan: "Şu anda ücretsiz planı kullanıyorsunuz", + view_plans: "Planları görüntüle", + }, + exports: { + title: "Dışa Aktarımlar", + exporting: "Dışa aktarılıyor", + previous_exports: "Önceki dışa aktarımlar", + export_separate_files: "Verileri ayrı dosyalara aktar", + modal: { + title: "Şuraya aktar", + toasts: { + success: { + title: "Dışa aktarma başarılı", + message: "{entity} önceki dışa aktarmadan indirilebilir.", + }, + error: { + title: "Dışa aktarma başarısız", + message: "Dışa aktarma başarısız oldu. Lütfen tekrar deneyin.", + }, + }, + }, + }, + webhooks: { + title: "Webhook'lar", + add_webhook: "Webhook ekle", + modal: { + title: "Webhook oluştur", + details: "Webhook detayları", + payload: "Payload URL", + question: "Bu webhook'u hangi olaylar tetiklesin?", + error: "URL gereklidir", + }, + secret_key: { + title: "Gizli anahtar", + message: "Webhook payload'ında oturum açmak için bir token oluşturun", + }, + options: { + all: "Her şeyi gönder", + individual: "Tek tek olayları seç", + }, + toasts: { + created: { + title: "Webhook oluşturuldu", + message: "Webhook başarıyla oluşturuldu", + }, + not_created: { + title: "Webhook oluşturulamadı", + message: "Webhook oluşturulamadı", + }, + updated: { + title: "Webhook güncellendi", + message: "Webhook başarıyla güncellendi", + }, + not_updated: { + title: "Webhook güncellenemedi", + message: "Webhook güncellenemedi", + }, + removed: { + title: "Webhook kaldırıldı", + message: "Webhook başarıyla kaldırıldı", + }, + not_removed: { + title: "Webhook kaldırılamadı", + message: "Webhook kaldırılamadı", + }, + secret_key_copied: { + message: "Gizli anahtar panoya kopyalandı.", + }, + secret_key_not_copied: { + message: "Gizli anahtar kopyalanırken hata oluştu.", + }, + }, + }, + api_tokens: { + title: "API Token'ları", + add_token: "API Token'ı ekle", + create_token: "Token oluştur", + never_expires: "Süresi dolmaz", + generate_token: "Token oluştur", + generating: "Oluşturuluyor", + delete: { + title: "API Token'ını sil", + description: "Bu token'ı kullanan uygulamalar artık Plane verilerine erişemeyecek. Bu işlem geri alınamaz.", + success: { + title: "Başarılı!", + message: "API token'ı başarıyla silindi", + }, + error: { + title: "Hata!", + message: "API token'ı silinemedi", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "API token'ı oluşturulmadı", + description: "Plane API'lerini harici sistemlere entegre etmek için bir token oluşturun.", + }, + webhooks: { + title: "Webhook eklenmedi", + description: + "Gerçek zamanlı güncellemeler almak ve otomatik eylemler gerçekleştirmek için webhook'lar oluşturun.", + }, + exports: { + title: "Henüz dışa aktarma yok", + description: "Dışa aktardığınızda, referans için burada bir kopya bulunur.", + }, + imports: { + title: "Henüz içe aktarma yok", + description: "Tüm önceki içe aktarmalarınızı burada bulabilir ve indirebilirsiniz.", + }, + }, + }, + profile: { + label: "Profil", + page_label: "Sizin İşleriniz", + work: "İş", + details: { + joined_on: "Katılma tarihi", + time_zone: "Saat Dilimi", + }, + stats: { + workload: "İş Yükü", + overview: "Genel Bakış", + created: "Oluşturulan iş öğeleri", + assigned: "Atanan iş öğeleri", + subscribed: "Abone olunan iş öğeleri", + state_distribution: { + title: "Duruma göre iş öğeleri", + empty: "Daha iyi analiz için durumlarına göre iş öğelerini görmek üzere iş öğesi oluşturun.", + }, + priority_distribution: { + title: "Önceliğe göre iş öğeleri", + empty: "Daha iyi analiz için önceliklerine göre iş öğelerini görmek üzere iş öğesi oluşturun.", + }, + recent_activity: { + title: "Son aktiviteler", + empty: "Veri bulunamadı. Lütfen girdilerinizi kontrol edin", + button: "Bugünün aktivitesini indir", + button_loading: "İndiriliyor", + }, + }, + actions: { + profile: "Profil", + security: "Güvenlik", + activity: "Aktivite", + appearance: "Görünüm", + notifications: "Bildirimler", + }, + tabs: { + summary: "Özet", + assigned: "Atanan", + created: "Oluşturulan", + subscribed: "Abone olunan", + activity: "Aktivite", + }, + empty_state: { + activity: { + title: "Henüz aktivite yok", + description: + "Yeni bir iş öğesi oluşturarak başlayın! Detaylar ve özellikler ekleyin. Aktivitenizi görmek için Plane'de daha fazlasını keşfedin.", + }, + assigned: { + title: "Size atanan iş öğesi yok", + description: "Size atanan iş öğeleri buradan takip edilebilir.", + }, + created: { + title: "Henüz iş öğesi yok", + description: "Sizin oluşturduğunuz tüm iş öğeleri burada görünecek, doğrudan buradan takip edin.", + }, + subscribed: { + title: "Henüz iş öğesi yok", + description: "İlgilendiğiniz iş öğelerine abone olun, hepsini buradan takip edin.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Proje ID girin", + please_select_a_timezone: "Lütfen bir saat dilimi seçin", + archive_project: { + title: "Projeyi arşivle", + description: + "Bir projeyi arşivlemek, projenizi yan gezintiden kaldırır ancak yine de projeler sayfasından erişebilirsiniz. Projeyi istediğiniz zaman geri yükleyebilir veya silebilirsiniz.", + button: "Projeyi arşivle", + }, + delete_project: { + title: "Projeyi sil", + description: "Bir proje silindiğinde, içindeki tüm veri ve kaynaklar kalıcı olarak kaldırılır ve kurtarılamaz.", + button: "Projemi sil", + }, + toast: { + success: "Proje başarıyla güncellendi", + error: "Proje güncellenemedi. Lütfen tekrar deneyin.", + }, + }, + members: { + label: "Üyeler", + project_lead: "Proje lideri", + default_assignee: "Varsayılan atanan", + guest_super_permissions: { + title: "Misafir kullanıcılara tüm iş öğelerini görüntüleme izni ver:", + sub_heading: "Bu, misafirlerin tüm proje iş öğelerini görüntülemesine izin verecektir.", + }, + invite_members: { + title: "Üyeleri davet et", + sub_heading: "Projenizde çalışmaları için üyeleri davet edin.", + select_co_worker: "İş arkadaşı seç", + }, + }, + states: { + describe_this_state_for_your_members: "Bu durumu üyeleriniz için açıklayın.", + empty_state: { + title: "{groupKey} grubu için durum yok", + description: "Lütfen yeni bir durum oluşturun", + }, + }, + labels: { + label_title: "Etiket başlığı", + label_title_is_required: "Etiket başlığı gereklidir", + label_max_char: "Etiket adı 255 karakteri geçmemeli", + toast: { + error: "Etiket güncellenirken hata oluştu", + }, + }, + estimates: { + label: "Tahminler", + title: "Projem için tahminleri etkinleştir", + description: "Takımınızın karmaşıklık ve iş yükünü iletişim kurmanıza yardımcı olurlar.", + no_estimate: "Tahmin yok", + create: { + custom: "Özel", + start_from_scratch: "Sıfırdan başla", + choose_template: "Şablon seç", + choose_estimate_system: "Tahmin sistemi seç", + enter_estimate_point: "Tahmin puanı girin", + }, + toasts: { + created: { + success: { + title: "Tahmin puanı oluşturuldu", + message: "Tahmin puanı başarıyla oluşturuldu", + }, + error: { + title: "Tahmin puanı oluşturulamadı", + message: "Yeni tahmin puanı oluşturulamadı, lütfen tekrar deneyin.", + }, + }, + updated: { + success: { + title: "Tahmin değiştirildi", + message: "Tahmin puanı projenizde güncellendi.", + }, + error: { + title: "Tahmin değiştirilemedi", + message: "Tahmin değiştirilemedi, lütfen tekrar deneyin", + }, + }, + enabled: { + success: { + title: "Başarılı!", + message: "Tahminler etkinleştirildi.", + }, + }, + disabled: { + success: { + title: "Başarılı!", + message: "Tahminler devre dışı bırakıldı.", + }, + error: { + title: "Hata!", + message: "Tahmin devre dışı bırakılamadı. Lütfen tekrar deneyin", + }, + }, + }, + validation: { + min_length: "Tahmin puanı 0'dan büyük olmalı.", + unable_to_process: "İsteğiniz işlenemedi, lütfen tekrar deneyin.", + numeric: "Tahmin puanı sayısal bir değer olmalı.", + character: "Tahmin puanı karakter değeri olmalı.", + empty: "Tahmin değeri boş olamaz.", + already_exists: "Tahmin değeri zaten var.", + unsaved_changes: "Kaydedilmemiş değişiklikleriniz var, bitirmeden önce lütfen kaydedin", + }, + }, + automations: { + label: "Otomasyonlar", + "auto-archive": { + title: "Tamamlanan iş öğelerini otomatik arşivle", + description: "Plane, tamamlanan veya iptal edilen iş öğelerini otomatik arşivleyecek.", + duration: "Şu süre kapalı kalan iş öğelerini otomatik arşivle", + }, + "auto-close": { + title: "İş öğelerini otomatik kapat", + description: "Plane, tamamlanmamış veya iptal edilmemiş iş öğelerini otomatik kapatacak.", + duration: "Şu süre etkin olmayan iş öğelerini otomatik kapat", + auto_close_status: "Otomatik kapatma durumu", + }, + }, + empty_state: { + labels: { + title: "Henüz etiket yok", + description: "Projenizdeki iş öğelerini düzenlemek ve filtrelemek için etiketler oluşturun.", + }, + estimates: { + title: "Henüz tahmin sistemi yok", + description: "İş öğesi başına çalışma miktarını iletişim kurmak için bir tahmin seti oluşturun.", + primary_button: "Tahmin sistemi ekle", + }, + }, + }, + project_cycles: { + add_cycle: "Döngü ekle", + more_details: "Daha fazla detay", + cycle: "Döngü", + update_cycle: "Döngüyü güncelle", + create_cycle: "Döngü oluştur", + no_matching_cycles: "Eşleşen döngü yok", + remove_filters_to_see_all_cycles: "Tüm döngüleri görmek için filtreleri kaldırın", + remove_search_criteria_to_see_all_cycles: "Tüm döngüleri görmek için arama kriterlerini kaldırın", + only_completed_cycles_can_be_archived: "Yalnızca tamamlanmış döngüler arşivlenebilir", + start_date: "Başlangıç tarihi", + end_date: "Bitiş tarihi", + in_your_timezone: "Saat diliminizde", + transfer_work_items: "{count} iş öğesini aktar", + date_range: "Tarih aralığı", + add_date: "Tarih ekle", + active_cycle: { + label: "Aktif döngü", + progress: "İlerleme", + chart: "Burndown grafiği", + priority_issue: "Öncelikli iş öğeleri", + assignees: "Atananlar", + issue_burndown: "İş öğesi burndown", + ideal: "İdeal", + current: "Mevcut", + labels: "Etiketler", + }, + upcoming_cycle: { + label: "Yaklaşan döngü", + }, + completed_cycle: { + label: "Tamamlanan döngü", + }, + status: { + days_left: "Kalan gün", + completed: "Tamamlandı", + yet_to_start: "Başlamadı", + in_progress: "Devam Ediyor", + draft: "Taslak", + }, + action: { + restore: { + title: "Döngüyü geri yükle", + success: { + title: "Döngü geri yüklendi", + description: "Döngü başarıyla geri yüklendi.", + }, + failed: { + title: "Döngü geri yüklenemedi", + description: "Döngü geri yüklenemedi. Lütfen tekrar deneyin.", + }, + }, + favorite: { + loading: "Döngü favorilere ekleniyor", + success: { + description: "Döngü favorilere eklendi.", + title: "Başarılı!", + }, + failed: { + description: "Döngü favorilere eklenemedi. Lütfen tekrar deneyin.", + title: "Hata!", + }, + }, + unfavorite: { + loading: "Döngü favorilerden kaldırılıyor", + success: { + description: "Döngü favorilerden kaldırıldı.", + title: "Başarılı!", + }, + failed: { + description: "Döngü favorilerden kaldırılamadı. Lütfen tekrar deneyin.", + title: "Hata!", + }, + }, + update: { + loading: "Döngü güncelleniyor", + success: { + description: "Döngü başarıyla güncellendi.", + title: "Başarılı!", + }, + failed: { + description: "Döngü güncellenirken hata oluştu. Lütfen tekrar deneyin.", + title: "Hata!", + }, + error: { + already_exists: + "Belirtilen tarihlerde zaten bir döngünüz var, taslak bir döngü oluşturmak istiyorsanız, her iki tarihi de kaldırarak oluşturabilirsiniz.", + }, + }, + }, + empty_state: { + general: { + title: "İşlerinizi Döngülerde gruplayın ve zamanlayın.", + description: + "İşleri zaman dilimlerine bölün, proje son teslim tarihinden geriye çalışarak tarihler belirleyin ve takım olarak somut ilerleme kaydedin.", + primary_button: { + text: "İlk döngünüzü ayarlayın", + comic: { + title: "Döngüler tekrarlayan zaman dilimleridir.", + description: + "Haftalık veya iki haftalık iş takibi için kullandığınız sprint, iterasyon veya başka bir terim bir döngüdür.", + }, + }, + }, + no_issues: { + title: "Döngüye iş öğesi eklenmedi", + description: "Bu döngüde tamamlamak istediğiniz iş öğelerini ekleyin veya oluşturun", + primary_button: { + text: "Yeni iş öğesi oluştur", + }, + secondary_button: { + text: "Varolan iş öğesi ekle", + }, + }, + completed_no_issues: { + title: "Döngüde iş öğesi yok", + description: + "Döngüde iş öğesi yok. İş öğeleri ya aktarıldı ya da gizlendi. Gizli iş öğelerini görmek için görüntüleme özelliklerinizi güncelleyin.", + }, + active: { + title: "Aktif döngü yok", + description: + "Aktif bir döngü, bugünün tarihini içeren herhangi bir dönemi kapsar. Aktif döngünün ilerleme ve detaylarını burada bulabilirsiniz.", + }, + archived: { + title: "Henüz arşivlenmiş döngü yok", + description: + "Projenizi düzenli tutmak için tamamlanmış döngüleri arşivleyin. Arşivlendikten sonra burada bulabilirsiniz.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Bir iş öğesi oluşturun ve birine, hatta kendinize atayın", + description: + "İş öğelerini işler, görevler, çalışma veya JTBD olarak düşünün. Bir iş öğesi ve alt iş öğeleri genellikle takım üyelerinize atanan zaman temelli eylemlerdir. Takımınız, projenizi hedefine doğru ilerletmek için iş öğeleri oluşturur, atar ve tamamlar.", + primary_button: { + text: "İlk iş öğenizi oluşturun", + comic: { + title: "İş öğeleri Plane'de yapı taşlarıdır.", + description: + "Plane UI'yi yeniden tasarlamak, şirketi yeniden markalaştırmak veya yeni yakıt enjeksiyon sistemini başlatmak, muhtemelen alt iş öğeleri olan iş öğesi örnekleridir.", + }, + }, + }, + no_archived_issues: { + title: "Henüz arşivlenmiş iş öğesi yok", + description: + "Tamamlanan veya iptal edilen iş öğelerini manuel olarak veya otomasyonla arşivleyebilirsiniz. Arşivlendikten sonra burada bulabilirsiniz.", + primary_button: { + text: "Otomasyon ayarla", + }, + }, + issues_empty_filter: { + title: "Uygulanan filtrelerle eşleşen iş öğesi bulunamadı", + secondary_button: { + text: "Tüm filtreleri temizle", + }, + }, + }, + }, + project_module: { + add_module: "Modül Ekle", + update_module: "Modülü Güncelle", + create_module: "Modül Oluştur", + archive_module: "Modülü Arşivle", + restore_module: "Modülü Geri Yükle", + delete_module: "Modülü sil", + empty_state: { + general: { + title: "Proje kilometre taşlarınızı Modüllere eşleyin ve toplu işleri kolayca takip edin.", + description: + "Mantıksal bir üst öğeye ait iş öğeleri grubu bir modül oluşturur. Bunları bir kilometre taşını takip etmenin bir yolu olarak düşünün. Kendi dönemleri ve son teslim tarihleri ile birlikte, bir kilometre taşına ne kadar yakın veya uzak olduğunuzu görmenize yardımcı olacak analitiklere sahiptirler.", + primary_button: { + text: "İlk modülünüzü oluşturun", + comic: { + title: "Modüller işleri hiyerarşiye göre gruplamaya yardımcı olur.", + description: "Bir araba modülü, bir şasi modülü ve bir depo modülü bu gruplandırmanın iyi örnekleridir.", + }, + }, + }, + no_issues: { + title: "Modülde iş öğesi yok", + description: "Bu modülün bir parçası olarak gerçekleştirmek istediğiniz iş öğelerini oluşturun veya ekleyin", + primary_button: { + text: "Yeni iş öğeleri oluştur", + }, + secondary_button: { + text: "Varolan bir iş öğesi ekle", + }, + }, + archived: { + title: "Henüz arşivlenmiş Modül yok", + description: + "Projenizi düzenli tutmak için tamamlanmış veya iptal edilmiş modülleri arşivleyin. Arşivlendikten sonra burada bulabilirsiniz.", + }, + sidebar: { + in_active: "Bu modül henüz aktif değil.", + invalid_date: "Geçersiz tarih. Lütfen geçerli bir tarih girin.", + }, + }, + quick_actions: { + archive_module: "Modülü arşivle", + archive_module_description: "Yalnızca tamamlanmış veya iptal edilmiş\nmodüller arşivlenebilir.", + delete_module: "Modülü sil", + }, + toast: { + copy: { + success: "Modül bağlantısı panoya kopyalandı", + }, + delete: { + success: "Modül başarıyla silindi", + error: "Modül silinemedi", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Projeniz için filtreli görünümleri kaydedin. İhtiyacınız olduğu kadar oluşturun", + description: + "Görünümler, sık kullandığınız veya kolay erişim istediğiniz kayıtlı filtrelerdir. Bir projedeki tüm meslektaşlarınız herkesin görünümlerini görebilir ve ihtiyaçlarına en uygun olanı seçebilir.", + primary_button: { + text: "İlk görünümünüzü oluşturun", + comic: { + title: "Görünümler İş Öğesi özellikleri üzerinde çalışır.", + description: "Buradan istediğiniz kadar özellikle filtre içeren bir görünüm oluşturabilirsiniz.", + }, + }, + }, + filter: { + title: "Eşleşen görünüm yok", + description: "Arama kriterleriyle eşleşen görünüm yok. \n Bunun yerine yeni bir görünüm oluşturun.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: + "Bir not, belge veya tam bir bilgi bankası yazın. Plane'in AI asistanı Galileo'nun başlamanıza yardımcı olmasını sağlayın", + description: + "Sayfalar Plane'de düşüncelerinizi döktüğünüz alanlardır. Toplantı notları alın, kolayca biçimlendirin, iş öğelerini yerleştirin, bir bileşen kitaplığı kullanarak düzenleyin ve hepsini proje bağlamınızda tutun. Herhangi bir belgeyi hızlıca tamamlamak için bir kısayol veya düğme ile Plane'in AI'sı Galileo'yu çağırın.", + primary_button: { + text: "İlk sayfanızı oluşturun", + }, + }, + private: { + title: "Henüz özel sayfa yok", + description: "Özel düşüncelerinizi burada saklayın. Paylaşmaya hazır olduğunuzda, ekip bir tık uzağınızda.", + primary_button: { + text: "İlk sayfanızı oluşturun", + }, + }, + public: { + title: "Henüz genel sayfa yok", + description: "Projenizdeki herkesle paylaşılan sayfaları burada görün.", + primary_button: { + text: "İlk sayfanızı oluşturun", + }, + }, + archived: { + title: "Henüz arşivlenmiş sayfa yok", + description: "Radarınızda olmayan sayfaları arşivleyin. İhtiyaç duyduğunuzda buradan erişin.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Sonuç bulunamadı", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Eşleşen iş öğesi bulunamadı", + }, + no_issues: { + title: "İş öğesi bulunamadı", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Henüz yorum yok", + description: "Yorumlar, iş öğeleri için tartışma ve takip alanı olarak kullanılabilir", + }, + }, + }, + notification: { + label: "Bildirimler", + page_label: "{workspace} - Bildirimler", + options: { + mark_all_as_read: "Tümünü okundu olarak işaretle", + mark_read: "Okundu olarak işaretle", + mark_unread: "Okunmamış olarak işaretle", + refresh: "Yenile", + filters: "Bildirim Filtreleri", + show_unread: "Okunmamışları göster", + show_snoozed: "Ertelenenleri göster", + show_archived: "Arşivlenmişleri göster", + mark_archive: "Arşivle", + mark_unarchive: "Arşivden çıkar", + mark_snooze: "Ertelenmiş", + mark_unsnooze: "Ertelenmemiş", + }, + toasts: { + read: "Bildirim okundu olarak işaretlendi", + unread: "Bildirim okunmamış olarak işaretlendi", + archived: "Bildirim arşivlendi", + unarchived: "Bildirim arşivden çıkarıldı", + snoozed: "Bildirim ertelendi", + unsnoozed: "Bildirim ertelenmedi", + }, + empty_state: { + detail: { + title: "Detayları görüntülemek için seçin.", + }, + all: { + title: "Atanan iş öğesi yok", + description: "Size atanan iş öğelerinin güncellemelerini \n burada görebilirsiniz", + }, + mentions: { + title: "Atanan iş öğesi yok", + description: "Size atanan iş öğelerinin güncellemelerini \n burada görebilirsiniz", + }, + }, + tabs: { + all: "Tümü", + mentions: "Bahsetmeler", + }, + filter: { + assigned: "Bana atanan", + created: "Benim oluşturduğum", + subscribed: "Abone olduğum", + }, + snooze: { + "1_day": "1 gün", + "3_days": "3 gün", + "5_days": "5 gün", + "1_week": "1 hafta", + "2_weeks": "2 hafta", + custom: "Özel", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "İlerlemeyi görüntülemek için döngüye iş öğeleri ekleyin", + }, + chart: { + title: "Burndown grafiğini görüntülemek için döngüye iş öğeleri ekleyin.", + }, + priority_issue: { + title: "Döngüde ele alınan yüksek öncelikli iş öğelerini bir bakışta görün.", + }, + assignee: { + title: "Atananları iş öğelerine ekleyerek iş dağılımını görün.", + }, + label: { + title: "Etiketleri iş öğelerine ekleyerek iş dağılımını görün.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Talep bu proje için etkin değil.", + description: + "Talep, projenize gelen istekleri yönetmenize ve bunları iş akışınıza iş öğesi olarak eklemenize yardımcı olur. İstekleri yönetmek için proje ayarlarından talebi etkinleştirin.", + primary_button: { + text: "Özellikleri yönet", + }, + }, + cycle: { + title: "Döngüler bu proje için etkin değil.", + description: + "İşleri zaman dilimlerine bölün, proje son teslim tarihinden geriye çalışarak tarihler belirleyin ve takım olarak somut ilerleme kaydedin. Döngüleri kullanmaya başlamak için projenizde döngü özelliğini etkinleştirin.", + primary_button: { + text: "Özellikleri yönet", + }, + }, + module: { + title: "Modüller bu proje için etkin değil.", + description: + "Modüller projenizin yapı taşlarıdır. Kullanmaya başlamak için proje ayarlarından modülleri etkinleştirin.", + primary_button: { + text: "Özellikleri yönet", + }, + }, + page: { + title: "Sayfalar bu proje için etkin değil.", + description: + "Sayfalar projenizin yapı taşlarıdır. Kullanmaya başlamak için proje ayarlarından sayfaları etkinleştirin.", + primary_button: { + text: "Özellikleri yönet", + }, + }, + view: { + title: "Görünümler bu proje için etkin değil.", + description: + "Görünümler projenizin yapı taşlarıdır. Kullanmaya başlamak için proje ayarlarından görünümleri etkinleştirin.", + primary_button: { + text: "Özellikleri yönet", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Taslak iş öğesi oluştur", + empty_state: { + title: "Yarı yazılmış iş öğeleri ve yakında yorumlar burada görünecek.", + description: + "Bunu denemek için bir iş öğesi eklemeye başlayın ve yarıda bırakın veya ilk taslağınızı aşağıda oluşturun. 😉", + primary_button: { + text: "İlk taslağınızı oluşturun", + }, + }, + delete_modal: { + title: "Taslağı sil", + description: "Bu taslağı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.", + }, + toasts: { + created: { + success: "Taslak oluşturuldu", + error: "İş öğesi oluşturulamadı. Lütfen tekrar deneyin.", + }, + deleted: { + success: "Taslak silindi", + }, + }, + }, + stickies: { + title: "Yapışkan Notlarınız", + placeholder: "buraya yazmak için tıkla", + all: "Tüm yapışkan notlar", + "no-data": + "Bir fikir yazın, bir aydınlanma anını yakalayın veya bir beyin fırtınasını kaydedin. Başlamak için bir yapışkan not ekleyin.", + add: "Yapışkan not ekle", + search_placeholder: "Başlığa göre ara", + delete: "Yapışkan notu sil", + delete_confirmation: "Bu yapışkan notu silmek istediğinizden emin misiniz?", + empty_state: { + simple: + "Bir fikir yazın, bir aydınlanma anını yakalayın veya bir beyin fırtınasını kaydedin. Başlamak için bir yapışkan not ekleyin.", + general: { + title: "Yapışkan notlar anlık notlar ve yapılacaklardır.", + description: + "Düşünce ve fikirlerinizi her zaman ve her yerden erişebileceğiniz yapışkan notlar oluşturarak zahmetsizce yakalayın.", + primary_button: { + text: "Yapışkan not ekle", + }, + }, + search: { + title: "Hiçbir yapışkan not eşleşmiyor.", + description: "Farklı bir terim deneyin veya aramanızın doğru olduğundan eminseniz bize bildirin. ", + primary_button: { + text: "Yapışkan not ekle", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Yapışkan not adı 100 karakteri geçemez.", + already_exists: "Açıklamasız bir yapışkan not zaten var", + }, + created: { + title: "Yapışkan not oluşturuldu", + message: "Yapışkan not başarıyla oluşturuldu", + }, + not_created: { + title: "Yapışkan not oluşturulamadı", + message: "Yapışkan not oluşturulamadı", + }, + updated: { + title: "Yapışkan not güncellendi", + message: "Yapışkan not başarıyla güncellendi", + }, + not_updated: { + title: "Yapışkan not güncellenemedi", + message: "Yapışkan not güncellenemedi", + }, + removed: { + title: "Yapışkan not kaldırıldı", + message: "Yapışkan not başarıyla kaldırıldı", + }, + not_removed: { + title: "Yapışkan not kaldırılamadı", + message: "Yapışkan not kaldırılamadı", + }, + }, + }, + role_details: { + guest: { + title: "Misafir", + description: "Kuruluşların dış üyeleri misafir olarak davet edilebilir.", + }, + member: { + title: "Üye", + description: "Projeler, döngüler ve modüller içindeki varlıkları okuma, yazma, düzenleme ve silme yetkisi", + }, + admin: { + title: "Yönetici", + description: "Çalışma alanı içinde tüm izinler aktif.", + }, + }, + user_roles: { + product_or_project_manager: "Ürün / Proje Yöneticisi", + development_or_engineering: "Geliştirme / Mühendislik", + founder_or_executive: "Kurucu / Yönetici", + freelancer_or_consultant: "Serbest Çalışan / Danışman", + marketing_or_growth: "Pazarlama / Büyüme", + sales_or_business_development: "Satış / İş Geliştirme", + support_or_operations: "Destek / Operasyonlar", + student_or_professor: "Öğrenci / Profesör", + human_resources: "İnsan Kaynakları", + other: "Diğer", + }, + importer: { + github: { + title: "Github", + description: "GitHub depolarından iş öğelerini içe aktarın ve senkronize edin.", + }, + jira: { + title: "Jira", + description: "Jira projelerinden ve epiklerinden iş öğelerini içe aktarın.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "İş öğelerini CSV dosyasına aktarın.", + short_description: "CSV olarak aktar", + }, + excel: { + title: "Excel", + description: "İş öğelerini Excel dosyasına aktarın.", + short_description: "Excel olarak aktar", + }, + xlsx: { + title: "Excel", + description: "İş öğelerini Excel dosyasına aktarın.", + short_description: "Excel olarak aktar", + }, + json: { + title: "JSON", + description: "İş öğelerini JSON dosyasına aktarın.", + short_description: "JSON olarak aktar", + }, + }, + default_global_view: { + all_issues: "Tüm iş öğeleri", + assigned: "Atanan", + created: "Oluşturulan", + subscribed: "Abone olunan", + }, + themes: { + theme_options: { + system_preference: { + label: "Sistem tercihi", + }, + light: { + label: "Açık", + }, + dark: { + label: "Koyu", + }, + light_contrast: { + label: "Yüksek kontrastlı açık", + }, + dark_contrast: { + label: "Yüksek kontrastlı koyu", + }, + custom: { + label: "Özel tema", + }, + }, + }, + project_modules: { + status: { + backlog: "Bekleme Listesi", + planned: "Planlandı", + in_progress: "Devam Ediyor", + paused: "Duraklatıldı", + completed: "Tamamlandı", + cancelled: "İptal Edildi", + }, + layout: { + list: "Liste düzeni", + board: "Galeri düzeni", + timeline: "Zaman çizelgesi düzeni", + }, + order_by: { + name: "Ad", + progress: "İlerleme", + issues: "İş öğesi sayısı", + due_date: "Son tarih", + created_at: "Oluşturulma tarihi", + manual: "Manuel", + }, + }, + cycle: { + label: "{count, plural, one {Döngü} other {Döngüler}}", + no_cycle: "Döngü yok", + }, + module: { + label: "{count, plural, one {Modül} other {Modüller}}", + no_module: "Modül yok", + }, + description_versions: { + last_edited_by: "Son düzenleyen", + previously_edited_by: "Önceki düzenleyen", + edited_by: "Tarafından düzenlendi", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane başlatılamadı. Bu, bir veya daha fazla Plane servisinin başlatılamaması nedeniyle olabilir.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Emin olmak için setup.sh ve Docker loglarından View Logs'u seçin.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Ana Hat", + empty_state: { + title: "Eksik başlıklar", + description: "Bu sayfaya bazı başlıklar ekleyelim ki burada görebilelim.", + }, + }, + info: { + label: "Bilgi", + document_info: { + words: "Kelimeler", + characters: "Karakterler", + paragraphs: "Paragraflar", + read_time: "Okuma süresi", + }, + actors_info: { + edited_by: "Düzenleyen", + created_by: "Oluşturan", + }, + version_history: { + label: "Sürüm geçmişi", + current_version: "Mevcut sürüm", + }, + }, + assets: { + label: "Varlıklar", + download_button: "İndir", + empty_state: { + title: "Eksik görseller", + description: "Burada görmek için görseller ekleyin.", + }, + }, + }, + open_button: "Navigasyon panelini aç", + close_button: "Navigasyon panelini kapat", + outline_floating_button: "Ana hatları aç", + }, +} as const; diff --git a/packages/i18n/src/locales/ua/accessibility.json b/packages/i18n/src/locales/ua/accessibility.json deleted file mode 100644 index 4276673121..0000000000 --- a/packages/i18n/src/locales/ua/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Логотип робочого простору", - "open_workspace_switcher": "Відкрити перемикач робочого простору", - "open_user_menu": "Відкрити меню користувача", - "open_command_palette": "Відкрити палітру команд", - "open_extended_sidebar": "Відкрити розширену бічну панель", - "close_extended_sidebar": "Закрити розширену бічну панель", - "create_favorites_folder": "Створити папку улюблених", - "open_folder": "Відкрити папку", - "close_folder": "Закрити папку", - "open_favorites_menu": "Відкрити меню улюблених", - "close_favorites_menu": "Закрити меню улюблених", - "enter_folder_name": "Введіть назву папки", - "create_new_project": "Створити новий проект", - "open_projects_menu": "Відкрити меню проектів", - "close_projects_menu": "Закрити меню проектів", - "toggle_quick_actions_menu": "Перемкнути меню швидких дій", - "open_project_menu": "Відкрити меню проекту", - "close_project_menu": "Закрити меню проекту", - "collapse_sidebar": "Згорнути бічну панель", - "expand_sidebar": "Розгорнути бічну панель", - "edition_badge": "Відкрити модал платних планів" - }, - "auth_forms": { - "clear_email": "Очистити email", - "show_password": "Показати пароль", - "hide_password": "Приховати пароль", - "close_alert": "Закрити сповіщення", - "close_popover": "Закрити спливаюче вікно" - } - } -} diff --git a/packages/i18n/src/locales/ua/accessibility.ts b/packages/i18n/src/locales/ua/accessibility.ts new file mode 100644 index 0000000000..221fcd494a --- /dev/null +++ b/packages/i18n/src/locales/ua/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Логотип робочого простору", + open_workspace_switcher: "Відкрити перемикач робочого простору", + open_user_menu: "Відкрити меню користувача", + open_command_palette: "Відкрити палітру команд", + open_extended_sidebar: "Відкрити розширену бічну панель", + close_extended_sidebar: "Закрити розширену бічну панель", + create_favorites_folder: "Створити папку улюблених", + open_folder: "Відкрити папку", + close_folder: "Закрити папку", + open_favorites_menu: "Відкрити меню улюблених", + close_favorites_menu: "Закрити меню улюблених", + enter_folder_name: "Введіть назву папки", + create_new_project: "Створити новий проект", + open_projects_menu: "Відкрити меню проектів", + close_projects_menu: "Закрити меню проектів", + toggle_quick_actions_menu: "Перемкнути меню швидких дій", + open_project_menu: "Відкрити меню проекту", + close_project_menu: "Закрити меню проекту", + collapse_sidebar: "Згорнути бічну панель", + expand_sidebar: "Розгорнути бічну панель", + edition_badge: "Відкрити модал платних планів", + }, + auth_forms: { + clear_email: "Очистити email", + show_password: "Показати пароль", + hide_password: "Приховати пароль", + close_alert: "Закрити сповіщення", + close_popover: "Закрити спливаюче вікно", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/ua/editor.json b/packages/i18n/src/locales/ua/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/ua/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/ua/editor.ts b/packages/i18n/src/locales/ua/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/ua/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/ua/translations.json b/packages/i18n/src/locales/ua/translations.json deleted file mode 100644 index 6f9cccd4e1..0000000000 --- a/packages/i18n/src/locales/ua/translations.json +++ /dev/null @@ -1,2534 +0,0 @@ -{ - "sidebar": { - "projects": "Проєкти", - "pages": "Сторінки", - "new_work_item": "Нова робоча одиниця", - "home": "Головна", - "your_work": "Ваша робота", - "inbox": "Вхідні", - "workspace": "Робочий простір", - "views": "Подання", - "analytics": "Аналітика", - "work_items": "Робочі одиниці", - "cycles": "Цикли", - "modules": "Модулі", - "intake": "Надходження", - "drafts": "Чернетки", - "favorites": "Вибране", - "pro": "Pro", - "upgrade": "Підвищити" - }, - "auth": { - "common": { - "email": { - "label": "Електронна пошта", - "placeholder": "ім’я@компанія.ua", - "errors": { - "required": "Електронна пошта є обов’язковою", - "invalid": "Неправильна адреса електронної пошти" - } - }, - "password": { - "label": "Пароль", - "set_password": "Встановити пароль", - "placeholder": "Введіть пароль", - "confirm_password": { - "label": "Підтвердіть пароль", - "placeholder": "Підтвердіть пароль" - }, - "current_password": { - "label": "Поточний пароль" - }, - "new_password": { - "label": "Новий пароль", - "placeholder": "Введіть новий пароль" - }, - "change_password": { - "label": { - "default": "Змінити пароль", - "submitting": "Зміна пароля" - } - }, - "errors": { - "match": "Паролі не співпадають", - "empty": "Будь ласка, введіть свій пароль", - "length": "Довжина пароля має бути більше 8 символів", - "strength": { - "weak": "Пароль занадто слабкий", - "strong": "Пароль надійний" - } - }, - "submit": "Встановити пароль", - "toast": { - "change_password": { - "success": { - "title": "Успіх!", - "message": "Пароль було успішно змінено." - }, - "error": { - "title": "Помилка!", - "message": "Щось пішло не так. Будь ласка, спробуйте ще раз." - } - } - } - }, - "unique_code": { - "label": "Унікальний код", - "placeholder": "gets-sets-flys", - "paste_code": "Вставте код, надісланий на вашу електронну пошту", - "requesting_new_code": "Запитую новий код", - "sending_code": "Надсилаю код" - }, - "already_have_an_account": "Вже маєте обліковий запис?", - "login": "Увійти", - "create_account": "Створити обліковий запис", - "new_to_plane": "Вперше в Plane?", - "back_to_sign_in": "Повернутися до входу", - "resend_in": "Надіслати повторно через {seconds} секунд", - "sign_in_with_unique_code": "Увійти за допомогою унікального коду", - "forgot_password": "Забули пароль?" - }, - "sign_up": { - "header": { - "label": "Створіть обліковий запис і почніть керувати роботою зі своєю командою.", - "step": { - "email": { - "header": "Реєстрація", - "sub_header": "" - }, - "password": { - "header": "Реєстрація", - "sub_header": "Зареєструйтесь, використовуючи комбінацію електронної пошти та пароля." - }, - "unique_code": { - "header": "Реєстрація", - "sub_header": "Зареєструйтесь за допомогою унікального коду, надісланого на вказану вище адресу електронної пошти." - } - } - }, - "errors": { - "password": { - "strength": "Спробуйте встановити надійний пароль, щоб продовжити" - } - } - }, - "sign_in": { - "header": { - "label": "Увійдіть і почніть керувати роботою зі своєю командою.", - "step": { - "email": { - "header": "Увійти або зареєструватись", - "sub_header": "" - }, - "password": { - "header": "Увійти або зареєструватись", - "sub_header": "Використовуйте комбінацію електронної пошти та пароля, щоб увійти." - }, - "unique_code": { - "header": "Увійти або зареєструватись", - "sub_header": "Увійдіть за допомогою унікального коду, надісланого на вказану вище адресу електронної пошти." - } - } - } - }, - "forgot_password": { - "title": "Відновіть свій пароль", - "description": "Введіть підтверджену адресу електронної пошти вашого облікового запису, і ми надішлемо вам посилання для відновлення пароля.", - "email_sent": "Ми надіслали посилання для відновлення на вашу електронну пошту", - "send_reset_link": "Надіслати посилання для відновлення", - "errors": { - "smtp_not_enabled": "Адміністратор не активував SMTP, тому неможливо надіслати посилання для відновлення пароля" - }, - "toast": { - "success": { - "title": "Лист надіслано", - "message": "Перевірте свою пошту для відновлення пароля. Якщо не отримали протягом кількох хвилин, перевірте папку «Спам»." - }, - "error": { - "title": "Помилка!", - "message": "Щось пішло не так. Будь ласка, спробуйте ще раз." - } - } - }, - "reset_password": { - "title": "Встановити новий пароль", - "description": "Захистіть свій обліковий запис надійним паролем" - }, - "set_password": { - "title": "Захистіть свій обліковий запис", - "description": "Встановлення пароля допоможе безпечно входити у систему" - }, - "sign_out": { - "toast": { - "error": { - "title": "Помилка!", - "message": "Не вдалося вийти. Спробуйте знову." - } - } - } - }, - "submit": "Надіслати", - "cancel": "Скасувати", - "loading": "Завантаження", - "error": "Помилка", - "success": "Успіх", - "warning": "Попередження", - "info": "Інформація", - "close": "Закрити", - "yes": "Так", - "no": "Ні", - "ok": "OK", - "name": "Назва", - "description": "Опис", - "search": "Пошук", - "add_member": "Додати учасника", - "adding_members": "Додавання учасників", - "remove_member": "Видалити учасника", - "add_members": "Додати учасників", - "adding_member": "Додавання учасників", - "remove_members": "Видалити учасників", - "add": "Додати", - "adding": "Додавання", - "remove": "Вилучити", - "add_new": "Додати новий", - "remove_selected": "Вилучити вибрані", - "first_name": "Ім’я", - "last_name": "Прізвище", - "email": "Електронна пошта", - "display_name": "Відображуване ім’я", - "role": "Роль", - "timezone": "Часовий пояс", - "avatar": "Аватар", - "cover_image": "Обкладинка", - "password": "Пароль", - "change_cover": "Змінити обкладинку", - "language": "Мова", - "saving": "Збереження", - "save_changes": "Зберегти зміни", - "deactivate_account": "Деактивувати обліковий запис", - "deactivate_account_description": "Після деактивації всі дані й ресурси цього облікового запису будуть видалені без можливості відновлення.", - "profile_settings": "Налаштування профілю", - "your_account": "Ваш обліковий запис", - "security": "Безпека", - "activity": "Активність", - "appearance": "Зовнішній вигляд", - "notifications": "Сповіщення", - "workspaces": "Робочі простори", - "create_workspace": "Створити робочий простір", - "invitations": "Запрошення", - "summary": "Зведення", - "assigned": "Призначено", - "created": "Створено", - "subscribed": "Підписано", - "you_do_not_have_the_permission_to_access_this_page": "Ви не маєте прав доступу до цієї сторінки.", - "something_went_wrong_please_try_again": "Щось пішло не так. Будь ласка, спробуйте ще раз.", - "load_more": "Завантажити ще", - "select_or_customize_your_interface_color_scheme": "Виберіть або налаштуйте кольорову схему інтерфейсу.", - "theme": "Тема", - "system_preference": "Системні налаштування", - "light": "Світла", - "dark": "Темна", - "light_contrast": "Світла з високою контрастністю", - "dark_contrast": "Темна з високою контрастністю", - "custom": "Користувацька тема", - "select_your_theme": "Виберіть тему", - "customize_your_theme": "Налаштуйте свою тему", - "background_color": "Колір фону", - "text_color": "Колір тексту", - "primary_color": "Основний колір (тема)", - "sidebar_background_color": "Колір фону бічної панелі", - "sidebar_text_color": "Колір тексту бічної панелі", - "set_theme": "Застосувати тему", - "enter_a_valid_hex_code_of_6_characters": "Введіть дійсний hex-код довжиною 6 символів", - "background_color_is_required": "Колір фону є обов’язковим", - "text_color_is_required": "Колір тексту є обов’язковим", - "primary_color_is_required": "Основний колір є обов’язковим", - "sidebar_background_color_is_required": "Колір фону бічної панелі є обов’язковим", - "sidebar_text_color_is_required": "Колір тексту бічної панелі є обов’язковим", - "updating_theme": "Оновлення теми", - "theme_updated_successfully": "Тему успішно оновлено", - "failed_to_update_the_theme": "Не вдалося оновити тему", - "email_notifications": "Сповіщення електронною поштою", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Будьте в курсі робочих одиниць, на які ви підписані. Увімкніть це, щоб отримувати сповіщення.", - "email_notification_setting_updated_successfully": "Налаштування сповіщень електронною поштою успішно оновлено", - "failed_to_update_email_notification_setting": "Не вдалося оновити налаштування сповіщень електронною поштою", - "notify_me_when": "Повідомляти мене, коли", - "property_changes": "Зміни властивостей", - "property_changes_description": "Повідомляти, коли змінюються властивості робочих одиниць, такі як призначення, пріоритет, оцінки чи інші.", - "state_change": "Зміна стану", - "state_change_description": "Повідомляти, коли робоча одиниця переходить в інший стан", - "issue_completed": "Робоча одиниця завершена", - "issue_completed_description": "Повідомляти лише коли робоча одиниця завершена", - "comments": "Коментарі", - "comments_description": "Повідомляти, коли хтось додає коментар до робочої одиниці", - "mentions": "Згадки", - "mentions_description": "Повідомляти лише коли хтось згадає мене у коментарі чи описі", - "old_password": "Старий пароль", - "general_settings": "Загальні налаштування", - "sign_out": "Вийти", - "signing_out": "Вихід", - "active_cycles": "Активні цикли", - "active_cycles_description": "Відстежуйте цикли між проєктами, слідкуйте за пріоритетними робочими одиницями та звертайте увагу на цикли, які потребують втручання.", - "on_demand_snapshots_of_all_your_cycles": "Знімки всіх ваших циклів на вимогу", - "upgrade": "Підвищити", - "10000_feet_view": "Огляд з висоти 10 000 футів для всіх активних циклів.", - "10000_feet_view_description": "Переглядайте всі поточні цикли у різних проєктах одночасно, замість перемикання між ними в кожному проєкті.", - "get_snapshot_of_each_active_cycle": "Отримайте знімок кожного активного циклу.", - "get_snapshot_of_each_active_cycle_description": "Відстежуйте ключові метрики для всіх активних циклів, переглядайте їхній прогрес і порівнюйте обсяг із крайніми строками.", - "compare_burndowns": "Порівнюйте burndown-графіки.", - "compare_burndowns_description": "Контролюйте ефективність команд за допомогою огляду burndown-звітів кожного циклу.", - "quickly_see_make_or_break_issues": "Швидко визначайте критичні робочі одиниці.", - "quickly_see_make_or_break_issues_description": "Переглядайте найпріоритетніші робочі одиниці для кожного циклу з урахуванням термінів. Усе за один клік.", - "zoom_into_cycles_that_need_attention": "Зосередьтеся на циклах, що потребують уваги.", - "zoom_into_cycles_that_need_attention_description": "Одним кліком вивчайте стан будь-якого циклу, який не відповідає очікуванням.", - "stay_ahead_of_blockers": "Вчасно виявляйте перешкоди.", - "stay_ahead_of_blockers_description": "Виявляйте проблеми між проєктами та залежності між циклами, які неочевидні в інших поданнях.", - "analytics": "Аналітика", - "workspace_invites": "Запрошення до робочого простору", - "enter_god_mode": "Увійти в режим Бога", - "workspace_logo": "Логотип робочого простору", - "new_issue": "Нова робоча одиниця", - "your_work": "Ваша робота", - "drafts": "Чернетки", - "projects": "Проєкти", - "views": "Подання", - "workspace": "Робочий простір", - "archives": "Архіви", - "settings": "Налаштування", - "failed_to_move_favorite": "Не вдалося перемістити обране", - "favorites": "Вибране", - "no_favorites_yet": "Поки немає вибраного", - "create_folder": "Створити папку", - "new_folder": "Нова папка", - "favorite_updated_successfully": "Вибране успішно оновлено", - "favorite_created_successfully": "Вибране успішно створено", - "folder_already_exists": "Папка вже існує", - "folder_name_cannot_be_empty": "Назва папки не може бути порожньою", - "something_went_wrong": "Щось пішло не так", - "failed_to_reorder_favorite": "Не вдалося змінити порядок елементів у вибраному", - "favorite_removed_successfully": "Вибране успішно видалено", - "failed_to_create_favorite": "Не вдалося створити вибране", - "failed_to_rename_favorite": "Не вдалося перейменувати вибране", - "project_link_copied_to_clipboard": "Посилання на проєкт скопійовано до буфера обміну", - "link_copied": "Посилання скопійовано", - "add_project": "Додати проєкт", - "create_project": "Створити проєкт", - "failed_to_remove_project_from_favorites": "Не вдалося видалити проєкт із вибраного. Спробуйте ще раз.", - "project_created_successfully": "Проєкт успішно створено", - "project_created_successfully_description": "Проєкт успішно створений. Тепер ви можете почати додавати робочі одиниці.", - "project_name_already_taken": "Назва проекту вже використовується.", - "project_identifier_already_taken": "Ідентифікатор проекту вже використовується.", - "project_cover_image_alt": "Обкладинка проєкту", - "name_is_required": "Назва є обов’язковою", - "title_should_be_less_than_255_characters": "Назва має бути коротшою за 255 символів", - "project_name": "Назва проєкту", - "project_id_must_be_at_least_1_character": "Ідентифікатор проєкту має містити принаймні 1 символ", - "project_id_must_be_at_most_5_characters": "Ідентифікатор проєкту може містити максимум 5 символів", - "project_id": "ID проєкту", - "project_id_tooltip_content": "Допомагає унікально ідентифікувати робочі одиниці в проєкті. Макс. 5 символів.", - "description_placeholder": "Опис", - "only_alphanumeric_non_latin_characters_allowed": "Дозволені лише алфанумеричні та нелатинські символи.", - "project_id_is_required": "ID проєкту є обов’язковим", - "project_id_allowed_char": "Дозволені лише алфанумеричні та нелатинські символи.", - "project_id_min_char": "ID проєкту має містити принаймні 1 символ", - "project_id_max_char": "ID проєкту може містити максимум 5 символів", - "project_description_placeholder": "Введіть опис проєкту", - "select_network": "Вибрати мережу", - "lead": "Керівник", - "date_range": "Діапазон дат", - "private": "Приватний", - "public": "Публічний", - "accessible_only_by_invite": "Доступ лише за запрошенням", - "anyone_in_the_workspace_except_guests_can_join": "Будь-хто в робочому просторі, крім гостей, може приєднатися", - "creating": "Створення", - "creating_project": "Створення проєкту", - "adding_project_to_favorites": "Додавання проєкту у вибране", - "project_added_to_favorites": "Проєкт додано у вибране", - "couldnt_add_the_project_to_favorites": "Не вдалося додати проєкт у вибране. Спробуйте ще раз.", - "removing_project_from_favorites": "Вилучення проєкту з вибраного", - "project_removed_from_favorites": "Проєкт вилучено з вибраного", - "couldnt_remove_the_project_from_favorites": "Не вдалося вилучити проєкт із вибраного. Спробуйте ще раз.", - "add_to_favorites": "Додати у вибране", - "remove_from_favorites": "Вилучити з вибраного", - "publish_project": "Опублікувати проєкт", - "publish": "Опублікувати", - "copy_link": "Скопіювати посилання", - "leave_project": "Вийти з проєкту", - "join_the_project_to_rearrange": "Приєднайтеся до проєкту, щоб змінити впорядкування", - "drag_to_rearrange": "Перетягніть для впорядкування", - "congrats": "Вітаємо!", - "open_project": "Відкрити проєкт", - "issues": "Робочі одиниці", - "cycles": "Цикли", - "modules": "Модулі", - "pages": "Сторінки", - "intake": "Надходження", - "time_tracking": "Відстеження часу", - "work_management": "Управління роботою", - "projects_and_issues": "Проєкти та робочі одиниці", - "projects_and_issues_description": "Увімкніть або вимкніть ці функції в проєкті.", - "cycles_description": "Обмежуйте роботу в часі для кожного проєкту та за потреби коригуйте період. Один цикл може тривати 2 тижні, наступний — 1 тиждень.", - "modules_description": "Організуйте роботу в підпроєкти з окремими керівниками та виконавцями.", - "views_description": "Зберігайте власні сортування, фільтри та варіанти відображення або діліться ними з командою.", - "pages_description": "Створюйте та редагуйте довільний вміст: нотатки, документи, що завгодно.", - "intake_description": "Дозвольте неучасникам ділитися помилками, відгуками й пропозиціями без порушення робочого процесу.", - "time_tracking_description": "Фіксуйте час, витрачений на робочі одиниці та проєкти.", - "work_management_description": "Зручно керуйте своєю роботою та проєктами.", - "documentation": "Документація", - "message_support": "Звернутися в підтримку", - "contact_sales": "Зв’язатися з відділом продажів", - "hyper_mode": "Гіпер-режим", - "keyboard_shortcuts": "Гарячі клавіші", - "whats_new": "Що нового?", - "version": "Версія", - "we_are_having_trouble_fetching_the_updates": "Виникли проблеми з отриманням оновлень.", - "our_changelogs": "наш журнал змін", - "for_the_latest_updates": "для найсвіжіших оновлень.", - "please_visit": "Будь ласка, відвідайте", - "docs": "Документацію", - "full_changelog": "Повний журнал змін", - "support": "Підтримка", - "discord": "Discord", - "powered_by_plane_pages": "Працює на Plane Pages", - "please_select_at_least_one_invitation": "Виберіть принаймні одне запрошення.", - "please_select_at_least_one_invitation_description": "Виберіть принаймні одне запрошення, щоб приєднатися до робочого простору.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Ми бачимо, що вас запросили приєднатися до робочого простору", - "join_a_workspace": "Приєднатися до робочого простору", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Ми бачимо, що вас запросили приєднатися до робочого простору", - "join_a_workspace_description": "Приєднатися до робочого простору", - "accept_and_join": "Прийняти та приєднатися", - "go_home": "Головна", - "no_pending_invites": "Немає активних запрошень", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Тут з’являтимуться запрошення до робочого простору", - "back_to_home": "Повернутися на головну", - "workspace_name": "назва-робочого-простору", - "deactivate_your_account": "Деактивувати ваш обліковий запис", - "deactivate_your_account_description": "Після деактивації вас не можна буде призначати на робочі одиниці, і з вас не стягуватиметься плата за робочий простір. Щоб знову активувати обліковий запис, потрібно отримати запрошення на цей e-mail.", - "deactivating": "Деактивація", - "confirm": "Підтвердити", - "confirming": "Підтвердження", - "draft_created": "Чернетку створено", - "issue_created_successfully": "Робочу одиницю успішно створено", - "draft_creation_failed": "Не вдалося створити чернетку", - "issue_creation_failed": "Не вдалося створити робочу одиницю", - "draft_issue": "Чернетка робочої одиниці", - "issue_updated_successfully": "Робочу одиницю успішно оновлено", - "issue_could_not_be_updated": "Не вдалося оновити робочу одиницю", - "create_a_draft": "Створити чернетку", - "save_to_drafts": "Зберегти до чернеток", - "save": "Зберегти", - "update": "Оновити", - "updating": "Оновлення", - "create_new_issue": "Створити нову робочу одиницю", - "editor_is_not_ready_to_discard_changes": "Редактор ще не готовий скасувати зміни", - "failed_to_move_issue_to_project": "Не вдалося перемістити робочу одиницю до проєкту", - "create_more": "Створити ще", - "add_to_project": "Додати до проєкту", - "discard": "Скасувати", - "duplicate_issue_found": "Знайдено дублікат робочої одиниці", - "duplicate_issues_found": "Знайдено дублікати робочих одиниць", - "no_matching_results": "Немає відповідних результатів", - "title_is_required": "Назва є обов’язковою", - "title": "Назва", - "state": "Стан", - "priority": "Пріоритет", - "none": "Немає", - "urgent": "Терміновий", - "high": "Високий", - "medium": "Середній", - "low": "Низький", - "members": "Учасники", - "assignee": "Призначено", - "assignees": "Призначені", - "you": "Ви", - "labels": "Мітки", - "create_new_label": "Створити нову мітку", - "start_date": "Дата початку", - "end_date": "Дата завершення", - "due_date": "Крайній термін", - "estimate": "Оцінка", - "change_parent_issue": "Змінити батьківську робочу одиницю", - "remove_parent_issue": "Вилучити батьківську робочу одиницю", - "add_parent": "Додати батьківську", - "loading_members": "Завантаження учасників", - "view_link_copied_to_clipboard": "Посилання на подання скопійовано до буфера обміну.", - "required": "Обов’язково", - "optional": "Необов’язково", - "Cancel": "Скасувати", - "edit": "Редагувати", - "archive": "Заархівувати", - "restore": "Відновити", - "open_in_new_tab": "Відкрити в новій вкладці", - "delete": "Видалити", - "deleting": "Видалення", - "make_a_copy": "Зробити копію", - "move_to_project": "Перемістити в проєкт", - "good": "Доброго", - "morning": "ранку", - "afternoon": "дня", - "evening": "вечора", - "show_all": "Показати все", - "show_less": "Показати менше", - "no_data_yet": "Поки що немає даних", - "syncing": "Синхронізація", - "add_work_item": "Додати робочу одиницю", - "advanced_description_placeholder": "Натисніть '/' для команд", - "create_work_item": "Створити робочу одиницю", - "attachments": "Вкладення", - "declining": "Відхилення", - "declined": "Відхилено", - "decline": "Відхилити", - "unassigned": "Не призначено", - "work_items": "Робочі одиниці", - "add_link": "Додати посилання", - "points": "Бали", - "no_assignee": "Без призначення", - "no_assignees_yet": "Поки немає призначених", - "no_labels_yet": "Поки немає міток", - "ideal": "Ідеальний", - "current": "Поточний", - "no_matching_members": "Немає відповідних учасників", - "leaving": "Вихід", - "removing": "Вилучення", - "leave": "Вийти", - "refresh": "Оновити", - "refreshing": "Оновлення", - "refresh_status": "Оновити статус", - "prev": "Попередній", - "next": "Наступний", - "re_generating": "Повторне генерування", - "re_generate": "Повторно згенерувати", - "re_generate_key": "Повторно згенерувати ключ", - "export": "Експортувати", - "member": "{count, plural, one{# учасник} few{# учасники} other{# учасників}}", - "new_password_must_be_different_from_old_password": "Новий пароль повинен бути відмінним від старого пароля", - "edited": "Редагувано", - "bot": "Бот", - "project_view": { - "sort_by": { - "created_at": "Створено", - "updated_at": "Оновлено", - "name": "Назва" - } - }, - "toast": { - "success": "Успіх!", - "error": "Помилка!" - }, - "links": { - "toasts": { - "created": { - "title": "Посилання створено", - "message": "Посилання було успішно створено" - }, - "not_created": { - "title": "Посилання не створено", - "message": "Не вдалося створити посилання" - }, - "updated": { - "title": "Посилання оновлено", - "message": "Посилання було успішно оновлено" - }, - "not_updated": { - "title": "Посилання не оновлено", - "message": "Не вдалося оновити посилання" - }, - "removed": { - "title": "Посилання видалено", - "message": "Посилання було успішно видалено" - }, - "not_removed": { - "title": "Посилання не видалено", - "message": "Не вдалося видалити посилання" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Ваш посібник із швидкого старту", - "not_right_now": "Зараз не треба", - "create_project": { - "title": "Створити проєкт", - "description": "Більшість речей починається з проєкту в Plane.", - "cta": "Почати" - }, - "invite_team": { - "title": "Запросити команду", - "description": "Співпрацюйте з колегами у створенні, постачанні та керуванні.", - "cta": "Запросити їх" - }, - "configure_workspace": { - "title": "Налаштуйте свій робочий простір.", - "description": "Увімкніть або вимкніть функції чи зайдіть далі.", - "cta": "Налаштувати цей простір" - }, - "personalize_account": { - "title": "Налаштуйте Plane під себе.", - "description": "Оберіть картинку, кольори та інше.", - "cta": "Налаштувати зараз" - }, - "widgets": { - "title": "Без віджетів трохи порожньо, увімкніть їх", - "description": "Схоже, що всі ваші віджети вимкнені. Увімкніть їх\nдля покращеного досвіду!", - "primary_button": { - "text": "Керувати віджетами" - } - } - }, - "quick_links": { - "empty": "Збережіть посилання на важливі речі, які хочете мати під рукою.", - "add": "Додати швидке посилання", - "title": "Швидке посилання", - "title_plural": "Швидкі посилання" - }, - "recents": { - "title": "Нещодавні", - "empty": { - "project": "Ваші нещодавні проєкти з’являться тут після перегляду.", - "page": "Ваші нещодавні сторінки з’являться тут після перегляду.", - "issue": "Ваші нещодавні робочі одиниці з’являться тут після перегляду.", - "default": "Поки у вас немає нещодавніх елементів." - }, - "filters": { - "all": "Усі", - "projects": "Проєкти", - "pages": "Сторінки", - "issues": "Робочі одиниці" - } - }, - "new_at_plane": { - "title": "Новинки в Plane" - }, - "quick_tutorial": { - "title": "Швидкий посібник" - }, - "widget": { - "reordered_successfully": "Віджет успішно переміщено.", - "reordering_failed": "Сталася помилка під час переміщення віджета." - }, - "manage_widgets": "Керувати віджетами", - "title": "Головна", - "star_us_on_github": "Оцініть нас на GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "Неприпустимий URL", - "placeholder": "Введіть або вставте URL" - }, - "title": { - "text": "Відображувана назва", - "placeholder": "Як ви хочете бачити це посилання" - } - } - }, - "common": { - "all": "Усе", - "states": "Стани", - "state": "Стан", - "state_groups": "Групи станів", - "state_group": "Група станів", - "priorities": "Пріоритети", - "priority": "Пріоритет", - "team_project": "Командний проєкт", - "project": "Проєкт", - "cycle": "Цикл", - "cycles": "Цикли", - "module": "Модуль", - "modules": "Модулі", - "labels": "Мітки", - "label": "Мітка", - "assignees": "Призначені", - "assignee": "Призначено", - "created_by": "Створено", - "none": "Немає", - "link": "Посилання", - "estimates": "Оцінки", - "estimate": "Оцінка", - "created_at": "Створено", - "completed_at": "Завершено", - "layout": "Розташування", - "filters": "Фільтри", - "display": "Відображення", - "load_more": "Завантажити ще", - "activity": "Активність", - "analytics": "Аналітика", - "dates": "Дати", - "success": "Успіх!", - "something_went_wrong": "Щось пішло не так", - "error": { - "label": "Помилка!", - "message": "Сталася помилка. Спробуйте ще раз." - }, - "group_by": "Групувати за", - "epic": "Епік", - "epics": "Епіки", - "work_item": "Робоча одиниця", - "work_items": "Робочі одиниці", - "sub_work_item": "Похідна робоча одиниця", - "add": "Додати", - "warning": "Попередження", - "updating": "Оновлення", - "adding": "Додавання", - "update": "Оновити", - "creating": "Створення", - "create": "Створити", - "cancel": "Скасувати", - "description": "Опис", - "title": "Назва", - "attachment": "Вкладення", - "general": "Загальне", - "features": "Функції", - "automation": "Автоматизація", - "project_name": "Назва проєкту", - "project_id": "ID проєкту", - "project_timezone": "Часовий пояс проєкту", - "created_on": "Створено", - "update_project": "Оновити проєкт", - "identifier_already_exists": "Такий ідентифікатор уже існує", - "add_more": "Додати ще", - "defaults": "Типові", - "add_label": "Додати мітку", - "customize_time_range": "Налаштувати діапазон часу", - "loading": "Завантаження", - "attachments": "Вкладення", - "property": "Властивість", - "properties": "Властивості", - "parent": "Батьківська", - "page": "Сторінка", - "remove": "Вилучити", - "archiving": "Архівація", - "archive": "Заархівувати", - "access": { - "public": "Публічний", - "private": "Приватний" - }, - "done": "Готово", - "sub_work_items": "Похідні робочі одиниці", - "comment": "Коментар", - "workspace_level": "Рівень робочого простору", - "order_by": { - "label": "Сортувати за", - "manual": "Вручну", - "last_created": "Останні створені", - "last_updated": "Останні оновлені", - "start_date": "Дата початку", - "due_date": "Крайній термін", - "asc": "За зростанням", - "desc": "За спаданням", - "updated_on": "Оновлено" - }, - "sort": { - "asc": "За зростанням", - "desc": "За спаданням", - "created_on": "Створено", - "updated_on": "Оновлено" - }, - "comments": "Коментарі", - "updates": "Оновлення", - "clear_all": "Очистити все", - "copied": "Скопійовано!", - "link_copied": "Посилання скопійовано!", - "link_copied_to_clipboard": "Посилання скопійовано до буфера обміну", - "copied_to_clipboard": "Посилання на робочу одиницю скопійовано до буфера", - "is_copied_to_clipboard": "Робочу одиницю скопійовано до буфера", - "no_links_added_yet": "Поки що немає доданих посилань", - "add_link": "Додати посилання", - "links": "Посилання", - "go_to_workspace": "Перейти до робочого простору", - "progress": "Прогрес", - "optional": "Необов’язково", - "join": "Приєднатися", - "go_back": "Назад", - "continue": "Продовжити", - "resend": "Надіслати повторно", - "relations": "Зв’язки", - "errors": { - "default": { - "title": "Помилка!", - "message": "Щось пішло не так. Будь ласка, спробуйте ще раз." - }, - "required": "Це поле є обов'язковим", - "entity_required": "{entity} є обов'язковим", - "restricted_entity": "{entity} обмежено" - }, - "update_link": "Оновити посилання", - "attach": "Прикріпити", - "create_new": "Створити новий", - "add_existing": "Додати існуючий", - "type_or_paste_a_url": "Введіть або вставте URL", - "url_is_invalid": "Некоректний URL", - "display_title": "Відображувана назва", - "link_title_placeholder": "Як ви хочете бачити це посилання", - "url": "URL", - "side_peek": "Бічний перегляд", - "modal": "Модальне вікно", - "full_screen": "Повноекранний режим", - "close_peek_view": "Закрити перегляд", - "toggle_peek_view_layout": "Перемкнути режим перегляду", - "options": "Параметри", - "duration": "Тривалість", - "today": "Сьогодні", - "week": "Тиждень", - "month": "Місяць", - "quarter": "Квартал", - "press_for_commands": "Натисніть '/' для команд", - "click_to_add_description": "Натисніть, щоб додати опис", - "search": { - "label": "Пошук", - "placeholder": "Введіть пошуковий запит", - "no_matches_found": "Немає збігів", - "no_matching_results": "Немає відповідних результатів" - }, - "actions": { - "edit": "Редагувати", - "make_a_copy": "Зробити копію", - "open_in_new_tab": "Відкрити в новій вкладці", - "copy_link": "Скопіювати посилання", - "archive": "Заархівувати", - "restore": "Відновити", - "delete": "Видалити", - "remove_relation": "Вилучити зв’язок", - "subscribe": "Підписатися", - "unsubscribe": "Скасувати підписку", - "clear_sorting": "Скинути сортування", - "show_weekends": "Показати вихідні", - "enable": "Увімкнути", - "disable": "Вимкнути" - }, - "name": "Назва", - "discard": "Скасувати", - "confirm": "Підтвердити", - "confirming": "Підтвердження", - "read_the_docs": "Прочитати документацію", - "default": "Типове", - "active": "Активний", - "enabled": "Увімкнено", - "disabled": "Вимкнено", - "mandate": "Мандат", - "mandatory": "Обов’язково", - "yes": "Так", - "no": "Ні", - "please_wait": "Будь ласка, зачекайте", - "enabling": "Увімкнення", - "disabling": "Вимкнення", - "beta": "Бета", - "or": "або", - "next": "Далі", - "back": "Назад", - "cancelling": "Скасування", - "configuring": "Налаштування", - "clear": "Очистити", - "import": "Імпортувати", - "connect": "Підключити", - "authorizing": "Авторизація", - "processing": "Обробка", - "no_data_available": "Немає доступних даних", - "from": "від {name}", - "authenticated": "Автентифіковано", - "select": "Вибрати", - "upgrade": "Підвищити", - "add_seats": "Додати місця", - "projects": "Проєкти", - "workspace": "Робочий простір", - "workspaces": "Робочі простори", - "team": "Команда", - "teams": "Команди", - "entity": "Сутність", - "entities": "Сутності", - "task": "Завдання", - "tasks": "Завдання", - "section": "Розділ", - "sections": "Розділи", - "edit": "Редагувати", - "connecting": "Підключення", - "connected": "Підключено", - "disconnect": "Відключити", - "disconnecting": "Відключення", - "installing": "Встановлення", - "install": "Встановити", - "reset": "Скинути", - "live": "Наживо", - "change_history": "Історія змін", - "coming_soon": "Незабаром", - "member": "Учасник", - "members": "Учасники", - "you": "Ви", - "upgrade_cta": { - "higher_subscription": "Підвищити до вищого плану", - "talk_to_sales": "Зв’язатися з відділом продажів" - }, - "category": "Категорія", - "categories": "Категорії", - "saving": "Збереження", - "save_changes": "Зберегти зміни", - "delete": "Видалити", - "deleting": "Видалення", - "pending": "Очікує", - "invite": "Запросити", - "view": "Подання", - "deactivated_user": "Деактивований користувач", - "apply": "Застосувати", - "applying": "Застосовується", - "users": "Користувачі", - "admins": "Адміністратори", - "guests": "Гості", - "on_track": "У межах графіку", - "off_track": "Поза графіком", - "at_risk": "Під загрозою", - "timeline": "Хронологія", - "completion": "Завершення", - "upcoming": "Майбутнє", - "completed": "Завершено", - "in_progress": "В процесі", - "planned": "Заплановано", - "paused": "Призупинено", - "no_of": "Кількість {entity}", - "resolved": "Вирішено" - }, - "chart": { - "x_axis": "Вісь X", - "y_axis": "Вісь Y", - "metric": "Метрика" - }, - "form": { - "title": { - "required": "Назва є обов’язковою", - "max_length": "Назва має бути коротшою за {length} символів" - } - }, - "entity": { - "grouping_title": "Групування {entity}", - "priority": "Пріоритет {entity}", - "all": "Усі {entity}", - "drop_here_to_move": "Перетягніть сюди для переміщення {entity}", - "delete": { - "label": "Видалити {entity}", - "success": "{entity} успішно видалено", - "failed": "Не вдалося видалити {entity}" - }, - "update": { - "failed": "Не вдалося оновити {entity}", - "success": "{entity} успішно оновлено" - }, - "link_copied_to_clipboard": "Посилання на {entity} скопійовано до буфера обміну", - "fetch": { - "failed": "Помилка під час завантаження {entity}" - }, - "add": { - "success": "{entity} успішно додано", - "failed": "Помилка під час додавання {entity}" - }, - "remove": { - "success": "{entity} успішно видалено", - "failed": "Помилка під час видалення {entity}" - } - }, - "epic": { - "all": "Усі епіки", - "label": "{count, plural, one {Епік} other {Епіки}}", - "new": "Новий епік", - "adding": "Додавання епіку", - "create": { - "success": "Епік успішно створено" - }, - "add": { - "press_enter": "Натисніть 'Enter', щоб додати ще один епік", - "label": "Додати епік" - }, - "title": { - "label": "Назва епіку", - "required": "Назва епіку є обов’язковою." - } - }, - "issue": { - "label": "{count, plural, one {Робоча одиниця} few {Робочі одиниці} other {Робочих одиниць}}", - "all": "Усі робочі одиниці", - "edit": "Редагувати робочу одиницю", - "title": { - "label": "Назва робочої одиниці", - "required": "Назва робочої одиниці є обов’язковою." - }, - "add": { - "press_enter": "Натисніть 'Enter', щоб додати ще одну робочу одиницю", - "label": "Додати робочу одиницю", - "cycle": { - "failed": "Не вдалося додати робочу одиницю в цикл. Спробуйте ще раз.", - "success": "{count, plural, one {Робоча одиниця} few {Робочі одиниці} other {Робочих одиниць}} додано до циклу.", - "loading": "Додавання {count, plural, one {робочої одиниці} few {робочих одиниць} other {робочих одиниць}} до циклу" - }, - "assignee": "Додати призначеного", - "start_date": "Додати дату початку", - "due_date": "Додати крайній термін", - "parent": "Додати батьківську робочу одиницю", - "sub_issue": "Додати похідну робочу одиницю", - "relation": "Додати зв’язок", - "link": "Додати посилання", - "existing": "Додати наявну робочу одиницю" - }, - "remove": { - "label": "Видалити робочу одиницю", - "cycle": { - "loading": "Вилучення робочої одиниці з циклу", - "success": "Робочу одиницю вилучено з циклу.", - "failed": "Не вдалося вилучити робочу одиницю з циклу. Спробуйте ще раз." - }, - "module": { - "loading": "Вилучення робочої одиниці з модуля", - "success": "Робочу одиницю вилучено з модуля.", - "failed": "Не вдалося вилучити робочу одиницю з модуля. Спробуйте ще раз." - }, - "parent": { - "label": "Вилучити батьківську робочу одиницю" - } - }, - "new": "Нова робоча одиниця", - "adding": "Додавання робочої одиниці", - "create": { - "success": "Робочу одиницю успішно створено" - }, - "priority": { - "urgent": "Терміновий", - "high": "Високий", - "medium": "Середній", - "low": "Низький" - }, - "display": { - "properties": { - "label": "Відображувані властивості", - "id": "ID", - "issue_type": "Тип робочої одиниці", - "sub_issue_count": "Кількість похідних", - "attachment_count": "Кількість вкладень", - "created_on": "Створено", - "sub_issue": "Похідна одиниця", - "work_item_count": "Кількість робочих одиниць" - }, - "extra": { - "show_sub_issues": "Показати похідні робочі одиниці", - "show_empty_groups": "Показати порожні групи" - } - }, - "layouts": { - "ordered_by_label": "Це розташування відсортоване за", - "list": "Список", - "kanban": "Дошка", - "calendar": "Календар", - "spreadsheet": "Таблиця", - "gantt": "Діаграма Ганта", - "title": { - "list": "Спискове розташування", - "kanban": "Розташування «Дошка»", - "calendar": "Розташування «Календар»", - "spreadsheet": "Табличне розташування", - "gantt": "Розташування «Діаграма Ганта»" - } - }, - "states": { - "active": "Активно", - "backlog": "Backlog" - }, - "comments": { - "placeholder": "Додати коментар", - "switch": { - "private": "Перемкнути на приватний коментар", - "public": "Перемкнути на публічний коментар" - }, - "create": { - "success": "Коментар успішно створено", - "error": "Не вдалося створити коментар. Спробуйте пізніше." - }, - "update": { - "success": "Коментар успішно оновлено", - "error": "Не вдалося оновити коментар. Спробуйте пізніше." - }, - "remove": { - "success": "Коментар успішно видалено", - "error": "Не вдалося видалити коментар. Спробуйте пізніше." - }, - "upload": { - "error": "Не вдалося завантажити вкладення. Спробуйте пізніше." - }, - "copy_link": { - "success": "Посилання на коментар скопійовано в буфер обміну", - "error": "Помилка при копіюванні посилання на коментар. Спробуйте пізніше." - } - }, - "empty_state": { - "issue_detail": { - "title": "Робоча одиниця не існує", - "description": "Шукана робоча одиниця не існує, була заархівована або видалена.", - "primary_button": { - "text": "Переглянути інші робочі одиниці" - } - } - }, - "sibling": { - "label": "Пов’язані робочі одиниці" - }, - "archive": { - "description": "Архівувати можна лише завершені або скасовані\nробочі одиниці", - "label": "Заархівувати робочу одиницю", - "confirm_message": "Справді заархівувати цю робочу одиницю? Усі заархівовані одиниці можна пізніше відновити.", - "success": { - "label": "Успішно заархівовано", - "message": "Ваші архіви можна знайти в архівах проєкту." - }, - "failed": { - "message": "Не вдалося заархівувати робочу одиницю. Спробуйте ще раз." - } - }, - "restore": { - "success": { - "title": "Успішне відновлення", - "message": "Ваша робоча одиниця тепер доступна серед робочих одиниць проєкту." - }, - "failed": { - "message": "Не вдалося відновити робочу одиницю. Спробуйте ще раз." - } - }, - "relation": { - "relates_to": "Пов’язана з", - "duplicate": "Дублікат", - "blocked_by": "Заблокована", - "blocking": "Блокує" - }, - "copy_link": "Скопіювати посилання на робочу одиницю", - "delete": { - "label": "Видалити робочу одиницю", - "error": "Помилка під час видалення робочої одиниці" - }, - "subscription": { - "actions": { - "subscribed": "Ви підписалися на оновлення робочої одиниці", - "unsubscribed": "Ви скасували підписку на оновлення робочої одиниці" - } - }, - "select": { - "error": "Виберіть принаймні одну робочу одиницю", - "empty": "Не вибрано жодної робочої одиниці", - "add_selected": "Додати вибрані робочі одиниці", - "select_all": "Вибрати всі", - "deselect_all": "Скасувати вибір усіх" - }, - "open_in_full_screen": "Відкрити робочу одиницю на повний екран" - }, - "attachment": { - "error": "Не вдалося додати файл. Спробуйте ще раз.", - "only_one_file_allowed": "Можна завантажити лише один файл одночасно.", - "file_size_limit": "Файл має бути меншим за {size}МБ.", - "drag_and_drop": "Перетягніть файл сюди для завантаження", - "delete": "Видалити вкладення" - }, - "label": { - "select": "Вибрати мітку", - "create": { - "success": "Мітку успішно створено", - "failed": "Не вдалося створити мітку", - "already_exists": "Така мітка вже існує", - "type": "Введіть для створення нової мітки" - } - }, - "sub_work_item": { - "update": { - "success": "Похідну робочу одиницю успішно оновлено", - "error": "Помилка під час оновлення похідної одиниці" - }, - "remove": { - "success": "Похідну робочу одиницю успішно вилучено", - "error": "Помилка під час вилучення похідної одиниці" - }, - "empty_state": { - "sub_list_filters": { - "title": "Ви не маєте похідних робочих одиниць, які відповідають застосованим фільтрам.", - "description": "Щоб побачити всі похідні робочі одиниці, очистіть всі застосовані фільтри.", - "action": "Очистити фільтри" - }, - "list_filters": { - "title": "Ви не маєте робочих одиниць, які відповідають застосованим фільтрам.", - "description": "Щоб побачити всі робочі одиниці, очистіть всі застосовані фільтри.", - "action": "Очистити фільтри" - } - } - }, - "view": { - "label": "{count, plural, one {Подання} few {Подання} other {Подань}}", - "create": { - "label": "Створити подання" - }, - "update": { - "label": "Оновити подання" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "В очікуванні", - "description": "В очікуванні" - }, - "declined": { - "title": "Відхилено", - "description": "Відхилено" - }, - "snoozed": { - "title": "Відкладено", - "description": "Залишилося {days, plural, one{# день} few{# дні} other{# днів}}" - }, - "accepted": { - "title": "Прийнято", - "description": "Прийнято" - }, - "duplicate": { - "title": "Дублікат", - "description": "Дублікат" - } - }, - "modals": { - "decline": { - "title": "Відхилити робочу одиницю", - "content": "Справді відхилити робочу одиницю {value}?" - }, - "delete": { - "title": "Видалити робочу одиницю", - "content": "Справді видалити робочу одиницю {value}?", - "success": "Робочу одиницю успішно видалено" - } - }, - "errors": { - "snooze_permission": "Лише адміністратори проєкту можуть відкладати/повертати відкладені робочі одиниці", - "accept_permission": "Лише адміністратори проєкту можуть приймати робочі одиниці", - "decline_permission": "Лише адміністратори проєкту можуть відхилити робочі одиниці" - }, - "actions": { - "accept": "Прийняти", - "decline": "Відхилити", - "snooze": "Відкласти", - "unsnooze": "Повернути з відкладених", - "copy": "Скопіювати посилання на робочу одиницю", - "delete": "Видалити", - "open": "Відкрити робочу одиницю", - "mark_as_duplicate": "Позначити як дублікат", - "move": "Перемістити {value} до робочих одиниць проєкту" - }, - "source": { - "in-app": "в застосунку" - }, - "order_by": { - "created_at": "Створено", - "updated_at": "Оновлено", - "id": "ID" - }, - "label": "Надходження", - "page_label": "{workspace} - Надходження", - "modal": { - "title": "Створити прийняту робочу одиницю" - }, - "tabs": { - "open": "Відкриті", - "closed": "Закриті" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Немає відкритих робочих одиниць", - "description": "Тут будуть відкриті робочі одиниці. Створіть нову." - }, - "sidebar_closed_tab": { - "title": "Немає закритих робочих одиниць", - "description": "Усі прийняті або відхилені робочі одиниці будуть тут." - }, - "sidebar_filter": { - "title": "Немає робочих одиниць за фільтром", - "description": "Немає одиниць, що відповідають фільтру у надходженнях. Створіть нову." - }, - "detail": { - "title": "Виберіть робочу одиницю для перегляду деталей." - } - } - }, - "workspace_creation": { - "heading": "Створіть робочий простір", - "subheading": "Щоб користуватися Plane, вам потрібно створити або приєднатися до робочого простору.", - "form": { - "name": { - "label": "Назвіть свій робочий простір", - "placeholder": "Добре підійде щось знайоме та впізнаване." - }, - "url": { - "label": "Встановіть URL вашого простору", - "placeholder": "Введіть або вставте URL", - "edit_slug": "Ви можете відредагувати лише частину URL (slug)" - }, - "organization_size": { - "label": "Скільки людей користуватиметься цим простором?", - "placeholder": "Виберіть діапазон" - } - }, - "errors": { - "creation_disabled": { - "title": "Тільки адміністратор інстанції може створювати робочі простори", - "description": "Якщо ви знаєте електронну адресу адміністратора інстанції, натисніть кнопку нижче, щоб зв’язатися з ним.", - "request_button": "Запитати адміністратора інстанції" - }, - "validation": { - "name_alphanumeric": "Назви робочих просторів можуть містити лише (' '), ('-'), ('_') і алфанумеричні символи.", - "name_length": "Назва обмежена 80 символами.", - "url_alphanumeric": "URL може містити лише ('-') та алфанумеричні символи.", - "url_length": "URL обмежений 48 символами.", - "url_already_taken": "URL робочого простору вже зайнято!" - } - }, - "request_email": { - "subject": "Запит на новий робочий простір", - "body": "Привіт, адміністраторе,\n\nБудь ласка, створіть новий робочий простір з URL [/workspace-name] для [мета створення].\n\nДякую,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Створити робочий простір", - "loading": "Створення робочого простору" - }, - "toast": { - "success": { - "title": "Успіх", - "message": "Робочий простір успішно створено" - }, - "error": { - "title": "Помилка", - "message": "Не вдалося створити робочий простір. Спробуйте ще раз." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Огляд проєктів, активностей і метрик", - "description": "Ласкаво просимо до Plane, ми раді, що ви з нами. Створіть перший проєкт, додайте робочі одиниці — і ця сторінка заповниться вашим прогресом. Адміністратори побачать тут також важливі елементи для команди.", - "primary_button": { - "text": "Створіть перший проєкт", - "comic": { - "title": "Усе починається з проєкту в Plane", - "description": "Проєкт може бути дорожньою картою продукту, маркетинговою кампанією або розробкою нового автомобіля." - } - } - } - } - }, - "workspace_analytics": { - "label": "Аналітика", - "page_label": "{workspace} - Аналітика", - "open_tasks": "Усього відкритих завдань", - "error": "Сталася помилка під час завантаження даних.", - "work_items_closed_in": "Робочі одиниці, закриті в", - "selected_projects": "Вибрані проєкти", - "total_members": "Усього учасників", - "total_cycles": "Усього циклів", - "total_modules": "Усього модулів", - "pending_work_items": { - "title": "Робочі одиниці, що очікують", - "empty_state": "Тут буде аналітика щодо робочих одиниць у розрізі виконавців." - }, - "work_items_closed_in_a_year": { - "title": "Робочі одиниці, закриті за рік", - "empty_state": "Закривайте одиниці, щоб побачити аналітику в графіку." - }, - "most_work_items_created": { - "title": "Найбільше створених одиниць", - "empty_state": "Тут відображатимуться виконавці та кількість створених ними одиниць." - }, - "most_work_items_closed": { - "title": "Найбільше закритих одиниць", - "empty_state": "Тут відображатимуться виконавці та кількість закритих ними одиниць." - }, - "tabs": { - "scope_and_demand": "Обсяг і попит", - "custom": "Користувацька аналітика" - }, - "empty_state": { - "customized_insights": { - "description": "Призначені вам робочі елементи, розбиті за станом, з’являться тут.", - "title": "Ще немає даних" - }, - "created_vs_resolved": { - "description": "Створені та вирішені з часом робочі елементи з’являться тут.", - "title": "Ще немає даних" - }, - "project_insights": { - "title": "Ще немає даних", - "description": "Призначені вам робочі елементи, розбиті за станом, з’являться тут." - }, - "general": { - "title": "Відстежуйте прогрес, робочу навантаженні та розподіл. Виявляйте тенденції, усувайте перешкоди та прискорюйте роботу", - "description": "Перегляньте обсяг проти попиту, оцінки та розповсюдження обсягу. Отримайте продуктивність членів команди та команд, щоб переконатися, що ваш проєкт виконується вчасно.", - "primary_button": { - "text": "Розпочніть свій перший проєкт", - "comic": { - "title": "Аналітика найкраще працює з циклами + модулями", - "description": "Спочатку обмежте свої робочі елементи часом у циклах та, якщо можливо, згрупуйте робочі елементи, які перевищують один цикл, у модулі. Перегляньте обидва в навігації зліва." - } - } - } - }, - "created_vs_resolved": "Створено vs Вирішено", - "customized_insights": "Персоналізовані аналітичні дані", - "backlog_work_items": "{entity} у беклозі", - "active_projects": "Активні проєкти", - "trend_on_charts": "Тенденція на графіках", - "all_projects": "Усі проєкти", - "summary_of_projects": "Зведення проєктів", - "project_insights": "Аналітика проєкту", - "started_work_items": "Розпочаті {entity}", - "total_work_items": "Усього {entity}", - "total_projects": "Усього проєктів", - "total_admins": "Усього адміністраторів", - "total_users": "Усього користувачів", - "total_intake": "Загальний дохід", - "un_started_work_items": "Нерозпочаті {entity}", - "total_guests": "Усього гостей", - "completed_work_items": "Завершені {entity}", - "total": "Усього {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {Проєкт} few {Проєкти} other {Проєктів}}", - "create": { - "label": "Додати проєкт" - }, - "network": { - "label": "Мережа", - "private": { - "title": "Приватний", - "description": "Доступний лише за запрошенням" - }, - "public": { - "title": "Публічний", - "description": "Будь-хто в просторі, крім гостей, може приєднатися" - } - }, - "error": { - "permission": "У вас немає прав для цієї дії.", - "cycle_delete": "Не вдалося видалити цикл", - "module_delete": "Не вдалося видалити модуль", - "issue_delete": "Не вдалося видалити робочу одиницю" - }, - "state": { - "backlog": "Backlog", - "unstarted": "Не почато", - "started": "Розпочато", - "completed": "Завершено", - "cancelled": "Скасовано" - }, - "sort": { - "manual": "Вручну", - "name": "Назва", - "created_at": "Дата створення", - "members_length": "Кількість учасників" - }, - "scope": { - "my_projects": "Мої проєкти", - "archived_projects": "Заархівовані" - }, - "common": { - "months_count": "{months, plural, one{# місяць} few{# місяці} other{# місяців}}" - }, - "empty_state": { - "general": { - "title": "Немає активних проєктів", - "description": "Проєкт є базовою одиницею цілей. У проєкті є завдання, Цикли та Модулі. Створіть новий проєкт або перемкніть фільтр на заархівовані.", - "primary_button": { - "text": "Розпочати перший проєкт", - "comic": { - "title": "Усе починається з проєкту в Plane", - "description": "Проєкт може бути дорожньою картою продукту, маркетинговою кампанією або розробкою нового авто." - } - } - }, - "no_projects": { - "title": "Немає проєктів", - "description": "Щоб створювати робочі одиниці, потрібно створити або приєднатися до проєкту.", - "primary_button": { - "text": "Розпочати перший проєкт", - "comic": { - "title": "Усе починається з проєкту в Plane", - "description": "Проєкт може бути дорожньою картою продукту, маркетинговою кампанією або розробкою нового авто." - } - } - }, - "filter": { - "title": "Немає проєктів за цим фільтром", - "description": "Не знайдено проєктів, що відповідають критеріям.\nСтворіть новий." - }, - "search": { - "description": "Не знайдено проєктів, що відповідають критеріям.\nСтворіть новий." - } - } - }, - "workspace_views": { - "add_view": "Додати подання", - "empty_state": { - "all-issues": { - "title": "Немає робочих одиниць у проєкті", - "description": "Створіть першу одиницю та відстежуйте прогрес!", - "primary_button": { - "text": "Створити робочу одиницю" - } - }, - "assigned": { - "title": "Немає призначених одиниць", - "description": "Тут відображатимуться одиниці, призначені вам.", - "primary_button": { - "text": "Створити робочу одиницю" - } - }, - "created": { - "title": "Немає створених одиниць", - "description": "Тут відображатимуться одиниці, які ви створили.", - "primary_button": { - "text": "Створити робочу одиницю" - } - }, - "subscribed": { - "title": "Немає підписаних одиниць", - "description": "Підпишіться на одиниці, які вас цікавлять." - }, - "custom-view": { - "title": "Немає одиниць за заданим фільтром", - "description": "Тут з’являться одиниці, що відповідають фільтру." - } - } - }, - "workspace_settings": { - "label": "Налаштування робочого простору", - "page_label": "{workspace} - Загальні налаштування", - "key_created": "Ключ створено", - "copy_key": "Скопіюйте й збережіть цей ключ для Plane Pages. Після закриття ви його більше не побачите. CSV-файл із ключем було завантажено.", - "token_copied": "Токен скопійовано до буфера.", - "settings": { - "general": { - "title": "Загальне", - "upload_logo": "Завантажити логотип", - "edit_logo": "Редагувати логотип", - "name": "Назва робочого простору", - "company_size": "Розмір компанії", - "url": "URL робочого простору", - "update_workspace": "Оновити простір", - "delete_workspace": "Видалити цей простір", - "delete_workspace_description": "Видалення простору призведе до втрати всіх даних і ресурсів. Дія незворотна.", - "delete_btn": "Видалити простір", - "delete_modal": { - "title": "Справді видалити цей простір?", - "description": "У вас активна пробна версія. Спочатку скасуйте її.", - "dismiss": "Закрити", - "cancel": "Скасувати пробну версію", - "success_title": "Простір видалено.", - "success_message": "Ви будете перенаправлені до профілю.", - "error_title": "Не вдалося.", - "error_message": "Спробуйте ще раз." - }, - "errors": { - "name": { - "required": "Назва є обов’язковою", - "max_length": "Назва робочого простору не може перевищувати 80 символів" - }, - "company_size": { - "required": "Розмір компанії є обов’язковим" - } - } - }, - "members": { - "title": "Учасники", - "add_member": "Додати учасника", - "pending_invites": "Очікувані запрошення", - "invitations_sent_successfully": "Запрошення успішно надіслано", - "leave_confirmation": "Справді вийти з цього простору? Ви втратите доступ. Дія незворотна.", - "details": { - "full_name": "Повне ім’я", - "display_name": "Відображуване ім’я", - "email_address": "Електронна пошта", - "account_type": "Тип облікового запису", - "authentication": "Автентифікація", - "joining_date": "Дата приєднання" - }, - "modal": { - "title": "Запросити колег", - "description": "Запросіть людей для співпраці.", - "button": "Надіслати запрошення", - "button_loading": "Надсилання запрошень", - "placeholder": "ім’я@компанія.ua", - "errors": { - "required": "Потрібно вказати адресу електронної пошти.", - "invalid": "Неправильна адреса електронної пошти" - } - } - }, - "billing_and_plans": { - "title": "Платежі та плани", - "current_plan": "Поточний план", - "free_plan": "Ви використовуєте безкоштовний план", - "view_plans": "Переглянути плани" - }, - "exports": { - "title": "Експорти", - "exporting": "Експортування", - "previous_exports": "Попередні експорти", - "export_separate_files": "Експортувати дані в окремі файли", - "modal": { - "title": "Експортувати в", - "toasts": { - "success": { - "title": "Експорт успішний", - "message": "Ви можете завантажити експортовані {entity} у попередніх експортованих файлах." - }, - "error": { - "title": "Експорт не вдався", - "message": "Спробуйте ще раз." - } - } - } - }, - "webhooks": { - "title": "Вебхуки", - "add_webhook": "Додати вебхук", - "modal": { - "title": "Створити вебхук", - "details": "Деталі вебхука", - "payload": "URL для надсилання даних", - "question": "Які події мають запускати цей вебхук?", - "error": "URL є обов’язковим" - }, - "secret_key": { - "title": "Секретний ключ", - "message": "Згенеруйте токен для авторизації вебхука" - }, - "options": { - "all": "Надсилати все", - "individual": "Вибрати окремі події" - }, - "toasts": { - "created": { - "title": "Вебхук створено", - "message": "Вебхук успішно створено" - }, - "not_created": { - "title": "Вебхук не створено", - "message": "Не вдалося створити вебхук" - }, - "updated": { - "title": "Вебхук оновлено", - "message": "Вебхук успішно оновлено" - }, - "not_updated": { - "title": "Не вдалося оновити вебхук", - "message": "Не вдалося оновити вебхук" - }, - "removed": { - "title": "Вебхук видалено", - "message": "Вебхук успішно видалено" - }, - "not_removed": { - "title": "Не вдалося видалити вебхук", - "message": "Не вдалося видалити вебхук" - }, - "secret_key_copied": { - "message": "Секретний ключ скопійовано до буфера." - }, - "secret_key_not_copied": { - "message": "Помилка під час копіювання ключа." - } - } - }, - "api_tokens": { - "title": "API токени", - "add_token": "Додати API токен", - "create_token": "Створити токен", - "never_expires": "Ніколи не спливає", - "generate_token": "Згенерувати токен", - "generating": "Генерація", - "delete": { - "title": "Видалити API токен", - "description": "Застосунки, які використовують цей токен, втратять доступ. Ця дія незворотна.", - "success": { - "title": "Успіх!", - "message": "Токен успішно видалено" - }, - "error": { - "title": "Помилка!", - "message": "Не вдалося видалити токен" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Немає API токенів", - "description": "Використовуйте API, щоб інтегрувати Plane із зовнішніми системами." - }, - "webhooks": { - "title": "Немає вебхуків", - "description": "Створіть вебхуки для автоматизації дій." - }, - "exports": { - "title": "Немає експортів", - "description": "Історія експортів з’явиться тут." - }, - "imports": { - "title": "Немає імпортів", - "description": "Історія імпортів з’явиться тут." - } - } - }, - "profile": { - "label": "Профіль", - "page_label": "Ваша робота", - "work": "Робота", - "details": { - "joined_on": "Приєднався", - "time_zone": "Часовий пояс" - }, - "stats": { - "workload": "Навантаження", - "overview": "Огляд", - "created": "Створені одиниці", - "assigned": "Призначені одиниці", - "subscribed": "Підписані одиниці", - "state_distribution": { - "title": "Одиниці за станом", - "empty": "Створіть одиниці, щоб переглянути статистику станів." - }, - "priority_distribution": { - "title": "Одиниці за пріоритетом", - "empty": "Створіть одиниці, щоб переглянути статистику пріоритетів." - }, - "recent_activity": { - "title": "Нещодавня активність", - "empty": "Активність не знайдена.", - "button": "Завантажити сьогоднішню активність", - "button_loading": "Завантаження" - } - }, - "actions": { - "profile": "Профіль", - "security": "Безпека", - "activity": "Активність", - "appearance": "Зовнішній вигляд", - "notifications": "Сповіщення" - }, - "tabs": { - "summary": "Зведення", - "assigned": "Призначено", - "created": "Створено", - "subscribed": "Підписано", - "activity": "Активність" - }, - "empty_state": { - "activity": { - "title": "Немає активності", - "description": "Створіть робочу одиницю, щоб почати." - }, - "assigned": { - "title": "Немає призначених робочих одиниць", - "description": "Тут будуть відображатися одиниці, призначені вам." - }, - "created": { - "title": "Немає створених робочих одиниць", - "description": "Тут будуть відображатися одиниці, які ви створили." - }, - "subscribed": { - "title": "Немає підписаних робочих одиниць", - "description": "Підпишіться на потрібні одиниці, й вони з’являться тут." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Введіть ID проєкту", - "please_select_a_timezone": "Виберіть часовий пояс", - "archive_project": { - "title": "Заархівувати проєкт", - "description": "Архівування приховає проєкт із меню. Доступ залишиться через сторінку проєктів.", - "button": "Заархівувати проєкт" - }, - "delete_project": { - "title": "Видалити проєкт", - "description": "Видалення проєкту призведе до знищення всіх даних. Дія незворотна.", - "button": "Видалити проєкт" - }, - "toast": { - "success": "Проєкт оновлено", - "error": "Не вдалося оновити. Спробуйте знову." - } - }, - "members": { - "label": "Учасники", - "project_lead": "Керівник проєкту", - "default_assignee": "Типовий виконавець", - "guest_super_permissions": { - "title": "Надати гостям доступ до всіх одиниць:", - "sub_heading": "Гості бачитимуть усі одиниці у проєкті." - }, - "invite_members": { - "title": "Запросити учасників", - "sub_heading": "Запросіть учасників до проєкту.", - "select_co_worker": "Вибрати колегу" - } - }, - "states": { - "describe_this_state_for_your_members": "Опишіть цей стан для учасників.", - "empty_state": { - "title": "Немає станів у групі {groupKey}", - "description": "Створіть новий стан" - } - }, - "labels": { - "label_title": "Назва мітки", - "label_title_is_required": "Назва мітки є обов’язковою", - "label_max_char": "Назва мітки не може перевищувати 255 символів", - "toast": { - "error": "Помилка під час оновлення мітки" - } - }, - "estimates": { - "label": "Оцінки", - "title": "Увімкнути оцінки для мого проєкту", - "description": "Вони допомагають вам повідомляти про складність та навантаження команди.", - "no_estimate": "Без оцінки", - "new": "Нова система оцінок", - "create": { - "custom": "Власний", - "start_from_scratch": "Почати з нуля", - "choose_template": "Вибрати шаблон", - "choose_estimate_system": "Вибрати систему оцінок", - "enter_estimate_point": "Введіть оцінку", - "step": "Крок {step} з {total}", - "label": "Створити оцінку" - }, - "toasts": { - "created": { - "success": { - "title": "Оцінку створено", - "message": "Оцінку успішно створено" - }, - "error": { - "title": "Не вдалося створити оцінку", - "message": "Не вдалося створити нову оцінку, спробуйте ще раз." - } - }, - "updated": { - "success": { - "title": "Оцінку змінено", - "message": "Оцінку оновлено у вашому проєкті." - }, - "error": { - "title": "Не вдалося змінити оцінку", - "message": "Не вдалося змінити оцінку, спробуйте ще раз" - } - }, - "enabled": { - "success": { - "title": "Успіх!", - "message": "Оцінки увімкнено." - } - }, - "disabled": { - "success": { - "title": "Успіх!", - "message": "Оцінки вимкнено." - }, - "error": { - "title": "Помилка!", - "message": "Не вдалося вимкнути оцінку. Спробуйте ще раз" - } - } - }, - "validation": { - "min_length": "Оцінка має бути більшою за 0.", - "unable_to_process": "Не вдалося обробити ваш запит, спробуйте ще раз.", - "numeric": "Оцінка має бути числовим значенням.", - "character": "Оцінка має бути символьним значенням.", - "empty": "Значення оцінки не може бути порожнім.", - "already_exists": "Таке значення оцінки вже існує.", - "unsaved_changes": "У вас є незбережені зміни. Збережіть їх перед тим, як натиснути 'готово'", - "remove_empty": "Оцінка не може бути порожньою. Введіть значення в кожне поле або видаліть ті, для яких у вас немає значень." - }, - "systems": { - "points": { - "label": "Бали", - "fibonacci": "Фібоначчі", - "linear": "Лінійна", - "squares": "Квадрати", - "custom": "Власна" - }, - "categories": { - "label": "Категорії", - "t_shirt_sizes": "Розміри футболок", - "easy_to_hard": "Від легкого до складного", - "custom": "Власна" - }, - "time": { - "label": "Час", - "hours": "Години" - } - } - }, - "automations": { - "label": "Автоматизація", - "auto-archive": { - "title": "Автоматично архівувати закриті одиниці", - "description": "Plane архівуватиме завершені або скасовані одиниці.", - "duration": "Архівувати одиниці, закриті понад" - }, - "auto-close": { - "title": "Автоматично закривати одиниці", - "description": "Plane закриватиме неактивні одиниці.", - "duration": "Закривати одиниці, що неактивні понад", - "auto_close_status": "Стан для автоматичного закриття" - } - }, - "empty_state": { - "labels": { - "title": "Немає міток", - "description": "Створіть мітки для організації робочих одиниць." - }, - "estimates": { - "title": "Немає систем оцінок", - "description": "Створіть систему оцінок, щоб відображати навантаження.", - "primary_button": "Додати систему оцінок" - } - } - }, - "project_cycles": { - "add_cycle": "Додати цикл", - "more_details": "Докладніше", - "cycle": "Цикл", - "update_cycle": "Оновити цикл", - "create_cycle": "Створити цикл", - "no_matching_cycles": "Немає циклів за цим запитом", - "remove_filters_to_see_all_cycles": "Приберіть фільтри, щоб побачити всі цикли", - "remove_search_criteria_to_see_all_cycles": "Приберіть критерії пошуку, щоб побачити всі цикли", - "only_completed_cycles_can_be_archived": "Архівувати можна лише завершені цикли", - "start_date": "Дата початку", - "end_date": "Дата завершення", - "in_your_timezone": "У вашому часовому поясі", - "transfer_work_items": "Перенести {count} робочих одиниць", - "date_range": "Діапазон дат", - "add_date": "Додати дату", - "active_cycle": { - "label": "Активний цикл", - "progress": "Прогрес", - "chart": "Burndown-графік", - "priority_issue": "Найпріоритетніші одиниці", - "assignees": "Призначені", - "issue_burndown": "Burndown робочих одиниць", - "ideal": "Ідеальний", - "current": "Поточний", - "labels": "Мітки" - }, - "upcoming_cycle": { - "label": "Майбутній цикл" - }, - "completed_cycle": { - "label": "Завершений цикл" - }, - "status": { - "days_left": "Залишилося днів", - "completed": "Завершено", - "yet_to_start": "Ще не почався", - "in_progress": "У процесі", - "draft": "Чернетка" - }, - "action": { - "restore": { - "title": "Відновити цикл", - "success": { - "title": "Цикл відновлено", - "description": "Цикл було відновлено." - }, - "failed": { - "title": "Не вдалося відновити цикл", - "description": "Відновити цикл не вдалося." - } - }, - "favorite": { - "loading": "Додавання у вибране", - "success": { - "description": "Цикл додано у вибране.", - "title": "Успіх!" - }, - "failed": { - "description": "Не вдалося додати у вибране.", - "title": "Помилка!" - } - }, - "unfavorite": { - "loading": "Вилучення з вибраного", - "success": { - "description": "Цикл вилучено з вибраного.", - "title": "Успіх!" - }, - "failed": { - "description": "Не вдалося вилучити з вибраного.", - "title": "Помилка!" - } - }, - "update": { - "loading": "Оновлення циклу", - "success": { - "description": "Цикл оновлено.", - "title": "Успіх!" - }, - "failed": { - "description": "Не вдалося оновити цикл.", - "title": "Помилка!" - }, - "error": { - "already_exists": "Цикл із цими датами вже існує. Для чернетки видаліть дати." - } - } - }, - "empty_state": { - "general": { - "title": "Групуйте роботу за циклами.", - "description": "Обмежуйте роботу в часі, слідкуйте за крайніми строками та рухайтеся вперед.", - "primary_button": { - "text": "Створіть перший цикл", - "comic": { - "title": "Цикли — це повторювані періоди.", - "description": "Спрайт, ітерація або будь-який інший період часу для відстеження роботи." - } - } - }, - "no_issues": { - "title": "У циклі немає робочих одиниць", - "description": "Додайте ті одиниці, які хочете відстежувати.", - "primary_button": { - "text": "Створити одиницю" - }, - "secondary_button": { - "text": "Додати наявну одиницю" - } - }, - "completed_no_issues": { - "title": "У циклі немає робочих одиниць", - "description": "Одиниці переміщено або приховано. Щоб побачити їх, змініть властивості." - }, - "active": { - "title": "Немає активного циклу", - "description": "Активний цикл — це цикл, що містить сьогоднішню дату. Відстежуйте його прогрес тут." - }, - "archived": { - "title": "Немає заархівованих циклів", - "description": "Заархівуйте завершені цикли, щоб не захаращувати список." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Створіть і призначте робочу одиницю", - "description": "Робочі одиниці — це завдання, які ви призначаєте собі чи команді. Відстежуйте їхній прогрес.", - "primary_button": { - "text": "Створити першу одиницю", - "comic": { - "title": "Робочі одиниці — будівельні блоки", - "description": "Наприклад: редизайн інтерфейсу, ребрендинг, нова система." - } - } - }, - "no_archived_issues": { - "title": "Немає заархівованих одиниць", - "description": "Архівуйте завершені чи скасовані одиниці. Налаштуйте автоматизацію.", - "primary_button": { - "text": "Налаштувати автоматизацію" - } - }, - "issues_empty_filter": { - "title": "Немає одиниць за цим фільтром", - "secondary_button": { - "text": "Скинути фільтри" - } - } - } - }, - "project_module": { - "add_module": "Додати модуль", - "update_module": "Оновити модуль", - "create_module": "Створити модуль", - "archive_module": "Заархівувати модуль", - "restore_module": "Відновити модуль", - "delete_module": "Видалити модуль", - "empty_state": { - "general": { - "title": "Об’єднуйте ключові етапи в модулі.", - "description": "Модулі структурують одиниці під окремими логічними компонентами. Відстежуйте крайні строки та прогрес.", - "primary_button": { - "text": "Створити перший модуль", - "comic": { - "title": "Модулі — це ієрархічні об’єднання.", - "description": "Наприклад: модуль кошика, шасі, складу." - } - } - }, - "no_issues": { - "title": "У модулі немає одиниць", - "description": "Додайте одиниці до модуля.", - "primary_button": { - "text": "Створити одиниці" - }, - "secondary_button": { - "text": "Додати наявну одиницю" - } - }, - "archived": { - "title": "Немає заархівованих модулів", - "description": "Архівуйте завершені або скасовані модулі." - }, - "sidebar": { - "in_active": "Модуль неактивний.", - "invalid_date": "Неправильна дата. Вкажіть коректну." - } - }, - "quick_actions": { - "archive_module": "Заархівувати модуль", - "archive_module_description": "Архівувати можна лише завершені/скасовані модулі.", - "delete_module": "Видалити модуль" - }, - "toast": { - "copy": { - "success": "Посилання на модуль скопійовано" - }, - "delete": { - "success": "Модуль видалено", - "error": "Не вдалося видалити" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Зберігайте фільтри як подання.", - "description": "Подання — це збережені фільтри для швидкого доступу. Діліться ними з командою.", - "primary_button": { - "text": "Створити перше подання", - "comic": { - "title": "Подання працюють з властивостями одиниць.", - "description": "Створіть подання з потрібними фільтрами." - } - } - }, - "filter": { - "title": "Немає подань за цим фільтром", - "description": "Створіть нове подання." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Пишіть нотатки, документи або базу знань із допомогою AI Galileo.", - "description": "Сторінки — це простір для ідей. Пишіть, форматуйте, вбудовуйте робочі одиниці та використовуйте компоненти.", - "primary_button": { - "text": "Створити першу сторінку" - } - }, - "private": { - "title": "Немає приватних сторінок", - "description": "Ви можете зберігати сторінки лише для себе. Поділіться, коли будете готові.", - "primary_button": { - "text": "Створити сторінку" - } - }, - "public": { - "title": "Немає публічних сторінок", - "description": "Тут з’являться сторінки, якими діляться в проєкті.", - "primary_button": { - "text": "Створити сторінку" - } - }, - "archived": { - "title": "Немає заархівованих сторінок", - "description": "Архівуйте сторінки для подальшого перегляду." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Немає результатів" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Немає відповідних одиниць" - }, - "no_issues": { - "title": "Немає одиниць" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Коментарів немає", - "description": "Коментарі використовуються для обговорення та відстеження." - } - } - }, - "notification": { - "label": "Скринька", - "page_label": "{workspace} - Скринька", - "options": { - "mark_all_as_read": "Позначити все як прочитане", - "mark_read": "Позначити як прочитане", - "mark_unread": "Позначити як непрочитане", - "refresh": "Оновити", - "filters": "Фільтри скриньки", - "show_unread": "Показати непрочитані", - "show_snoozed": "Показати відкладені", - "show_archived": "Показати заархівовані", - "mark_archive": "Заархівувати", - "mark_unarchive": "Повернути з архіву", - "mark_snooze": "Відкласти", - "mark_unsnooze": "Повернути з відкладених" - }, - "toasts": { - "read": "Сповіщення прочитано", - "unread": "Позначено як непрочитане", - "archived": "Заархівовано", - "unarchived": "Повернуто з архіву", - "snoozed": "Відкладено", - "unsnoozed": "Повернуто з відкладених" - }, - "empty_state": { - "detail": { - "title": "Виберіть елемент, щоб побачити деталі." - }, - "all": { - "title": "Немає призначених одиниць", - "description": "Тут відображатимуться оновлення щодо призначених вам одиниць." - }, - "mentions": { - "title": "Немає згадок", - "description": "Тут відображатимуться згадки про вас." - } - }, - "tabs": { - "all": "Усе", - "mentions": "Згадки" - }, - "filter": { - "assigned": "Призначені мені", - "created": "Створені мною", - "subscribed": "Підписані мною" - }, - "snooze": { - "1_day": "1 день", - "3_days": "3 дні", - "5_days": "5 днів", - "1_week": "1 тиждень", - "2_weeks": "2 тижні", - "custom": "Власне" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Додайте одиниці, щоб відстежувати прогрес" - }, - "chart": { - "title": "Додайте одиниці, щоб побачити burndown-графік." - }, - "priority_issue": { - "title": "Тут з’являться найпріоритетніші робочі одиниці." - }, - "assignee": { - "title": "Призначте робочі одиниці, щоб побачити розподіл." - }, - "label": { - "title": "Додайте мітки, щоб аналізувати за мітками." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Надходження не увімкнені", - "description": "Увімкніть надходження в налаштуваннях проєкту, щоб керувати заявками.", - "primary_button": { - "text": "Керувати функціями" - } - }, - "cycle": { - "title": "Цикли не увімкнені", - "description": "Увімкніть цикли, щоб обмежувати роботу в часі.", - "primary_button": { - "text": "Керувати функціями" - } - }, - "module": { - "title": "Модулі не увімкнені", - "description": "Увімкніть модулі в налаштуваннях проєкту.", - "primary_button": { - "text": "Керувати функціями" - } - }, - "page": { - "title": "Сторінки не увімкнені", - "description": "Увімкніть сторінки в налаштуваннях проєкту.", - "primary_button": { - "text": "Керувати функціями" - } - }, - "view": { - "title": "Подання не увімкнене", - "description": "Увімкніть подання в налаштуваннях проєкту.", - "primary_button": { - "text": "Керувати функціями" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Створити чернетку одиниці", - "empty_state": { - "title": "Тут відображатимуться ваші чернетки одиниць та коментарів.", - "description": "Почніть створювати одиницю і залиште її як чернетку.", - "primary_button": { - "text": "Створити першу чернетку" - } - }, - "delete_modal": { - "title": "Видалити чернетку", - "description": "Справді видалити цю чернетку? Дію неможливо скасувати." - }, - "toasts": { - "created": { - "success": "Чернетку створено", - "error": "Не вдалося створити" - }, - "deleted": { - "success": "Чернетку видалено" - } - } - }, - "stickies": { - "title": "Ваші нотатки", - "placeholder": "клікніть, щоб почати вводити", - "all": "Усі нотатки", - "no-data": "Фіксуйте ідеї та думки. Додайте першу нотатку.", - "add": "Додати нотатку", - "search_placeholder": "Пошук за назвою", - "delete": "Видалити нотатку", - "delete_confirmation": "Справді видалити цю нотатку?", - "empty_state": { - "simple": "Фіксуйте ідеї та думки. Додайте першу нотатку.", - "general": { - "title": "Нотатки — це швидкі записи.", - "description": "Записуйте думки та отримуйте до них доступ з будь-якого пристрою.", - "primary_button": { - "text": "Додати нотатку" - } - }, - "search": { - "title": "Нотаток не знайдено.", - "description": "Спробуйте інший пошуковий запит або створіть нову нотатку.", - "primary_button": { - "text": "Додати нотатку" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Назва нотатки може бути не більш ніж 100 символів.", - "already_exists": "Нотатка без опису вже існує" - }, - "created": { - "title": "Нотатку створено", - "message": "Нотатку успішно створено" - }, - "not_created": { - "title": "Не вдалося створити", - "message": "Нотатку не вдалося створити" - }, - "updated": { - "title": "Нотатку оновлено", - "message": "Нотатку успішно оновлено" - }, - "not_updated": { - "title": "Не вдалося оновити", - "message": "Нотатку не вдалося оновити" - }, - "removed": { - "title": "Нотатку видалено", - "message": "Нотатку успішно видалено" - }, - "not_removed": { - "title": "Не вдалося видалити", - "message": "Нотатку не вдалося видалити" - } - } - }, - "role_details": { - "guest": { - "title": "Гість", - "description": "Зовнішні учасники можуть бути запрошені як гості." - }, - "member": { - "title": "Учасник", - "description": "Може читати, створювати, редагувати та видаляти сутності." - }, - "admin": { - "title": "Адміністратор", - "description": "Має всі права в робочому просторі." - } - }, - "user_roles": { - "product_or_project_manager": "Продуктовий/Проєктний менеджер", - "development_or_engineering": "Розробка/Інженерія", - "founder_or_executive": "Засновник/Керівник", - "freelancer_or_consultant": "Фрілансер/Консультант", - "marketing_or_growth": "Маркетинг/Зростання", - "sales_or_business_development": "Продажі/Розвиток бізнесу", - "support_or_operations": "Підтримка/Операції", - "student_or_professor": "Студент/Професор", - "human_resources": "HR (кадри)", - "other": "Інше" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Імпортуйте одиниці з репозиторіїв GitHub." - }, - "jira": { - "title": "Jira", - "description": "Імпортуйте одиниці та епіки з Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Експортуйте одиниці у формат CSV.", - "short_description": "Експортувати як CSV" - }, - "excel": { - "title": "Excel", - "description": "Експортуйте одиниці у формат Excel.", - "short_description": "Експортувати як Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Експортуйте одиниці у формат Excel.", - "short_description": "Експортувати як Excel" - }, - "json": { - "title": "JSON", - "description": "Експортуйте одиниці у формат JSON.", - "short_description": "Експортувати як JSON" - } - }, - "default_global_view": { - "all_issues": "Усі одиниці", - "assigned": "Призначено", - "created": "Створено", - "subscribed": "Підписано" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Системні налаштування" - }, - "light": { - "label": "Світла" - }, - "dark": { - "label": "Темна" - }, - "light_contrast": { - "label": "Світла з високою контрастністю" - }, - "dark_contrast": { - "label": "Темна з високою контрастністю" - }, - "custom": { - "label": "Користувацька тема" - } - } - }, - "project_modules": { - "status": { - "backlog": "Backlog", - "planned": "Заплановано", - "in_progress": "У процесі", - "paused": "Призупинено", - "completed": "Завершено", - "cancelled": "Скасовано" - }, - "layout": { - "list": "Список", - "board": "Дошка", - "timeline": "Шкала часу" - }, - "order_by": { - "name": "Назва", - "progress": "Прогрес", - "issues": "Кількість одиниць", - "due_date": "Крайній термін", - "created_at": "Дата створення", - "manual": "Вручну" - } - }, - "cycle": { - "label": "{count, plural, one {Цикл} few {Цикли} other {Циклів}}", - "no_cycle": "Немає циклу" - }, - "module": { - "label": "{count, plural, one {Модуль} few {Модулі} other {Модулів}}", - "no_module": "Немає модуля" - }, - "description_versions": { - "last_edited_by": "Останнє редагування", - "previously_edited_by": "Раніше відредаговано", - "edited_by": "Відредаговано" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane не запустився. Це може бути через те, що один або декілька сервісів Plane не змогли запуститися.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Виберіть View Logs з setup.sh та логів Docker, щоб переконатися." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Структура", - "empty_state": { - "title": "Відсутні заголовки", - "description": "Давайте додамо кілька заголовків на цю сторінку, щоб побачити їх тут." - } - }, - "info": { - "label": "Інформація", - "document_info": { - "words": "Слова", - "characters": "Символи", - "paragraphs": "Абзаци", - "read_time": "Час читання" - }, - "actors_info": { - "edited_by": "Відредаговано", - "created_by": "Створено" - }, - "version_history": { - "label": "Історія версій", - "current_version": "Поточна версія" - } - }, - "assets": { - "label": "Ресурси", - "download_button": "Завантажити", - "empty_state": { - "title": "Відсутні зображення", - "description": "Додайте зображення, щоб побачити їх тут." - } - } - }, - "open_button": "Відкрити панель навігації", - "close_button": "Закрити панель навігації", - "outline_floating_button": "Відкрити структуру" - } -} diff --git a/packages/i18n/src/locales/ua/translations.ts b/packages/i18n/src/locales/ua/translations.ts new file mode 100644 index 0000000000..6845ebc032 --- /dev/null +++ b/packages/i18n/src/locales/ua/translations.ts @@ -0,0 +1,2568 @@ +export default { + sidebar: { + projects: "Проєкти", + pages: "Сторінки", + new_work_item: "Нова робоча одиниця", + home: "Головна", + your_work: "Ваша робота", + inbox: "Вхідні", + workspace: "Робочий простір", + views: "Подання", + analytics: "Аналітика", + work_items: "Робочі одиниці", + cycles: "Цикли", + modules: "Модулі", + intake: "Надходження", + drafts: "Чернетки", + favorites: "Вибране", + pro: "Pro", + upgrade: "Підвищити", + }, + auth: { + common: { + email: { + label: "Електронна пошта", + placeholder: "ім’я@компанія.ua", + errors: { + required: "Електронна пошта є обов’язковою", + invalid: "Неправильна адреса електронної пошти", + }, + }, + password: { + label: "Пароль", + set_password: "Встановити пароль", + placeholder: "Введіть пароль", + confirm_password: { + label: "Підтвердіть пароль", + placeholder: "Підтвердіть пароль", + }, + current_password: { + label: "Поточний пароль", + }, + new_password: { + label: "Новий пароль", + placeholder: "Введіть новий пароль", + }, + change_password: { + label: { + default: "Змінити пароль", + submitting: "Зміна пароля", + }, + }, + errors: { + match: "Паролі не співпадають", + empty: "Будь ласка, введіть свій пароль", + length: "Довжина пароля має бути більше 8 символів", + strength: { + weak: "Пароль занадто слабкий", + strong: "Пароль надійний", + }, + }, + submit: "Встановити пароль", + toast: { + change_password: { + success: { + title: "Успіх!", + message: "Пароль було успішно змінено.", + }, + error: { + title: "Помилка!", + message: "Щось пішло не так. Будь ласка, спробуйте ще раз.", + }, + }, + }, + }, + unique_code: { + label: "Унікальний код", + placeholder: "gets-sets-flys", + paste_code: "Вставте код, надісланий на вашу електронну пошту", + requesting_new_code: "Запитую новий код", + sending_code: "Надсилаю код", + }, + already_have_an_account: "Вже маєте обліковий запис?", + login: "Увійти", + create_account: "Створити обліковий запис", + new_to_plane: "Вперше в Plane?", + back_to_sign_in: "Повернутися до входу", + resend_in: "Надіслати повторно через {seconds} секунд", + sign_in_with_unique_code: "Увійти за допомогою унікального коду", + forgot_password: "Забули пароль?", + }, + sign_up: { + header: { + label: "Створіть обліковий запис і почніть керувати роботою зі своєю командою.", + step: { + email: { + header: "Реєстрація", + sub_header: "", + }, + password: { + header: "Реєстрація", + sub_header: "Зареєструйтесь, використовуючи комбінацію електронної пошти та пароля.", + }, + unique_code: { + header: "Реєстрація", + sub_header: + "Зареєструйтесь за допомогою унікального коду, надісланого на вказану вище адресу електронної пошти.", + }, + }, + }, + errors: { + password: { + strength: "Спробуйте встановити надійний пароль, щоб продовжити", + }, + }, + }, + sign_in: { + header: { + label: "Увійдіть і почніть керувати роботою зі своєю командою.", + step: { + email: { + header: "Увійти або зареєструватись", + sub_header: "", + }, + password: { + header: "Увійти або зареєструватись", + sub_header: "Використовуйте комбінацію електронної пошти та пароля, щоб увійти.", + }, + unique_code: { + header: "Увійти або зареєструватись", + sub_header: "Увійдіть за допомогою унікального коду, надісланого на вказану вище адресу електронної пошти.", + }, + }, + }, + }, + forgot_password: { + title: "Відновіть свій пароль", + description: + "Введіть підтверджену адресу електронної пошти вашого облікового запису, і ми надішлемо вам посилання для відновлення пароля.", + email_sent: "Ми надіслали посилання для відновлення на вашу електронну пошту", + send_reset_link: "Надіслати посилання для відновлення", + errors: { + smtp_not_enabled: "Адміністратор не активував SMTP, тому неможливо надіслати посилання для відновлення пароля", + }, + toast: { + success: { + title: "Лист надіслано", + message: + "Перевірте свою пошту для відновлення пароля. Якщо не отримали протягом кількох хвилин, перевірте папку «Спам».", + }, + error: { + title: "Помилка!", + message: "Щось пішло не так. Будь ласка, спробуйте ще раз.", + }, + }, + }, + reset_password: { + title: "Встановити новий пароль", + description: "Захистіть свій обліковий запис надійним паролем", + }, + set_password: { + title: "Захистіть свій обліковий запис", + description: "Встановлення пароля допоможе безпечно входити у систему", + }, + sign_out: { + toast: { + error: { + title: "Помилка!", + message: "Не вдалося вийти. Спробуйте знову.", + }, + }, + }, + }, + submit: "Надіслати", + cancel: "Скасувати", + loading: "Завантаження", + error: "Помилка", + success: "Успіх", + warning: "Попередження", + info: "Інформація", + close: "Закрити", + yes: "Так", + no: "Ні", + ok: "OK", + name: "Назва", + description: "Опис", + search: "Пошук", + add_member: "Додати учасника", + adding_members: "Додавання учасників", + remove_member: "Видалити учасника", + add_members: "Додати учасників", + adding_member: "Додавання учасників", + remove_members: "Видалити учасників", + add: "Додати", + adding: "Додавання", + remove: "Вилучити", + add_new: "Додати новий", + remove_selected: "Вилучити вибрані", + first_name: "Ім’я", + last_name: "Прізвище", + email: "Електронна пошта", + display_name: "Відображуване ім’я", + role: "Роль", + timezone: "Часовий пояс", + avatar: "Аватар", + cover_image: "Обкладинка", + password: "Пароль", + change_cover: "Змінити обкладинку", + language: "Мова", + saving: "Збереження", + save_changes: "Зберегти зміни", + deactivate_account: "Деактивувати обліковий запис", + deactivate_account_description: + "Після деактивації всі дані й ресурси цього облікового запису будуть видалені без можливості відновлення.", + profile_settings: "Налаштування профілю", + your_account: "Ваш обліковий запис", + security: "Безпека", + activity: "Активність", + appearance: "Зовнішній вигляд", + notifications: "Сповіщення", + workspaces: "Робочі простори", + create_workspace: "Створити робочий простір", + invitations: "Запрошення", + summary: "Зведення", + assigned: "Призначено", + created: "Створено", + subscribed: "Підписано", + you_do_not_have_the_permission_to_access_this_page: "Ви не маєте прав доступу до цієї сторінки.", + something_went_wrong_please_try_again: "Щось пішло не так. Будь ласка, спробуйте ще раз.", + load_more: "Завантажити ще", + select_or_customize_your_interface_color_scheme: "Виберіть або налаштуйте кольорову схему інтерфейсу.", + theme: "Тема", + system_preference: "Системні налаштування", + light: "Світла", + dark: "Темна", + light_contrast: "Світла з високою контрастністю", + dark_contrast: "Темна з високою контрастністю", + custom: "Користувацька тема", + select_your_theme: "Виберіть тему", + customize_your_theme: "Налаштуйте свою тему", + background_color: "Колір фону", + text_color: "Колір тексту", + primary_color: "Основний колір (тема)", + sidebar_background_color: "Колір фону бічної панелі", + sidebar_text_color: "Колір тексту бічної панелі", + set_theme: "Застосувати тему", + enter_a_valid_hex_code_of_6_characters: "Введіть дійсний hex-код довжиною 6 символів", + background_color_is_required: "Колір фону є обов’язковим", + text_color_is_required: "Колір тексту є обов’язковим", + primary_color_is_required: "Основний колір є обов’язковим", + sidebar_background_color_is_required: "Колір фону бічної панелі є обов’язковим", + sidebar_text_color_is_required: "Колір тексту бічної панелі є обов’язковим", + updating_theme: "Оновлення теми", + theme_updated_successfully: "Тему успішно оновлено", + failed_to_update_the_theme: "Не вдалося оновити тему", + email_notifications: "Сповіщення електронною поштою", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Будьте в курсі робочих одиниць, на які ви підписані. Увімкніть це, щоб отримувати сповіщення.", + email_notification_setting_updated_successfully: "Налаштування сповіщень електронною поштою успішно оновлено", + failed_to_update_email_notification_setting: "Не вдалося оновити налаштування сповіщень електронною поштою", + notify_me_when: "Повідомляти мене, коли", + property_changes: "Зміни властивостей", + property_changes_description: + "Повідомляти, коли змінюються властивості робочих одиниць, такі як призначення, пріоритет, оцінки чи інші.", + state_change: "Зміна стану", + state_change_description: "Повідомляти, коли робоча одиниця переходить в інший стан", + issue_completed: "Робоча одиниця завершена", + issue_completed_description: "Повідомляти лише коли робоча одиниця завершена", + comments: "Коментарі", + comments_description: "Повідомляти, коли хтось додає коментар до робочої одиниці", + mentions: "Згадки", + mentions_description: "Повідомляти лише коли хтось згадає мене у коментарі чи описі", + old_password: "Старий пароль", + general_settings: "Загальні налаштування", + sign_out: "Вийти", + signing_out: "Вихід", + active_cycles: "Активні цикли", + active_cycles_description: + "Відстежуйте цикли між проєктами, слідкуйте за пріоритетними робочими одиницями та звертайте увагу на цикли, які потребують втручання.", + on_demand_snapshots_of_all_your_cycles: "Знімки всіх ваших циклів на вимогу", + upgrade: "Підвищити", + "10000_feet_view": "Огляд з висоти 10 000 футів для всіх активних циклів.", + "10000_feet_view_description": + "Переглядайте всі поточні цикли у різних проєктах одночасно, замість перемикання між ними в кожному проєкті.", + get_snapshot_of_each_active_cycle: "Отримайте знімок кожного активного циклу.", + get_snapshot_of_each_active_cycle_description: + "Відстежуйте ключові метрики для всіх активних циклів, переглядайте їхній прогрес і порівнюйте обсяг із крайніми строками.", + compare_burndowns: "Порівнюйте burndown-графіки.", + compare_burndowns_description: "Контролюйте ефективність команд за допомогою огляду burndown-звітів кожного циклу.", + quickly_see_make_or_break_issues: "Швидко визначайте критичні робочі одиниці.", + quickly_see_make_or_break_issues_description: + "Переглядайте найпріоритетніші робочі одиниці для кожного циклу з урахуванням термінів. Усе за один клік.", + zoom_into_cycles_that_need_attention: "Зосередьтеся на циклах, що потребують уваги.", + zoom_into_cycles_that_need_attention_description: + "Одним кліком вивчайте стан будь-якого циклу, який не відповідає очікуванням.", + stay_ahead_of_blockers: "Вчасно виявляйте перешкоди.", + stay_ahead_of_blockers_description: + "Виявляйте проблеми між проєктами та залежності між циклами, які неочевидні в інших поданнях.", + analytics: "Аналітика", + workspace_invites: "Запрошення до робочого простору", + enter_god_mode: "Увійти в режим Бога", + workspace_logo: "Логотип робочого простору", + new_issue: "Нова робоча одиниця", + your_work: "Ваша робота", + drafts: "Чернетки", + projects: "Проєкти", + views: "Подання", + workspace: "Робочий простір", + archives: "Архіви", + settings: "Налаштування", + failed_to_move_favorite: "Не вдалося перемістити обране", + favorites: "Вибране", + no_favorites_yet: "Поки немає вибраного", + create_folder: "Створити папку", + new_folder: "Нова папка", + favorite_updated_successfully: "Вибране успішно оновлено", + favorite_created_successfully: "Вибране успішно створено", + folder_already_exists: "Папка вже існує", + folder_name_cannot_be_empty: "Назва папки не може бути порожньою", + something_went_wrong: "Щось пішло не так", + failed_to_reorder_favorite: "Не вдалося змінити порядок елементів у вибраному", + favorite_removed_successfully: "Вибране успішно видалено", + failed_to_create_favorite: "Не вдалося створити вибране", + failed_to_rename_favorite: "Не вдалося перейменувати вибране", + project_link_copied_to_clipboard: "Посилання на проєкт скопійовано до буфера обміну", + link_copied: "Посилання скопійовано", + add_project: "Додати проєкт", + create_project: "Створити проєкт", + failed_to_remove_project_from_favorites: "Не вдалося видалити проєкт із вибраного. Спробуйте ще раз.", + project_created_successfully: "Проєкт успішно створено", + project_created_successfully_description: "Проєкт успішно створений. Тепер ви можете почати додавати робочі одиниці.", + project_name_already_taken: "Назва проекту вже використовується.", + project_identifier_already_taken: "Ідентифікатор проекту вже використовується.", + project_cover_image_alt: "Обкладинка проєкту", + name_is_required: "Назва є обов’язковою", + title_should_be_less_than_255_characters: "Назва має бути коротшою за 255 символів", + project_name: "Назва проєкту", + project_id_must_be_at_least_1_character: "Ідентифікатор проєкту має містити принаймні 1 символ", + project_id_must_be_at_most_5_characters: "Ідентифікатор проєкту може містити максимум 5 символів", + project_id: "ID проєкту", + project_id_tooltip_content: "Допомагає унікально ідентифікувати робочі одиниці в проєкті. Макс. 5 символів.", + description_placeholder: "Опис", + only_alphanumeric_non_latin_characters_allowed: "Дозволені лише алфанумеричні та нелатинські символи.", + project_id_is_required: "ID проєкту є обов’язковим", + project_id_allowed_char: "Дозволені лише алфанумеричні та нелатинські символи.", + project_id_min_char: "ID проєкту має містити принаймні 1 символ", + project_id_max_char: "ID проєкту може містити максимум 5 символів", + project_description_placeholder: "Введіть опис проєкту", + select_network: "Вибрати мережу", + lead: "Керівник", + date_range: "Діапазон дат", + private: "Приватний", + public: "Публічний", + accessible_only_by_invite: "Доступ лише за запрошенням", + anyone_in_the_workspace_except_guests_can_join: "Будь-хто в робочому просторі, крім гостей, може приєднатися", + creating: "Створення", + creating_project: "Створення проєкту", + adding_project_to_favorites: "Додавання проєкту у вибране", + project_added_to_favorites: "Проєкт додано у вибране", + couldnt_add_the_project_to_favorites: "Не вдалося додати проєкт у вибране. Спробуйте ще раз.", + removing_project_from_favorites: "Вилучення проєкту з вибраного", + project_removed_from_favorites: "Проєкт вилучено з вибраного", + couldnt_remove_the_project_from_favorites: "Не вдалося вилучити проєкт із вибраного. Спробуйте ще раз.", + add_to_favorites: "Додати у вибране", + remove_from_favorites: "Вилучити з вибраного", + publish_project: "Опублікувати проєкт", + publish: "Опублікувати", + copy_link: "Скопіювати посилання", + leave_project: "Вийти з проєкту", + join_the_project_to_rearrange: "Приєднайтеся до проєкту, щоб змінити впорядкування", + drag_to_rearrange: "Перетягніть для впорядкування", + congrats: "Вітаємо!", + open_project: "Відкрити проєкт", + issues: "Робочі одиниці", + cycles: "Цикли", + modules: "Модулі", + pages: "Сторінки", + intake: "Надходження", + time_tracking: "Відстеження часу", + work_management: "Управління роботою", + projects_and_issues: "Проєкти та робочі одиниці", + projects_and_issues_description: "Увімкніть або вимкніть ці функції в проєкті.", + cycles_description: + "Обмежуйте роботу в часі для кожного проєкту та за потреби коригуйте період. Один цикл може тривати 2 тижні, наступний — 1 тиждень.", + modules_description: "Організуйте роботу в підпроєкти з окремими керівниками та виконавцями.", + views_description: "Зберігайте власні сортування, фільтри та варіанти відображення або діліться ними з командою.", + pages_description: "Створюйте та редагуйте довільний вміст: нотатки, документи, що завгодно.", + intake_description: + "Дозвольте неучасникам ділитися помилками, відгуками й пропозиціями без порушення робочого процесу.", + time_tracking_description: "Фіксуйте час, витрачений на робочі одиниці та проєкти.", + work_management_description: "Зручно керуйте своєю роботою та проєктами.", + documentation: "Документація", + message_support: "Звернутися в підтримку", + contact_sales: "Зв’язатися з відділом продажів", + hyper_mode: "Гіпер-режим", + keyboard_shortcuts: "Гарячі клавіші", + whats_new: "Що нового?", + version: "Версія", + we_are_having_trouble_fetching_the_updates: "Виникли проблеми з отриманням оновлень.", + our_changelogs: "наш журнал змін", + for_the_latest_updates: "для найсвіжіших оновлень.", + please_visit: "Будь ласка, відвідайте", + docs: "Документацію", + full_changelog: "Повний журнал змін", + support: "Підтримка", + discord: "Discord", + powered_by_plane_pages: "Працює на Plane Pages", + please_select_at_least_one_invitation: "Виберіть принаймні одне запрошення.", + please_select_at_least_one_invitation_description: + "Виберіть принаймні одне запрошення, щоб приєднатися до робочого простору.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Ми бачимо, що вас запросили приєднатися до робочого простору", + join_a_workspace: "Приєднатися до робочого простору", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Ми бачимо, що вас запросили приєднатися до робочого простору", + join_a_workspace_description: "Приєднатися до робочого простору", + accept_and_join: "Прийняти та приєднатися", + go_home: "Головна", + no_pending_invites: "Немає активних запрошень", + you_can_see_here_if_someone_invites_you_to_a_workspace: "Тут з’являтимуться запрошення до робочого простору", + back_to_home: "Повернутися на головну", + workspace_name: "назва-робочого-простору", + deactivate_your_account: "Деактивувати ваш обліковий запис", + deactivate_your_account_description: + "Після деактивації вас не можна буде призначати на робочі одиниці, і з вас не стягуватиметься плата за робочий простір. Щоб знову активувати обліковий запис, потрібно отримати запрошення на цей e-mail.", + deactivating: "Деактивація", + confirm: "Підтвердити", + confirming: "Підтвердження", + draft_created: "Чернетку створено", + issue_created_successfully: "Робочу одиницю успішно створено", + draft_creation_failed: "Не вдалося створити чернетку", + issue_creation_failed: "Не вдалося створити робочу одиницю", + draft_issue: "Чернетка робочої одиниці", + issue_updated_successfully: "Робочу одиницю успішно оновлено", + issue_could_not_be_updated: "Не вдалося оновити робочу одиницю", + create_a_draft: "Створити чернетку", + save_to_drafts: "Зберегти до чернеток", + save: "Зберегти", + update: "Оновити", + updating: "Оновлення", + create_new_issue: "Створити нову робочу одиницю", + editor_is_not_ready_to_discard_changes: "Редактор ще не готовий скасувати зміни", + failed_to_move_issue_to_project: "Не вдалося перемістити робочу одиницю до проєкту", + create_more: "Створити ще", + add_to_project: "Додати до проєкту", + discard: "Скасувати", + duplicate_issue_found: "Знайдено дублікат робочої одиниці", + duplicate_issues_found: "Знайдено дублікати робочих одиниць", + no_matching_results: "Немає відповідних результатів", + title_is_required: "Назва є обов’язковою", + title: "Назва", + state: "Стан", + priority: "Пріоритет", + none: "Немає", + urgent: "Терміновий", + high: "Високий", + medium: "Середній", + low: "Низький", + members: "Учасники", + assignee: "Призначено", + assignees: "Призначені", + you: "Ви", + labels: "Мітки", + create_new_label: "Створити нову мітку", + start_date: "Дата початку", + end_date: "Дата завершення", + due_date: "Крайній термін", + estimate: "Оцінка", + change_parent_issue: "Змінити батьківську робочу одиницю", + remove_parent_issue: "Вилучити батьківську робочу одиницю", + add_parent: "Додати батьківську", + loading_members: "Завантаження учасників", + view_link_copied_to_clipboard: "Посилання на подання скопійовано до буфера обміну.", + required: "Обов’язково", + optional: "Необов’язково", + Cancel: "Скасувати", + edit: "Редагувати", + archive: "Заархівувати", + restore: "Відновити", + open_in_new_tab: "Відкрити в новій вкладці", + delete: "Видалити", + deleting: "Видалення", + make_a_copy: "Зробити копію", + move_to_project: "Перемістити в проєкт", + good: "Доброго", + morning: "ранку", + afternoon: "дня", + evening: "вечора", + show_all: "Показати все", + show_less: "Показати менше", + no_data_yet: "Поки що немає даних", + syncing: "Синхронізація", + add_work_item: "Додати робочу одиницю", + advanced_description_placeholder: "Натисніть '/' для команд", + create_work_item: "Створити робочу одиницю", + attachments: "Вкладення", + declining: "Відхилення", + declined: "Відхилено", + decline: "Відхилити", + unassigned: "Не призначено", + work_items: "Робочі одиниці", + add_link: "Додати посилання", + points: "Бали", + no_assignee: "Без призначення", + no_assignees_yet: "Поки немає призначених", + no_labels_yet: "Поки немає міток", + ideal: "Ідеальний", + current: "Поточний", + no_matching_members: "Немає відповідних учасників", + leaving: "Вихід", + removing: "Вилучення", + leave: "Вийти", + refresh: "Оновити", + refreshing: "Оновлення", + refresh_status: "Оновити статус", + prev: "Попередній", + next: "Наступний", + re_generating: "Повторне генерування", + re_generate: "Повторно згенерувати", + re_generate_key: "Повторно згенерувати ключ", + export: "Експортувати", + member: "{count, plural, one{# учасник} few{# учасники} other{# учасників}}", + new_password_must_be_different_from_old_password: "Новий пароль повинен бути відмінним від старого пароля", + edited: "Редагувано", + bot: "Бот", + project_view: { + sort_by: { + created_at: "Створено", + updated_at: "Оновлено", + name: "Назва", + }, + }, + toast: { + success: "Успіх!", + error: "Помилка!", + }, + links: { + toasts: { + created: { + title: "Посилання створено", + message: "Посилання було успішно створено", + }, + not_created: { + title: "Посилання не створено", + message: "Не вдалося створити посилання", + }, + updated: { + title: "Посилання оновлено", + message: "Посилання було успішно оновлено", + }, + not_updated: { + title: "Посилання не оновлено", + message: "Не вдалося оновити посилання", + }, + removed: { + title: "Посилання видалено", + message: "Посилання було успішно видалено", + }, + not_removed: { + title: "Посилання не видалено", + message: "Не вдалося видалити посилання", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Ваш посібник із швидкого старту", + not_right_now: "Зараз не треба", + create_project: { + title: "Створити проєкт", + description: "Більшість речей починається з проєкту в Plane.", + cta: "Почати", + }, + invite_team: { + title: "Запросити команду", + description: "Співпрацюйте з колегами у створенні, постачанні та керуванні.", + cta: "Запросити їх", + }, + configure_workspace: { + title: "Налаштуйте свій робочий простір.", + description: "Увімкніть або вимкніть функції чи зайдіть далі.", + cta: "Налаштувати цей простір", + }, + personalize_account: { + title: "Налаштуйте Plane під себе.", + description: "Оберіть картинку, кольори та інше.", + cta: "Налаштувати зараз", + }, + widgets: { + title: "Без віджетів трохи порожньо, увімкніть їх", + description: "Схоже, що всі ваші віджети вимкнені. Увімкніть їх\nдля покращеного досвіду!", + primary_button: { + text: "Керувати віджетами", + }, + }, + }, + quick_links: { + empty: "Збережіть посилання на важливі речі, які хочете мати під рукою.", + add: "Додати швидке посилання", + title: "Швидке посилання", + title_plural: "Швидкі посилання", + }, + recents: { + title: "Нещодавні", + empty: { + project: "Ваші нещодавні проєкти з’являться тут після перегляду.", + page: "Ваші нещодавні сторінки з’являться тут після перегляду.", + issue: "Ваші нещодавні робочі одиниці з’являться тут після перегляду.", + default: "Поки у вас немає нещодавніх елементів.", + }, + filters: { + all: "Усі", + projects: "Проєкти", + pages: "Сторінки", + issues: "Робочі одиниці", + }, + }, + new_at_plane: { + title: "Новинки в Plane", + }, + quick_tutorial: { + title: "Швидкий посібник", + }, + widget: { + reordered_successfully: "Віджет успішно переміщено.", + reordering_failed: "Сталася помилка під час переміщення віджета.", + }, + manage_widgets: "Керувати віджетами", + title: "Головна", + star_us_on_github: "Оцініть нас на GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "Неприпустимий URL", + placeholder: "Введіть або вставте URL", + }, + title: { + text: "Відображувана назва", + placeholder: "Як ви хочете бачити це посилання", + }, + }, + }, + common: { + all: "Усе", + states: "Стани", + state: "Стан", + state_groups: "Групи станів", + state_group: "Група станів", + priorities: "Пріоритети", + priority: "Пріоритет", + team_project: "Командний проєкт", + project: "Проєкт", + cycle: "Цикл", + cycles: "Цикли", + module: "Модуль", + modules: "Модулі", + labels: "Мітки", + label: "Мітка", + assignees: "Призначені", + assignee: "Призначено", + created_by: "Створено", + none: "Немає", + link: "Посилання", + estimates: "Оцінки", + estimate: "Оцінка", + created_at: "Створено", + completed_at: "Завершено", + layout: "Розташування", + filters: "Фільтри", + display: "Відображення", + load_more: "Завантажити ще", + activity: "Активність", + analytics: "Аналітика", + dates: "Дати", + success: "Успіх!", + something_went_wrong: "Щось пішло не так", + error: { + label: "Помилка!", + message: "Сталася помилка. Спробуйте ще раз.", + }, + group_by: "Групувати за", + epic: "Епік", + epics: "Епіки", + work_item: "Робоча одиниця", + work_items: "Робочі одиниці", + sub_work_item: "Похідна робоча одиниця", + add: "Додати", + warning: "Попередження", + updating: "Оновлення", + adding: "Додавання", + update: "Оновити", + creating: "Створення", + create: "Створити", + cancel: "Скасувати", + description: "Опис", + title: "Назва", + attachment: "Вкладення", + general: "Загальне", + features: "Функції", + automation: "Автоматизація", + project_name: "Назва проєкту", + project_id: "ID проєкту", + project_timezone: "Часовий пояс проєкту", + created_on: "Створено", + update_project: "Оновити проєкт", + identifier_already_exists: "Такий ідентифікатор уже існує", + add_more: "Додати ще", + defaults: "Типові", + add_label: "Додати мітку", + customize_time_range: "Налаштувати діапазон часу", + loading: "Завантаження", + attachments: "Вкладення", + property: "Властивість", + properties: "Властивості", + parent: "Батьківська", + page: "Сторінка", + remove: "Вилучити", + archiving: "Архівація", + archive: "Заархівувати", + access: { + public: "Публічний", + private: "Приватний", + }, + done: "Готово", + sub_work_items: "Похідні робочі одиниці", + comment: "Коментар", + workspace_level: "Рівень робочого простору", + order_by: { + label: "Сортувати за", + manual: "Вручну", + last_created: "Останні створені", + last_updated: "Останні оновлені", + start_date: "Дата початку", + due_date: "Крайній термін", + asc: "За зростанням", + desc: "За спаданням", + updated_on: "Оновлено", + }, + sort: { + asc: "За зростанням", + desc: "За спаданням", + created_on: "Створено", + updated_on: "Оновлено", + }, + comments: "Коментарі", + updates: "Оновлення", + clear_all: "Очистити все", + copied: "Скопійовано!", + link_copied: "Посилання скопійовано!", + link_copied_to_clipboard: "Посилання скопійовано до буфера обміну", + copied_to_clipboard: "Посилання на робочу одиницю скопійовано до буфера", + is_copied_to_clipboard: "Робочу одиницю скопійовано до буфера", + no_links_added_yet: "Поки що немає доданих посилань", + add_link: "Додати посилання", + links: "Посилання", + go_to_workspace: "Перейти до робочого простору", + progress: "Прогрес", + optional: "Необов’язково", + join: "Приєднатися", + go_back: "Назад", + continue: "Продовжити", + resend: "Надіслати повторно", + relations: "Зв’язки", + errors: { + default: { + title: "Помилка!", + message: "Щось пішло не так. Будь ласка, спробуйте ще раз.", + }, + required: "Це поле є обов'язковим", + entity_required: "{entity} є обов'язковим", + restricted_entity: "{entity} обмежено", + }, + update_link: "Оновити посилання", + attach: "Прикріпити", + create_new: "Створити новий", + add_existing: "Додати існуючий", + type_or_paste_a_url: "Введіть або вставте URL", + url_is_invalid: "Некоректний URL", + display_title: "Відображувана назва", + link_title_placeholder: "Як ви хочете бачити це посилання", + url: "URL", + side_peek: "Бічний перегляд", + modal: "Модальне вікно", + full_screen: "Повноекранний режим", + close_peek_view: "Закрити перегляд", + toggle_peek_view_layout: "Перемкнути режим перегляду", + options: "Параметри", + duration: "Тривалість", + today: "Сьогодні", + week: "Тиждень", + month: "Місяць", + quarter: "Квартал", + press_for_commands: "Натисніть '/' для команд", + click_to_add_description: "Натисніть, щоб додати опис", + search: { + label: "Пошук", + placeholder: "Введіть пошуковий запит", + no_matches_found: "Немає збігів", + no_matching_results: "Немає відповідних результатів", + }, + actions: { + edit: "Редагувати", + make_a_copy: "Зробити копію", + open_in_new_tab: "Відкрити в новій вкладці", + copy_link: "Скопіювати посилання", + archive: "Заархівувати", + restore: "Відновити", + delete: "Видалити", + remove_relation: "Вилучити зв’язок", + subscribe: "Підписатися", + unsubscribe: "Скасувати підписку", + clear_sorting: "Скинути сортування", + show_weekends: "Показати вихідні", + enable: "Увімкнути", + disable: "Вимкнути", + }, + name: "Назва", + discard: "Скасувати", + confirm: "Підтвердити", + confirming: "Підтвердження", + read_the_docs: "Прочитати документацію", + default: "Типове", + active: "Активний", + enabled: "Увімкнено", + disabled: "Вимкнено", + mandate: "Мандат", + mandatory: "Обов’язково", + yes: "Так", + no: "Ні", + please_wait: "Будь ласка, зачекайте", + enabling: "Увімкнення", + disabling: "Вимкнення", + beta: "Бета", + or: "або", + next: "Далі", + back: "Назад", + cancelling: "Скасування", + configuring: "Налаштування", + clear: "Очистити", + import: "Імпортувати", + connect: "Підключити", + authorizing: "Авторизація", + processing: "Обробка", + no_data_available: "Немає доступних даних", + from: "від {name}", + authenticated: "Автентифіковано", + select: "Вибрати", + upgrade: "Підвищити", + add_seats: "Додати місця", + projects: "Проєкти", + workspace: "Робочий простір", + workspaces: "Робочі простори", + team: "Команда", + teams: "Команди", + entity: "Сутність", + entities: "Сутності", + task: "Завдання", + tasks: "Завдання", + section: "Розділ", + sections: "Розділи", + edit: "Редагувати", + connecting: "Підключення", + connected: "Підключено", + disconnect: "Відключити", + disconnecting: "Відключення", + installing: "Встановлення", + install: "Встановити", + reset: "Скинути", + live: "Наживо", + change_history: "Історія змін", + coming_soon: "Незабаром", + member: "Учасник", + members: "Учасники", + you: "Ви", + upgrade_cta: { + higher_subscription: "Підвищити до вищого плану", + talk_to_sales: "Зв’язатися з відділом продажів", + }, + category: "Категорія", + categories: "Категорії", + saving: "Збереження", + save_changes: "Зберегти зміни", + delete: "Видалити", + deleting: "Видалення", + pending: "Очікує", + invite: "Запросити", + view: "Подання", + deactivated_user: "Деактивований користувач", + apply: "Застосувати", + applying: "Застосовується", + users: "Користувачі", + admins: "Адміністратори", + guests: "Гості", + on_track: "У межах графіку", + off_track: "Поза графіком", + at_risk: "Під загрозою", + timeline: "Хронологія", + completion: "Завершення", + upcoming: "Майбутнє", + completed: "Завершено", + in_progress: "В процесі", + planned: "Заплановано", + paused: "Призупинено", + no_of: "Кількість {entity}", + resolved: "Вирішено", + }, + chart: { + x_axis: "Вісь X", + y_axis: "Вісь Y", + metric: "Метрика", + }, + form: { + title: { + required: "Назва є обов’язковою", + max_length: "Назва має бути коротшою за {length} символів", + }, + }, + entity: { + grouping_title: "Групування {entity}", + priority: "Пріоритет {entity}", + all: "Усі {entity}", + drop_here_to_move: "Перетягніть сюди для переміщення {entity}", + delete: { + label: "Видалити {entity}", + success: "{entity} успішно видалено", + failed: "Не вдалося видалити {entity}", + }, + update: { + failed: "Не вдалося оновити {entity}", + success: "{entity} успішно оновлено", + }, + link_copied_to_clipboard: "Посилання на {entity} скопійовано до буфера обміну", + fetch: { + failed: "Помилка під час завантаження {entity}", + }, + add: { + success: "{entity} успішно додано", + failed: "Помилка під час додавання {entity}", + }, + remove: { + success: "{entity} успішно видалено", + failed: "Помилка під час видалення {entity}", + }, + }, + epic: { + all: "Усі епіки", + label: "{count, plural, one {Епік} other {Епіки}}", + new: "Новий епік", + adding: "Додавання епіку", + create: { + success: "Епік успішно створено", + }, + add: { + press_enter: "Натисніть 'Enter', щоб додати ще один епік", + label: "Додати епік", + }, + title: { + label: "Назва епіку", + required: "Назва епіку є обов’язковою.", + }, + }, + issue: { + label: "{count, plural, one {Робоча одиниця} few {Робочі одиниці} other {Робочих одиниць}}", + all: "Усі робочі одиниці", + edit: "Редагувати робочу одиницю", + title: { + label: "Назва робочої одиниці", + required: "Назва робочої одиниці є обов’язковою.", + }, + add: { + press_enter: "Натисніть 'Enter', щоб додати ще одну робочу одиницю", + label: "Додати робочу одиницю", + cycle: { + failed: "Не вдалося додати робочу одиницю в цикл. Спробуйте ще раз.", + success: "{count, plural, one {Робоча одиниця} few {Робочі одиниці} other {Робочих одиниць}} додано до циклу.", + loading: + "Додавання {count, plural, one {робочої одиниці} few {робочих одиниць} other {робочих одиниць}} до циклу", + }, + assignee: "Додати призначеного", + start_date: "Додати дату початку", + due_date: "Додати крайній термін", + parent: "Додати батьківську робочу одиницю", + sub_issue: "Додати похідну робочу одиницю", + relation: "Додати зв’язок", + link: "Додати посилання", + existing: "Додати наявну робочу одиницю", + }, + remove: { + label: "Видалити робочу одиницю", + cycle: { + loading: "Вилучення робочої одиниці з циклу", + success: "Робочу одиницю вилучено з циклу.", + failed: "Не вдалося вилучити робочу одиницю з циклу. Спробуйте ще раз.", + }, + module: { + loading: "Вилучення робочої одиниці з модуля", + success: "Робочу одиницю вилучено з модуля.", + failed: "Не вдалося вилучити робочу одиницю з модуля. Спробуйте ще раз.", + }, + parent: { + label: "Вилучити батьківську робочу одиницю", + }, + }, + new: "Нова робоча одиниця", + adding: "Додавання робочої одиниці", + create: { + success: "Робочу одиницю успішно створено", + }, + priority: { + urgent: "Терміновий", + high: "Високий", + medium: "Середній", + low: "Низький", + }, + display: { + properties: { + label: "Відображувані властивості", + id: "ID", + issue_type: "Тип робочої одиниці", + sub_issue_count: "Кількість похідних", + attachment_count: "Кількість вкладень", + created_on: "Створено", + sub_issue: "Похідна одиниця", + work_item_count: "Кількість робочих одиниць", + }, + extra: { + show_sub_issues: "Показати похідні робочі одиниці", + show_empty_groups: "Показати порожні групи", + }, + }, + layouts: { + ordered_by_label: "Це розташування відсортоване за", + list: "Список", + kanban: "Дошка", + calendar: "Календар", + spreadsheet: "Таблиця", + gantt: "Діаграма Ганта", + title: { + list: "Спискове розташування", + kanban: "Розташування «Дошка»", + calendar: "Розташування «Календар»", + spreadsheet: "Табличне розташування", + gantt: "Розташування «Діаграма Ганта»", + }, + }, + states: { + active: "Активно", + backlog: "Backlog", + }, + comments: { + placeholder: "Додати коментар", + switch: { + private: "Перемкнути на приватний коментар", + public: "Перемкнути на публічний коментар", + }, + create: { + success: "Коментар успішно створено", + error: "Не вдалося створити коментар. Спробуйте пізніше.", + }, + update: { + success: "Коментар успішно оновлено", + error: "Не вдалося оновити коментар. Спробуйте пізніше.", + }, + remove: { + success: "Коментар успішно видалено", + error: "Не вдалося видалити коментар. Спробуйте пізніше.", + }, + upload: { + error: "Не вдалося завантажити вкладення. Спробуйте пізніше.", + }, + copy_link: { + success: "Посилання на коментар скопійовано в буфер обміну", + error: "Помилка при копіюванні посилання на коментар. Спробуйте пізніше.", + }, + }, + empty_state: { + issue_detail: { + title: "Робоча одиниця не існує", + description: "Шукана робоча одиниця не існує, була заархівована або видалена.", + primary_button: { + text: "Переглянути інші робочі одиниці", + }, + }, + }, + sibling: { + label: "Пов’язані робочі одиниці", + }, + archive: { + description: "Архівувати можна лише завершені або скасовані\nробочі одиниці", + label: "Заархівувати робочу одиницю", + confirm_message: "Справді заархівувати цю робочу одиницю? Усі заархівовані одиниці можна пізніше відновити.", + success: { + label: "Успішно заархівовано", + message: "Ваші архіви можна знайти в архівах проєкту.", + }, + failed: { + message: "Не вдалося заархівувати робочу одиницю. Спробуйте ще раз.", + }, + }, + restore: { + success: { + title: "Успішне відновлення", + message: "Ваша робоча одиниця тепер доступна серед робочих одиниць проєкту.", + }, + failed: { + message: "Не вдалося відновити робочу одиницю. Спробуйте ще раз.", + }, + }, + relation: { + relates_to: "Пов’язана з", + duplicate: "Дублікат", + blocked_by: "Заблокована", + blocking: "Блокує", + }, + copy_link: "Скопіювати посилання на робочу одиницю", + delete: { + label: "Видалити робочу одиницю", + error: "Помилка під час видалення робочої одиниці", + }, + subscription: { + actions: { + subscribed: "Ви підписалися на оновлення робочої одиниці", + unsubscribed: "Ви скасували підписку на оновлення робочої одиниці", + }, + }, + select: { + error: "Виберіть принаймні одну робочу одиницю", + empty: "Не вибрано жодної робочої одиниці", + add_selected: "Додати вибрані робочі одиниці", + select_all: "Вибрати всі", + deselect_all: "Скасувати вибір усіх", + }, + open_in_full_screen: "Відкрити робочу одиницю на повний екран", + }, + attachment: { + error: "Не вдалося додати файл. Спробуйте ще раз.", + only_one_file_allowed: "Можна завантажити лише один файл одночасно.", + file_size_limit: "Файл має бути меншим за {size}МБ.", + drag_and_drop: "Перетягніть файл сюди для завантаження", + delete: "Видалити вкладення", + }, + label: { + select: "Вибрати мітку", + create: { + success: "Мітку успішно створено", + failed: "Не вдалося створити мітку", + already_exists: "Така мітка вже існує", + type: "Введіть для створення нової мітки", + }, + }, + sub_work_item: { + update: { + success: "Похідну робочу одиницю успішно оновлено", + error: "Помилка під час оновлення похідної одиниці", + }, + remove: { + success: "Похідну робочу одиницю успішно вилучено", + error: "Помилка під час вилучення похідної одиниці", + }, + empty_state: { + sub_list_filters: { + title: "Ви не маєте похідних робочих одиниць, які відповідають застосованим фільтрам.", + description: "Щоб побачити всі похідні робочі одиниці, очистіть всі застосовані фільтри.", + action: "Очистити фільтри", + }, + list_filters: { + title: "Ви не маєте робочих одиниць, які відповідають застосованим фільтрам.", + description: "Щоб побачити всі робочі одиниці, очистіть всі застосовані фільтри.", + action: "Очистити фільтри", + }, + }, + }, + view: { + label: "{count, plural, one {Подання} few {Подання} other {Подань}}", + create: { + label: "Створити подання", + }, + update: { + label: "Оновити подання", + }, + }, + inbox_issue: { + status: { + pending: { + title: "В очікуванні", + description: "В очікуванні", + }, + declined: { + title: "Відхилено", + description: "Відхилено", + }, + snoozed: { + title: "Відкладено", + description: "Залишилося {days, plural, one{# день} few{# дні} other{# днів}}", + }, + accepted: { + title: "Прийнято", + description: "Прийнято", + }, + duplicate: { + title: "Дублікат", + description: "Дублікат", + }, + }, + modals: { + decline: { + title: "Відхилити робочу одиницю", + content: "Справді відхилити робочу одиницю {value}?", + }, + delete: { + title: "Видалити робочу одиницю", + content: "Справді видалити робочу одиницю {value}?", + success: "Робочу одиницю успішно видалено", + }, + }, + errors: { + snooze_permission: "Лише адміністратори проєкту можуть відкладати/повертати відкладені робочі одиниці", + accept_permission: "Лише адміністратори проєкту можуть приймати робочі одиниці", + decline_permission: "Лише адміністратори проєкту можуть відхилити робочі одиниці", + }, + actions: { + accept: "Прийняти", + decline: "Відхилити", + snooze: "Відкласти", + unsnooze: "Повернути з відкладених", + copy: "Скопіювати посилання на робочу одиницю", + delete: "Видалити", + open: "Відкрити робочу одиницю", + mark_as_duplicate: "Позначити як дублікат", + move: "Перемістити {value} до робочих одиниць проєкту", + }, + source: { + "in-app": "в застосунку", + }, + order_by: { + created_at: "Створено", + updated_at: "Оновлено", + id: "ID", + }, + label: "Надходження", + page_label: "{workspace} - Надходження", + modal: { + title: "Створити прийняту робочу одиницю", + }, + tabs: { + open: "Відкриті", + closed: "Закриті", + }, + empty_state: { + sidebar_open_tab: { + title: "Немає відкритих робочих одиниць", + description: "Тут будуть відкриті робочі одиниці. Створіть нову.", + }, + sidebar_closed_tab: { + title: "Немає закритих робочих одиниць", + description: "Усі прийняті або відхилені робочі одиниці будуть тут.", + }, + sidebar_filter: { + title: "Немає робочих одиниць за фільтром", + description: "Немає одиниць, що відповідають фільтру у надходженнях. Створіть нову.", + }, + detail: { + title: "Виберіть робочу одиницю для перегляду деталей.", + }, + }, + }, + workspace_creation: { + heading: "Створіть робочий простір", + subheading: "Щоб користуватися Plane, вам потрібно створити або приєднатися до робочого простору.", + form: { + name: { + label: "Назвіть свій робочий простір", + placeholder: "Добре підійде щось знайоме та впізнаване.", + }, + url: { + label: "Встановіть URL вашого простору", + placeholder: "Введіть або вставте URL", + edit_slug: "Ви можете відредагувати лише частину URL (slug)", + }, + organization_size: { + label: "Скільки людей користуватиметься цим простором?", + placeholder: "Виберіть діапазон", + }, + }, + errors: { + creation_disabled: { + title: "Тільки адміністратор інстанції може створювати робочі простори", + description: + "Якщо ви знаєте електронну адресу адміністратора інстанції, натисніть кнопку нижче, щоб зв’язатися з ним.", + request_button: "Запитати адміністратора інстанції", + }, + validation: { + name_alphanumeric: "Назви робочих просторів можуть містити лише (' '), ('-'), ('_') і алфанумеричні символи.", + name_length: "Назва обмежена 80 символами.", + url_alphanumeric: "URL може містити лише ('-') та алфанумеричні символи.", + url_length: "URL обмежений 48 символами.", + url_already_taken: "URL робочого простору вже зайнято!", + }, + }, + request_email: { + subject: "Запит на новий робочий простір", + body: "Привіт, адміністраторе,\n\nБудь ласка, створіть новий робочий простір з URL [/workspace-name] для [мета створення].\n\nДякую,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Створити робочий простір", + loading: "Створення робочого простору", + }, + toast: { + success: { + title: "Успіх", + message: "Робочий простір успішно створено", + }, + error: { + title: "Помилка", + message: "Не вдалося створити робочий простір. Спробуйте ще раз.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Огляд проєктів, активностей і метрик", + description: + "Ласкаво просимо до Plane, ми раді, що ви з нами. Створіть перший проєкт, додайте робочі одиниці — і ця сторінка заповниться вашим прогресом. Адміністратори побачать тут також важливі елементи для команди.", + primary_button: { + text: "Створіть перший проєкт", + comic: { + title: "Усе починається з проєкту в Plane", + description: + "Проєкт може бути дорожньою картою продукту, маркетинговою кампанією або розробкою нового автомобіля.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Аналітика", + page_label: "{workspace} - Аналітика", + open_tasks: "Усього відкритих завдань", + error: "Сталася помилка під час завантаження даних.", + work_items_closed_in: "Робочі одиниці, закриті в", + selected_projects: "Вибрані проєкти", + total_members: "Усього учасників", + total_cycles: "Усього циклів", + total_modules: "Усього модулів", + pending_work_items: { + title: "Робочі одиниці, що очікують", + empty_state: "Тут буде аналітика щодо робочих одиниць у розрізі виконавців.", + }, + work_items_closed_in_a_year: { + title: "Робочі одиниці, закриті за рік", + empty_state: "Закривайте одиниці, щоб побачити аналітику в графіку.", + }, + most_work_items_created: { + title: "Найбільше створених одиниць", + empty_state: "Тут відображатимуться виконавці та кількість створених ними одиниць.", + }, + most_work_items_closed: { + title: "Найбільше закритих одиниць", + empty_state: "Тут відображатимуться виконавці та кількість закритих ними одиниць.", + }, + tabs: { + scope_and_demand: "Обсяг і попит", + custom: "Користувацька аналітика", + }, + empty_state: { + customized_insights: { + description: "Призначені вам робочі елементи, розбиті за станом, з’являться тут.", + title: "Ще немає даних", + }, + created_vs_resolved: { + description: "Створені та вирішені з часом робочі елементи з’являться тут.", + title: "Ще немає даних", + }, + project_insights: { + title: "Ще немає даних", + description: "Призначені вам робочі елементи, розбиті за станом, з’являться тут.", + }, + general: { + title: + "Відстежуйте прогрес, робочу навантаженні та розподіл. Виявляйте тенденції, усувайте перешкоди та прискорюйте роботу", + description: + "Перегляньте обсяг проти попиту, оцінки та розповсюдження обсягу. Отримайте продуктивність членів команди та команд, щоб переконатися, що ваш проєкт виконується вчасно.", + primary_button: { + text: "Розпочніть свій перший проєкт", + comic: { + title: "Аналітика найкраще працює з циклами + модулями", + description: + "Спочатку обмежте свої робочі елементи часом у циклах та, якщо можливо, згрупуйте робочі елементи, які перевищують один цикл, у модулі. Перегляньте обидва в навігації зліва.", + }, + }, + }, + }, + created_vs_resolved: "Створено vs Вирішено", + customized_insights: "Персоналізовані аналітичні дані", + backlog_work_items: "{entity} у беклозі", + active_projects: "Активні проєкти", + trend_on_charts: "Тенденція на графіках", + all_projects: "Усі проєкти", + summary_of_projects: "Зведення проєктів", + project_insights: "Аналітика проєкту", + started_work_items: "Розпочаті {entity}", + total_work_items: "Усього {entity}", + total_projects: "Усього проєктів", + total_admins: "Усього адміністраторів", + total_users: "Усього користувачів", + total_intake: "Загальний дохід", + un_started_work_items: "Нерозпочаті {entity}", + total_guests: "Усього гостей", + completed_work_items: "Завершені {entity}", + total: "Усього {entity}", + }, + workspace_projects: { + label: "{count, plural, one {Проєкт} few {Проєкти} other {Проєктів}}", + create: { + label: "Додати проєкт", + }, + network: { + label: "Мережа", + private: { + title: "Приватний", + description: "Доступний лише за запрошенням", + }, + public: { + title: "Публічний", + description: "Будь-хто в просторі, крім гостей, може приєднатися", + }, + }, + error: { + permission: "У вас немає прав для цієї дії.", + cycle_delete: "Не вдалося видалити цикл", + module_delete: "Не вдалося видалити модуль", + issue_delete: "Не вдалося видалити робочу одиницю", + }, + state: { + backlog: "Backlog", + unstarted: "Не почато", + started: "Розпочато", + completed: "Завершено", + cancelled: "Скасовано", + }, + sort: { + manual: "Вручну", + name: "Назва", + created_at: "Дата створення", + members_length: "Кількість учасників", + }, + scope: { + my_projects: "Мої проєкти", + archived_projects: "Заархівовані", + }, + common: { + months_count: "{months, plural, one{# місяць} few{# місяці} other{# місяців}}", + }, + empty_state: { + general: { + title: "Немає активних проєктів", + description: + "Проєкт є базовою одиницею цілей. У проєкті є завдання, Цикли та Модулі. Створіть новий проєкт або перемкніть фільтр на заархівовані.", + primary_button: { + text: "Розпочати перший проєкт", + comic: { + title: "Усе починається з проєкту в Plane", + description: + "Проєкт може бути дорожньою картою продукту, маркетинговою кампанією або розробкою нового авто.", + }, + }, + }, + no_projects: { + title: "Немає проєктів", + description: "Щоб створювати робочі одиниці, потрібно створити або приєднатися до проєкту.", + primary_button: { + text: "Розпочати перший проєкт", + comic: { + title: "Усе починається з проєкту в Plane", + description: + "Проєкт може бути дорожньою картою продукту, маркетинговою кампанією або розробкою нового авто.", + }, + }, + }, + filter: { + title: "Немає проєктів за цим фільтром", + description: "Не знайдено проєктів, що відповідають критеріям.\nСтворіть новий.", + }, + search: { + description: "Не знайдено проєктів, що відповідають критеріям.\nСтворіть новий.", + }, + }, + }, + workspace_views: { + add_view: "Додати подання", + empty_state: { + "all-issues": { + title: "Немає робочих одиниць у проєкті", + description: "Створіть першу одиницю та відстежуйте прогрес!", + primary_button: { + text: "Створити робочу одиницю", + }, + }, + assigned: { + title: "Немає призначених одиниць", + description: "Тут відображатимуться одиниці, призначені вам.", + primary_button: { + text: "Створити робочу одиницю", + }, + }, + created: { + title: "Немає створених одиниць", + description: "Тут відображатимуться одиниці, які ви створили.", + primary_button: { + text: "Створити робочу одиницю", + }, + }, + subscribed: { + title: "Немає підписаних одиниць", + description: "Підпишіться на одиниці, які вас цікавлять.", + }, + "custom-view": { + title: "Немає одиниць за заданим фільтром", + description: "Тут з’являться одиниці, що відповідають фільтру.", + }, + }, + }, + workspace_settings: { + label: "Налаштування робочого простору", + page_label: "{workspace} - Загальні налаштування", + key_created: "Ключ створено", + copy_key: + "Скопіюйте й збережіть цей ключ для Plane Pages. Після закриття ви його більше не побачите. CSV-файл із ключем було завантажено.", + token_copied: "Токен скопійовано до буфера.", + settings: { + general: { + title: "Загальне", + upload_logo: "Завантажити логотип", + edit_logo: "Редагувати логотип", + name: "Назва робочого простору", + company_size: "Розмір компанії", + url: "URL робочого простору", + update_workspace: "Оновити простір", + delete_workspace: "Видалити цей простір", + delete_workspace_description: "Видалення простору призведе до втрати всіх даних і ресурсів. Дія незворотна.", + delete_btn: "Видалити простір", + delete_modal: { + title: "Справді видалити цей простір?", + description: "У вас активна пробна версія. Спочатку скасуйте її.", + dismiss: "Закрити", + cancel: "Скасувати пробну версію", + success_title: "Простір видалено.", + success_message: "Ви будете перенаправлені до профілю.", + error_title: "Не вдалося.", + error_message: "Спробуйте ще раз.", + }, + errors: { + name: { + required: "Назва є обов’язковою", + max_length: "Назва робочого простору не може перевищувати 80 символів", + }, + company_size: { + required: "Розмір компанії є обов’язковим", + }, + }, + }, + members: { + title: "Учасники", + add_member: "Додати учасника", + pending_invites: "Очікувані запрошення", + invitations_sent_successfully: "Запрошення успішно надіслано", + leave_confirmation: "Справді вийти з цього простору? Ви втратите доступ. Дія незворотна.", + details: { + full_name: "Повне ім’я", + display_name: "Відображуване ім’я", + email_address: "Електронна пошта", + account_type: "Тип облікового запису", + authentication: "Автентифікація", + joining_date: "Дата приєднання", + }, + modal: { + title: "Запросити колег", + description: "Запросіть людей для співпраці.", + button: "Надіслати запрошення", + button_loading: "Надсилання запрошень", + placeholder: "ім’я@компанія.ua", + errors: { + required: "Потрібно вказати адресу електронної пошти.", + invalid: "Неправильна адреса електронної пошти", + }, + }, + }, + billing_and_plans: { + title: "Платежі та плани", + current_plan: "Поточний план", + free_plan: "Ви використовуєте безкоштовний план", + view_plans: "Переглянути плани", + }, + exports: { + title: "Експорти", + exporting: "Експортування", + previous_exports: "Попередні експорти", + export_separate_files: "Експортувати дані в окремі файли", + modal: { + title: "Експортувати в", + toasts: { + success: { + title: "Експорт успішний", + message: "Ви можете завантажити експортовані {entity} у попередніх експортованих файлах.", + }, + error: { + title: "Експорт не вдався", + message: "Спробуйте ще раз.", + }, + }, + }, + }, + webhooks: { + title: "Вебхуки", + add_webhook: "Додати вебхук", + modal: { + title: "Створити вебхук", + details: "Деталі вебхука", + payload: "URL для надсилання даних", + question: "Які події мають запускати цей вебхук?", + error: "URL є обов’язковим", + }, + secret_key: { + title: "Секретний ключ", + message: "Згенеруйте токен для авторизації вебхука", + }, + options: { + all: "Надсилати все", + individual: "Вибрати окремі події", + }, + toasts: { + created: { + title: "Вебхук створено", + message: "Вебхук успішно створено", + }, + not_created: { + title: "Вебхук не створено", + message: "Не вдалося створити вебхук", + }, + updated: { + title: "Вебхук оновлено", + message: "Вебхук успішно оновлено", + }, + not_updated: { + title: "Не вдалося оновити вебхук", + message: "Не вдалося оновити вебхук", + }, + removed: { + title: "Вебхук видалено", + message: "Вебхук успішно видалено", + }, + not_removed: { + title: "Не вдалося видалити вебхук", + message: "Не вдалося видалити вебхук", + }, + secret_key_copied: { + message: "Секретний ключ скопійовано до буфера.", + }, + secret_key_not_copied: { + message: "Помилка під час копіювання ключа.", + }, + }, + }, + api_tokens: { + title: "API токени", + add_token: "Додати API токен", + create_token: "Створити токен", + never_expires: "Ніколи не спливає", + generate_token: "Згенерувати токен", + generating: "Генерація", + delete: { + title: "Видалити API токен", + description: "Застосунки, які використовують цей токен, втратять доступ. Ця дія незворотна.", + success: { + title: "Успіх!", + message: "Токен успішно видалено", + }, + error: { + title: "Помилка!", + message: "Не вдалося видалити токен", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Немає API токенів", + description: "Використовуйте API, щоб інтегрувати Plane із зовнішніми системами.", + }, + webhooks: { + title: "Немає вебхуків", + description: "Створіть вебхуки для автоматизації дій.", + }, + exports: { + title: "Немає експортів", + description: "Історія експортів з’явиться тут.", + }, + imports: { + title: "Немає імпортів", + description: "Історія імпортів з’явиться тут.", + }, + }, + }, + profile: { + label: "Профіль", + page_label: "Ваша робота", + work: "Робота", + details: { + joined_on: "Приєднався", + time_zone: "Часовий пояс", + }, + stats: { + workload: "Навантаження", + overview: "Огляд", + created: "Створені одиниці", + assigned: "Призначені одиниці", + subscribed: "Підписані одиниці", + state_distribution: { + title: "Одиниці за станом", + empty: "Створіть одиниці, щоб переглянути статистику станів.", + }, + priority_distribution: { + title: "Одиниці за пріоритетом", + empty: "Створіть одиниці, щоб переглянути статистику пріоритетів.", + }, + recent_activity: { + title: "Нещодавня активність", + empty: "Активність не знайдена.", + button: "Завантажити сьогоднішню активність", + button_loading: "Завантаження", + }, + }, + actions: { + profile: "Профіль", + security: "Безпека", + activity: "Активність", + appearance: "Зовнішній вигляд", + notifications: "Сповіщення", + }, + tabs: { + summary: "Зведення", + assigned: "Призначено", + created: "Створено", + subscribed: "Підписано", + activity: "Активність", + }, + empty_state: { + activity: { + title: "Немає активності", + description: "Створіть робочу одиницю, щоб почати.", + }, + assigned: { + title: "Немає призначених робочих одиниць", + description: "Тут будуть відображатися одиниці, призначені вам.", + }, + created: { + title: "Немає створених робочих одиниць", + description: "Тут будуть відображатися одиниці, які ви створили.", + }, + subscribed: { + title: "Немає підписаних робочих одиниць", + description: "Підпишіться на потрібні одиниці, й вони з’являться тут.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Введіть ID проєкту", + please_select_a_timezone: "Виберіть часовий пояс", + archive_project: { + title: "Заархівувати проєкт", + description: "Архівування приховає проєкт із меню. Доступ залишиться через сторінку проєктів.", + button: "Заархівувати проєкт", + }, + delete_project: { + title: "Видалити проєкт", + description: "Видалення проєкту призведе до знищення всіх даних. Дія незворотна.", + button: "Видалити проєкт", + }, + toast: { + success: "Проєкт оновлено", + error: "Не вдалося оновити. Спробуйте знову.", + }, + }, + members: { + label: "Учасники", + project_lead: "Керівник проєкту", + default_assignee: "Типовий виконавець", + guest_super_permissions: { + title: "Надати гостям доступ до всіх одиниць:", + sub_heading: "Гості бачитимуть усі одиниці у проєкті.", + }, + invite_members: { + title: "Запросити учасників", + sub_heading: "Запросіть учасників до проєкту.", + select_co_worker: "Вибрати колегу", + }, + }, + states: { + describe_this_state_for_your_members: "Опишіть цей стан для учасників.", + empty_state: { + title: "Немає станів у групі {groupKey}", + description: "Створіть новий стан", + }, + }, + labels: { + label_title: "Назва мітки", + label_title_is_required: "Назва мітки є обов’язковою", + label_max_char: "Назва мітки не може перевищувати 255 символів", + toast: { + error: "Помилка під час оновлення мітки", + }, + }, + estimates: { + label: "Оцінки", + title: "Увімкнути оцінки для мого проєкту", + description: "Вони допомагають вам повідомляти про складність та навантаження команди.", + no_estimate: "Без оцінки", + new: "Нова система оцінок", + create: { + custom: "Власний", + start_from_scratch: "Почати з нуля", + choose_template: "Вибрати шаблон", + choose_estimate_system: "Вибрати систему оцінок", + enter_estimate_point: "Введіть оцінку", + step: "Крок {step} з {total}", + label: "Створити оцінку", + }, + toasts: { + created: { + success: { + title: "Оцінку створено", + message: "Оцінку успішно створено", + }, + error: { + title: "Не вдалося створити оцінку", + message: "Не вдалося створити нову оцінку, спробуйте ще раз.", + }, + }, + updated: { + success: { + title: "Оцінку змінено", + message: "Оцінку оновлено у вашому проєкті.", + }, + error: { + title: "Не вдалося змінити оцінку", + message: "Не вдалося змінити оцінку, спробуйте ще раз", + }, + }, + enabled: { + success: { + title: "Успіх!", + message: "Оцінки увімкнено.", + }, + }, + disabled: { + success: { + title: "Успіх!", + message: "Оцінки вимкнено.", + }, + error: { + title: "Помилка!", + message: "Не вдалося вимкнути оцінку. Спробуйте ще раз", + }, + }, + }, + validation: { + min_length: "Оцінка має бути більшою за 0.", + unable_to_process: "Не вдалося обробити ваш запит, спробуйте ще раз.", + numeric: "Оцінка має бути числовим значенням.", + character: "Оцінка має бути символьним значенням.", + empty: "Значення оцінки не може бути порожнім.", + already_exists: "Таке значення оцінки вже існує.", + unsaved_changes: "У вас є незбережені зміни. Збережіть їх перед тим, як натиснути 'готово'", + remove_empty: + "Оцінка не може бути порожньою. Введіть значення в кожне поле або видаліть ті, для яких у вас немає значень.", + }, + systems: { + points: { + label: "Бали", + fibonacci: "Фібоначчі", + linear: "Лінійна", + squares: "Квадрати", + custom: "Власна", + }, + categories: { + label: "Категорії", + t_shirt_sizes: "Розміри футболок", + easy_to_hard: "Від легкого до складного", + custom: "Власна", + }, + time: { + label: "Час", + hours: "Години", + }, + }, + }, + automations: { + label: "Автоматизація", + "auto-archive": { + title: "Автоматично архівувати закриті одиниці", + description: "Plane архівуватиме завершені або скасовані одиниці.", + duration: "Архівувати одиниці, закриті понад", + }, + "auto-close": { + title: "Автоматично закривати одиниці", + description: "Plane закриватиме неактивні одиниці.", + duration: "Закривати одиниці, що неактивні понад", + auto_close_status: "Стан для автоматичного закриття", + }, + }, + empty_state: { + labels: { + title: "Немає міток", + description: "Створіть мітки для організації робочих одиниць.", + }, + estimates: { + title: "Немає систем оцінок", + description: "Створіть систему оцінок, щоб відображати навантаження.", + primary_button: "Додати систему оцінок", + }, + }, + }, + project_cycles: { + add_cycle: "Додати цикл", + more_details: "Докладніше", + cycle: "Цикл", + update_cycle: "Оновити цикл", + create_cycle: "Створити цикл", + no_matching_cycles: "Немає циклів за цим запитом", + remove_filters_to_see_all_cycles: "Приберіть фільтри, щоб побачити всі цикли", + remove_search_criteria_to_see_all_cycles: "Приберіть критерії пошуку, щоб побачити всі цикли", + only_completed_cycles_can_be_archived: "Архівувати можна лише завершені цикли", + start_date: "Дата початку", + end_date: "Дата завершення", + in_your_timezone: "У вашому часовому поясі", + transfer_work_items: "Перенести {count} робочих одиниць", + date_range: "Діапазон дат", + add_date: "Додати дату", + active_cycle: { + label: "Активний цикл", + progress: "Прогрес", + chart: "Burndown-графік", + priority_issue: "Найпріоритетніші одиниці", + assignees: "Призначені", + issue_burndown: "Burndown робочих одиниць", + ideal: "Ідеальний", + current: "Поточний", + labels: "Мітки", + }, + upcoming_cycle: { + label: "Майбутній цикл", + }, + completed_cycle: { + label: "Завершений цикл", + }, + status: { + days_left: "Залишилося днів", + completed: "Завершено", + yet_to_start: "Ще не почався", + in_progress: "У процесі", + draft: "Чернетка", + }, + action: { + restore: { + title: "Відновити цикл", + success: { + title: "Цикл відновлено", + description: "Цикл було відновлено.", + }, + failed: { + title: "Не вдалося відновити цикл", + description: "Відновити цикл не вдалося.", + }, + }, + favorite: { + loading: "Додавання у вибране", + success: { + description: "Цикл додано у вибране.", + title: "Успіх!", + }, + failed: { + description: "Не вдалося додати у вибране.", + title: "Помилка!", + }, + }, + unfavorite: { + loading: "Вилучення з вибраного", + success: { + description: "Цикл вилучено з вибраного.", + title: "Успіх!", + }, + failed: { + description: "Не вдалося вилучити з вибраного.", + title: "Помилка!", + }, + }, + update: { + loading: "Оновлення циклу", + success: { + description: "Цикл оновлено.", + title: "Успіх!", + }, + failed: { + description: "Не вдалося оновити цикл.", + title: "Помилка!", + }, + error: { + already_exists: "Цикл із цими датами вже існує. Для чернетки видаліть дати.", + }, + }, + }, + empty_state: { + general: { + title: "Групуйте роботу за циклами.", + description: "Обмежуйте роботу в часі, слідкуйте за крайніми строками та рухайтеся вперед.", + primary_button: { + text: "Створіть перший цикл", + comic: { + title: "Цикли — це повторювані періоди.", + description: "Спрайт, ітерація або будь-який інший період часу для відстеження роботи.", + }, + }, + }, + no_issues: { + title: "У циклі немає робочих одиниць", + description: "Додайте ті одиниці, які хочете відстежувати.", + primary_button: { + text: "Створити одиницю", + }, + secondary_button: { + text: "Додати наявну одиницю", + }, + }, + completed_no_issues: { + title: "У циклі немає робочих одиниць", + description: "Одиниці переміщено або приховано. Щоб побачити їх, змініть властивості.", + }, + active: { + title: "Немає активного циклу", + description: "Активний цикл — це цикл, що містить сьогоднішню дату. Відстежуйте його прогрес тут.", + }, + archived: { + title: "Немає заархівованих циклів", + description: "Заархівуйте завершені цикли, щоб не захаращувати список.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Створіть і призначте робочу одиницю", + description: "Робочі одиниці — це завдання, які ви призначаєте собі чи команді. Відстежуйте їхній прогрес.", + primary_button: { + text: "Створити першу одиницю", + comic: { + title: "Робочі одиниці — будівельні блоки", + description: "Наприклад: редизайн інтерфейсу, ребрендинг, нова система.", + }, + }, + }, + no_archived_issues: { + title: "Немає заархівованих одиниць", + description: "Архівуйте завершені чи скасовані одиниці. Налаштуйте автоматизацію.", + primary_button: { + text: "Налаштувати автоматизацію", + }, + }, + issues_empty_filter: { + title: "Немає одиниць за цим фільтром", + secondary_button: { + text: "Скинути фільтри", + }, + }, + }, + }, + project_module: { + add_module: "Додати модуль", + update_module: "Оновити модуль", + create_module: "Створити модуль", + archive_module: "Заархівувати модуль", + restore_module: "Відновити модуль", + delete_module: "Видалити модуль", + empty_state: { + general: { + title: "Об’єднуйте ключові етапи в модулі.", + description: + "Модулі структурують одиниці під окремими логічними компонентами. Відстежуйте крайні строки та прогрес.", + primary_button: { + text: "Створити перший модуль", + comic: { + title: "Модулі — це ієрархічні об’єднання.", + description: "Наприклад: модуль кошика, шасі, складу.", + }, + }, + }, + no_issues: { + title: "У модулі немає одиниць", + description: "Додайте одиниці до модуля.", + primary_button: { + text: "Створити одиниці", + }, + secondary_button: { + text: "Додати наявну одиницю", + }, + }, + archived: { + title: "Немає заархівованих модулів", + description: "Архівуйте завершені або скасовані модулі.", + }, + sidebar: { + in_active: "Модуль неактивний.", + invalid_date: "Неправильна дата. Вкажіть коректну.", + }, + }, + quick_actions: { + archive_module: "Заархівувати модуль", + archive_module_description: "Архівувати можна лише завершені/скасовані модулі.", + delete_module: "Видалити модуль", + }, + toast: { + copy: { + success: "Посилання на модуль скопійовано", + }, + delete: { + success: "Модуль видалено", + error: "Не вдалося видалити", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Зберігайте фільтри як подання.", + description: "Подання — це збережені фільтри для швидкого доступу. Діліться ними з командою.", + primary_button: { + text: "Створити перше подання", + comic: { + title: "Подання працюють з властивостями одиниць.", + description: "Створіть подання з потрібними фільтрами.", + }, + }, + }, + filter: { + title: "Немає подань за цим фільтром", + description: "Створіть нове подання.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "Пишіть нотатки, документи або базу знань із допомогою AI Galileo.", + description: + "Сторінки — це простір для ідей. Пишіть, форматуйте, вбудовуйте робочі одиниці та використовуйте компоненти.", + primary_button: { + text: "Створити першу сторінку", + }, + }, + private: { + title: "Немає приватних сторінок", + description: "Ви можете зберігати сторінки лише для себе. Поділіться, коли будете готові.", + primary_button: { + text: "Створити сторінку", + }, + }, + public: { + title: "Немає публічних сторінок", + description: "Тут з’являться сторінки, якими діляться в проєкті.", + primary_button: { + text: "Створити сторінку", + }, + }, + archived: { + title: "Немає заархівованих сторінок", + description: "Архівуйте сторінки для подальшого перегляду.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Немає результатів", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Немає відповідних одиниць", + }, + no_issues: { + title: "Немає одиниць", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Коментарів немає", + description: "Коментарі використовуються для обговорення та відстеження.", + }, + }, + }, + notification: { + label: "Скринька", + page_label: "{workspace} - Скринька", + options: { + mark_all_as_read: "Позначити все як прочитане", + mark_read: "Позначити як прочитане", + mark_unread: "Позначити як непрочитане", + refresh: "Оновити", + filters: "Фільтри скриньки", + show_unread: "Показати непрочитані", + show_snoozed: "Показати відкладені", + show_archived: "Показати заархівовані", + mark_archive: "Заархівувати", + mark_unarchive: "Повернути з архіву", + mark_snooze: "Відкласти", + mark_unsnooze: "Повернути з відкладених", + }, + toasts: { + read: "Сповіщення прочитано", + unread: "Позначено як непрочитане", + archived: "Заархівовано", + unarchived: "Повернуто з архіву", + snoozed: "Відкладено", + unsnoozed: "Повернуто з відкладених", + }, + empty_state: { + detail: { + title: "Виберіть елемент, щоб побачити деталі.", + }, + all: { + title: "Немає призначених одиниць", + description: "Тут відображатимуться оновлення щодо призначених вам одиниць.", + }, + mentions: { + title: "Немає згадок", + description: "Тут відображатимуться згадки про вас.", + }, + }, + tabs: { + all: "Усе", + mentions: "Згадки", + }, + filter: { + assigned: "Призначені мені", + created: "Створені мною", + subscribed: "Підписані мною", + }, + snooze: { + "1_day": "1 день", + "3_days": "3 дні", + "5_days": "5 днів", + "1_week": "1 тиждень", + "2_weeks": "2 тижні", + custom: "Власне", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Додайте одиниці, щоб відстежувати прогрес", + }, + chart: { + title: "Додайте одиниці, щоб побачити burndown-графік.", + }, + priority_issue: { + title: "Тут з’являться найпріоритетніші робочі одиниці.", + }, + assignee: { + title: "Призначте робочі одиниці, щоб побачити розподіл.", + }, + label: { + title: "Додайте мітки, щоб аналізувати за мітками.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Надходження не увімкнені", + description: "Увімкніть надходження в налаштуваннях проєкту, щоб керувати заявками.", + primary_button: { + text: "Керувати функціями", + }, + }, + cycle: { + title: "Цикли не увімкнені", + description: "Увімкніть цикли, щоб обмежувати роботу в часі.", + primary_button: { + text: "Керувати функціями", + }, + }, + module: { + title: "Модулі не увімкнені", + description: "Увімкніть модулі в налаштуваннях проєкту.", + primary_button: { + text: "Керувати функціями", + }, + }, + page: { + title: "Сторінки не увімкнені", + description: "Увімкніть сторінки в налаштуваннях проєкту.", + primary_button: { + text: "Керувати функціями", + }, + }, + view: { + title: "Подання не увімкнене", + description: "Увімкніть подання в налаштуваннях проєкту.", + primary_button: { + text: "Керувати функціями", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Створити чернетку одиниці", + empty_state: { + title: "Тут відображатимуться ваші чернетки одиниць та коментарів.", + description: "Почніть створювати одиницю і залиште її як чернетку.", + primary_button: { + text: "Створити першу чернетку", + }, + }, + delete_modal: { + title: "Видалити чернетку", + description: "Справді видалити цю чернетку? Дію неможливо скасувати.", + }, + toasts: { + created: { + success: "Чернетку створено", + error: "Не вдалося створити", + }, + deleted: { + success: "Чернетку видалено", + }, + }, + }, + stickies: { + title: "Ваші нотатки", + placeholder: "клікніть, щоб почати вводити", + all: "Усі нотатки", + "no-data": "Фіксуйте ідеї та думки. Додайте першу нотатку.", + add: "Додати нотатку", + search_placeholder: "Пошук за назвою", + delete: "Видалити нотатку", + delete_confirmation: "Справді видалити цю нотатку?", + empty_state: { + simple: "Фіксуйте ідеї та думки. Додайте першу нотатку.", + general: { + title: "Нотатки — це швидкі записи.", + description: "Записуйте думки та отримуйте до них доступ з будь-якого пристрою.", + primary_button: { + text: "Додати нотатку", + }, + }, + search: { + title: "Нотаток не знайдено.", + description: "Спробуйте інший пошуковий запит або створіть нову нотатку.", + primary_button: { + text: "Додати нотатку", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Назва нотатки може бути не більш ніж 100 символів.", + already_exists: "Нотатка без опису вже існує", + }, + created: { + title: "Нотатку створено", + message: "Нотатку успішно створено", + }, + not_created: { + title: "Не вдалося створити", + message: "Нотатку не вдалося створити", + }, + updated: { + title: "Нотатку оновлено", + message: "Нотатку успішно оновлено", + }, + not_updated: { + title: "Не вдалося оновити", + message: "Нотатку не вдалося оновити", + }, + removed: { + title: "Нотатку видалено", + message: "Нотатку успішно видалено", + }, + not_removed: { + title: "Не вдалося видалити", + message: "Нотатку не вдалося видалити", + }, + }, + }, + role_details: { + guest: { + title: "Гість", + description: "Зовнішні учасники можуть бути запрошені як гості.", + }, + member: { + title: "Учасник", + description: "Може читати, створювати, редагувати та видаляти сутності.", + }, + admin: { + title: "Адміністратор", + description: "Має всі права в робочому просторі.", + }, + }, + user_roles: { + product_or_project_manager: "Продуктовий/Проєктний менеджер", + development_or_engineering: "Розробка/Інженерія", + founder_or_executive: "Засновник/Керівник", + freelancer_or_consultant: "Фрілансер/Консультант", + marketing_or_growth: "Маркетинг/Зростання", + sales_or_business_development: "Продажі/Розвиток бізнесу", + support_or_operations: "Підтримка/Операції", + student_or_professor: "Студент/Професор", + human_resources: "HR (кадри)", + other: "Інше", + }, + importer: { + github: { + title: "GitHub", + description: "Імпортуйте одиниці з репозиторіїв GitHub.", + }, + jira: { + title: "Jira", + description: "Імпортуйте одиниці та епіки з Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Експортуйте одиниці у формат CSV.", + short_description: "Експортувати як CSV", + }, + excel: { + title: "Excel", + description: "Експортуйте одиниці у формат Excel.", + short_description: "Експортувати як Excel", + }, + xlsx: { + title: "Excel", + description: "Експортуйте одиниці у формат Excel.", + short_description: "Експортувати як Excel", + }, + json: { + title: "JSON", + description: "Експортуйте одиниці у формат JSON.", + short_description: "Експортувати як JSON", + }, + }, + default_global_view: { + all_issues: "Усі одиниці", + assigned: "Призначено", + created: "Створено", + subscribed: "Підписано", + }, + themes: { + theme_options: { + system_preference: { + label: "Системні налаштування", + }, + light: { + label: "Світла", + }, + dark: { + label: "Темна", + }, + light_contrast: { + label: "Світла з високою контрастністю", + }, + dark_contrast: { + label: "Темна з високою контрастністю", + }, + custom: { + label: "Користувацька тема", + }, + }, + }, + project_modules: { + status: { + backlog: "Backlog", + planned: "Заплановано", + in_progress: "У процесі", + paused: "Призупинено", + completed: "Завершено", + cancelled: "Скасовано", + }, + layout: { + list: "Список", + board: "Дошка", + timeline: "Шкала часу", + }, + order_by: { + name: "Назва", + progress: "Прогрес", + issues: "Кількість одиниць", + due_date: "Крайній термін", + created_at: "Дата створення", + manual: "Вручну", + }, + }, + cycle: { + label: "{count, plural, one {Цикл} few {Цикли} other {Циклів}}", + no_cycle: "Немає циклу", + }, + module: { + label: "{count, plural, one {Модуль} few {Модулі} other {Модулів}}", + no_module: "Немає модуля", + }, + description_versions: { + last_edited_by: "Останнє редагування", + previously_edited_by: "Раніше відредаговано", + edited_by: "Відредаговано", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane не запустився. Це може бути через те, що один або декілька сервісів Plane не змогли запуститися.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "Виберіть View Logs з setup.sh та логів Docker, щоб переконатися.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Структура", + empty_state: { + title: "Відсутні заголовки", + description: "Давайте додамо кілька заголовків на цю сторінку, щоб побачити їх тут.", + }, + }, + info: { + label: "Інформація", + document_info: { + words: "Слова", + characters: "Символи", + paragraphs: "Абзаци", + read_time: "Час читання", + }, + actors_info: { + edited_by: "Відредаговано", + created_by: "Створено", + }, + version_history: { + label: "Історія версій", + current_version: "Поточна версія", + }, + }, + assets: { + label: "Ресурси", + download_button: "Завантажити", + empty_state: { + title: "Відсутні зображення", + description: "Додайте зображення, щоб побачити їх тут.", + }, + }, + }, + open_button: "Відкрити панель навігації", + close_button: "Закрити панель навігації", + outline_floating_button: "Відкрити структуру", + }, +} as const; diff --git a/packages/i18n/src/locales/vi-VN/accessibility.json b/packages/i18n/src/locales/vi-VN/accessibility.json deleted file mode 100644 index b3ab93530e..0000000000 --- a/packages/i18n/src/locales/vi-VN/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "Logo không gian làm việc", - "open_workspace_switcher": "Mở trình chuyển đổi không gian làm việc", - "open_user_menu": "Mở menu người dùng", - "open_command_palette": "Mở bảng lệnh", - "open_extended_sidebar": "Mở thanh bên mở rộng", - "close_extended_sidebar": "Đóng thanh bên mở rộng", - "create_favorites_folder": "Tạo thư mục yêu thích", - "open_folder": "Mở thư mục", - "close_folder": "Đóng thư mục", - "open_favorites_menu": "Mở menu yêu thích", - "close_favorites_menu": "Đóng menu yêu thích", - "enter_folder_name": "Nhập tên thư mục", - "create_new_project": "Tạo dự án mới", - "open_projects_menu": "Mở menu dự án", - "close_projects_menu": "Đóng menu dự án", - "toggle_quick_actions_menu": "Bật/tắt menu hành động nhanh", - "open_project_menu": "Mở menu dự án", - "close_project_menu": "Đóng menu dự án", - "collapse_sidebar": "Thu gọn thanh bên", - "expand_sidebar": "Mở rộng thanh bên", - "edition_badge": "Mở modal gói trả phí" - }, - "auth_forms": { - "clear_email": "Xóa email", - "show_password": "Hiển thị mật khẩu", - "hide_password": "Ẩn mật khẩu", - "close_alert": "Đóng cảnh báo", - "close_popover": "Đóng popover" - } - } -} diff --git a/packages/i18n/src/locales/vi-VN/accessibility.ts b/packages/i18n/src/locales/vi-VN/accessibility.ts new file mode 100644 index 0000000000..5a0734c9ea --- /dev/null +++ b/packages/i18n/src/locales/vi-VN/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "Logo không gian làm việc", + open_workspace_switcher: "Mở trình chuyển đổi không gian làm việc", + open_user_menu: "Mở menu người dùng", + open_command_palette: "Mở bảng lệnh", + open_extended_sidebar: "Mở thanh bên mở rộng", + close_extended_sidebar: "Đóng thanh bên mở rộng", + create_favorites_folder: "Tạo thư mục yêu thích", + open_folder: "Mở thư mục", + close_folder: "Đóng thư mục", + open_favorites_menu: "Mở menu yêu thích", + close_favorites_menu: "Đóng menu yêu thích", + enter_folder_name: "Nhập tên thư mục", + create_new_project: "Tạo dự án mới", + open_projects_menu: "Mở menu dự án", + close_projects_menu: "Đóng menu dự án", + toggle_quick_actions_menu: "Bật/tắt menu hành động nhanh", + open_project_menu: "Mở menu dự án", + close_project_menu: "Đóng menu dự án", + collapse_sidebar: "Thu gọn thanh bên", + expand_sidebar: "Mở rộng thanh bên", + edition_badge: "Mở modal gói trả phí", + }, + auth_forms: { + clear_email: "Xóa email", + show_password: "Hiển thị mật khẩu", + hide_password: "Ẩn mật khẩu", + close_alert: "Đóng cảnh báo", + close_popover: "Đóng popover", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/vi-VN/editor.json b/packages/i18n/src/locales/vi-VN/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/vi-VN/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/vi-VN/editor.ts b/packages/i18n/src/locales/vi-VN/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/vi-VN/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/vi-VN/translations.json b/packages/i18n/src/locales/vi-VN/translations.json deleted file mode 100644 index 12139dd6c0..0000000000 --- a/packages/i18n/src/locales/vi-VN/translations.json +++ /dev/null @@ -1,2532 +0,0 @@ -{ - "sidebar": { - "projects": "Dự án", - "pages": "Trang", - "new_work_item": "Mục công việc mới", - "home": "Trang chủ", - "your_work": "Công việc của tôi", - "inbox": "Hộp thư đến", - "workspace": "Không gian làm việc", - "views": "Chế độ xem", - "analytics": "Phân tích", - "work_items": "Mục công việc", - "cycles": "Chu kỳ", - "modules": "Mô-đun", - "intake": "Thu thập", - "drafts": "Bản nháp", - "favorites": "Yêu thích", - "pro": "Phiên bản Pro", - "upgrade": "Nâng cấp" - }, - "auth": { - "common": { - "email": { - "label": "Email", - "placeholder": "name@company.com", - "errors": { - "required": "Email là bắt buộc", - "invalid": "Email không hợp lệ" - } - }, - "password": { - "label": "Mật khẩu", - "set_password": "Đặt mật khẩu", - "placeholder": "Nhập mật khẩu", - "confirm_password": { - "label": "Xác nhận mật khẩu", - "placeholder": "Xác nhận mật khẩu" - }, - "current_password": { - "label": "Mật khẩu hiện tại" - }, - "new_password": { - "label": "Mật khẩu mới", - "placeholder": "Nhập mật khẩu mới" - }, - "change_password": { - "label": { - "default": "Thay đổi mật khẩu", - "submitting": "Đang thay đổi mật khẩu" - } - }, - "errors": { - "match": "Mật khẩu không khớp", - "empty": "Vui lòng nhập mật khẩu", - "length": "Mật khẩu phải dài hơn 8 ký tự", - "strength": { - "weak": "Mật khẩu yếu", - "strong": "Mật khẩu mạnh" - } - }, - "submit": "Đặt mật khẩu", - "toast": { - "change_password": { - "success": { - "title": "Thành công!", - "message": "Mật khẩu đã được thay đổi thành công." - }, - "error": { - "title": "Lỗi!", - "message": "Đã xảy ra lỗi. Vui lòng thử lại." - } - } - } - }, - "unique_code": { - "label": "Mã duy nhất", - "placeholder": "gets-sets-flys", - "paste_code": "Dán mã xác minh đã gửi đến email của bạn", - "requesting_new_code": "Đang yêu cầu mã mới", - "sending_code": "Đang gửi mã" - }, - "already_have_an_account": "Đã có tài khoản?", - "login": "Đăng nhập", - "create_account": "Tạo tài khoản", - "new_to_plane": "Lần đầu sử dụng Plane?", - "back_to_sign_in": "Quay lại đăng nhập", - "resend_in": "Gửi lại sau {seconds} giây", - "sign_in_with_unique_code": "Đăng nhập bằng mã duy nhất", - "forgot_password": "Quên mật khẩu?" - }, - "sign_up": { - "header": { - "label": "Tạo tài khoản để bắt đầu quản lý công việc cùng nhóm của bạn.", - "step": { - "email": { - "header": "Đăng ký", - "sub_header": "" - }, - "password": { - "header": "Đăng ký", - "sub_header": "Đăng ký bằng cách kết hợp email-mật khẩu." - }, - "unique_code": { - "header": "Đăng ký", - "sub_header": "Đăng ký bằng mã duy nhất được gửi đến email trên." - } - } - }, - "errors": { - "password": { - "strength": "Vui lòng đặt mật khẩu mạnh để tiếp tục" - } - } - }, - "sign_in": { - "header": { - "label": "Đăng nhập để bắt đầu quản lý công việc cùng nhóm của bạn.", - "step": { - "email": { - "header": "Đăng nhập hoặc đăng ký", - "sub_header": "" - }, - "password": { - "header": "Đăng nhập hoặc đăng ký", - "sub_header": "Đăng nhập bằng cách kết hợp email-mật khẩu của bạn." - }, - "unique_code": { - "header": "Đăng nhập hoặc đăng ký", - "sub_header": "Đăng nhập bằng mã duy nhất được gửi đến email trên." - } - } - } - }, - "forgot_password": { - "title": "Đặt lại mật khẩu", - "description": "Nhập địa chỉ email đã xác minh cho tài khoản người dùng của bạn và chúng tôi sẽ gửi cho bạn liên kết đặt lại mật khẩu.", - "email_sent": "Chúng tôi đã gửi liên kết đặt lại đến email của bạn", - "send_reset_link": "Gửi liên kết đặt lại", - "errors": { - "smtp_not_enabled": "Chúng tôi nhận thấy quản trị viên của bạn chưa bật SMTP, chúng tôi sẽ không thể gửi liên kết đặt lại mật khẩu" - }, - "toast": { - "success": { - "title": "Email đã được gửi", - "message": "Hãy kiểm tra hộp thư đến của bạn để lấy liên kết đặt lại mật khẩu. Nếu bạn không nhận được trong vòng vài phút, vui lòng kiểm tra thư mục spam." - }, - "error": { - "title": "Lỗi!", - "message": "Đã xảy ra lỗi. Vui lòng thử lại." - } - } - }, - "reset_password": { - "title": "Đặt mật khẩu mới", - "description": "Bảo vệ tài khoản của bạn bằng mật khẩu mạnh" - }, - "set_password": { - "title": "Bảo vệ tài khoản của bạn", - "description": "Đặt mật khẩu giúp bạn đăng nhập an toàn" - }, - "sign_out": { - "toast": { - "error": { - "title": "Lỗi!", - "message": "Không thể đăng xuất. Vui lòng thử lại." - } - } - } - }, - "submit": "Gửi", - "cancel": "Hủy", - "loading": "Đang tải", - "error": "Lỗi", - "success": "Thành công", - "warning": "Cảnh báo", - "info": "Thông tin", - "close": "Đóng", - "yes": "Có", - "no": "Không", - "ok": "OK", - "name": "Tên", - "description": "Mô tả", - "search": "Tìm kiếm", - "add_member": "Thêm thành viên", - "adding_members": "Đang thêm thành viên", - "remove_member": "Xóa thành viên", - "add_members": "Thêm thành viên", - "adding_member": "Đang thêm thành viên", - "remove_members": "Xóa thành viên", - "add": "Thêm", - "adding": "Đang thêm", - "remove": "Xóa", - "add_new": "Thêm mới", - "remove_selected": "Xóa đã chọn", - "first_name": "Tên", - "last_name": "Họ", - "email": "Email", - "display_name": "Tên hiển thị", - "role": "Vai trò", - "timezone": "Múi giờ", - "avatar": "Ảnh đại diện", - "cover_image": "Ảnh bìa", - "password": "Mật khẩu", - "change_cover": "Thay đổi ảnh bìa", - "language": "Ngôn ngữ", - "saving": "Đang lưu", - "save_changes": "Lưu thay đổi", - "deactivate_account": "Vô hiệu hóa tài khoản", - "deactivate_account_description": "Khi tài khoản bị vô hiệu hóa, tất cả dữ liệu và tài nguyên trong tài khoản đó sẽ bị xóa vĩnh viễn và không thể khôi phục.", - "profile_settings": "Cài đặt hồ sơ", - "your_account": "Tài khoản của bạn", - "security": "Bảo mật", - "activity": "Hoạt động", - "appearance": "Giao diện", - "notifications": "Thông báo", - "workspaces": "Không gian làm việc", - "create_workspace": "Tạo không gian làm việc", - "invitations": "Lời mời", - "summary": "Tóm tắt", - "assigned": "Đã phân công", - "created": "Đã tạo", - "subscribed": "Đã đăng ký", - "you_do_not_have_the_permission_to_access_this_page": "Bạn không có quyền truy cập trang này.", - "something_went_wrong_please_try_again": "Đã xảy ra lỗi. Vui lòng thử lại.", - "load_more": "Tải thêm", - "select_or_customize_your_interface_color_scheme": "Chọn hoặc tùy chỉnh sơ đồ màu giao diện của bạn.", - "theme": "Chủ đề", - "system_preference": "Tùy chọn hệ thống", - "light": "Sáng", - "dark": "Tối", - "light_contrast": "Sáng tương phản cao", - "dark_contrast": "Tối tương phản cao", - "custom": "Tùy chỉnh", - "select_your_theme": "Chọn chủ đề của bạn", - "customize_your_theme": "Tùy chỉnh chủ đề của bạn", - "background_color": "Màu nền", - "text_color": "Màu chữ", - "primary_color": "Màu chính (chủ đề)", - "sidebar_background_color": "Màu nền thanh bên", - "sidebar_text_color": "Màu chữ thanh bên", - "set_theme": "Đặt chủ đề", - "enter_a_valid_hex_code_of_6_characters": "Nhập mã hex hợp lệ gồm 6 ký tự", - "background_color_is_required": "Màu nền là bắt buộc", - "text_color_is_required": "Màu chữ là bắt buộc", - "primary_color_is_required": "Màu chính là bắt buộc", - "sidebar_background_color_is_required": "Màu nền thanh bên là bắt buộc", - "sidebar_text_color_is_required": "Màu chữ thanh bên là bắt buộc", - "updating_theme": "Đang cập nhật chủ đề", - "theme_updated_successfully": "Chủ đề đã được cập nhật thành công", - "failed_to_update_the_theme": "Không thể cập nhật chủ đề", - "email_notifications": "Thông báo qua email", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "Cập nhật những mục công việc bạn đã đăng ký. Bật tính năng này để nhận thông báo.", - "email_notification_setting_updated_successfully": "Cài đặt thông báo email đã được cập nhật thành công", - "failed_to_update_email_notification_setting": "Không thể cập nhật cài đặt thông báo email", - "notify_me_when": "Thông báo cho tôi khi", - "property_changes": "Thay đổi thuộc tính", - "property_changes_description": "Thông báo cho tôi khi thuộc tính của mục công việc (như người phụ trách, mức độ ưu tiên, ước tính, v.v.) thay đổi.", - "state_change": "Thay đổi trạng thái", - "state_change_description": "Thông báo cho tôi khi mục công việc được chuyển sang trạng thái khác", - "issue_completed": "Mục công việc hoàn thành", - "issue_completed_description": "Chỉ thông báo cho tôi khi mục công việc hoàn thành", - "comments": "Bình luận", - "comments_description": "Thông báo cho tôi khi ai đó bình luận về mục công việc", - "mentions": "Đề cập", - "mentions_description": "Chỉ thông báo cho tôi khi ai đó đề cập đến tôi trong bình luận hoặc mô tả", - "old_password": "Mật khẩu cũ", - "general_settings": "Cài đặt chung", - "sign_out": "Đăng xuất", - "signing_out": "Đang đăng xuất", - "active_cycles": "Chu kỳ hoạt động", - "active_cycles_description": "Theo dõi chu kỳ trên các dự án, theo dõi mục công việc ưu tiên cao và chú ý đến các chu kỳ cần quan tâm.", - "on_demand_snapshots_of_all_your_cycles": "Ảnh chụp nhanh theo yêu cầu của tất cả chu kỳ của bạn", - "upgrade": "Nâng cấp", - "10000_feet_view": "Góc nhìn tổng quan về tất cả chu kỳ hoạt động.", - "10000_feet_view_description": "Phóng to tầm nhìn để xem tất cả chu kỳ đang diễn ra trong tất cả dự án cùng một lúc, thay vì xem từng chu kỳ trong mỗi dự án.", - "get_snapshot_of_each_active_cycle": "Nhận ảnh chụp nhanh của mỗi chu kỳ hoạt động.", - "get_snapshot_of_each_active_cycle_description": "Theo dõi số liệu tổng hợp cho tất cả chu kỳ hoạt động, xem trạng thái tiến độ và hiểu phạm vi liên quan đến thời hạn.", - "compare_burndowns": "So sánh biểu đồ burndown.", - "compare_burndowns_description": "Giám sát hiệu suất của từng nhóm bằng cách xem báo cáo burndown cho mỗi chu kỳ.", - "quickly_see_make_or_break_issues": "Nhanh chóng xem các vấn đề quan trọng.", - "quickly_see_make_or_break_issues_description": "Xem trước các mục công việc ưu tiên cao liên quan đến thời hạn trong mỗi chu kỳ. Xem tất cả mục công việc trong mỗi chu kỳ chỉ bằng một cú nhấp chuột.", - "zoom_into_cycles_that_need_attention": "Phóng to vào chu kỳ cần chú ý.", - "zoom_into_cycles_that_need_attention_description": "Điều tra bất kỳ trạng thái chu kỳ nào không đáp ứng mong đợi chỉ bằng một cú nhấp chuột.", - "stay_ahead_of_blockers": "Đi trước các yếu tố chặn.", - "stay_ahead_of_blockers_description": "Phát hiện thách thức từ dự án này sang dự án khác và xem các phụ thuộc giữa các chu kỳ không dễ thấy từ các chế độ xem khác.", - "analytics": "Phân tích", - "workspace_invites": "Lời mời không gian làm việc", - "enter_god_mode": "Vào chế độ quản trị viên", - "workspace_logo": "Logo không gian làm việc", - "new_issue": "Mục công việc mới", - "your_work": "Công việc của tôi", - "drafts": "Bản nháp", - "projects": "Dự án", - "views": "Chế độ xem", - "workspace": "Không gian làm việc", - "archives": "Lưu trữ", - "settings": "Cài đặt", - "failed_to_move_favorite": "Không thể di chuyển mục yêu thích", - "favorites": "Yêu thích", - "no_favorites_yet": "Chưa có mục yêu thích", - "create_folder": "Tạo thư mục", - "new_folder": "Thư mục mới", - "favorite_updated_successfully": "Đã cập nhật mục yêu thích thành công", - "favorite_created_successfully": "Đã tạo mục yêu thích thành công", - "folder_already_exists": "Thư mục đã tồn tại", - "folder_name_cannot_be_empty": "Tên thư mục không thể trống", - "something_went_wrong": "Đã xảy ra lỗi", - "failed_to_reorder_favorite": "Không thể sắp xếp lại mục yêu thích", - "favorite_removed_successfully": "Đã xóa mục yêu thích thành công", - "failed_to_create_favorite": "Không thể tạo mục yêu thích", - "failed_to_rename_favorite": "Không thể đổi tên mục yêu thích", - "project_link_copied_to_clipboard": "Đã sao chép liên kết dự án vào bảng tạm", - "link_copied": "Đã sao chép liên kết", - "add_project": "Thêm dự án", - "create_project": "Tạo dự án", - "failed_to_remove_project_from_favorites": "Không thể xóa dự án khỏi mục yêu thích. Vui lòng thử lại.", - "project_created_successfully": "Dự án đã được tạo thành công", - "project_created_successfully_description": "Dự án đã được tạo thành công. Bây giờ bạn có thể bắt đầu thêm mục công việc.", - "project_name_already_taken": "Tên dự án đã được sử dụng.", - "project_identifier_already_taken": "ID dự án đã được sử dụng.", - "project_cover_image_alt": "Ảnh bìa dự án", - "name_is_required": "Tên là bắt buộc", - "title_should_be_less_than_255_characters": "Tiêu đề phải ít hơn 255 ký tự", - "project_name": "Tên dự án", - "project_id_must_be_at_least_1_character": "ID dự án phải có ít nhất 1 ký tự", - "project_id_must_be_at_most_5_characters": "ID dự án chỉ được tối đa 5 ký tự", - "project_id": "ID dự án", - "project_id_tooltip_content": "Giúp xác định duy nhất mục công việc trong dự án của bạn. Tối đa 5 ký tự.", - "description_placeholder": "Mô tả", - "only_alphanumeric_non_latin_characters_allowed": "Chỉ cho phép các ký tự chữ số và không phải Latin.", - "project_id_is_required": "ID dự án là bắt buộc", - "project_id_allowed_char": "Chỉ cho phép các ký tự chữ số và không phải Latin.", - "project_id_min_char": "ID dự án phải có ít nhất 1 ký tự", - "project_id_max_char": "ID dự án chỉ được tối đa 5 ký tự", - "project_description_placeholder": "Nhập mô tả dự án", - "select_network": "Chọn mạng", - "lead": "Người phụ trách", - "date_range": "Khoảng thời gian", - "private": "Riêng tư", - "public": "Công khai", - "accessible_only_by_invite": "Chỉ truy cập được bằng lời mời", - "anyone_in_the_workspace_except_guests_can_join": "Bất kỳ ai trong không gian làm việc ngoại trừ khách đều có thể tham gia", - "creating": "Đang tạo", - "creating_project": "Đang tạo dự án", - "adding_project_to_favorites": "Đang thêm dự án vào mục yêu thích", - "project_added_to_favorites": "Đã thêm dự án vào mục yêu thích", - "couldnt_add_the_project_to_favorites": "Không thể thêm dự án vào mục yêu thích. Vui lòng thử lại.", - "removing_project_from_favorites": "Đang xóa dự án khỏi mục yêu thích", - "project_removed_from_favorites": "Đã xóa dự án khỏi mục yêu thích", - "couldnt_remove_the_project_from_favorites": "Không thể xóa dự án khỏi mục yêu thích. Vui lòng thử lại.", - "add_to_favorites": "Thêm vào mục yêu thích", - "remove_from_favorites": "Xóa khỏi mục yêu thích", - "publish_project": "Xuất bản dự án", - "publish": "Xuất bản", - "copy_link": "Sao chép liên kết", - "leave_project": "Rời dự án", - "join_the_project_to_rearrange": "Tham gia dự án để sắp xếp lại", - "drag_to_rearrange": "Kéo để sắp xếp lại", - "congrats": "Chúc mừng!", - "open_project": "Mở dự án", - "issues": "Mục công việc", - "cycles": "Chu kỳ", - "modules": "Mô-đun", - "pages": "Trang", - "intake": "Thu thập", - "time_tracking": "Theo dõi thời gian", - "work_management": "Quản lý công việc", - "projects_and_issues": "Dự án và mục công việc", - "projects_and_issues_description": "Bật hoặc tắt các tính năng này trong dự án này. Có thể thay đổi theo thời gian phù hợp với nhu cầu.", - "cycles_description": "Thiết lập thời gian làm việc theo dự án và điều chỉnh thời gian nếu cần. Một chu kỳ có thể là 2 tuần, chu kỳ tiếp theo là 1 tuần.", - "modules_description": "Tổ chức công việc thành các dự án con với người lãnh đạo và người được phân công riêng.", - "views_description": "Lưu các tùy chọn sắp xếp, lọc và hiển thị tùy chỉnh hoặc chia sẻ chúng với nhóm của bạn.", - "pages_description": "Tạo và chỉnh sửa nội dung tự do: ghi chú, tài liệu, bất cứ thứ gì.", - "intake_description": "Cho phép người không phải thành viên chia sẻ lỗi, phản hồi và đề xuất mà không làm gián đoạn quy trình làm việc của bạn.", - "time_tracking_description": "Ghi lại thời gian dành cho các mục công việc và dự án.", - "work_management_description": "Quản lý công việc và dự án của bạn một cách dễ dàng.", - "documentation": "Tài liệu", - "message_support": "Liên hệ hỗ trợ", - "contact_sales": "Liên hệ bộ phận bán hàng", - "hyper_mode": "Chế độ siêu tốc", - "keyboard_shortcuts": "Phím tắt", - "whats_new": "Có gì mới", - "version": "Phiên bản", - "we_are_having_trouble_fetching_the_updates": "Chúng tôi đang gặp sự cố khi lấy bản cập nhật.", - "our_changelogs": "Nhật ký thay đổi của chúng tôi", - "for_the_latest_updates": "Để cập nhật mới nhất.", - "please_visit": "Vui lòng truy cập", - "docs": "Tài liệu", - "full_changelog": "Nhật ký thay đổi đầy đủ", - "support": "Hỗ trợ", - "discord": "Discord", - "powered_by_plane_pages": "Được hỗ trợ bởi Plane Pages", - "please_select_at_least_one_invitation": "Vui lòng chọn ít nhất một lời mời.", - "please_select_at_least_one_invitation_description": "Vui lòng chọn ít nhất một lời mời để tham gia không gian làm việc.", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "Chúng tôi thấy có người đã mời bạn tham gia không gian làm việc", - "join_a_workspace": "Tham gia không gian làm việc", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "Chúng tôi thấy có người đã mời bạn tham gia không gian làm việc", - "join_a_workspace_description": "Tham gia không gian làm việc", - "accept_and_join": "Chấp nhận và tham gia", - "go_home": "Về trang chủ", - "no_pending_invites": "Không có lời mời đang chờ xử lý", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "Bạn có thể xem ở đây nếu ai đó mời bạn vào không gian làm việc", - "back_to_home": "Quay lại trang chủ", - "workspace_name": "Tên không gian làm việc", - "deactivate_your_account": "Vô hiệu hóa tài khoản của bạn", - "deactivate_your_account_description": "Khi đã vô hiệu hóa, bạn sẽ không được phân công công việc và sẽ không được tính vào hóa đơn của không gian làm việc. Để kích hoạt lại tài khoản, bạn cần nhận được lời mời không gian làm việc gửi đến địa chỉ email này.", - "deactivating": "Đang vô hiệu hóa", - "confirm": "Xác nhận", - "confirming": "Đang xác nhận", - "draft_created": "Đã tạo bản nháp", - "issue_created_successfully": "Đã tạo mục công việc thành công", - "draft_creation_failed": "Tạo bản nháp thất bại", - "issue_creation_failed": "Tạo mục công việc thất bại", - "draft_issue": "Mục công việc nháp", - "issue_updated_successfully": "Đã cập nhật mục công việc thành công", - "issue_could_not_be_updated": "Không thể cập nhật mục công việc", - "create_a_draft": "Tạo bản nháp", - "save_to_drafts": "Lưu vào bản nháp", - "save": "Lưu", - "update": "Cập nhật", - "updating": "Đang cập nhật", - "create_new_issue": "Tạo mục công việc mới", - "editor_is_not_ready_to_discard_changes": "Trình soạn thảo chưa sẵn sàng để hủy bỏ thay đổi", - "failed_to_move_issue_to_project": "Không thể di chuyển mục công việc đến dự án", - "create_more": "Tạo thêm", - "add_to_project": "Thêm vào dự án", - "discard": "Hủy bỏ", - "duplicate_issue_found": "Đã tìm thấy mục công việc trùng lặp", - "duplicate_issues_found": "Đã tìm thấy các mục công việc trùng lặp", - "no_matching_results": "Không có kết quả phù hợp", - "title_is_required": "Tiêu đề là bắt buộc", - "title": "Tiêu đề", - "state": "Trạng thái", - "priority": "Ưu tiên", - "none": "Không có", - "urgent": "Khẩn cấp", - "high": "Cao", - "medium": "Trung bình", - "low": "Thấp", - "members": "Thành viên", - "assignee": "Người phụ trách", - "assignees": "Người phụ trách", - "you": "Bạn", - "labels": "Nhãn", - "create_new_label": "Tạo nhãn mới", - "start_date": "Ngày bắt đầu", - "end_date": "Ngày kết thúc", - "due_date": "Ngày hết hạn", - "estimate": "Ước tính", - "change_parent_issue": "Thay đổi mục công việc cha", - "remove_parent_issue": "Xóa mục công việc cha", - "add_parent": "Thêm mục cha", - "loading_members": "Đang tải thành viên", - "view_link_copied_to_clipboard": "Đã sao chép liên kết xem vào bảng tạm", - "required": "Bắt buộc", - "optional": "Tùy chọn", - "Cancel": "Hủy", - "edit": "Chỉnh sửa", - "archive": "Lưu trữ", - "restore": "Khôi phục", - "open_in_new_tab": "Mở trong tab mới", - "delete": "Xóa", - "deleting": "Đang xóa", - "make_a_copy": "Tạo bản sao", - "move_to_project": "Di chuyển đến dự án", - "good": "Chào buổi sáng", - "morning": "Buổi sáng", - "afternoon": "Buổi chiều", - "evening": "Buổi tối", - "show_all": "Hiển thị tất cả", - "show_less": "Hiển thị ít hơn", - "no_data_yet": "Chưa có dữ liệu", - "syncing": "Đang đồng bộ", - "add_work_item": "Thêm mục công việc", - "advanced_description_placeholder": "Nhấn '/' để sử dụng lệnh", - "create_work_item": "Tạo mục công việc", - "attachments": "Tệp đính kèm", - "declining": "Đang từ chối", - "declined": "Đã từ chối", - "decline": "Từ chối", - "unassigned": "Chưa phân công", - "work_items": "Mục công việc", - "add_link": "Thêm liên kết", - "points": "Điểm", - "no_assignee": "Không có người phụ trách", - "no_assignees_yet": "Chưa có người phụ trách", - "no_labels_yet": "Chưa có nhãn", - "ideal": "Lý tưởng", - "current": "Hiện tại", - "no_matching_members": "Không có thành viên phù hợp", - "leaving": "Đang rời", - "removing": "Đang xóa", - "leave": "Rời", - "refresh": "Làm mới", - "refreshing": "Đang làm mới", - "refresh_status": "Làm mới trạng thái", - "prev": "Trước", - "next": "Tiếp", - "re_generating": "Đang tạo lại", - "re_generate": "Tạo lại", - "re_generate_key": "Tạo lại khóa", - "export": "Xuất", - "member": "{count, plural, other{# thành viên}}", - "new_password_must_be_different_from_old_password": "Mật khẩu mới phải khác mật khẩu cũ", - "edited": "đã chỉnh sửa", - "bot": "bot", - "project_view": { - "sort_by": { - "created_at": "Thời gian tạo", - "updated_at": "Thời gian cập nhật", - "name": "Tên" - } - }, - "toast": { - "success": "Thành công!", - "error": "Lỗi!" - }, - "links": { - "toasts": { - "created": { - "title": "Đã tạo liên kết", - "message": "Liên kết đã được tạo thành công" - }, - "not_created": { - "title": "Chưa tạo liên kết", - "message": "Không thể tạo liên kết" - }, - "updated": { - "title": "Đã cập nhật liên kết", - "message": "Liên kết đã được cập nhật thành công" - }, - "not_updated": { - "title": "Chưa cập nhật liên kết", - "message": "Không thể cập nhật liên kết" - }, - "removed": { - "title": "Đã xóa liên kết", - "message": "Liên kết đã được xóa thành công" - }, - "not_removed": { - "title": "Chưa xóa liên kết", - "message": "Không thể xóa liên kết" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "Hướng dẫn nhanh", - "not_right_now": "Không phải bây giờ", - "create_project": { - "title": "Tạo dự án", - "description": "Trong Plane, hầu hết mọi thứ đều bắt đầu từ dự án.", - "cta": "Bắt đầu" - }, - "invite_team": { - "title": "Mời nhóm của bạn", - "description": "Xây dựng, phát hành và quản lý cùng với đồng nghiệp.", - "cta": "Mời họ tham gia" - }, - "configure_workspace": { - "title": "Thiết lập không gian làm việc của bạn", - "description": "Bật hoặc tắt tính năng, hoặc thiết lập thêm.", - "cta": "Cấu hình không gian làm việc này" - }, - "personalize_account": { - "title": "Cá nhân hóa Plane cho bạn", - "description": "Chọn ảnh đại diện, màu sắc và nhiều hơn nữa.", - "cta": "Cá nhân hóa ngay" - }, - "widgets": { - "title": "Không có tiện ích nào trông có vẻ yên tĩnh, hãy bật chúng lên", - "description": "Có vẻ như tất cả tiện ích của bạn đều đã bị tắt. Bật chúng ngay\nđể nâng cao trải nghiệm của bạn!", - "primary_button": { - "text": "Quản lý tiện ích" - } - } - }, - "quick_links": { - "empty": "Lưu liên kết liên quan đến công việc mà bạn muốn truy cập thuận tiện.", - "add": "Thêm liên kết nhanh", - "title": "Liên kết nhanh", - "title_plural": "Liên kết nhanh" - }, - "recents": { - "title": "Gần đây", - "empty": { - "project": "Sau khi truy cập dự án, các dự án gần đây của bạn sẽ xuất hiện ở đây.", - "page": "Sau khi truy cập trang, các trang gần đây của bạn sẽ xuất hiện ở đây.", - "issue": "Sau khi truy cập mục công việc, các mục công việc gần đây của bạn sẽ xuất hiện ở đây.", - "default": "Bạn chưa có dự án gần đây nào." - }, - "filters": { - "all": "Tất cả", - "projects": "Dự án", - "pages": "Trang", - "issues": "Mục công việc" - } - }, - "new_at_plane": { - "title": "Tính năng mới của Plane" - }, - "quick_tutorial": { - "title": "Hướng dẫn nhanh" - }, - "widget": { - "reordered_successfully": "Đã sắp xếp lại tiện ích thành công.", - "reordering_failed": "Đã xảy ra lỗi khi sắp xếp lại tiện ích." - }, - "manage_widgets": "Quản lý tiện ích", - "title": "Trang chủ", - "star_us_on_github": "Gắn sao cho chúng tôi trên GitHub" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL không hợp lệ", - "placeholder": "Nhập hoặc dán URL" - }, - "title": { - "text": "Tiêu đề hiển thị", - "placeholder": "Bạn muốn hiển thị liên kết này như thế nào" - } - } - }, - "common": { - "all": "Tất cả", - "states": "Trạng thái", - "state": "Trạng thái", - "state_groups": "Nhóm trạng thái", - "state_group": "Nhóm trạng thái", - "priorities": "Ưu tiên", - "priority": "Ưu tiên", - "team_project": "Dự án nhóm", - "project": "Dự án", - "cycle": "Chu kỳ", - "cycles": "Chu kỳ", - "module": "Mô-đun", - "modules": "Mô-đun", - "labels": "Nhãn", - "label": "Nhãn", - "assignees": "Người phụ trách", - "assignee": "Người phụ trách", - "created_by": "Người tạo", - "none": "Không có", - "link": "Liên kết", - "estimates": "Ước tính", - "estimate": "Ước tính", - "created_at": "Được tạo vào", - "completed_at": "Hoàn thành vào", - "layout": "Bố cục", - "filters": "Bộ lọc", - "display": "Hiển thị", - "load_more": "Tải thêm", - "activity": "Hoạt động", - "analytics": "Phân tích", - "dates": "Ngày tháng", - "success": "Thành công!", - "something_went_wrong": "Đã xảy ra lỗi", - "error": { - "label": "Lỗi!", - "message": "Đã xảy ra lỗi. Vui lòng thử lại." - }, - "group_by": "Nhóm theo", - "epic": "Sử thi", - "epics": "Sử thi", - "work_item": "Mục công việc", - "work_items": "Mục công việc", - "sub_work_item": "Mục công việc con", - "add": "Thêm", - "warning": "Cảnh báo", - "updating": "Đang cập nhật", - "adding": "Đang thêm", - "update": "Cập nhật", - "creating": "Đang tạo", - "create": "Tạo", - "cancel": "Hủy", - "description": "Mô tả", - "title": "Tiêu đề", - "attachment": "Tệp đính kèm", - "general": "Chung", - "features": "Tính năng", - "automation": "Tự động hóa", - "project_name": "Tên dự án", - "project_id": "ID dự án", - "project_timezone": "Múi giờ dự án", - "created_on": "Được tạo vào", - "update_project": "Cập nhật dự án", - "identifier_already_exists": "Định danh đã tồn tại", - "add_more": "Thêm nữa", - "defaults": "Mặc định", - "add_label": "Thêm nhãn", - "customize_time_range": "Tùy chỉnh khoảng thời gian", - "loading": "Đang tải", - "attachments": "Tệp đính kèm", - "property": "Thuộc tính", - "properties": "Thuộc tính", - "parent": "Mục cha", - "page": "Trang", - "remove": "Xóa", - "archiving": "Đang lưu trữ", - "archive": "Lưu trữ", - "access": { - "public": "Công khai", - "private": "Riêng tư" - }, - "done": "Hoàn thành", - "sub_work_items": "Mục công việc con", - "comment": "Bình luận", - "workspace_level": "Cấp không gian làm việc", - "order_by": { - "label": "Sắp xếp theo", - "manual": "Thủ công", - "last_created": "Mới tạo nhất", - "last_updated": "Mới cập nhật nhất", - "start_date": "Ngày bắt đầu", - "due_date": "Ngày hết hạn", - "asc": "Tăng dần", - "desc": "Giảm dần", - "updated_on": "Cập nhật vào" - }, - "sort": { - "asc": "Tăng dần", - "desc": "Giảm dần", - "created_on": "Thời gian tạo", - "updated_on": "Thời gian cập nhật" - }, - "comments": "Bình luận", - "updates": "Cập nhật", - "clear_all": "Xóa tất cả", - "copied": "Đã sao chép!", - "link_copied": "Đã sao chép liên kết!", - "link_copied_to_clipboard": "Đã sao chép liên kết vào bảng tạm", - "copied_to_clipboard": "Đã sao chép liên kết mục công việc vào bảng tạm", - "is_copied_to_clipboard": "Mục công việc đã được sao chép vào bảng tạm", - "no_links_added_yet": "Chưa có liên kết nào được thêm", - "add_link": "Thêm liên kết", - "links": "Liên kết", - "go_to_workspace": "Đi đến không gian làm việc", - "progress": "Tiến độ", - "optional": "Tùy chọn", - "join": "Tham gia", - "go_back": "Quay lại", - "continue": "Tiếp tục", - "resend": "Gửi lại", - "relations": "Mối quan hệ", - "errors": { - "default": { - "title": "Lỗi!", - "message": "Đã xảy ra lỗi. Vui lòng thử lại." - }, - "required": "Trường này là bắt buộc", - "entity_required": "{entity} là bắt buộc", - "restricted_entity": "{entity} bị hạn chế" - }, - "update_link": "Cập nhật liên kết", - "attach": "Đính kèm", - "create_new": "Tạo mới", - "add_existing": "Thêm mục hiện có", - "type_or_paste_a_url": "Nhập hoặc dán URL", - "url_is_invalid": "URL không hợp lệ", - "display_title": "Tiêu đề hiển thị", - "link_title_placeholder": "Bạn muốn hiển thị liên kết này như thế nào", - "url": "URL", - "side_peek": "Xem lướt bên cạnh", - "modal": "Cửa sổ", - "full_screen": "Toàn màn hình", - "close_peek_view": "Đóng chế độ xem lướt", - "toggle_peek_view_layout": "Chuyển đổi bố cục xem lướt", - "options": "Tùy chọn", - "duration": "Thời lượng", - "today": "Hôm nay", - "week": "Tuần", - "month": "Tháng", - "quarter": "Quý", - "press_for_commands": "Nhấn '/' để sử dụng lệnh", - "click_to_add_description": "Nhấp để thêm mô tả", - "search": { - "label": "Tìm kiếm", - "placeholder": "Nhập nội dung tìm kiếm", - "no_matches_found": "Không tìm thấy kết quả phù hợp", - "no_matching_results": "Không có kết quả phù hợp" - }, - "actions": { - "edit": "Chỉnh sửa", - "make_a_copy": "Tạo bản sao", - "open_in_new_tab": "Mở trong tab mới", - "copy_link": "Sao chép liên kết", - "archive": "Lưu trữ", - "delete": "Xóa", - "remove_relation": "Xóa mối quan hệ", - "subscribe": "Đăng ký", - "unsubscribe": "Hủy đăng ký", - "clear_sorting": "Xóa sắp xếp", - "show_weekends": "Hiển thị cuối tuần", - "enable": "Bật", - "disable": "Tắt" - }, - "name": "Tên", - "discard": "Hủy bỏ", - "confirm": "Xác nhận", - "confirming": "Đang xác nhận", - "read_the_docs": "Đọc tài liệu", - "default": "Mặc định", - "active": "Hoạt động", - "enabled": "Đã bật", - "disabled": "Đã tắt", - "mandate": "Ủy quyền", - "mandatory": "Bắt buộc", - "yes": "Có", - "no": "Không", - "please_wait": "Vui lòng đợi", - "enabling": "Đang bật", - "disabling": "Đang tắt", - "beta": "Phiên bản beta", - "or": "Hoặc", - "next": "Tiếp theo", - "back": "Quay lại", - "cancelling": "Đang hủy", - "configuring": "Đang cấu hình", - "clear": "Xóa", - "import": "Nhập", - "connect": "Kết nối", - "authorizing": "Đang xác thực", - "processing": "Đang xử lý", - "no_data_available": "Không có dữ liệu", - "from": "Từ {name}", - "authenticated": "Đã xác thực", - "select": "Chọn", - "upgrade": "Nâng cấp", - "add_seats": "Thêm vị trí", - "projects": "Dự án", - "workspace": "Không gian làm việc", - "workspaces": "Không gian làm việc", - "team": "Nhóm", - "teams": "Nhóm", - "entity": "Thực thể", - "entities": "Thực thể", - "task": "Nhiệm vụ", - "tasks": "Nhiệm vụ", - "section": "Phần", - "sections": "Phần", - "edit": "Chỉnh sửa", - "connecting": "Đang kết nối", - "connected": "Đã kết nối", - "disconnect": "Ngắt kết nối", - "disconnecting": "Đang ngắt kết nối", - "installing": "Đang cài đặt", - "install": "Cài đặt", - "reset": "Đặt lại", - "live": "Trực tiếp", - "change_history": "Lịch sử thay đổi", - "coming_soon": "Sắp ra mắt", - "member": "Thành viên", - "members": "Thành viên", - "you": "Bạn", - "upgrade_cta": { - "higher_subscription": "Nâng cấp lên gói cao hơn", - "talk_to_sales": "Liên hệ bộ phận bán hàng" - }, - "category": "Danh mục", - "categories": "Danh mục", - "saving": "Đang lưu", - "save_changes": "Lưu thay đổi", - "delete": "Xóa", - "deleting": "Đang xóa", - "pending": "Đang chờ xử lý", - "invite": "Mời", - "view": "Xem", - "deactivated_user": "Người dùng bị vô hiệu hóa", - "apply": "Áp dụng", - "applying": "Đang áp dụng", - "users": "Người dùng", - "admins": "Quản trị viên", - "guests": "Khách", - "on_track": "Đúng tiến độ", - "off_track": "Chệch hướng", - "at_risk": "Có nguy cơ", - "timeline": "Dòng thời gian", - "completion": "Hoàn thành", - "upcoming": "Sắp tới", - "completed": "Đã hoàn thành", - "in_progress": "Đang tiến hành", - "planned": "Đã lên kế hoạch", - "paused": "Tạm dừng", - "no_of": "Số lượng {entity}", - "resolved": "Đã giải quyết" - }, - "chart": { - "x_axis": "Trục X", - "y_axis": "Trục Y", - "metric": "Chỉ số" - }, - "form": { - "title": { - "required": "Tiêu đề là bắt buộc", - "max_length": "Tiêu đề phải ít hơn {length} ký tự" - } - }, - "entity": { - "grouping_title": "Nhóm {entity}", - "priority": "Ưu tiên {entity}", - "all": "Tất cả {entity}", - "drop_here_to_move": "Kéo thả vào đây để di chuyển {entity}", - "delete": { - "label": "Xóa {entity}", - "success": "Đã xóa {entity} thành công", - "failed": "Xóa {entity} thất bại" - }, - "update": { - "failed": "Cập nhật {entity} thất bại", - "success": "Đã cập nhật {entity} thành công" - }, - "link_copied_to_clipboard": "Đã sao chép liên kết {entity} vào bảng tạm", - "fetch": { - "failed": "Đã xảy ra lỗi khi tải {entity}" - }, - "add": { - "success": "Đã thêm {entity} thành công", - "failed": "Đã xảy ra lỗi khi thêm {entity}" - }, - "remove": { - "success": "Đã xóa {entity} thành công", - "failed": "Đã xảy ra lỗi khi xóa {entity}" - } - }, - "epic": { - "all": "Tất cả sử thi", - "label": "{count, plural, one {sử thi} other {sử thi}}", - "new": "Sử thi mới", - "adding": "Đang thêm sử thi", - "create": { - "success": "Đã tạo sử thi thành công" - }, - "add": { - "press_enter": "Nhấn 'Enter' để thêm sử thi khác", - "label": "Thêm sử thi" - }, - "title": { - "label": "Tiêu đề sử thi", - "required": "Tiêu đề sử thi là bắt buộc" - } - }, - "issue": { - "label": "{count, plural, one {mục công việc} other {mục công việc}}", - "all": "Tất cả mục công việc", - "edit": "Chỉnh sửa mục công việc", - "title": { - "label": "Tiêu đề mục công việc", - "required": "Tiêu đề mục công việc là bắt buộc" - }, - "add": { - "press_enter": "Nhấn 'Enter' để thêm mục công việc khác", - "label": "Thêm mục công việc", - "cycle": { - "failed": "Không thể thêm mục công việc vào chu kỳ. Vui lòng thử lại.", - "success": "{count, plural, one {Mục công việc} other {Mục công việc}} đã được thêm vào chu kỳ thành công.", - "loading": "Đang thêm {count, plural, one {mục công việc} other {mục công việc}} vào chu kỳ" - }, - "assignee": "Thêm người phụ trách", - "start_date": "Thêm ngày bắt đầu", - "due_date": "Thêm ngày hết hạn", - "parent": "Thêm mục công việc cha", - "sub_issue": "Thêm mục công việc con", - "relation": "Thêm mối quan hệ", - "link": "Thêm liên kết", - "existing": "Thêm mục công việc hiện có" - }, - "remove": { - "label": "Xóa mục công việc", - "cycle": { - "loading": "Đang xóa mục công việc khỏi chu kỳ", - "success": "Đã xóa mục công việc khỏi chu kỳ thành công.", - "failed": "Không thể xóa mục công việc khỏi chu kỳ. Vui lòng thử lại." - }, - "module": { - "loading": "Đang xóa mục công việc khỏi mô-đun", - "success": "Đã xóa mục công việc khỏi mô-đun thành công.", - "failed": "Không thể xóa mục công việc khỏi mô-đun. Vui lòng thử lại." - }, - "parent": { - "label": "Xóa mục công việc cha" - } - }, - "new": "Mục công việc mới", - "adding": "Đang thêm mục công việc", - "create": { - "success": "Đã tạo mục công việc thành công" - }, - "priority": { - "urgent": "Khẩn cấp", - "high": "Cao", - "medium": "Trung bình", - "low": "Thấp" - }, - "display": { - "properties": { - "label": "Hiển thị thuộc tính", - "id": "ID", - "issue_type": "Loại mục công việc", - "sub_issue_count": "Số lượng mục công việc con", - "attachment_count": "Số lượng tệp đính kèm", - "created_on": "Được tạo vào", - "sub_issue": "Mục công việc con", - "work_item_count": "Số lượng mục công việc" - }, - "extra": { - "show_sub_issues": "Hiển thị mục công việc con", - "show_empty_groups": "Hiển thị nhóm trống" - } - }, - "layouts": { - "ordered_by_label": "Bố cục này được sắp xếp theo", - "list": "Danh sách", - "kanban": "Kanban", - "calendar": "Lịch", - "spreadsheet": "Bảng tính", - "gantt": "Dòng thời gian", - "title": { - "list": "Bố cục danh sách", - "kanban": "Bố cục kanban", - "calendar": "Bố cục lịch", - "spreadsheet": "Bố cục bảng tính", - "gantt": "Bố cục dòng thời gian" - } - }, - "states": { - "active": "Hoạt động", - "backlog": "Tồn đọng" - }, - "comments": { - "placeholder": "Thêm bình luận", - "switch": { - "private": "Chuyển sang bình luận riêng tư", - "public": "Chuyển sang bình luận công khai" - }, - "create": { - "success": "Đã tạo bình luận thành công", - "error": "Không thể tạo bình luận. Vui lòng thử lại sau." - }, - "update": { - "success": "Đã cập nhật bình luận thành công", - "error": "Không thể cập nhật bình luận. Vui lòng thử lại sau." - }, - "remove": { - "success": "Đã xóa bình luận thành công", - "error": "Không thể xóa bình luận. Vui lòng thử lại sau." - }, - "upload": { - "error": "Không thể tải lên tài nguyên. Vui lòng thử lại sau." - }, - "copy_link": { - "success": "Liên kết bình luận đã được sao chép vào clipboard", - "error": "Lỗi khi sao chép liên kết bình luận. Vui lòng thử lại sau." - } - }, - "empty_state": { - "issue_detail": { - "title": "Mục công việc không tồn tại", - "description": "Mục công việc bạn đang tìm kiếm không tồn tại, đã được lưu trữ hoặc đã bị xóa.", - "primary_button": { - "text": "Xem các mục công việc khác" - } - } - }, - "sibling": { - "label": "Mục công việc cùng cấp" - }, - "archive": { - "description": "Chỉ những mục công việc đã hoàn thành hoặc đã hủy\ncó thể được lưu trữ", - "label": "Lưu trữ mục công việc", - "confirm_message": "Bạn có chắc chắn muốn lưu trữ mục công việc này không? Tất cả mục công việc đã lưu trữ có thể được khôi phục sau.", - "success": { - "label": "Lưu trữ thành công", - "message": "Mục đã lưu trữ của bạn có thể được tìm thấy trong phần lưu trữ của dự án." - }, - "failed": { - "message": "Không thể lưu trữ mục công việc. Vui lòng thử lại." - } - }, - "restore": { - "success": { - "title": "Khôi phục thành công", - "message": "Mục công việc của bạn có thể được tìm thấy trong mục công việc của dự án." - }, - "failed": { - "message": "Không thể khôi phục mục công việc. Vui lòng thử lại." - } - }, - "relation": { - "relates_to": "Liên quan đến", - "duplicate": "Trùng lặp với", - "blocked_by": "Bị chặn bởi", - "blocking": "Đang chặn" - }, - "copy_link": "Sao chép liên kết mục công việc", - "delete": { - "label": "Xóa mục công việc", - "error": "Đã xảy ra lỗi khi xóa mục công việc" - }, - "subscription": { - "actions": { - "subscribed": "Đã đăng ký mục công việc thành công", - "unsubscribed": "Đã hủy đăng ký mục công việc thành công" - } - }, - "select": { - "error": "Vui lòng chọn ít nhất một mục công việc", - "empty": "Chưa chọn mục công việc", - "add_selected": "Thêm mục công việc đã chọn", - "select_all": "Chọn tất cả", - "deselect_all": "Bỏ chọn tất cả" - }, - "open_in_full_screen": "Mở mục công việc trong chế độ toàn màn hình" - }, - "attachment": { - "error": "Không thể đính kèm tệp. Vui lòng tải lên lại.", - "only_one_file_allowed": "Chỉ có thể tải lên một tệp mỗi lần.", - "file_size_limit": "Kích thước tệp phải nhỏ hơn hoặc bằng {size}MB.", - "drag_and_drop": "Kéo và thả vào bất kỳ đâu để tải lên", - "delete": "Xóa tệp đính kèm" - }, - "label": { - "select": "Chọn nhãn", - "create": { - "success": "Đã tạo nhãn thành công", - "failed": "Tạo nhãn thất bại", - "already_exists": "Nhãn đã tồn tại", - "type": "Nhập để thêm nhãn mới" - } - }, - "sub_work_item": { - "update": { - "success": "Đã cập nhật mục công việc con thành công", - "error": "Đã xảy ra lỗi khi cập nhật mục công việc con" - }, - "remove": { - "success": "Đã xóa mục công việc con thành công", - "error": "Đã xảy ra lỗi khi xóa mục công việc con" - }, - "empty_state": { - "sub_list_filters": { - "title": "Bạn không có mục công việc con nào phù hợp với các bộ lọc mà bạn đã áp dụng.", - "description": "Để xem tất cả các mục công việc con, hãy xóa tất cả các bộ lọc đã áp dụng.", - "action": "Xóa bộ lọc" - }, - "list_filters": { - "title": "Bạn không có mục công việc nào phù hợp với các bộ lọc mà bạn đã áp dụng.", - "description": "Để xem tất cả các mục công việc, hãy xóa tất cả các bộ lọc đã áp dụng.", - "action": "Xóa bộ lọc" - } - } - }, - "view": { - "label": "{count, plural, one {chế độ xem} other {chế độ xem}}", - "create": { - "label": "Tạo chế độ xem" - }, - "update": { - "label": "Cập nhật chế độ xem" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "Đang chờ xử lý", - "description": "Đang chờ xử lý" - }, - "declined": { - "title": "Đã từ chối", - "description": "Đã từ chối" - }, - "snoozed": { - "title": "Đã tạm hoãn", - "description": "Còn lại {days, plural, one{# ngày} other{# ngày}}" - }, - "accepted": { - "title": "Đã chấp nhận", - "description": "Đã chấp nhận" - }, - "duplicate": { - "title": "Trùng lặp", - "description": "Trùng lặp" - } - }, - "modals": { - "decline": { - "title": "Từ chối mục công việc", - "content": "Bạn có chắc chắn muốn từ chối mục công việc {value} không?" - }, - "delete": { - "title": "Xóa mục công việc", - "content": "Bạn có chắc chắn muốn xóa mục công việc {value} không?", - "success": "Đã xóa mục công việc thành công" - } - }, - "errors": { - "snooze_permission": "Chỉ quản trị viên dự án mới có thể tạm hoãn/hủy tạm hoãn mục công việc", - "accept_permission": "Chỉ quản trị viên dự án mới có thể chấp nhận mục công việc", - "decline_permission": "Chỉ quản trị viên dự án mới có thể từ chối mục công việc" - }, - "actions": { - "accept": "Chấp nhận", - "decline": "Từ chối", - "snooze": "Tạm hoãn", - "unsnooze": "Hủy tạm hoãn", - "copy": "Sao chép liên kết mục công việc", - "delete": "Xóa", - "open": "Mở mục công việc", - "mark_as_duplicate": "Đánh dấu là trùng lặp", - "move": "Di chuyển {value} đến mục công việc dự án" - }, - "source": { - "in-app": "Trong ứng dụng" - }, - "order_by": { - "created_at": "Thời gian tạo", - "updated_at": "Thời gian cập nhật", - "id": "ID" - }, - "label": "Thu thập", - "page_label": "{workspace} - Thu thập", - "modal": { - "title": "Tạo mục công việc thu thập" - }, - "tabs": { - "open": "Chưa xử lý", - "closed": "Đã xử lý" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "Không có mục công việc chưa xử lý", - "description": "Tìm mục công việc chưa xử lý tại đây. Tạo mục công việc mới." - }, - "sidebar_closed_tab": { - "title": "Không có mục công việc đã xử lý", - "description": "Tất cả mục công việc đã chấp nhận hoặc từ chối có thể được tìm thấy ở đây." - }, - "sidebar_filter": { - "title": "Không có mục công việc phù hợp", - "description": "Không có mục công việc trong thu thập phù hợp với bộ lọc của bạn. Tạo mục công việc mới." - }, - "detail": { - "title": "Chọn một mục công việc để xem chi tiết." - } - } - }, - "workspace_creation": { - "heading": "Tạo không gian làm việc của bạn", - "subheading": "Để bắt đầu với Plane, bạn cần tạo hoặc tham gia một không gian làm việc.", - "form": { - "name": { - "label": "Đặt tên cho không gian làm việc của bạn", - "placeholder": "Một tên quen thuộc và dễ nhận diện luôn là tốt nhất." - }, - "url": { - "label": "Thiết lập URL không gian làm việc của bạn", - "placeholder": "Nhập hoặc dán URL", - "edit_slug": "Bạn chỉ có thể chỉnh sửa phần định danh của URL" - }, - "organization_size": { - "label": "Có bao nhiêu người sẽ sử dụng không gian làm việc này?", - "placeholder": "Chọn một phạm vi" - } - }, - "errors": { - "creation_disabled": { - "title": "Chỉ quản trị viên hệ thống của bạn mới có thể tạo không gian làm việc", - "description": "Nếu bạn biết địa chỉ email của quản trị viên hệ thống, hãy nhấp vào nút bên dưới để liên hệ với họ.", - "request_button": "Yêu cầu quản trị viên hệ thống" - }, - "validation": { - "name_alphanumeric": "Tên không gian làm việc chỉ có thể chứa (' '), ('-'), ('_') và các ký tự chữ số.", - "name_length": "Tên giới hạn trong 80 ký tự.", - "url_alphanumeric": "URL chỉ có thể chứa ('-') và các ký tự chữ số.", - "url_length": "URL giới hạn trong 48 ký tự.", - "url_already_taken": "URL không gian làm việc đã được sử dụng!" - } - }, - "request_email": { - "subject": "Yêu cầu không gian làm việc mới", - "body": "Xin chào Quản trị viên hệ thống:\n\nVui lòng tạo một không gian làm việc mới có URL là [/workspace-name] cho [mục đích tạo không gian làm việc].\n\nCảm ơn,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "Tạo không gian làm việc", - "loading": "Đang tạo không gian làm việc" - }, - "toast": { - "success": { - "title": "Thành công", - "message": "Đã tạo không gian làm việc thành công" - }, - "error": { - "title": "Lỗi", - "message": "Tạo không gian làm việc thất bại. Vui lòng thử lại." - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "Tổng quan về dự án, hoạt động và chỉ số", - "description": "Chào mừng đến với Plane, chúng tôi rất vui khi bạn ở đây. Tạo dự án đầu tiên của bạn và theo dõi mục công việc, trang này sẽ trở thành không gian giúp bạn tiến triển. Quản trị viên cũng sẽ thấy dự án giúp nhóm tiến triển.", - "primary_button": { - "text": "Xây dựng dự án đầu tiên của bạn", - "comic": { - "title": "Trong Plane, mọi thứ đều bắt đầu với dự án", - "description": "Dự án có thể là lộ trình sản phẩm, chiến dịch tiếp thị hoặc ra mắt xe mới." - } - } - } - } - }, - "workspace_analytics": { - "label": "Phân tích", - "page_label": "{workspace} - Phân tích", - "open_tasks": "Tổng nhiệm vụ đang mở", - "error": "Đã xảy ra lỗi khi truy xuất dữ liệu.", - "work_items_closed_in": "Mục công việc đã đóng trong", - "selected_projects": "Dự án đã chọn", - "total_members": "Tổng số thành viên", - "total_cycles": "Tổng số chu kỳ", - "total_modules": "Tổng số mô-đun", - "pending_work_items": { - "title": "Mục công việc đang chờ xử lý", - "empty_state": "Phân tích mục công việc đang chờ xử lý của đồng nghiệp sẽ hiển thị ở đây." - }, - "work_items_closed_in_a_year": { - "title": "Mục công việc đã đóng trong một năm", - "empty_state": "Đóng mục công việc để xem phân tích dưới dạng biểu đồ." - }, - "most_work_items_created": { - "title": "Tạo nhiều mục công việc nhất", - "empty_state": "Đồng nghiệp và số lượng mục công việc họ đã tạo sẽ hiển thị ở đây." - }, - "most_work_items_closed": { - "title": "Đóng nhiều mục công việc nhất", - "empty_state": "Đồng nghiệp và số lượng mục công việc họ đã đóng sẽ hiển thị ở đây." - }, - "tabs": { - "scope_and_demand": "Phạm vi và nhu cầu", - "custom": "Phân tích tùy chỉnh" - }, - "empty_state": { - "customized_insights": { - "description": "Các hạng mục công việc được giao cho bạn, phân loại theo trạng thái, sẽ hiển thị tại đây.", - "title": "Chưa có dữ liệu" - }, - "created_vs_resolved": { - "description": "Các hạng mục công việc được tạo và giải quyết theo thời gian sẽ hiển thị tại đây.", - "title": "Chưa có dữ liệu" - }, - "project_insights": { - "title": "Chưa có dữ liệu", - "description": "Các hạng mục công việc được giao cho bạn, phân loại theo trạng thái, sẽ hiển thị tại đây." - }, - "general": { - "title": "Theo dõi tiến độ, khối lượng công việc và phân bổ. Phát hiện xu hướng, loại bỏ rào cản và tăng tốc công việc", - "description": "Xem phạm vi so với nhu cầu, ước tính và mở rộng phạm vi. Theo dõi hiệu suất của các thành viên trong nhóm và đội nhóm, đảm bảo dự án của bạn hoạt động đúng tiến độ.", - "primary_button": { - "text": "Bắt đầu dự án đầu tiên của bạn", - "comic": { - "title": "Phân tích hoạt động tốt nhất với Chu kỳ + Mô-đun", - "description": "Đầu tiên, giới hạn thời gian các vấn đề của bạn trong Chu kỳ và, nếu có thể, nhóm các vấn đề kéo dài hơn một chu kỳ vào Mô-đun. Kiểm tra cả hai trong điều hướng bên trái." - } - } - } - }, - "created_vs_resolved": "Đã tạo vs Đã giải quyết", - "customized_insights": "Thông tin chi tiết tùy chỉnh", - "backlog_work_items": "{entity} tồn đọng", - "active_projects": "Dự án đang hoạt động", - "trend_on_charts": "Xu hướng trên biểu đồ", - "all_projects": "Tất cả dự án", - "summary_of_projects": "Tóm tắt dự án", - "project_insights": "Thông tin chi tiết dự án", - "started_work_items": "{entity} đã bắt đầu", - "total_work_items": "Tổng số {entity}", - "total_projects": "Tổng số dự án", - "total_admins": "Tổng số quản trị viên", - "total_users": "Tổng số người dùng", - "total_intake": "Tổng thu", - "un_started_work_items": "{entity} chưa bắt đầu", - "total_guests": "Tổng số khách", - "completed_work_items": "{entity} đã hoàn thành", - "total": "Tổng số {entity}" - }, - "workspace_projects": { - "label": "{count, plural, one {dự án} other {dự án}}", - "create": { - "label": "Thêm dự án" - }, - "network": { - "private": { - "title": "Riêng tư", - "description": "Chỉ truy cập bằng lời mời" - }, - "public": { - "title": "Công khai", - "description": "Bất kỳ ai trong không gian làm việc ngoại trừ khách đều có thể tham gia" - } - }, - "error": { - "permission": "Bạn không có quyền thực hiện thao tác này.", - "cycle_delete": "Xóa chu kỳ thất bại", - "module_delete": "Xóa mô-đun thất bại", - "issue_delete": "Xóa mục công việc thất bại" - }, - "state": { - "backlog": "Tồn đọng", - "unstarted": "Chưa bắt đầu", - "started": "Đang tiến hành", - "completed": "Đã hoàn thành", - "cancelled": "Đã hủy" - }, - "sort": { - "manual": "Thủ công", - "name": "Tên", - "created_at": "Ngày tạo", - "members_length": "Số lượng thành viên" - }, - "scope": { - "my_projects": "Dự án của tôi", - "archived_projects": "Đã lưu trữ" - }, - "common": { - "months_count": "{months, plural, one{# tháng} other{# tháng}}" - }, - "empty_state": { - "general": { - "title": "Không có dự án hoạt động", - "description": "Coi mỗi dự án như là cấp cha của công việc định hướng mục tiêu. Dự án là nơi chứa mục công việc, chu kỳ và mô-đun, cùng với đồng nghiệp giúp bạn đạt được mục tiêu. Tạo dự án mới hoặc lọc dự án đã lưu trữ.", - "primary_button": { - "text": "Bắt đầu dự án đầu tiên của bạn", - "comic": { - "title": "Trong Plane, mọi thứ đều bắt đầu với dự án", - "description": "Dự án có thể là lộ trình sản phẩm, chiến dịch tiếp thị hoặc ra mắt xe mới." - } - } - }, - "no_projects": { - "title": "Không có dự án", - "description": "Để tạo mục công việc hoặc quản lý công việc của bạn, bạn cần tạo dự án hoặc trở thành một phần của dự án.", - "primary_button": { - "text": "Bắt đầu dự án đầu tiên của bạn", - "comic": { - "title": "Trong Plane, mọi thứ đều bắt đầu với dự án", - "description": "Dự án có thể là lộ trình sản phẩm, chiến dịch tiếp thị hoặc ra mắt xe mới." - } - } - }, - "filter": { - "title": "Không có dự án phù hợp", - "description": "Không phát hiện dự án nào phù hợp với điều kiện tìm kiếm.\nTạo dự án mới." - }, - "search": { - "description": "Không phát hiện dự án nào phù hợp với điều kiện tìm kiếm.\nTạo dự án mới" - } - } - }, - "workspace_views": { - "add_view": "Thêm chế độ xem", - "empty_state": { - "all-issues": { - "title": "Không có mục công việc trong dự án", - "description": "Dự án đầu tiên hoàn thành! Bây giờ, hãy chia nhỏ công việc của bạn thành các mục công việc có thể theo dõi. Hãy bắt đầu nào!", - "primary_button": { - "text": "Tạo mục công việc mới" - } - }, - "assigned": { - "title": "Chưa có mục công việc", - "description": "Mục công việc được giao cho bạn có thể được theo dõi tại đây.", - "primary_button": { - "text": "Tạo mục công việc mới" - } - }, - "created": { - "title": "Chưa có mục công việc", - "description": "Tất cả mục công việc bạn tạo sẽ xuất hiện ở đây, theo dõi chúng trực tiếp tại đây.", - "primary_button": { - "text": "Tạo mục công việc mới" - } - }, - "subscribed": { - "title": "Chưa có mục công việc", - "description": "Đăng ký mục công việc bạn quan tâm, theo dõi tất cả chúng tại đây." - }, - "custom-view": { - "title": "Chưa có mục công việc", - "description": "Mục công việc phù hợp với bộ lọc, theo dõi tất cả chúng tại đây." - } - } - }, - "workspace_settings": { - "label": "Cài đặt không gian làm việc", - "page_label": "{workspace} - Cài đặt chung", - "key_created": "Đã tạo khóa", - "copy_key": "Sao chép và lưu khóa này trong Plane Pages. Bạn sẽ không thể thấy khóa này sau khi đóng. Tệp CSV chứa khóa đã được tải xuống.", - "token_copied": "Đã sao chép token vào bảng tạm.", - "settings": { - "general": { - "title": "Chung", - "upload_logo": "Tải lên logo", - "edit_logo": "Chỉnh sửa logo", - "name": "Tên không gian làm việc", - "company_size": "Quy mô công ty", - "url": "URL không gian làm việc", - "update_workspace": "Cập nhật không gian làm việc", - "delete_workspace": "Xóa không gian làm việc này", - "delete_workspace_description": "Khi xóa không gian làm việc, tất cả dữ liệu và tài nguyên trong không gian làm việc đó sẽ bị xóa vĩnh viễn và không thể khôi phục.", - "delete_btn": "Xóa không gian làm việc này", - "delete_modal": { - "title": "Bạn có chắc chắn muốn xóa không gian làm việc này không?", - "description": "Bạn hiện đang dùng thử gói trả phí của chúng tôi. Vui lòng hủy dùng thử trước khi tiếp tục.", - "dismiss": "Đóng", - "cancel": "Hủy dùng thử", - "success_title": "Đã xóa không gian làm việc.", - "success_message": "Sắp chuyển hướng đến trang hồ sơ của bạn.", - "error_title": "Thao tác thất bại.", - "error_message": "Vui lòng thử lại." - }, - "errors": { - "name": { - "required": "Tên là bắt buộc", - "max_length": "Tên không gian làm việc không nên vượt quá 80 ký tự" - }, - "company_size": { - "required": "Quy mô công ty là bắt buộc", - "select_a_range": "Chọn quy mô tổ chức" - } - } - }, - "members": { - "title": "Thành viên", - "add_member": "Thêm thành viên", - "pending_invites": "Lời mời đang chờ xử lý", - "invitations_sent_successfully": "Đã gửi lời mời thành công", - "leave_confirmation": "Bạn có chắc chắn muốn rời khỏi không gian làm việc này không? Bạn sẽ không thể truy cập không gian làm việc này nữa. Hành động này không thể hoàn tác.", - "details": { - "full_name": "Tên đầy đủ", - "display_name": "Tên hiển thị", - "email_address": "Địa chỉ email", - "account_type": "Loại tài khoản", - "authentication": "Xác thực", - "joining_date": "Ngày tham gia" - }, - "modal": { - "title": "Mời người cộng tác", - "description": "Mời người cộng tác trong không gian làm việc của bạn.", - "button": "Gửi lời mời", - "button_loading": "Đang gửi lời mời", - "placeholder": "name@company.com", - "errors": { - "required": "Chúng tôi cần một địa chỉ email để mời họ.", - "invalid": "Email không hợp lệ" - } - } - }, - "billing_and_plans": { - "title": "Thanh toán và Kế hoạch", - "current_plan": "Kế hoạch hiện tại", - "free_plan": "Bạn đang sử dụng kế hoạch miễn phí", - "view_plans": "Xem kế hoạch" - }, - "exports": { - "title": "Xuất", - "exporting": "Đang xuất", - "previous_exports": "Xuất trước đây", - "export_separate_files": "Xuất dữ liệu thành các tệp riêng biệt", - "modal": { - "title": "Xuất đến", - "toasts": { - "success": { - "title": "Xuất thành công", - "message": "Bạn có thể tải xuống {entity} đã xuất từ phần xuất trước đây" - }, - "error": { - "title": "Xuất thất bại", - "message": "Xuất không thành công. Vui lòng thử lại." - } - } - } - }, - "webhooks": { - "title": "Webhooks", - "add_webhook": "Thêm webhook", - "modal": { - "title": "Tạo webhook", - "details": "Chi tiết Webhook", - "payload": "URL tải", - "question": "Bạn muốn những sự kiện nào kích hoạt webhook này?", - "error": "URL là bắt buộc" - }, - "secret_key": { - "title": "Khóa bí mật", - "message": "Tạo token để đăng nhập tải webhook" - }, - "options": { - "all": "Gửi tất cả", - "individual": "Chọn từng sự kiện" - }, - "toasts": { - "created": { - "title": "Đã tạo Webhook", - "message": "Webhook đã được tạo thành công" - }, - "not_created": { - "title": "Chưa tạo Webhook", - "message": "Không thể tạo webhook" - }, - "updated": { - "title": "Đã cập nhật Webhook", - "message": "Webhook đã được cập nhật thành công" - }, - "not_updated": { - "title": "Chưa cập nhật Webhook", - "message": "Không thể cập nhật webhook" - }, - "removed": { - "title": "Đã xóa Webhook", - "message": "Webhook đã được xóa thành công" - }, - "not_removed": { - "title": "Chưa xóa Webhook", - "message": "Không thể xóa webhook" - }, - "secret_key_copied": { - "message": "Đã sao chép khóa bí mật vào bảng tạm." - }, - "secret_key_not_copied": { - "message": "Đã xảy ra lỗi khi sao chép khóa bí mật." - } - } - }, - "api_tokens": { - "title": "Token API", - "add_token": "Thêm token API", - "create_token": "Tạo token", - "never_expires": "Không bao giờ hết hạn", - "generate_token": "Tạo token", - "generating": "Đang tạo", - "delete": { - "title": "Xóa token API", - "description": "Bất kỳ ứng dụng nào sử dụng token này sẽ không thể truy cập dữ liệu Plane nữa. Hành động này không thể hoàn tác.", - "success": { - "title": "Thành công!", - "message": "Đã xóa token API thành công" - }, - "error": { - "title": "Lỗi!", - "message": "Không thể xóa token API" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "Chưa tạo token API", - "description": "API Plane có thể được sử dụng để tích hợp dữ liệu Plane của bạn với bất kỳ hệ thống bên ngoài nào. Tạo token để bắt đầu." - }, - "webhooks": { - "title": "Chưa thêm webhook", - "description": "Tạo webhook để nhận cập nhật theo thời gian thực và tự động hóa hành động." - }, - "exports": { - "title": "Chưa có xuất dữ liệu", - "description": "Mỗi khi xuất, bạn sẽ có một bản sao ở đây để tham khảo." - }, - "imports": { - "title": "Chưa có nhập dữ liệu", - "description": "Tìm tất cả các lần nhập trước đây và tải xuống chúng tại đây." - } - } - }, - "profile": { - "label": "Hồ sơ", - "page_label": "Công việc của bạn", - "work": "Công việc", - "details": { - "joined_on": "Tham gia vào", - "time_zone": "Múi giờ" - }, - "stats": { - "workload": "Khối lượng công việc", - "overview": "Tổng quan", - "created": "Mục công việc đã tạo", - "assigned": "Mục công việc đã giao", - "subscribed": "Mục công việc đã đăng ký", - "state_distribution": { - "title": "Mục công việc theo trạng thái", - "empty": "Tạo mục công việc để xem phân loại theo trạng thái trong biểu đồ để phân tích tốt hơn." - }, - "priority_distribution": { - "title": "Mục công việc theo mức độ ưu tiên", - "empty": "Tạo mục công việc để xem phân loại theo mức độ ưu tiên trong biểu đồ để phân tích tốt hơn." - }, - "recent_activity": { - "title": "Hoạt động gần đây", - "empty": "Chúng tôi không tìm thấy dữ liệu. Vui lòng kiểm tra đầu vào của bạn", - "button": "Tải xuống hoạt động hôm nay", - "button_loading": "Đang tải xuống" - } - }, - "actions": { - "profile": "Hồ sơ", - "security": "Bảo mật", - "activity": "Hoạt động", - "appearance": "Giao diện", - "notifications": "Thông báo" - }, - "tabs": { - "summary": "Tóm tắt", - "assigned": "Đã giao", - "created": "Đã tạo", - "subscribed": "Đã đăng ký", - "activity": "Hoạt động" - }, - "empty_state": { - "activity": { - "title": "Chưa có hoạt động", - "description": "Bắt đầu bằng cách tạo mục công việc mới! Thêm chi tiết và thuộc tính cho nó. Khám phá thêm trong Plane để xem hoạt động của bạn." - }, - "assigned": { - "title": "Không có mục công việc nào được giao cho bạn", - "description": "Có thể theo dõi mục công việc được giao cho bạn từ đây." - }, - "created": { - "title": "Chưa có mục công việc", - "description": "Tất cả mục công việc bạn tạo sẽ xuất hiện ở đây, theo dõi chúng trực tiếp tại đây." - }, - "subscribed": { - "title": "Chưa có mục công việc", - "description": "Đăng ký mục công việc bạn quan tâm, theo dõi tất cả chúng tại đây." - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "Nhập ID dự án", - "please_select_a_timezone": "Vui lòng chọn múi giờ", - "archive_project": { - "title": "Lưu trữ dự án", - "description": "Lưu trữ dự án sẽ hủy liệt kê dự án của bạn khỏi thanh điều hướng bên, nhưng bạn vẫn có thể truy cập nó từ trang dự án. Bạn có thể khôi phục hoặc xóa dự án bất cứ lúc nào.", - "button": "Lưu trữ dự án" - }, - "delete_project": { - "title": "Xóa dự án", - "description": "Khi xóa dự án, tất cả dữ liệu và tài nguyên trong dự án đó sẽ bị xóa vĩnh viễn và không thể khôi phục.", - "button": "Xóa dự án của tôi" - }, - "toast": { - "success": "Dự án đã được cập nhật thành công", - "error": "Không thể cập nhật dự án. Vui lòng thử lại." - } - }, - "members": { - "label": "Thành viên", - "project_lead": "Người phụ trách dự án", - "default_assignee": "Người nhận mặc định", - "guest_super_permissions": { - "title": "Cấp quyền cho người dùng khách xem tất cả mục công việc:", - "sub_heading": "Điều này sẽ cho phép khách xem tất cả mục công việc của dự án." - }, - "invite_members": { - "title": "Mời thành viên", - "sub_heading": "Mời thành viên tham gia dự án của bạn.", - "select_co_worker": "Chọn đồng nghiệp" - } - }, - "states": { - "describe_this_state_for_your_members": "Mô tả trạng thái này cho thành viên của bạn.", - "empty_state": { - "title": "Không có trạng thái trong nhóm {groupKey}", - "description": "Vui lòng tạo một trạng thái mới" - } - }, - "labels": { - "label_title": "Tiêu đề nhãn", - "label_title_is_required": "Tiêu đề nhãn là bắt buộc", - "label_max_char": "Tên nhãn không nên vượt quá 255 ký tự", - "toast": { - "error": "Đã xảy ra lỗi khi cập nhật nhãn" - } - }, - "estimates": { - "label": "Ước tính", - "title": "Bật ước tính cho dự án của tôi", - "description": "Chúng giúp bạn truyền đạt độ phức tạp và khối lượng công việc của nhóm.", - "no_estimate": "Không có ước tính", - "new": "Hệ thống ước tính mới", - "create": { - "custom": "Tùy chỉnh", - "start_from_scratch": "Bắt đầu từ đầu", - "choose_template": "Chọn mẫu", - "choose_estimate_system": "Chọn hệ thống ước tính", - "enter_estimate_point": "Nhập điểm ước tính", - "step": "Bước {step} của {total}", - "label": "Tạo ước tính" - }, - "toasts": { - "created": { - "success": { - "title": "Đã tạo điểm ước tính", - "message": "Điểm ước tính đã được tạo thành công" - }, - "error": { - "title": "Không thể tạo điểm ước tính", - "message": "Không thể tạo điểm ước tính mới, vui lòng thử lại" - } - }, - "updated": { - "success": { - "title": "Đã cập nhật ước tính", - "message": "Điểm ước tính đã được cập nhật trong dự án của bạn" - }, - "error": { - "title": "Không thể cập nhật ước tính", - "message": "Không thể cập nhật ước tính, vui lòng thử lại" - } - }, - "enabled": { - "success": { - "title": "Thành công!", - "message": "Đã bật ước tính" - } - }, - "disabled": { - "success": { - "title": "Thành công!", - "message": "Đã tắt ước tính" - }, - "error": { - "title": "Lỗi!", - "message": "Không thể tắt ước tính. Vui lòng thử lại" - } - } - }, - "validation": { - "min_length": "Điểm ước tính phải lớn hơn 0", - "unable_to_process": "Không thể xử lý yêu cầu của bạn, vui lòng thử lại", - "numeric": "Điểm ước tính phải là số", - "character": "Điểm ước tính phải là ký tự", - "empty": "Giá trị ước tính không được để trống", - "already_exists": "Giá trị ước tính này đã tồn tại", - "unsaved_changes": "Bạn có thay đổi chưa lưu. Vui lòng lưu trước khi nhấn 'xong'" - }, - "systems": { - "points": { - "label": "Điểm", - "fibonacci": "Fibonacci", - "linear": "Tuyến tính", - "squares": "Bình phương", - "custom": "Tùy chỉnh" - }, - "categories": { - "label": "Danh mục", - "t_shirt_sizes": "Kích cỡ áo", - "easy_to_hard": "Dễ đến khó", - "custom": "Tùy chỉnh" - }, - "time": { - "label": "Thời gian", - "hours": "Giờ" - } - } - }, - "automations": { - "label": "Tự động hóa", - "auto-archive": { - "title": "Tự động lưu trữ mục công việc đã đóng", - "description": "Plane sẽ tự động lưu trữ các mục công việc đã hoàn thành hoặc đã hủy.", - "duration": "Tự động lưu trữ đã đóng" - }, - "auto-close": { - "title": "Tự động đóng mục công việc", - "description": "Plane sẽ tự động đóng các mục công việc chưa hoàn thành hoặc hủy.", - "duration": "Tự động đóng không hoạt động", - "auto_close_status": "Trạng thái tự động đóng" - } - }, - "empty_state": { - "labels": { - "title": "Chưa có nhãn", - "description": "Tạo nhãn để giúp tổ chức và lọc mục công việc trong dự án của bạn." - }, - "estimates": { - "title": "Chưa có hệ thống ước tính", - "description": "Tạo một tập hợp ước tính để truyền đạt khối lượng công việc cho mỗi mục công việc.", - "primary_button": "Thêm hệ thống ước tính" - } - } - }, - "project_cycles": { - "add_cycle": "Thêm chu kỳ", - "more_details": "Thêm chi tiết", - "cycle": "Chu kỳ", - "update_cycle": "Cập nhật chu kỳ", - "create_cycle": "Tạo chu kỳ", - "no_matching_cycles": "Không có chu kỳ phù hợp", - "remove_filters_to_see_all_cycles": "Xóa bộ lọc để xem tất cả chu kỳ", - "remove_search_criteria_to_see_all_cycles": "Xóa tiêu chí tìm kiếm để xem tất cả chu kỳ", - "only_completed_cycles_can_be_archived": "Chỉ có thể lưu trữ chu kỳ đã hoàn thành", - "start_date": "Ngày bắt đầu", - "end_date": "Ngày kết thúc", - "in_your_timezone": "Trong múi giờ của bạn", - "transfer_work_items": "Chuyển {count} mục công việc", - "date_range": "Khoảng thời gian", - "add_date": "Thêm ngày", - "active_cycle": { - "label": "Chu kỳ hoạt động", - "progress": "Tiến độ", - "chart": "Biểu đồ burndown", - "priority_issue": "Mục công việc ưu tiên", - "assignees": "Người được giao", - "issue_burndown": "Burndown mục công việc", - "ideal": "Lý tưởng", - "current": "Hiện tại", - "labels": "Nhãn" - }, - "upcoming_cycle": { - "label": "Chu kỳ sắp tới" - }, - "completed_cycle": { - "label": "Chu kỳ đã hoàn thành" - }, - "status": { - "days_left": "Số ngày còn lại", - "completed": "Đã hoàn thành", - "yet_to_start": "Chưa bắt đầu", - "in_progress": "Đang tiến hành", - "draft": "Bản nháp" - }, - "action": { - "restore": { - "title": "Khôi phục chu kỳ", - "success": { - "title": "Đã khôi phục chu kỳ", - "description": "Chu kỳ đã được khôi phục." - }, - "failed": { - "title": "Khôi phục chu kỳ thất bại", - "description": "Không thể khôi phục chu kỳ. Vui lòng thử lại." - } - }, - "favorite": { - "loading": "Đang thêm chu kỳ vào mục yêu thích", - "success": { - "description": "Chu kỳ đã được thêm vào mục yêu thích.", - "title": "Thành công!" - }, - "failed": { - "description": "Không thể thêm chu kỳ vào mục yêu thích. Vui lòng thử lại.", - "title": "Lỗi!" - } - }, - "unfavorite": { - "loading": "Đang xóa chu kỳ khỏi mục yêu thích", - "success": { - "description": "Chu kỳ đã được xóa khỏi mục yêu thích.", - "title": "Thành công!" - }, - "failed": { - "description": "Không thể xóa chu kỳ khỏi mục yêu thích. Vui lòng thử lại.", - "title": "Lỗi!" - } - }, - "update": { - "loading": "Đang cập nhật chu kỳ", - "success": { - "description": "Chu kỳ đã được cập nhật thành công.", - "title": "Thành công!" - }, - "failed": { - "description": "Đã xảy ra lỗi khi cập nhật chu kỳ. Vui lòng thử lại.", - "title": "Lỗi!" - }, - "error": { - "already_exists": "Đã tồn tại chu kỳ trong khoảng thời gian đã cho, nếu bạn muốn tạo chu kỳ nháp, bạn có thể làm vậy bằng cách xóa cả hai ngày." - } - } - }, - "empty_state": { - "general": { - "title": "Nhóm và đặt khung thời gian cho công việc của bạn trong chu kỳ.", - "description": "Chia nhỏ công việc theo khung thời gian, đặt ngày từ thời hạn dự án và đạt được tiến độ cụ thể với tư cách là một nhóm.", - "primary_button": { - "text": "Thiết lập chu kỳ đầu tiên của bạn", - "comic": { - "title": "Chu kỳ là khung thời gian lặp lại.", - "description": "Sprint, iteration hoặc bất kỳ thuật ngữ nào khác bạn sử dụng để theo dõi công việc hàng tuần hoặc hai tuần một lần đều là một chu kỳ." - } - } - }, - "no_issues": { - "title": "Chưa thêm mục công việc vào chu kỳ", - "description": "Thêm hoặc tạo mục công việc bạn muốn đặt khung thời gian và giao trong chu kỳ này", - "primary_button": { - "text": "Tạo mục công việc mới" - }, - "secondary_button": { - "text": "Thêm mục công việc hiện có" - } - }, - "completed_no_issues": { - "title": "Không có mục công việc trong chu kỳ", - "description": "Không có mục công việc trong chu kỳ. Mục công việc đã được chuyển hoặc ẩn. Để xem mục công việc đã ẩn (nếu có), vui lòng cập nhật thuộc tính hiển thị của bạn tương ứng." - }, - "active": { - "title": "Không có chu kỳ hoạt động", - "description": "Chu kỳ hoạt động bao gồm bất kỳ khoảng thời gian nào có ngày hôm nay trong phạm vi của nó. Tìm tiến độ và chi tiết về chu kỳ hoạt động ở đây." - }, - "archived": { - "title": "Chưa có chu kỳ đã lưu trữ", - "description": "Để tổ chức dự án của bạn, hãy lưu trữ chu kỳ đã hoàn thành. Bạn có thể tìm thấy chúng ở đây sau khi lưu trữ." - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "Tạo mục công việc và giao nó cho ai đó, thậm chí là chính bạn", - "description": "Xem mục công việc như công việc, nhiệm vụ hoặc công việc cần hoàn thành. Mục công việc và các mục công việc con của chúng thường dựa trên thời gian, được giao cho thành viên nhóm để thực hiện. Nhóm của bạn thúc đẩy dự án đạt được mục tiêu bằng cách tạo, giao và hoàn thành mục công việc.", - "primary_button": { - "text": "Tạo mục công việc đầu tiên của bạn", - "comic": { - "title": "Mục công việc là khối xây dựng cơ bản trong Plane.", - "description": "Thiết kế lại giao diện Plane, định vị lại thương hiệu công ty hoặc ra mắt hệ thống phun nhiên liệu mới đều là ví dụ về mục công việc có thể chứa các mục công việc con." - } - } - }, - "no_archived_issues": { - "title": "Chưa có mục công việc đã lưu trữ", - "description": "Thông qua phương thức thủ công hoặc tự động, bạn có thể lưu trữ mục công việc đã hoàn thành hoặc đã hủy. Bạn có thể tìm thấy chúng ở đây sau khi lưu trữ.", - "primary_button": { - "text": "Thiết lập tự động hóa" - } - }, - "issues_empty_filter": { - "title": "Không tìm thấy mục công việc phù hợp với bộ lọc", - "secondary_button": { - "text": "Xóa tất cả bộ lọc" - } - } - } - }, - "project_module": { - "add_module": "Thêm mô-đun", - "update_module": "Cập nhật mô-đun", - "create_module": "Tạo mô-đun", - "archive_module": "Lưu trữ mô-đun", - "restore_module": "Khôi phục mô-đun", - "delete_module": "Xóa mô-đun", - "empty_state": { - "general": { - "title": "Ánh xạ cột mốc dự án vào mô-đun, dễ dàng theo dõi công việc tổng hợp.", - "description": "Một nhóm mục công việc thuộc cấp cha trong cấu trúc logic tạo thành một mô-đun. Xem nó như một cách theo dõi công việc theo cột mốc dự án. Chúng có chu kỳ riêng và thời hạn cùng với các tính năng phân tích giúp bạn hiểu bạn đang ở đâu so với cột mốc.", - "primary_button": { - "text": "Xây dựng mô-đun đầu tiên của bạn", - "comic": { - "title": "Mô-đun giúp nhóm công việc theo cấu trúc phân cấp.", - "description": "Mô-đun giỏ hàng, mô-đun khung gầm và mô-đun kho đều là ví dụ tốt về nhóm như vậy." - } - } - }, - "no_issues": { - "title": "Không có mục công việc trong mô-đun", - "description": "Tạo hoặc thêm mục công việc bạn muốn hoàn thành như một phần của mô-đun này", - "primary_button": { - "text": "Tạo mục công việc mới" - }, - "secondary_button": { - "text": "Thêm mục công việc hiện có" - } - }, - "archived": { - "title": "Chưa có mô-đun đã lưu trữ", - "description": "Để tổ chức dự án của bạn, hãy lưu trữ mô-đun đã hoàn thành hoặc đã hủy. Bạn có thể tìm thấy chúng ở đây sau khi lưu trữ." - }, - "sidebar": { - "in_active": "Mô-đun này chưa được kích hoạt.", - "invalid_date": "Ngày không hợp lệ. Vui lòng nhập ngày hợp lệ." - } - }, - "quick_actions": { - "archive_module": "Lưu trữ mô-đun", - "archive_module_description": "Chỉ mô-đun đã hoàn thành hoặc đã hủy\ncó thể được lưu trữ.", - "delete_module": "Xóa mô-đun" - }, - "toast": { - "copy": { - "success": "Đã sao chép liên kết mô-đun vào bảng tạm" - }, - "delete": { - "success": "Đã xóa mô-đun thành công", - "error": "Xóa mô-đun thất bại" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "Lưu chế độ xem đã lọc cho dự án của bạn. Tạo bao nhiêu tùy ý", - "description": "Chế độ xem là bộ bộ lọc đã lưu mà bạn thường xuyên sử dụng hoặc muốn truy cập dễ dàng. Tất cả đồng nghiệp trong dự án có thể thấy chế độ xem của mọi người và chọn cái phù hợp nhất với nhu cầu của họ.", - "primary_button": { - "text": "Tạo chế độ xem đầu tiên của bạn", - "comic": { - "title": "Chế độ xem hoạt động dựa trên thuộc tính mục công việc.", - "description": "Bạn có thể tạo chế độ xem ở đây sử dụng bất kỳ số lượng thuộc tính nào làm bộ lọc theo nhu cầu của bạn." - } - } - }, - "filter": { - "title": "Không có chế độ xem phù hợp", - "description": "Không có chế độ xem phù hợp với tiêu chí tìm kiếm.\nTạo chế độ xem mới." - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "Viết ghi chú, tài liệu hoặc cơ sở kiến thức đầy đủ. Để trợ lý AI Galileo của Plane giúp bạn bắt đầu", - "description": "Trang là không gian ghi lại suy nghĩ trong Plane. Ghi lại các ghi chú cuộc họp, định dạng dễ dàng, nhúng mục công việc, sử dụng thư viện thành phần để bố cục và lưu tất cả trong ngữ cảnh dự án. Để hoàn thành nhanh bất kỳ tài liệu nào, bạn có thể gọi AI Galileo của Plane thông qua phím tắt hoặc nhấp nút.", - "primary_button": { - "text": "Tạo trang đầu tiên của bạn" - } - }, - "private": { - "title": "Chưa có trang riêng tư", - "description": "Lưu ý riêng tư của bạn ở đây. Khi sẵn sàng chia sẻ, nhóm của bạn chỉ cách một cú nhấp chuột.", - "primary_button": { - "text": "Tạo trang đầu tiên của bạn" - } - }, - "public": { - "title": "Chưa có trang công khai", - "description": "Xem các trang được chia sẻ với mọi người trong dự án tại đây.", - "primary_button": { - "text": "Tạo trang đầu tiên của bạn" - } - }, - "archived": { - "title": "Chưa có trang đã lưu trữ", - "description": "Lưu trữ các trang không còn trong tầm nhìn của bạn. Truy cập chúng ở đây khi cần." - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "Không tìm thấy kết quả" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "Không tìm thấy mục công việc phù hợp" - }, - "no_issues": { - "title": "Không tìm thấy mục công việc" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "Chưa có bình luận", - "description": "Bình luận có thể được sử dụng như không gian thảo luận và theo dõi cho mục công việc" - } - } - }, - "notification": { - "label": "Hộp thư đến", - "page_label": "{workspace} - Hộp thư đến", - "options": { - "mark_all_as_read": "Đánh dấu tất cả là đã đọc", - "mark_read": "Đánh dấu đã đọc", - "mark_unread": "Đánh dấu chưa đọc", - "refresh": "Làm mới", - "filters": "Bộ lọc hộp thư đến", - "show_unread": "Hiển thị chưa đọc", - "show_snoozed": "Hiển thị đã tạm hoãn", - "show_archived": "Hiển thị đã lưu trữ", - "mark_archive": "Lưu trữ", - "mark_unarchive": "Hủy lưu trữ", - "mark_snooze": "Tạm hoãn", - "mark_unsnooze": "Hủy tạm hoãn" - }, - "toasts": { - "read": "Thông báo đã được đánh dấu là đã đọc", - "unread": "Thông báo đã được đánh dấu là chưa đọc", - "archived": "Thông báo đã được đánh dấu là đã lưu trữ", - "unarchived": "Thông báo đã được đánh dấu là đã hủy lưu trữ", - "snoozed": "Thông báo đã được tạm hoãn", - "unsnoozed": "Thông báo đã được hủy tạm hoãn" - }, - "empty_state": { - "detail": { - "title": "Chọn để xem chi tiết." - }, - "all": { - "title": "Không có mục công việc được giao", - "description": "Xem cập nhật về mục công việc được giao cho bạn tại đây" - }, - "mentions": { - "title": "Không có mục công việc được giao", - "description": "Xem cập nhật về mục công việc được giao cho bạn tại đây" - } - }, - "tabs": { - "all": "Tất cả", - "mentions": "Đề cập" - }, - "filter": { - "assigned": "Được giao cho tôi", - "created": "Được tạo bởi tôi", - "subscribed": "Được đăng ký bởi tôi" - }, - "snooze": { - "1_day": "1 ngày", - "3_days": "3 ngày", - "5_days": "5 ngày", - "1_week": "1 tuần", - "2_weeks": "2 tuần", - "custom": "Tùy chỉnh" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "Thêm mục công việc vào chu kỳ để xem tiến độ của nó" - }, - "chart": { - "title": "Thêm mục công việc vào chu kỳ để xem biểu đồ burndown." - }, - "priority_issue": { - "title": "Xem nhanh các mục công việc ưu tiên cao đang được xử lý trong chu kỳ." - }, - "assignee": { - "title": "Thêm người phụ trách cho mục công việc để xem phân tích công việc theo người phụ trách." - }, - "label": { - "title": "Thêm nhãn cho mục công việc để xem phân tích công việc theo nhãn." - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "Dự án chưa bật tính năng thu thập.", - "description": "Tính năng thu thập giúp bạn quản lý các yêu cầu đến của dự án và thêm chúng như mục công việc trong quy trình làm việc. Bật tính năng thu thập từ cài đặt dự án để quản lý yêu cầu.", - "primary_button": { - "text": "Quản lý tính năng" - } - }, - "cycle": { - "title": "Dự án này chưa bật tính năng chu kỳ.", - "description": "Chia nhỏ công việc theo khung thời gian, đặt ngày từ thời hạn dự án, và đạt được tiến độ cụ thể với tư cách là một nhóm. Bật tính năng chu kỳ cho dự án của bạn để bắt đầu sử dụng.", - "primary_button": { - "text": "Quản lý tính năng" - } - }, - "module": { - "title": "Dự án chưa bật tính năng mô-đun.", - "description": "Mô-đun là khối xây dựng cơ bản của dự án. Bật mô-đun từ cài đặt dự án để bắt đầu sử dụng chúng.", - "primary_button": { - "text": "Quản lý tính năng" - } - }, - "page": { - "title": "Dự án chưa bật tính năng trang.", - "description": "Trang là khối xây dựng cơ bản của dự án. Bật trang từ cài đặt dự án để bắt đầu sử dụng chúng.", - "primary_button": { - "text": "Quản lý tính năng" - } - }, - "view": { - "title": "Dự án chưa bật tính năng chế độ xem.", - "description": "Chế độ xem là khối xây dựng cơ bản của dự án. Bật chế độ xem từ cài đặt dự án để bắt đầu sử dụng chúng.", - "primary_button": { - "text": "Quản lý tính năng" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "Nháp một mục công việc", - "empty_state": { - "title": "Mục công việc viết dở và bình luận sắp ra mắt sẽ hiển thị ở đây.", - "description": "Để thử tính năng này, hãy bắt đầu thêm mục công việc và rời đi giữa chừng, hoặc tạo bản nháp đầu tiên của bạn bên dưới. 😉", - "primary_button": { - "text": "Tạo bản nháp đầu tiên của bạn" - } - }, - "delete_modal": { - "title": "Xóa bản nháp", - "description": "Bạn có chắc chắn muốn xóa bản nháp này không? Hành động này không thể hoàn tác." - }, - "toasts": { - "created": { - "success": "Đã tạo bản nháp", - "error": "Không thể tạo mục công việc. Vui lòng thử lại." - }, - "deleted": { - "success": "Đã xóa bản nháp" - } - } - }, - "stickies": { - "title": "Ghi chú của bạn", - "placeholder": "Nhấp vào đây để nhập", - "all": "Tất cả ghi chú", - "no-data": "Ghi lại một ý tưởng, nắm bắt một cảm hứng, hoặc ghi lại một suy nghĩ chợt nảy ra. Thêm ghi chú để bắt đầu.", - "add": "Thêm ghi chú", - "search_placeholder": "Tìm kiếm theo tiêu đề", - "delete": "Xóa ghi chú", - "delete_confirmation": "Bạn có chắc chắn muốn xóa ghi chú này không?", - "empty_state": { - "simple": "Ghi lại một ý tưởng, nắm bắt một cảm hứng, hoặc ghi lại một suy nghĩ chợt nảy ra. Thêm ghi chú để bắt đầu.", - "general": { - "title": "Ghi chú là ghi chú nhanh và việc cần làm mà bạn ghi lại ngay lập tức.", - "description": "Dễ dàng nắm bắt ý tưởng và sáng tạo của bạn bằng cách tạo ghi chú có thể truy cập từ mọi nơi, mọi lúc.", - "primary_button": { - "text": "Thêm ghi chú" - } - }, - "search": { - "title": "Điều này không khớp với bất kỳ ghi chú nào của bạn.", - "description": "Thử sử dụng các thuật ngữ khác, hoặc nếu bạn chắc chắn\ntìm kiếm là chính xác, hãy cho chúng tôi biết.", - "primary_button": { - "text": "Thêm ghi chú" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "Tên ghi chú không thể vượt quá 100 ký tự.", - "already_exists": "Đã tồn tại một ghi chú không có mô tả" - }, - "created": { - "title": "Đã tạo ghi chú", - "message": "Ghi chú đã được tạo thành công" - }, - "not_created": { - "title": "Chưa tạo ghi chú", - "message": "Không thể tạo ghi chú" - }, - "updated": { - "title": "Đã cập nhật ghi chú", - "message": "Ghi chú đã được cập nhật thành công" - }, - "not_updated": { - "title": "Chưa cập nhật ghi chú", - "message": "Không thể cập nhật ghi chú" - }, - "removed": { - "title": "Đã xóa ghi chú", - "message": "Ghi chú đã được xóa thành công" - }, - "not_removed": { - "title": "Chưa xóa ghi chú", - "message": "Không thể xóa ghi chú" - } - } - }, - "role_details": { - "guest": { - "title": "Khách", - "description": "Thành viên bên ngoài của tổ chức có thể được mời với tư cách khách." - }, - "member": { - "title": "Thành viên", - "description": "Có thể đọc, viết, chỉnh sửa và xóa thực thể trong dự án, chu kỳ và mô-đun" - }, - "admin": { - "title": "Quản trị viên", - "description": "Tất cả quyền trong không gian làm việc đều được đặt là cho phép." - } - }, - "user_roles": { - "product_or_project_manager": "Quản lý sản phẩm/dự án", - "development_or_engineering": "Phát triển/Kỹ thuật", - "founder_or_executive": "Nhà sáng lập/Giám đốc điều hành", - "freelancer_or_consultant": "Freelancer/Tư vấn viên", - "marketing_or_growth": "Marketing/Tăng trưởng", - "sales_or_business_development": "Bán hàng/Phát triển kinh doanh", - "support_or_operations": "Hỗ trợ/Vận hành", - "student_or_professor": "Sinh viên/Giáo sư", - "human_resources": "Nhân sự", - "other": "Khác" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "Nhập và đồng bộ mục công việc từ kho lưu trữ GitHub." - }, - "jira": { - "title": "Jira", - "description": "Nhập mục công việc và sử thi từ dự án và sử thi Jira." - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "Xuất mục công việc thành tệp CSV.", - "short_description": "Xuất sang CSV" - }, - "excel": { - "title": "Excel", - "description": "Xuất mục công việc thành tệp Excel.", - "short_description": "Xuất sang Excel" - }, - "xlsx": { - "title": "Excel", - "description": "Xuất mục công việc thành tệp Excel.", - "short_description": "Xuất sang Excel" - }, - "json": { - "title": "JSON", - "description": "Xuất mục công việc thành tệp JSON.", - "short_description": "Xuất sang JSON" - } - }, - "default_global_view": { - "all_issues": "Tất cả mục công việc", - "assigned": "Đã giao", - "created": "Đã tạo", - "subscribed": "Đã đăng ký" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "Tùy chọn hệ thống" - }, - "light": { - "label": "Sáng" - }, - "dark": { - "label": "Tối" - }, - "light_contrast": { - "label": "Sáng tương phản cao" - }, - "dark_contrast": { - "label": "Tối tương phản cao" - }, - "custom": { - "label": "Chủ đề tùy chỉnh" - } - } - }, - "project_modules": { - "status": { - "backlog": "Tồn đọng", - "planned": "Đã lên kế hoạch", - "in_progress": "Đang tiến hành", - "paused": "Đã tạm dừng", - "completed": "Đã hoàn thành", - "cancelled": "Đã hủy" - }, - "layout": { - "list": "Bố cục danh sách", - "board": "Bố cục bảng", - "timeline": "Bố cục dòng thời gian" - }, - "order_by": { - "name": "Tên", - "progress": "Tiến độ", - "issues": "Số lượng mục công việc", - "due_date": "Ngày hết hạn", - "created_at": "Ngày tạo", - "manual": "Thủ công" - } - }, - "cycle": { - "label": "{count, plural, one {chu kỳ} other {chu kỳ}}", - "no_cycle": "Không có chu kỳ" - }, - "module": { - "label": "{count, plural, one {mô-đun} other {mô-đun}}", - "no_module": "Không có mô-đun" - }, - "description_versions": { - "last_edited_by": "Chỉnh sửa lần cuối bởi", - "previously_edited_by": "Trước đây được chỉnh sửa bởi", - "edited_by": "Được chỉnh sửa bởi" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane không khởi động được. Điều này có thể do một hoặc nhiều dịch vụ Plane không khởi động được.", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Chọn View Logs từ setup.sh và log Docker để chắc chắn." - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "Phác thảo", - "empty_state": { - "title": "Thiếu tiêu đề", - "description": "Hãy thêm một số tiêu đề vào trang này để xem chúng ở đây." - } - }, - "info": { - "label": "Thông tin", - "document_info": { - "words": "Từ", - "characters": "Ký tự", - "paragraphs": "Đoạn văn", - "read_time": "Thời gian đọc" - }, - "actors_info": { - "edited_by": "Được chỉnh sửa bởi", - "created_by": "Được tạo bởi" - }, - "version_history": { - "label": "Lịch sử phiên bản", - "current_version": "Phiên bản hiện tại" - } - }, - "assets": { - "label": "Tài sản", - "download_button": "Tải xuống", - "empty_state": { - "title": "Thiếu hình ảnh", - "description": "Thêm hình ảnh để xem chúng ở đây." - } - } - }, - "open_button": "Mở bảng điều hướng", - "close_button": "Đóng bảng điều hướng", - "outline_floating_button": "Mở phác thảo" - } -} diff --git a/packages/i18n/src/locales/vi-VN/translations.ts b/packages/i18n/src/locales/vi-VN/translations.ts new file mode 100644 index 0000000000..ec8beba8aa --- /dev/null +++ b/packages/i18n/src/locales/vi-VN/translations.ts @@ -0,0 +1,2595 @@ +export default { + sidebar: { + projects: "Dự án", + pages: "Trang", + new_work_item: "Mục công việc mới", + home: "Trang chủ", + your_work: "Công việc của tôi", + inbox: "Hộp thư đến", + workspace: "Không gian làm việc", + views: "Chế độ xem", + analytics: "Phân tích", + work_items: "Mục công việc", + cycles: "Chu kỳ", + modules: "Mô-đun", + intake: "Thu thập", + drafts: "Bản nháp", + favorites: "Yêu thích", + pro: "Phiên bản Pro", + upgrade: "Nâng cấp", + }, + auth: { + common: { + email: { + label: "Email", + placeholder: "name@company.com", + errors: { + required: "Email là bắt buộc", + invalid: "Email không hợp lệ", + }, + }, + password: { + label: "Mật khẩu", + set_password: "Đặt mật khẩu", + placeholder: "Nhập mật khẩu", + confirm_password: { + label: "Xác nhận mật khẩu", + placeholder: "Xác nhận mật khẩu", + }, + current_password: { + label: "Mật khẩu hiện tại", + }, + new_password: { + label: "Mật khẩu mới", + placeholder: "Nhập mật khẩu mới", + }, + change_password: { + label: { + default: "Thay đổi mật khẩu", + submitting: "Đang thay đổi mật khẩu", + }, + }, + errors: { + match: "Mật khẩu không khớp", + empty: "Vui lòng nhập mật khẩu", + length: "Mật khẩu phải dài hơn 8 ký tự", + strength: { + weak: "Mật khẩu yếu", + strong: "Mật khẩu mạnh", + }, + }, + submit: "Đặt mật khẩu", + toast: { + change_password: { + success: { + title: "Thành công!", + message: "Mật khẩu đã được thay đổi thành công.", + }, + error: { + title: "Lỗi!", + message: "Đã xảy ra lỗi. Vui lòng thử lại.", + }, + }, + }, + }, + unique_code: { + label: "Mã duy nhất", + placeholder: "gets-sets-flys", + paste_code: "Dán mã xác minh đã gửi đến email của bạn", + requesting_new_code: "Đang yêu cầu mã mới", + sending_code: "Đang gửi mã", + }, + already_have_an_account: "Đã có tài khoản?", + login: "Đăng nhập", + create_account: "Tạo tài khoản", + new_to_plane: "Lần đầu sử dụng Plane?", + back_to_sign_in: "Quay lại đăng nhập", + resend_in: "Gửi lại sau {seconds} giây", + sign_in_with_unique_code: "Đăng nhập bằng mã duy nhất", + forgot_password: "Quên mật khẩu?", + }, + sign_up: { + header: { + label: "Tạo tài khoản để bắt đầu quản lý công việc cùng nhóm của bạn.", + step: { + email: { + header: "Đăng ký", + sub_header: "", + }, + password: { + header: "Đăng ký", + sub_header: "Đăng ký bằng cách kết hợp email-mật khẩu.", + }, + unique_code: { + header: "Đăng ký", + sub_header: "Đăng ký bằng mã duy nhất được gửi đến email trên.", + }, + }, + }, + errors: { + password: { + strength: "Vui lòng đặt mật khẩu mạnh để tiếp tục", + }, + }, + }, + sign_in: { + header: { + label: "Đăng nhập để bắt đầu quản lý công việc cùng nhóm của bạn.", + step: { + email: { + header: "Đăng nhập hoặc đăng ký", + sub_header: "", + }, + password: { + header: "Đăng nhập hoặc đăng ký", + sub_header: "Đăng nhập bằng cách kết hợp email-mật khẩu của bạn.", + }, + unique_code: { + header: "Đăng nhập hoặc đăng ký", + sub_header: "Đăng nhập bằng mã duy nhất được gửi đến email trên.", + }, + }, + }, + }, + forgot_password: { + title: "Đặt lại mật khẩu", + description: + "Nhập địa chỉ email đã xác minh cho tài khoản người dùng của bạn và chúng tôi sẽ gửi cho bạn liên kết đặt lại mật khẩu.", + email_sent: "Chúng tôi đã gửi liên kết đặt lại đến email của bạn", + send_reset_link: "Gửi liên kết đặt lại", + errors: { + smtp_not_enabled: + "Chúng tôi nhận thấy quản trị viên của bạn chưa bật SMTP, chúng tôi sẽ không thể gửi liên kết đặt lại mật khẩu", + }, + toast: { + success: { + title: "Email đã được gửi", + message: + "Hãy kiểm tra hộp thư đến của bạn để lấy liên kết đặt lại mật khẩu. Nếu bạn không nhận được trong vòng vài phút, vui lòng kiểm tra thư mục spam.", + }, + error: { + title: "Lỗi!", + message: "Đã xảy ra lỗi. Vui lòng thử lại.", + }, + }, + }, + reset_password: { + title: "Đặt mật khẩu mới", + description: "Bảo vệ tài khoản của bạn bằng mật khẩu mạnh", + }, + set_password: { + title: "Bảo vệ tài khoản của bạn", + description: "Đặt mật khẩu giúp bạn đăng nhập an toàn", + }, + sign_out: { + toast: { + error: { + title: "Lỗi!", + message: "Không thể đăng xuất. Vui lòng thử lại.", + }, + }, + }, + }, + submit: "Gửi", + cancel: "Hủy", + loading: "Đang tải", + error: "Lỗi", + success: "Thành công", + warning: "Cảnh báo", + info: "Thông tin", + close: "Đóng", + yes: "Có", + no: "Không", + ok: "OK", + name: "Tên", + description: "Mô tả", + search: "Tìm kiếm", + add_member: "Thêm thành viên", + adding_members: "Đang thêm thành viên", + remove_member: "Xóa thành viên", + add_members: "Thêm thành viên", + adding_member: "Đang thêm thành viên", + remove_members: "Xóa thành viên", + add: "Thêm", + adding: "Đang thêm", + remove: "Xóa", + add_new: "Thêm mới", + remove_selected: "Xóa đã chọn", + first_name: "Tên", + last_name: "Họ", + email: "Email", + display_name: "Tên hiển thị", + role: "Vai trò", + timezone: "Múi giờ", + avatar: "Ảnh đại diện", + cover_image: "Ảnh bìa", + password: "Mật khẩu", + change_cover: "Thay đổi ảnh bìa", + language: "Ngôn ngữ", + saving: "Đang lưu", + save_changes: "Lưu thay đổi", + deactivate_account: "Vô hiệu hóa tài khoản", + deactivate_account_description: + "Khi tài khoản bị vô hiệu hóa, tất cả dữ liệu và tài nguyên trong tài khoản đó sẽ bị xóa vĩnh viễn và không thể khôi phục.", + profile_settings: "Cài đặt hồ sơ", + your_account: "Tài khoản của bạn", + security: "Bảo mật", + activity: "Hoạt động", + appearance: "Giao diện", + notifications: "Thông báo", + workspaces: "Không gian làm việc", + create_workspace: "Tạo không gian làm việc", + invitations: "Lời mời", + summary: "Tóm tắt", + assigned: "Đã phân công", + created: "Đã tạo", + subscribed: "Đã đăng ký", + you_do_not_have_the_permission_to_access_this_page: "Bạn không có quyền truy cập trang này.", + something_went_wrong_please_try_again: "Đã xảy ra lỗi. Vui lòng thử lại.", + load_more: "Tải thêm", + select_or_customize_your_interface_color_scheme: "Chọn hoặc tùy chỉnh sơ đồ màu giao diện của bạn.", + theme: "Chủ đề", + system_preference: "Tùy chọn hệ thống", + light: "Sáng", + dark: "Tối", + light_contrast: "Sáng tương phản cao", + dark_contrast: "Tối tương phản cao", + custom: "Tùy chỉnh", + select_your_theme: "Chọn chủ đề của bạn", + customize_your_theme: "Tùy chỉnh chủ đề của bạn", + background_color: "Màu nền", + text_color: "Màu chữ", + primary_color: "Màu chính (chủ đề)", + sidebar_background_color: "Màu nền thanh bên", + sidebar_text_color: "Màu chữ thanh bên", + set_theme: "Đặt chủ đề", + enter_a_valid_hex_code_of_6_characters: "Nhập mã hex hợp lệ gồm 6 ký tự", + background_color_is_required: "Màu nền là bắt buộc", + text_color_is_required: "Màu chữ là bắt buộc", + primary_color_is_required: "Màu chính là bắt buộc", + sidebar_background_color_is_required: "Màu nền thanh bên là bắt buộc", + sidebar_text_color_is_required: "Màu chữ thanh bên là bắt buộc", + updating_theme: "Đang cập nhật chủ đề", + theme_updated_successfully: "Chủ đề đã được cập nhật thành công", + failed_to_update_the_theme: "Không thể cập nhật chủ đề", + email_notifications: "Thông báo qua email", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "Cập nhật những mục công việc bạn đã đăng ký. Bật tính năng này để nhận thông báo.", + email_notification_setting_updated_successfully: "Cài đặt thông báo email đã được cập nhật thành công", + failed_to_update_email_notification_setting: "Không thể cập nhật cài đặt thông báo email", + notify_me_when: "Thông báo cho tôi khi", + property_changes: "Thay đổi thuộc tính", + property_changes_description: + "Thông báo cho tôi khi thuộc tính của mục công việc (như người phụ trách, mức độ ưu tiên, ước tính, v.v.) thay đổi.", + state_change: "Thay đổi trạng thái", + state_change_description: "Thông báo cho tôi khi mục công việc được chuyển sang trạng thái khác", + issue_completed: "Mục công việc hoàn thành", + issue_completed_description: "Chỉ thông báo cho tôi khi mục công việc hoàn thành", + comments: "Bình luận", + comments_description: "Thông báo cho tôi khi ai đó bình luận về mục công việc", + mentions: "Đề cập", + mentions_description: "Chỉ thông báo cho tôi khi ai đó đề cập đến tôi trong bình luận hoặc mô tả", + old_password: "Mật khẩu cũ", + general_settings: "Cài đặt chung", + sign_out: "Đăng xuất", + signing_out: "Đang đăng xuất", + active_cycles: "Chu kỳ hoạt động", + active_cycles_description: + "Theo dõi chu kỳ trên các dự án, theo dõi mục công việc ưu tiên cao và chú ý đến các chu kỳ cần quan tâm.", + on_demand_snapshots_of_all_your_cycles: "Ảnh chụp nhanh theo yêu cầu của tất cả chu kỳ của bạn", + upgrade: "Nâng cấp", + "10000_feet_view": "Góc nhìn tổng quan về tất cả chu kỳ hoạt động.", + "10000_feet_view_description": + "Phóng to tầm nhìn để xem tất cả chu kỳ đang diễn ra trong tất cả dự án cùng một lúc, thay vì xem từng chu kỳ trong mỗi dự án.", + get_snapshot_of_each_active_cycle: "Nhận ảnh chụp nhanh của mỗi chu kỳ hoạt động.", + get_snapshot_of_each_active_cycle_description: + "Theo dõi số liệu tổng hợp cho tất cả chu kỳ hoạt động, xem trạng thái tiến độ và hiểu phạm vi liên quan đến thời hạn.", + compare_burndowns: "So sánh biểu đồ burndown.", + compare_burndowns_description: "Giám sát hiệu suất của từng nhóm bằng cách xem báo cáo burndown cho mỗi chu kỳ.", + quickly_see_make_or_break_issues: "Nhanh chóng xem các vấn đề quan trọng.", + quickly_see_make_or_break_issues_description: + "Xem trước các mục công việc ưu tiên cao liên quan đến thời hạn trong mỗi chu kỳ. Xem tất cả mục công việc trong mỗi chu kỳ chỉ bằng một cú nhấp chuột.", + zoom_into_cycles_that_need_attention: "Phóng to vào chu kỳ cần chú ý.", + zoom_into_cycles_that_need_attention_description: + "Điều tra bất kỳ trạng thái chu kỳ nào không đáp ứng mong đợi chỉ bằng một cú nhấp chuột.", + stay_ahead_of_blockers: "Đi trước các yếu tố chặn.", + stay_ahead_of_blockers_description: + "Phát hiện thách thức từ dự án này sang dự án khác và xem các phụ thuộc giữa các chu kỳ không dễ thấy từ các chế độ xem khác.", + analytics: "Phân tích", + workspace_invites: "Lời mời không gian làm việc", + enter_god_mode: "Vào chế độ quản trị viên", + workspace_logo: "Logo không gian làm việc", + new_issue: "Mục công việc mới", + your_work: "Công việc của tôi", + drafts: "Bản nháp", + projects: "Dự án", + views: "Chế độ xem", + workspace: "Không gian làm việc", + archives: "Lưu trữ", + settings: "Cài đặt", + failed_to_move_favorite: "Không thể di chuyển mục yêu thích", + favorites: "Yêu thích", + no_favorites_yet: "Chưa có mục yêu thích", + create_folder: "Tạo thư mục", + new_folder: "Thư mục mới", + favorite_updated_successfully: "Đã cập nhật mục yêu thích thành công", + favorite_created_successfully: "Đã tạo mục yêu thích thành công", + folder_already_exists: "Thư mục đã tồn tại", + folder_name_cannot_be_empty: "Tên thư mục không thể trống", + something_went_wrong: "Đã xảy ra lỗi", + failed_to_reorder_favorite: "Không thể sắp xếp lại mục yêu thích", + favorite_removed_successfully: "Đã xóa mục yêu thích thành công", + failed_to_create_favorite: "Không thể tạo mục yêu thích", + failed_to_rename_favorite: "Không thể đổi tên mục yêu thích", + project_link_copied_to_clipboard: "Đã sao chép liên kết dự án vào bảng tạm", + link_copied: "Đã sao chép liên kết", + add_project: "Thêm dự án", + create_project: "Tạo dự án", + failed_to_remove_project_from_favorites: "Không thể xóa dự án khỏi mục yêu thích. Vui lòng thử lại.", + project_created_successfully: "Dự án đã được tạo thành công", + project_created_successfully_description: + "Dự án đã được tạo thành công. Bây giờ bạn có thể bắt đầu thêm mục công việc.", + project_name_already_taken: "Tên dự án đã được sử dụng.", + project_identifier_already_taken: "ID dự án đã được sử dụng.", + project_cover_image_alt: "Ảnh bìa dự án", + name_is_required: "Tên là bắt buộc", + title_should_be_less_than_255_characters: "Tiêu đề phải ít hơn 255 ký tự", + project_name: "Tên dự án", + project_id_must_be_at_least_1_character: "ID dự án phải có ít nhất 1 ký tự", + project_id_must_be_at_most_5_characters: "ID dự án chỉ được tối đa 5 ký tự", + project_id: "ID dự án", + project_id_tooltip_content: "Giúp xác định duy nhất mục công việc trong dự án của bạn. Tối đa 5 ký tự.", + description_placeholder: "Mô tả", + only_alphanumeric_non_latin_characters_allowed: "Chỉ cho phép các ký tự chữ số và không phải Latin.", + project_id_is_required: "ID dự án là bắt buộc", + project_id_allowed_char: "Chỉ cho phép các ký tự chữ số và không phải Latin.", + project_id_min_char: "ID dự án phải có ít nhất 1 ký tự", + project_id_max_char: "ID dự án chỉ được tối đa 5 ký tự", + project_description_placeholder: "Nhập mô tả dự án", + select_network: "Chọn mạng", + lead: "Người phụ trách", + date_range: "Khoảng thời gian", + private: "Riêng tư", + public: "Công khai", + accessible_only_by_invite: "Chỉ truy cập được bằng lời mời", + anyone_in_the_workspace_except_guests_can_join: + "Bất kỳ ai trong không gian làm việc ngoại trừ khách đều có thể tham gia", + creating: "Đang tạo", + creating_project: "Đang tạo dự án", + adding_project_to_favorites: "Đang thêm dự án vào mục yêu thích", + project_added_to_favorites: "Đã thêm dự án vào mục yêu thích", + couldnt_add_the_project_to_favorites: "Không thể thêm dự án vào mục yêu thích. Vui lòng thử lại.", + removing_project_from_favorites: "Đang xóa dự án khỏi mục yêu thích", + project_removed_from_favorites: "Đã xóa dự án khỏi mục yêu thích", + couldnt_remove_the_project_from_favorites: "Không thể xóa dự án khỏi mục yêu thích. Vui lòng thử lại.", + add_to_favorites: "Thêm vào mục yêu thích", + remove_from_favorites: "Xóa khỏi mục yêu thích", + publish_project: "Xuất bản dự án", + publish: "Xuất bản", + copy_link: "Sao chép liên kết", + leave_project: "Rời dự án", + join_the_project_to_rearrange: "Tham gia dự án để sắp xếp lại", + drag_to_rearrange: "Kéo để sắp xếp lại", + congrats: "Chúc mừng!", + open_project: "Mở dự án", + issues: "Mục công việc", + cycles: "Chu kỳ", + modules: "Mô-đun", + pages: "Trang", + intake: "Thu thập", + time_tracking: "Theo dõi thời gian", + work_management: "Quản lý công việc", + projects_and_issues: "Dự án và mục công việc", + projects_and_issues_description: + "Bật hoặc tắt các tính năng này trong dự án này. Có thể thay đổi theo thời gian phù hợp với nhu cầu.", + cycles_description: + "Thiết lập thời gian làm việc theo dự án và điều chỉnh thời gian nếu cần. Một chu kỳ có thể là 2 tuần, chu kỳ tiếp theo là 1 tuần.", + modules_description: "Tổ chức công việc thành các dự án con với người lãnh đạo và người được phân công riêng.", + views_description: "Lưu các tùy chọn sắp xếp, lọc và hiển thị tùy chỉnh hoặc chia sẻ chúng với nhóm của bạn.", + pages_description: "Tạo và chỉnh sửa nội dung tự do: ghi chú, tài liệu, bất cứ thứ gì.", + intake_description: + "Cho phép người không phải thành viên chia sẻ lỗi, phản hồi và đề xuất mà không làm gián đoạn quy trình làm việc của bạn.", + time_tracking_description: "Ghi lại thời gian dành cho các mục công việc và dự án.", + work_management_description: "Quản lý công việc và dự án của bạn một cách dễ dàng.", + documentation: "Tài liệu", + message_support: "Liên hệ hỗ trợ", + contact_sales: "Liên hệ bộ phận bán hàng", + hyper_mode: "Chế độ siêu tốc", + keyboard_shortcuts: "Phím tắt", + whats_new: "Có gì mới", + version: "Phiên bản", + we_are_having_trouble_fetching_the_updates: "Chúng tôi đang gặp sự cố khi lấy bản cập nhật.", + our_changelogs: "Nhật ký thay đổi của chúng tôi", + for_the_latest_updates: "Để cập nhật mới nhất.", + please_visit: "Vui lòng truy cập", + docs: "Tài liệu", + full_changelog: "Nhật ký thay đổi đầy đủ", + support: "Hỗ trợ", + discord: "Discord", + powered_by_plane_pages: "Được hỗ trợ bởi Plane Pages", + please_select_at_least_one_invitation: "Vui lòng chọn ít nhất một lời mời.", + please_select_at_least_one_invitation_description: + "Vui lòng chọn ít nhất một lời mời để tham gia không gian làm việc.", + we_see_that_someone_has_invited_you_to_join_a_workspace: + "Chúng tôi thấy có người đã mời bạn tham gia không gian làm việc", + join_a_workspace: "Tham gia không gian làm việc", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: + "Chúng tôi thấy có người đã mời bạn tham gia không gian làm việc", + join_a_workspace_description: "Tham gia không gian làm việc", + accept_and_join: "Chấp nhận và tham gia", + go_home: "Về trang chủ", + no_pending_invites: "Không có lời mời đang chờ xử lý", + you_can_see_here_if_someone_invites_you_to_a_workspace: + "Bạn có thể xem ở đây nếu ai đó mời bạn vào không gian làm việc", + back_to_home: "Quay lại trang chủ", + workspace_name: "Tên không gian làm việc", + deactivate_your_account: "Vô hiệu hóa tài khoản của bạn", + deactivate_your_account_description: + "Khi đã vô hiệu hóa, bạn sẽ không được phân công công việc và sẽ không được tính vào hóa đơn của không gian làm việc. Để kích hoạt lại tài khoản, bạn cần nhận được lời mời không gian làm việc gửi đến địa chỉ email này.", + deactivating: "Đang vô hiệu hóa", + confirm: "Xác nhận", + confirming: "Đang xác nhận", + draft_created: "Đã tạo bản nháp", + issue_created_successfully: "Đã tạo mục công việc thành công", + draft_creation_failed: "Tạo bản nháp thất bại", + issue_creation_failed: "Tạo mục công việc thất bại", + draft_issue: "Mục công việc nháp", + issue_updated_successfully: "Đã cập nhật mục công việc thành công", + issue_could_not_be_updated: "Không thể cập nhật mục công việc", + create_a_draft: "Tạo bản nháp", + save_to_drafts: "Lưu vào bản nháp", + save: "Lưu", + update: "Cập nhật", + updating: "Đang cập nhật", + create_new_issue: "Tạo mục công việc mới", + editor_is_not_ready_to_discard_changes: "Trình soạn thảo chưa sẵn sàng để hủy bỏ thay đổi", + failed_to_move_issue_to_project: "Không thể di chuyển mục công việc đến dự án", + create_more: "Tạo thêm", + add_to_project: "Thêm vào dự án", + discard: "Hủy bỏ", + duplicate_issue_found: "Đã tìm thấy mục công việc trùng lặp", + duplicate_issues_found: "Đã tìm thấy các mục công việc trùng lặp", + no_matching_results: "Không có kết quả phù hợp", + title_is_required: "Tiêu đề là bắt buộc", + title: "Tiêu đề", + state: "Trạng thái", + priority: "Ưu tiên", + none: "Không có", + urgent: "Khẩn cấp", + high: "Cao", + medium: "Trung bình", + low: "Thấp", + members: "Thành viên", + assignee: "Người phụ trách", + assignees: "Người phụ trách", + you: "Bạn", + labels: "Nhãn", + create_new_label: "Tạo nhãn mới", + start_date: "Ngày bắt đầu", + end_date: "Ngày kết thúc", + due_date: "Ngày hết hạn", + estimate: "Ước tính", + change_parent_issue: "Thay đổi mục công việc cha", + remove_parent_issue: "Xóa mục công việc cha", + add_parent: "Thêm mục cha", + loading_members: "Đang tải thành viên", + view_link_copied_to_clipboard: "Đã sao chép liên kết xem vào bảng tạm", + required: "Bắt buộc", + optional: "Tùy chọn", + Cancel: "Hủy", + edit: "Chỉnh sửa", + archive: "Lưu trữ", + restore: "Khôi phục", + open_in_new_tab: "Mở trong tab mới", + delete: "Xóa", + deleting: "Đang xóa", + make_a_copy: "Tạo bản sao", + move_to_project: "Di chuyển đến dự án", + good: "Chào buổi sáng", + morning: "Buổi sáng", + afternoon: "Buổi chiều", + evening: "Buổi tối", + show_all: "Hiển thị tất cả", + show_less: "Hiển thị ít hơn", + no_data_yet: "Chưa có dữ liệu", + syncing: "Đang đồng bộ", + add_work_item: "Thêm mục công việc", + advanced_description_placeholder: "Nhấn '/' để sử dụng lệnh", + create_work_item: "Tạo mục công việc", + attachments: "Tệp đính kèm", + declining: "Đang từ chối", + declined: "Đã từ chối", + decline: "Từ chối", + unassigned: "Chưa phân công", + work_items: "Mục công việc", + add_link: "Thêm liên kết", + points: "Điểm", + no_assignee: "Không có người phụ trách", + no_assignees_yet: "Chưa có người phụ trách", + no_labels_yet: "Chưa có nhãn", + ideal: "Lý tưởng", + current: "Hiện tại", + no_matching_members: "Không có thành viên phù hợp", + leaving: "Đang rời", + removing: "Đang xóa", + leave: "Rời", + refresh: "Làm mới", + refreshing: "Đang làm mới", + refresh_status: "Làm mới trạng thái", + prev: "Trước", + next: "Tiếp", + re_generating: "Đang tạo lại", + re_generate: "Tạo lại", + re_generate_key: "Tạo lại khóa", + export: "Xuất", + member: "{count, plural, other{# thành viên}}", + new_password_must_be_different_from_old_password: "Mật khẩu mới phải khác mật khẩu cũ", + edited: "đã chỉnh sửa", + bot: "bot", + project_view: { + sort_by: { + created_at: "Thời gian tạo", + updated_at: "Thời gian cập nhật", + name: "Tên", + }, + }, + toast: { + success: "Thành công!", + error: "Lỗi!", + }, + links: { + toasts: { + created: { + title: "Đã tạo liên kết", + message: "Liên kết đã được tạo thành công", + }, + not_created: { + title: "Chưa tạo liên kết", + message: "Không thể tạo liên kết", + }, + updated: { + title: "Đã cập nhật liên kết", + message: "Liên kết đã được cập nhật thành công", + }, + not_updated: { + title: "Chưa cập nhật liên kết", + message: "Không thể cập nhật liên kết", + }, + removed: { + title: "Đã xóa liên kết", + message: "Liên kết đã được xóa thành công", + }, + not_removed: { + title: "Chưa xóa liên kết", + message: "Không thể xóa liên kết", + }, + }, + }, + home: { + empty: { + quickstart_guide: "Hướng dẫn nhanh", + not_right_now: "Không phải bây giờ", + create_project: { + title: "Tạo dự án", + description: "Trong Plane, hầu hết mọi thứ đều bắt đầu từ dự án.", + cta: "Bắt đầu", + }, + invite_team: { + title: "Mời nhóm của bạn", + description: "Xây dựng, phát hành và quản lý cùng với đồng nghiệp.", + cta: "Mời họ tham gia", + }, + configure_workspace: { + title: "Thiết lập không gian làm việc của bạn", + description: "Bật hoặc tắt tính năng, hoặc thiết lập thêm.", + cta: "Cấu hình không gian làm việc này", + }, + personalize_account: { + title: "Cá nhân hóa Plane cho bạn", + description: "Chọn ảnh đại diện, màu sắc và nhiều hơn nữa.", + cta: "Cá nhân hóa ngay", + }, + widgets: { + title: "Không có tiện ích nào trông có vẻ yên tĩnh, hãy bật chúng lên", + description: + "Có vẻ như tất cả tiện ích của bạn đều đã bị tắt. Bật chúng ngay\nđể nâng cao trải nghiệm của bạn!", + primary_button: { + text: "Quản lý tiện ích", + }, + }, + }, + quick_links: { + empty: "Lưu liên kết liên quan đến công việc mà bạn muốn truy cập thuận tiện.", + add: "Thêm liên kết nhanh", + title: "Liên kết nhanh", + title_plural: "Liên kết nhanh", + }, + recents: { + title: "Gần đây", + empty: { + project: "Sau khi truy cập dự án, các dự án gần đây của bạn sẽ xuất hiện ở đây.", + page: "Sau khi truy cập trang, các trang gần đây của bạn sẽ xuất hiện ở đây.", + issue: "Sau khi truy cập mục công việc, các mục công việc gần đây của bạn sẽ xuất hiện ở đây.", + default: "Bạn chưa có dự án gần đây nào.", + }, + filters: { + all: "Tất cả", + projects: "Dự án", + pages: "Trang", + issues: "Mục công việc", + }, + }, + new_at_plane: { + title: "Tính năng mới của Plane", + }, + quick_tutorial: { + title: "Hướng dẫn nhanh", + }, + widget: { + reordered_successfully: "Đã sắp xếp lại tiện ích thành công.", + reordering_failed: "Đã xảy ra lỗi khi sắp xếp lại tiện ích.", + }, + manage_widgets: "Quản lý tiện ích", + title: "Trang chủ", + star_us_on_github: "Gắn sao cho chúng tôi trên GitHub", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL không hợp lệ", + placeholder: "Nhập hoặc dán URL", + }, + title: { + text: "Tiêu đề hiển thị", + placeholder: "Bạn muốn hiển thị liên kết này như thế nào", + }, + }, + }, + common: { + all: "Tất cả", + states: "Trạng thái", + state: "Trạng thái", + state_groups: "Nhóm trạng thái", + state_group: "Nhóm trạng thái", + priorities: "Ưu tiên", + priority: "Ưu tiên", + team_project: "Dự án nhóm", + project: "Dự án", + cycle: "Chu kỳ", + cycles: "Chu kỳ", + module: "Mô-đun", + modules: "Mô-đun", + labels: "Nhãn", + label: "Nhãn", + assignees: "Người phụ trách", + assignee: "Người phụ trách", + created_by: "Người tạo", + none: "Không có", + link: "Liên kết", + estimates: "Ước tính", + estimate: "Ước tính", + created_at: "Được tạo vào", + completed_at: "Hoàn thành vào", + layout: "Bố cục", + filters: "Bộ lọc", + display: "Hiển thị", + load_more: "Tải thêm", + activity: "Hoạt động", + analytics: "Phân tích", + dates: "Ngày tháng", + success: "Thành công!", + something_went_wrong: "Đã xảy ra lỗi", + error: { + label: "Lỗi!", + message: "Đã xảy ra lỗi. Vui lòng thử lại.", + }, + group_by: "Nhóm theo", + epic: "Sử thi", + epics: "Sử thi", + work_item: "Mục công việc", + work_items: "Mục công việc", + sub_work_item: "Mục công việc con", + add: "Thêm", + warning: "Cảnh báo", + updating: "Đang cập nhật", + adding: "Đang thêm", + update: "Cập nhật", + creating: "Đang tạo", + create: "Tạo", + cancel: "Hủy", + description: "Mô tả", + title: "Tiêu đề", + attachment: "Tệp đính kèm", + general: "Chung", + features: "Tính năng", + automation: "Tự động hóa", + project_name: "Tên dự án", + project_id: "ID dự án", + project_timezone: "Múi giờ dự án", + created_on: "Được tạo vào", + update_project: "Cập nhật dự án", + identifier_already_exists: "Định danh đã tồn tại", + add_more: "Thêm nữa", + defaults: "Mặc định", + add_label: "Thêm nhãn", + customize_time_range: "Tùy chỉnh khoảng thời gian", + loading: "Đang tải", + attachments: "Tệp đính kèm", + property: "Thuộc tính", + properties: "Thuộc tính", + parent: "Mục cha", + page: "Trang", + remove: "Xóa", + archiving: "Đang lưu trữ", + archive: "Lưu trữ", + access: { + public: "Công khai", + private: "Riêng tư", + }, + done: "Hoàn thành", + sub_work_items: "Mục công việc con", + comment: "Bình luận", + workspace_level: "Cấp không gian làm việc", + order_by: { + label: "Sắp xếp theo", + manual: "Thủ công", + last_created: "Mới tạo nhất", + last_updated: "Mới cập nhật nhất", + start_date: "Ngày bắt đầu", + due_date: "Ngày hết hạn", + asc: "Tăng dần", + desc: "Giảm dần", + updated_on: "Cập nhật vào", + }, + sort: { + asc: "Tăng dần", + desc: "Giảm dần", + created_on: "Thời gian tạo", + updated_on: "Thời gian cập nhật", + }, + comments: "Bình luận", + updates: "Cập nhật", + clear_all: "Xóa tất cả", + copied: "Đã sao chép!", + link_copied: "Đã sao chép liên kết!", + link_copied_to_clipboard: "Đã sao chép liên kết vào bảng tạm", + copied_to_clipboard: "Đã sao chép liên kết mục công việc vào bảng tạm", + is_copied_to_clipboard: "Mục công việc đã được sao chép vào bảng tạm", + no_links_added_yet: "Chưa có liên kết nào được thêm", + add_link: "Thêm liên kết", + links: "Liên kết", + go_to_workspace: "Đi đến không gian làm việc", + progress: "Tiến độ", + optional: "Tùy chọn", + join: "Tham gia", + go_back: "Quay lại", + continue: "Tiếp tục", + resend: "Gửi lại", + relations: "Mối quan hệ", + errors: { + default: { + title: "Lỗi!", + message: "Đã xảy ra lỗi. Vui lòng thử lại.", + }, + required: "Trường này là bắt buộc", + entity_required: "{entity} là bắt buộc", + restricted_entity: "{entity} bị hạn chế", + }, + update_link: "Cập nhật liên kết", + attach: "Đính kèm", + create_new: "Tạo mới", + add_existing: "Thêm mục hiện có", + type_or_paste_a_url: "Nhập hoặc dán URL", + url_is_invalid: "URL không hợp lệ", + display_title: "Tiêu đề hiển thị", + link_title_placeholder: "Bạn muốn hiển thị liên kết này như thế nào", + url: "URL", + side_peek: "Xem lướt bên cạnh", + modal: "Cửa sổ", + full_screen: "Toàn màn hình", + close_peek_view: "Đóng chế độ xem lướt", + toggle_peek_view_layout: "Chuyển đổi bố cục xem lướt", + options: "Tùy chọn", + duration: "Thời lượng", + today: "Hôm nay", + week: "Tuần", + month: "Tháng", + quarter: "Quý", + press_for_commands: "Nhấn '/' để sử dụng lệnh", + click_to_add_description: "Nhấp để thêm mô tả", + search: { + label: "Tìm kiếm", + placeholder: "Nhập nội dung tìm kiếm", + no_matches_found: "Không tìm thấy kết quả phù hợp", + no_matching_results: "Không có kết quả phù hợp", + }, + actions: { + edit: "Chỉnh sửa", + make_a_copy: "Tạo bản sao", + open_in_new_tab: "Mở trong tab mới", + copy_link: "Sao chép liên kết", + archive: "Lưu trữ", + delete: "Xóa", + remove_relation: "Xóa mối quan hệ", + subscribe: "Đăng ký", + unsubscribe: "Hủy đăng ký", + clear_sorting: "Xóa sắp xếp", + show_weekends: "Hiển thị cuối tuần", + enable: "Bật", + disable: "Tắt", + }, + name: "Tên", + discard: "Hủy bỏ", + confirm: "Xác nhận", + confirming: "Đang xác nhận", + read_the_docs: "Đọc tài liệu", + default: "Mặc định", + active: "Hoạt động", + enabled: "Đã bật", + disabled: "Đã tắt", + mandate: "Ủy quyền", + mandatory: "Bắt buộc", + yes: "Có", + no: "Không", + please_wait: "Vui lòng đợi", + enabling: "Đang bật", + disabling: "Đang tắt", + beta: "Phiên bản beta", + or: "Hoặc", + next: "Tiếp theo", + back: "Quay lại", + cancelling: "Đang hủy", + configuring: "Đang cấu hình", + clear: "Xóa", + import: "Nhập", + connect: "Kết nối", + authorizing: "Đang xác thực", + processing: "Đang xử lý", + no_data_available: "Không có dữ liệu", + from: "Từ {name}", + authenticated: "Đã xác thực", + select: "Chọn", + upgrade: "Nâng cấp", + add_seats: "Thêm vị trí", + projects: "Dự án", + workspace: "Không gian làm việc", + workspaces: "Không gian làm việc", + team: "Nhóm", + teams: "Nhóm", + entity: "Thực thể", + entities: "Thực thể", + task: "Nhiệm vụ", + tasks: "Nhiệm vụ", + section: "Phần", + sections: "Phần", + edit: "Chỉnh sửa", + connecting: "Đang kết nối", + connected: "Đã kết nối", + disconnect: "Ngắt kết nối", + disconnecting: "Đang ngắt kết nối", + installing: "Đang cài đặt", + install: "Cài đặt", + reset: "Đặt lại", + live: "Trực tiếp", + change_history: "Lịch sử thay đổi", + coming_soon: "Sắp ra mắt", + member: "Thành viên", + members: "Thành viên", + you: "Bạn", + upgrade_cta: { + higher_subscription: "Nâng cấp lên gói cao hơn", + talk_to_sales: "Liên hệ bộ phận bán hàng", + }, + category: "Danh mục", + categories: "Danh mục", + saving: "Đang lưu", + save_changes: "Lưu thay đổi", + delete: "Xóa", + deleting: "Đang xóa", + pending: "Đang chờ xử lý", + invite: "Mời", + view: "Xem", + deactivated_user: "Người dùng bị vô hiệu hóa", + apply: "Áp dụng", + applying: "Đang áp dụng", + users: "Người dùng", + admins: "Quản trị viên", + guests: "Khách", + on_track: "Đúng tiến độ", + off_track: "Chệch hướng", + at_risk: "Có nguy cơ", + timeline: "Dòng thời gian", + completion: "Hoàn thành", + upcoming: "Sắp tới", + completed: "Đã hoàn thành", + in_progress: "Đang tiến hành", + planned: "Đã lên kế hoạch", + paused: "Tạm dừng", + no_of: "Số lượng {entity}", + resolved: "Đã giải quyết", + }, + chart: { + x_axis: "Trục X", + y_axis: "Trục Y", + metric: "Chỉ số", + }, + form: { + title: { + required: "Tiêu đề là bắt buộc", + max_length: "Tiêu đề phải ít hơn {length} ký tự", + }, + }, + entity: { + grouping_title: "Nhóm {entity}", + priority: "Ưu tiên {entity}", + all: "Tất cả {entity}", + drop_here_to_move: "Kéo thả vào đây để di chuyển {entity}", + delete: { + label: "Xóa {entity}", + success: "Đã xóa {entity} thành công", + failed: "Xóa {entity} thất bại", + }, + update: { + failed: "Cập nhật {entity} thất bại", + success: "Đã cập nhật {entity} thành công", + }, + link_copied_to_clipboard: "Đã sao chép liên kết {entity} vào bảng tạm", + fetch: { + failed: "Đã xảy ra lỗi khi tải {entity}", + }, + add: { + success: "Đã thêm {entity} thành công", + failed: "Đã xảy ra lỗi khi thêm {entity}", + }, + remove: { + success: "Đã xóa {entity} thành công", + failed: "Đã xảy ra lỗi khi xóa {entity}", + }, + }, + epic: { + all: "Tất cả sử thi", + label: "{count, plural, one {sử thi} other {sử thi}}", + new: "Sử thi mới", + adding: "Đang thêm sử thi", + create: { + success: "Đã tạo sử thi thành công", + }, + add: { + press_enter: "Nhấn 'Enter' để thêm sử thi khác", + label: "Thêm sử thi", + }, + title: { + label: "Tiêu đề sử thi", + required: "Tiêu đề sử thi là bắt buộc", + }, + }, + issue: { + label: "{count, plural, one {mục công việc} other {mục công việc}}", + all: "Tất cả mục công việc", + edit: "Chỉnh sửa mục công việc", + title: { + label: "Tiêu đề mục công việc", + required: "Tiêu đề mục công việc là bắt buộc", + }, + add: { + press_enter: "Nhấn 'Enter' để thêm mục công việc khác", + label: "Thêm mục công việc", + cycle: { + failed: "Không thể thêm mục công việc vào chu kỳ. Vui lòng thử lại.", + success: "{count, plural, one {Mục công việc} other {Mục công việc}} đã được thêm vào chu kỳ thành công.", + loading: "Đang thêm {count, plural, one {mục công việc} other {mục công việc}} vào chu kỳ", + }, + assignee: "Thêm người phụ trách", + start_date: "Thêm ngày bắt đầu", + due_date: "Thêm ngày hết hạn", + parent: "Thêm mục công việc cha", + sub_issue: "Thêm mục công việc con", + relation: "Thêm mối quan hệ", + link: "Thêm liên kết", + existing: "Thêm mục công việc hiện có", + }, + remove: { + label: "Xóa mục công việc", + cycle: { + loading: "Đang xóa mục công việc khỏi chu kỳ", + success: "Đã xóa mục công việc khỏi chu kỳ thành công.", + failed: "Không thể xóa mục công việc khỏi chu kỳ. Vui lòng thử lại.", + }, + module: { + loading: "Đang xóa mục công việc khỏi mô-đun", + success: "Đã xóa mục công việc khỏi mô-đun thành công.", + failed: "Không thể xóa mục công việc khỏi mô-đun. Vui lòng thử lại.", + }, + parent: { + label: "Xóa mục công việc cha", + }, + }, + new: "Mục công việc mới", + adding: "Đang thêm mục công việc", + create: { + success: "Đã tạo mục công việc thành công", + }, + priority: { + urgent: "Khẩn cấp", + high: "Cao", + medium: "Trung bình", + low: "Thấp", + }, + display: { + properties: { + label: "Hiển thị thuộc tính", + id: "ID", + issue_type: "Loại mục công việc", + sub_issue_count: "Số lượng mục công việc con", + attachment_count: "Số lượng tệp đính kèm", + created_on: "Được tạo vào", + sub_issue: "Mục công việc con", + work_item_count: "Số lượng mục công việc", + }, + extra: { + show_sub_issues: "Hiển thị mục công việc con", + show_empty_groups: "Hiển thị nhóm trống", + }, + }, + layouts: { + ordered_by_label: "Bố cục này được sắp xếp theo", + list: "Danh sách", + kanban: "Kanban", + calendar: "Lịch", + spreadsheet: "Bảng tính", + gantt: "Dòng thời gian", + title: { + list: "Bố cục danh sách", + kanban: "Bố cục kanban", + calendar: "Bố cục lịch", + spreadsheet: "Bố cục bảng tính", + gantt: "Bố cục dòng thời gian", + }, + }, + states: { + active: "Hoạt động", + backlog: "Tồn đọng", + }, + comments: { + placeholder: "Thêm bình luận", + switch: { + private: "Chuyển sang bình luận riêng tư", + public: "Chuyển sang bình luận công khai", + }, + create: { + success: "Đã tạo bình luận thành công", + error: "Không thể tạo bình luận. Vui lòng thử lại sau.", + }, + update: { + success: "Đã cập nhật bình luận thành công", + error: "Không thể cập nhật bình luận. Vui lòng thử lại sau.", + }, + remove: { + success: "Đã xóa bình luận thành công", + error: "Không thể xóa bình luận. Vui lòng thử lại sau.", + }, + upload: { + error: "Không thể tải lên tài nguyên. Vui lòng thử lại sau.", + }, + copy_link: { + success: "Liên kết bình luận đã được sao chép vào clipboard", + error: "Lỗi khi sao chép liên kết bình luận. Vui lòng thử lại sau.", + }, + }, + empty_state: { + issue_detail: { + title: "Mục công việc không tồn tại", + description: "Mục công việc bạn đang tìm kiếm không tồn tại, đã được lưu trữ hoặc đã bị xóa.", + primary_button: { + text: "Xem các mục công việc khác", + }, + }, + }, + sibling: { + label: "Mục công việc cùng cấp", + }, + archive: { + description: "Chỉ những mục công việc đã hoàn thành hoặc đã hủy\ncó thể được lưu trữ", + label: "Lưu trữ mục công việc", + confirm_message: + "Bạn có chắc chắn muốn lưu trữ mục công việc này không? Tất cả mục công việc đã lưu trữ có thể được khôi phục sau.", + success: { + label: "Lưu trữ thành công", + message: "Mục đã lưu trữ của bạn có thể được tìm thấy trong phần lưu trữ của dự án.", + }, + failed: { + message: "Không thể lưu trữ mục công việc. Vui lòng thử lại.", + }, + }, + restore: { + success: { + title: "Khôi phục thành công", + message: "Mục công việc của bạn có thể được tìm thấy trong mục công việc của dự án.", + }, + failed: { + message: "Không thể khôi phục mục công việc. Vui lòng thử lại.", + }, + }, + relation: { + relates_to: "Liên quan đến", + duplicate: "Trùng lặp với", + blocked_by: "Bị chặn bởi", + blocking: "Đang chặn", + }, + copy_link: "Sao chép liên kết mục công việc", + delete: { + label: "Xóa mục công việc", + error: "Đã xảy ra lỗi khi xóa mục công việc", + }, + subscription: { + actions: { + subscribed: "Đã đăng ký mục công việc thành công", + unsubscribed: "Đã hủy đăng ký mục công việc thành công", + }, + }, + select: { + error: "Vui lòng chọn ít nhất một mục công việc", + empty: "Chưa chọn mục công việc", + add_selected: "Thêm mục công việc đã chọn", + select_all: "Chọn tất cả", + deselect_all: "Bỏ chọn tất cả", + }, + open_in_full_screen: "Mở mục công việc trong chế độ toàn màn hình", + }, + attachment: { + error: "Không thể đính kèm tệp. Vui lòng tải lên lại.", + only_one_file_allowed: "Chỉ có thể tải lên một tệp mỗi lần.", + file_size_limit: "Kích thước tệp phải nhỏ hơn hoặc bằng {size}MB.", + drag_and_drop: "Kéo và thả vào bất kỳ đâu để tải lên", + delete: "Xóa tệp đính kèm", + }, + label: { + select: "Chọn nhãn", + create: { + success: "Đã tạo nhãn thành công", + failed: "Tạo nhãn thất bại", + already_exists: "Nhãn đã tồn tại", + type: "Nhập để thêm nhãn mới", + }, + }, + sub_work_item: { + update: { + success: "Đã cập nhật mục công việc con thành công", + error: "Đã xảy ra lỗi khi cập nhật mục công việc con", + }, + remove: { + success: "Đã xóa mục công việc con thành công", + error: "Đã xảy ra lỗi khi xóa mục công việc con", + }, + empty_state: { + sub_list_filters: { + title: "Bạn không có mục công việc con nào phù hợp với các bộ lọc mà bạn đã áp dụng.", + description: "Để xem tất cả các mục công việc con, hãy xóa tất cả các bộ lọc đã áp dụng.", + action: "Xóa bộ lọc", + }, + list_filters: { + title: "Bạn không có mục công việc nào phù hợp với các bộ lọc mà bạn đã áp dụng.", + description: "Để xem tất cả các mục công việc, hãy xóa tất cả các bộ lọc đã áp dụng.", + action: "Xóa bộ lọc", + }, + }, + }, + view: { + label: "{count, plural, one {chế độ xem} other {chế độ xem}}", + create: { + label: "Tạo chế độ xem", + }, + update: { + label: "Cập nhật chế độ xem", + }, + }, + inbox_issue: { + status: { + pending: { + title: "Đang chờ xử lý", + description: "Đang chờ xử lý", + }, + declined: { + title: "Đã từ chối", + description: "Đã từ chối", + }, + snoozed: { + title: "Đã tạm hoãn", + description: "Còn lại {days, plural, one{# ngày} other{# ngày}}", + }, + accepted: { + title: "Đã chấp nhận", + description: "Đã chấp nhận", + }, + duplicate: { + title: "Trùng lặp", + description: "Trùng lặp", + }, + }, + modals: { + decline: { + title: "Từ chối mục công việc", + content: "Bạn có chắc chắn muốn từ chối mục công việc {value} không?", + }, + delete: { + title: "Xóa mục công việc", + content: "Bạn có chắc chắn muốn xóa mục công việc {value} không?", + success: "Đã xóa mục công việc thành công", + }, + }, + errors: { + snooze_permission: "Chỉ quản trị viên dự án mới có thể tạm hoãn/hủy tạm hoãn mục công việc", + accept_permission: "Chỉ quản trị viên dự án mới có thể chấp nhận mục công việc", + decline_permission: "Chỉ quản trị viên dự án mới có thể từ chối mục công việc", + }, + actions: { + accept: "Chấp nhận", + decline: "Từ chối", + snooze: "Tạm hoãn", + unsnooze: "Hủy tạm hoãn", + copy: "Sao chép liên kết mục công việc", + delete: "Xóa", + open: "Mở mục công việc", + mark_as_duplicate: "Đánh dấu là trùng lặp", + move: "Di chuyển {value} đến mục công việc dự án", + }, + source: { + "in-app": "Trong ứng dụng", + }, + order_by: { + created_at: "Thời gian tạo", + updated_at: "Thời gian cập nhật", + id: "ID", + }, + label: "Thu thập", + page_label: "{workspace} - Thu thập", + modal: { + title: "Tạo mục công việc thu thập", + }, + tabs: { + open: "Chưa xử lý", + closed: "Đã xử lý", + }, + empty_state: { + sidebar_open_tab: { + title: "Không có mục công việc chưa xử lý", + description: "Tìm mục công việc chưa xử lý tại đây. Tạo mục công việc mới.", + }, + sidebar_closed_tab: { + title: "Không có mục công việc đã xử lý", + description: "Tất cả mục công việc đã chấp nhận hoặc từ chối có thể được tìm thấy ở đây.", + }, + sidebar_filter: { + title: "Không có mục công việc phù hợp", + description: "Không có mục công việc trong thu thập phù hợp với bộ lọc của bạn. Tạo mục công việc mới.", + }, + detail: { + title: "Chọn một mục công việc để xem chi tiết.", + }, + }, + }, + workspace_creation: { + heading: "Tạo không gian làm việc của bạn", + subheading: "Để bắt đầu với Plane, bạn cần tạo hoặc tham gia một không gian làm việc.", + form: { + name: { + label: "Đặt tên cho không gian làm việc của bạn", + placeholder: "Một tên quen thuộc và dễ nhận diện luôn là tốt nhất.", + }, + url: { + label: "Thiết lập URL không gian làm việc của bạn", + placeholder: "Nhập hoặc dán URL", + edit_slug: "Bạn chỉ có thể chỉnh sửa phần định danh của URL", + }, + organization_size: { + label: "Có bao nhiêu người sẽ sử dụng không gian làm việc này?", + placeholder: "Chọn một phạm vi", + }, + }, + errors: { + creation_disabled: { + title: "Chỉ quản trị viên hệ thống của bạn mới có thể tạo không gian làm việc", + description: + "Nếu bạn biết địa chỉ email của quản trị viên hệ thống, hãy nhấp vào nút bên dưới để liên hệ với họ.", + request_button: "Yêu cầu quản trị viên hệ thống", + }, + validation: { + name_alphanumeric: "Tên không gian làm việc chỉ có thể chứa (' '), ('-'), ('_') và các ký tự chữ số.", + name_length: "Tên giới hạn trong 80 ký tự.", + url_alphanumeric: "URL chỉ có thể chứa ('-') và các ký tự chữ số.", + url_length: "URL giới hạn trong 48 ký tự.", + url_already_taken: "URL không gian làm việc đã được sử dụng!", + }, + }, + request_email: { + subject: "Yêu cầu không gian làm việc mới", + body: "Xin chào Quản trị viên hệ thống:\n\nVui lòng tạo một không gian làm việc mới có URL là [/workspace-name] cho [mục đích tạo không gian làm việc].\n\nCảm ơn,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "Tạo không gian làm việc", + loading: "Đang tạo không gian làm việc", + }, + toast: { + success: { + title: "Thành công", + message: "Đã tạo không gian làm việc thành công", + }, + error: { + title: "Lỗi", + message: "Tạo không gian làm việc thất bại. Vui lòng thử lại.", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "Tổng quan về dự án, hoạt động và chỉ số", + description: + "Chào mừng đến với Plane, chúng tôi rất vui khi bạn ở đây. Tạo dự án đầu tiên của bạn và theo dõi mục công việc, trang này sẽ trở thành không gian giúp bạn tiến triển. Quản trị viên cũng sẽ thấy dự án giúp nhóm tiến triển.", + primary_button: { + text: "Xây dựng dự án đầu tiên của bạn", + comic: { + title: "Trong Plane, mọi thứ đều bắt đầu với dự án", + description: "Dự án có thể là lộ trình sản phẩm, chiến dịch tiếp thị hoặc ra mắt xe mới.", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "Phân tích", + page_label: "{workspace} - Phân tích", + open_tasks: "Tổng nhiệm vụ đang mở", + error: "Đã xảy ra lỗi khi truy xuất dữ liệu.", + work_items_closed_in: "Mục công việc đã đóng trong", + selected_projects: "Dự án đã chọn", + total_members: "Tổng số thành viên", + total_cycles: "Tổng số chu kỳ", + total_modules: "Tổng số mô-đun", + pending_work_items: { + title: "Mục công việc đang chờ xử lý", + empty_state: "Phân tích mục công việc đang chờ xử lý của đồng nghiệp sẽ hiển thị ở đây.", + }, + work_items_closed_in_a_year: { + title: "Mục công việc đã đóng trong một năm", + empty_state: "Đóng mục công việc để xem phân tích dưới dạng biểu đồ.", + }, + most_work_items_created: { + title: "Tạo nhiều mục công việc nhất", + empty_state: "Đồng nghiệp và số lượng mục công việc họ đã tạo sẽ hiển thị ở đây.", + }, + most_work_items_closed: { + title: "Đóng nhiều mục công việc nhất", + empty_state: "Đồng nghiệp và số lượng mục công việc họ đã đóng sẽ hiển thị ở đây.", + }, + tabs: { + scope_and_demand: "Phạm vi và nhu cầu", + custom: "Phân tích tùy chỉnh", + }, + empty_state: { + customized_insights: { + description: "Các hạng mục công việc được giao cho bạn, phân loại theo trạng thái, sẽ hiển thị tại đây.", + title: "Chưa có dữ liệu", + }, + created_vs_resolved: { + description: "Các hạng mục công việc được tạo và giải quyết theo thời gian sẽ hiển thị tại đây.", + title: "Chưa có dữ liệu", + }, + project_insights: { + title: "Chưa có dữ liệu", + description: "Các hạng mục công việc được giao cho bạn, phân loại theo trạng thái, sẽ hiển thị tại đây.", + }, + general: { + title: + "Theo dõi tiến độ, khối lượng công việc và phân bổ. Phát hiện xu hướng, loại bỏ rào cản và tăng tốc công việc", + description: + "Xem phạm vi so với nhu cầu, ước tính và mở rộng phạm vi. Theo dõi hiệu suất của các thành viên trong nhóm và đội nhóm, đảm bảo dự án của bạn hoạt động đúng tiến độ.", + primary_button: { + text: "Bắt đầu dự án đầu tiên của bạn", + comic: { + title: "Phân tích hoạt động tốt nhất với Chu kỳ + Mô-đun", + description: + "Đầu tiên, giới hạn thời gian các vấn đề của bạn trong Chu kỳ và, nếu có thể, nhóm các vấn đề kéo dài hơn một chu kỳ vào Mô-đun. Kiểm tra cả hai trong điều hướng bên trái.", + }, + }, + }, + }, + created_vs_resolved: "Đã tạo vs Đã giải quyết", + customized_insights: "Thông tin chi tiết tùy chỉnh", + backlog_work_items: "{entity} tồn đọng", + active_projects: "Dự án đang hoạt động", + trend_on_charts: "Xu hướng trên biểu đồ", + all_projects: "Tất cả dự án", + summary_of_projects: "Tóm tắt dự án", + project_insights: "Thông tin chi tiết dự án", + started_work_items: "{entity} đã bắt đầu", + total_work_items: "Tổng số {entity}", + total_projects: "Tổng số dự án", + total_admins: "Tổng số quản trị viên", + total_users: "Tổng số người dùng", + total_intake: "Tổng thu", + un_started_work_items: "{entity} chưa bắt đầu", + total_guests: "Tổng số khách", + completed_work_items: "{entity} đã hoàn thành", + total: "Tổng số {entity}", + }, + workspace_projects: { + label: "{count, plural, one {dự án} other {dự án}}", + create: { + label: "Thêm dự án", + }, + network: { + private: { + title: "Riêng tư", + description: "Chỉ truy cập bằng lời mời", + }, + public: { + title: "Công khai", + description: "Bất kỳ ai trong không gian làm việc ngoại trừ khách đều có thể tham gia", + }, + }, + error: { + permission: "Bạn không có quyền thực hiện thao tác này.", + cycle_delete: "Xóa chu kỳ thất bại", + module_delete: "Xóa mô-đun thất bại", + issue_delete: "Xóa mục công việc thất bại", + }, + state: { + backlog: "Tồn đọng", + unstarted: "Chưa bắt đầu", + started: "Đang tiến hành", + completed: "Đã hoàn thành", + cancelled: "Đã hủy", + }, + sort: { + manual: "Thủ công", + name: "Tên", + created_at: "Ngày tạo", + members_length: "Số lượng thành viên", + }, + scope: { + my_projects: "Dự án của tôi", + archived_projects: "Đã lưu trữ", + }, + common: { + months_count: "{months, plural, one{# tháng} other{# tháng}}", + }, + empty_state: { + general: { + title: "Không có dự án hoạt động", + description: + "Coi mỗi dự án như là cấp cha của công việc định hướng mục tiêu. Dự án là nơi chứa mục công việc, chu kỳ và mô-đun, cùng với đồng nghiệp giúp bạn đạt được mục tiêu. Tạo dự án mới hoặc lọc dự án đã lưu trữ.", + primary_button: { + text: "Bắt đầu dự án đầu tiên của bạn", + comic: { + title: "Trong Plane, mọi thứ đều bắt đầu với dự án", + description: "Dự án có thể là lộ trình sản phẩm, chiến dịch tiếp thị hoặc ra mắt xe mới.", + }, + }, + }, + no_projects: { + title: "Không có dự án", + description: + "Để tạo mục công việc hoặc quản lý công việc của bạn, bạn cần tạo dự án hoặc trở thành một phần của dự án.", + primary_button: { + text: "Bắt đầu dự án đầu tiên của bạn", + comic: { + title: "Trong Plane, mọi thứ đều bắt đầu với dự án", + description: "Dự án có thể là lộ trình sản phẩm, chiến dịch tiếp thị hoặc ra mắt xe mới.", + }, + }, + }, + filter: { + title: "Không có dự án phù hợp", + description: "Không phát hiện dự án nào phù hợp với điều kiện tìm kiếm.\nTạo dự án mới.", + }, + search: { + description: "Không phát hiện dự án nào phù hợp với điều kiện tìm kiếm.\nTạo dự án mới", + }, + }, + }, + workspace_views: { + add_view: "Thêm chế độ xem", + empty_state: { + "all-issues": { + title: "Không có mục công việc trong dự án", + description: + "Dự án đầu tiên hoàn thành! Bây giờ, hãy chia nhỏ công việc của bạn thành các mục công việc có thể theo dõi. Hãy bắt đầu nào!", + primary_button: { + text: "Tạo mục công việc mới", + }, + }, + assigned: { + title: "Chưa có mục công việc", + description: "Mục công việc được giao cho bạn có thể được theo dõi tại đây.", + primary_button: { + text: "Tạo mục công việc mới", + }, + }, + created: { + title: "Chưa có mục công việc", + description: "Tất cả mục công việc bạn tạo sẽ xuất hiện ở đây, theo dõi chúng trực tiếp tại đây.", + primary_button: { + text: "Tạo mục công việc mới", + }, + }, + subscribed: { + title: "Chưa có mục công việc", + description: "Đăng ký mục công việc bạn quan tâm, theo dõi tất cả chúng tại đây.", + }, + "custom-view": { + title: "Chưa có mục công việc", + description: "Mục công việc phù hợp với bộ lọc, theo dõi tất cả chúng tại đây.", + }, + }, + }, + workspace_settings: { + label: "Cài đặt không gian làm việc", + page_label: "{workspace} - Cài đặt chung", + key_created: "Đã tạo khóa", + copy_key: + "Sao chép và lưu khóa này trong Plane Pages. Bạn sẽ không thể thấy khóa này sau khi đóng. Tệp CSV chứa khóa đã được tải xuống.", + token_copied: "Đã sao chép token vào bảng tạm.", + settings: { + general: { + title: "Chung", + upload_logo: "Tải lên logo", + edit_logo: "Chỉnh sửa logo", + name: "Tên không gian làm việc", + company_size: "Quy mô công ty", + url: "URL không gian làm việc", + update_workspace: "Cập nhật không gian làm việc", + delete_workspace: "Xóa không gian làm việc này", + delete_workspace_description: + "Khi xóa không gian làm việc, tất cả dữ liệu và tài nguyên trong không gian làm việc đó sẽ bị xóa vĩnh viễn và không thể khôi phục.", + delete_btn: "Xóa không gian làm việc này", + delete_modal: { + title: "Bạn có chắc chắn muốn xóa không gian làm việc này không?", + description: "Bạn hiện đang dùng thử gói trả phí của chúng tôi. Vui lòng hủy dùng thử trước khi tiếp tục.", + dismiss: "Đóng", + cancel: "Hủy dùng thử", + success_title: "Đã xóa không gian làm việc.", + success_message: "Sắp chuyển hướng đến trang hồ sơ của bạn.", + error_title: "Thao tác thất bại.", + error_message: "Vui lòng thử lại.", + }, + errors: { + name: { + required: "Tên là bắt buộc", + max_length: "Tên không gian làm việc không nên vượt quá 80 ký tự", + }, + company_size: { + required: "Quy mô công ty là bắt buộc", + select_a_range: "Chọn quy mô tổ chức", + }, + }, + }, + members: { + title: "Thành viên", + add_member: "Thêm thành viên", + pending_invites: "Lời mời đang chờ xử lý", + invitations_sent_successfully: "Đã gửi lời mời thành công", + leave_confirmation: + "Bạn có chắc chắn muốn rời khỏi không gian làm việc này không? Bạn sẽ không thể truy cập không gian làm việc này nữa. Hành động này không thể hoàn tác.", + details: { + full_name: "Tên đầy đủ", + display_name: "Tên hiển thị", + email_address: "Địa chỉ email", + account_type: "Loại tài khoản", + authentication: "Xác thực", + joining_date: "Ngày tham gia", + }, + modal: { + title: "Mời người cộng tác", + description: "Mời người cộng tác trong không gian làm việc của bạn.", + button: "Gửi lời mời", + button_loading: "Đang gửi lời mời", + placeholder: "name@company.com", + errors: { + required: "Chúng tôi cần một địa chỉ email để mời họ.", + invalid: "Email không hợp lệ", + }, + }, + }, + billing_and_plans: { + title: "Thanh toán và Kế hoạch", + current_plan: "Kế hoạch hiện tại", + free_plan: "Bạn đang sử dụng kế hoạch miễn phí", + view_plans: "Xem kế hoạch", + }, + exports: { + title: "Xuất", + exporting: "Đang xuất", + previous_exports: "Xuất trước đây", + export_separate_files: "Xuất dữ liệu thành các tệp riêng biệt", + modal: { + title: "Xuất đến", + toasts: { + success: { + title: "Xuất thành công", + message: "Bạn có thể tải xuống {entity} đã xuất từ phần xuất trước đây", + }, + error: { + title: "Xuất thất bại", + message: "Xuất không thành công. Vui lòng thử lại.", + }, + }, + }, + }, + webhooks: { + title: "Webhooks", + add_webhook: "Thêm webhook", + modal: { + title: "Tạo webhook", + details: "Chi tiết Webhook", + payload: "URL tải", + question: "Bạn muốn những sự kiện nào kích hoạt webhook này?", + error: "URL là bắt buộc", + }, + secret_key: { + title: "Khóa bí mật", + message: "Tạo token để đăng nhập tải webhook", + }, + options: { + all: "Gửi tất cả", + individual: "Chọn từng sự kiện", + }, + toasts: { + created: { + title: "Đã tạo Webhook", + message: "Webhook đã được tạo thành công", + }, + not_created: { + title: "Chưa tạo Webhook", + message: "Không thể tạo webhook", + }, + updated: { + title: "Đã cập nhật Webhook", + message: "Webhook đã được cập nhật thành công", + }, + not_updated: { + title: "Chưa cập nhật Webhook", + message: "Không thể cập nhật webhook", + }, + removed: { + title: "Đã xóa Webhook", + message: "Webhook đã được xóa thành công", + }, + not_removed: { + title: "Chưa xóa Webhook", + message: "Không thể xóa webhook", + }, + secret_key_copied: { + message: "Đã sao chép khóa bí mật vào bảng tạm.", + }, + secret_key_not_copied: { + message: "Đã xảy ra lỗi khi sao chép khóa bí mật.", + }, + }, + }, + api_tokens: { + title: "Token API", + add_token: "Thêm token API", + create_token: "Tạo token", + never_expires: "Không bao giờ hết hạn", + generate_token: "Tạo token", + generating: "Đang tạo", + delete: { + title: "Xóa token API", + description: + "Bất kỳ ứng dụng nào sử dụng token này sẽ không thể truy cập dữ liệu Plane nữa. Hành động này không thể hoàn tác.", + success: { + title: "Thành công!", + message: "Đã xóa token API thành công", + }, + error: { + title: "Lỗi!", + message: "Không thể xóa token API", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "Chưa tạo token API", + description: + "API Plane có thể được sử dụng để tích hợp dữ liệu Plane của bạn với bất kỳ hệ thống bên ngoài nào. Tạo token để bắt đầu.", + }, + webhooks: { + title: "Chưa thêm webhook", + description: "Tạo webhook để nhận cập nhật theo thời gian thực và tự động hóa hành động.", + }, + exports: { + title: "Chưa có xuất dữ liệu", + description: "Mỗi khi xuất, bạn sẽ có một bản sao ở đây để tham khảo.", + }, + imports: { + title: "Chưa có nhập dữ liệu", + description: "Tìm tất cả các lần nhập trước đây và tải xuống chúng tại đây.", + }, + }, + }, + profile: { + label: "Hồ sơ", + page_label: "Công việc của bạn", + work: "Công việc", + details: { + joined_on: "Tham gia vào", + time_zone: "Múi giờ", + }, + stats: { + workload: "Khối lượng công việc", + overview: "Tổng quan", + created: "Mục công việc đã tạo", + assigned: "Mục công việc đã giao", + subscribed: "Mục công việc đã đăng ký", + state_distribution: { + title: "Mục công việc theo trạng thái", + empty: "Tạo mục công việc để xem phân loại theo trạng thái trong biểu đồ để phân tích tốt hơn.", + }, + priority_distribution: { + title: "Mục công việc theo mức độ ưu tiên", + empty: "Tạo mục công việc để xem phân loại theo mức độ ưu tiên trong biểu đồ để phân tích tốt hơn.", + }, + recent_activity: { + title: "Hoạt động gần đây", + empty: "Chúng tôi không tìm thấy dữ liệu. Vui lòng kiểm tra đầu vào của bạn", + button: "Tải xuống hoạt động hôm nay", + button_loading: "Đang tải xuống", + }, + }, + actions: { + profile: "Hồ sơ", + security: "Bảo mật", + activity: "Hoạt động", + appearance: "Giao diện", + notifications: "Thông báo", + }, + tabs: { + summary: "Tóm tắt", + assigned: "Đã giao", + created: "Đã tạo", + subscribed: "Đã đăng ký", + activity: "Hoạt động", + }, + empty_state: { + activity: { + title: "Chưa có hoạt động", + description: + "Bắt đầu bằng cách tạo mục công việc mới! Thêm chi tiết và thuộc tính cho nó. Khám phá thêm trong Plane để xem hoạt động của bạn.", + }, + assigned: { + title: "Không có mục công việc nào được giao cho bạn", + description: "Có thể theo dõi mục công việc được giao cho bạn từ đây.", + }, + created: { + title: "Chưa có mục công việc", + description: "Tất cả mục công việc bạn tạo sẽ xuất hiện ở đây, theo dõi chúng trực tiếp tại đây.", + }, + subscribed: { + title: "Chưa có mục công việc", + description: "Đăng ký mục công việc bạn quan tâm, theo dõi tất cả chúng tại đây.", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "Nhập ID dự án", + please_select_a_timezone: "Vui lòng chọn múi giờ", + archive_project: { + title: "Lưu trữ dự án", + description: + "Lưu trữ dự án sẽ hủy liệt kê dự án của bạn khỏi thanh điều hướng bên, nhưng bạn vẫn có thể truy cập nó từ trang dự án. Bạn có thể khôi phục hoặc xóa dự án bất cứ lúc nào.", + button: "Lưu trữ dự án", + }, + delete_project: { + title: "Xóa dự án", + description: + "Khi xóa dự án, tất cả dữ liệu và tài nguyên trong dự án đó sẽ bị xóa vĩnh viễn và không thể khôi phục.", + button: "Xóa dự án của tôi", + }, + toast: { + success: "Dự án đã được cập nhật thành công", + error: "Không thể cập nhật dự án. Vui lòng thử lại.", + }, + }, + members: { + label: "Thành viên", + project_lead: "Người phụ trách dự án", + default_assignee: "Người nhận mặc định", + guest_super_permissions: { + title: "Cấp quyền cho người dùng khách xem tất cả mục công việc:", + sub_heading: "Điều này sẽ cho phép khách xem tất cả mục công việc của dự án.", + }, + invite_members: { + title: "Mời thành viên", + sub_heading: "Mời thành viên tham gia dự án của bạn.", + select_co_worker: "Chọn đồng nghiệp", + }, + }, + states: { + describe_this_state_for_your_members: "Mô tả trạng thái này cho thành viên của bạn.", + empty_state: { + title: "Không có trạng thái trong nhóm {groupKey}", + description: "Vui lòng tạo một trạng thái mới", + }, + }, + labels: { + label_title: "Tiêu đề nhãn", + label_title_is_required: "Tiêu đề nhãn là bắt buộc", + label_max_char: "Tên nhãn không nên vượt quá 255 ký tự", + toast: { + error: "Đã xảy ra lỗi khi cập nhật nhãn", + }, + }, + estimates: { + label: "Ước tính", + title: "Bật ước tính cho dự án của tôi", + description: "Chúng giúp bạn truyền đạt độ phức tạp và khối lượng công việc của nhóm.", + no_estimate: "Không có ước tính", + new: "Hệ thống ước tính mới", + create: { + custom: "Tùy chỉnh", + start_from_scratch: "Bắt đầu từ đầu", + choose_template: "Chọn mẫu", + choose_estimate_system: "Chọn hệ thống ước tính", + enter_estimate_point: "Nhập điểm ước tính", + step: "Bước {step} của {total}", + label: "Tạo ước tính", + }, + toasts: { + created: { + success: { + title: "Đã tạo điểm ước tính", + message: "Điểm ước tính đã được tạo thành công", + }, + error: { + title: "Không thể tạo điểm ước tính", + message: "Không thể tạo điểm ước tính mới, vui lòng thử lại", + }, + }, + updated: { + success: { + title: "Đã cập nhật ước tính", + message: "Điểm ước tính đã được cập nhật trong dự án của bạn", + }, + error: { + title: "Không thể cập nhật ước tính", + message: "Không thể cập nhật ước tính, vui lòng thử lại", + }, + }, + enabled: { + success: { + title: "Thành công!", + message: "Đã bật ước tính", + }, + }, + disabled: { + success: { + title: "Thành công!", + message: "Đã tắt ước tính", + }, + error: { + title: "Lỗi!", + message: "Không thể tắt ước tính. Vui lòng thử lại", + }, + }, + }, + validation: { + min_length: "Điểm ước tính phải lớn hơn 0", + unable_to_process: "Không thể xử lý yêu cầu của bạn, vui lòng thử lại", + numeric: "Điểm ước tính phải là số", + character: "Điểm ước tính phải là ký tự", + empty: "Giá trị ước tính không được để trống", + already_exists: "Giá trị ước tính này đã tồn tại", + unsaved_changes: "Bạn có thay đổi chưa lưu. Vui lòng lưu trước khi nhấn 'xong'", + }, + systems: { + points: { + label: "Điểm", + fibonacci: "Fibonacci", + linear: "Tuyến tính", + squares: "Bình phương", + custom: "Tùy chỉnh", + }, + categories: { + label: "Danh mục", + t_shirt_sizes: "Kích cỡ áo", + easy_to_hard: "Dễ đến khó", + custom: "Tùy chỉnh", + }, + time: { + label: "Thời gian", + hours: "Giờ", + }, + }, + }, + automations: { + label: "Tự động hóa", + "auto-archive": { + title: "Tự động lưu trữ mục công việc đã đóng", + description: "Plane sẽ tự động lưu trữ các mục công việc đã hoàn thành hoặc đã hủy.", + duration: "Tự động lưu trữ đã đóng", + }, + "auto-close": { + title: "Tự động đóng mục công việc", + description: "Plane sẽ tự động đóng các mục công việc chưa hoàn thành hoặc hủy.", + duration: "Tự động đóng không hoạt động", + auto_close_status: "Trạng thái tự động đóng", + }, + }, + empty_state: { + labels: { + title: "Chưa có nhãn", + description: "Tạo nhãn để giúp tổ chức và lọc mục công việc trong dự án của bạn.", + }, + estimates: { + title: "Chưa có hệ thống ước tính", + description: "Tạo một tập hợp ước tính để truyền đạt khối lượng công việc cho mỗi mục công việc.", + primary_button: "Thêm hệ thống ước tính", + }, + }, + }, + project_cycles: { + add_cycle: "Thêm chu kỳ", + more_details: "Thêm chi tiết", + cycle: "Chu kỳ", + update_cycle: "Cập nhật chu kỳ", + create_cycle: "Tạo chu kỳ", + no_matching_cycles: "Không có chu kỳ phù hợp", + remove_filters_to_see_all_cycles: "Xóa bộ lọc để xem tất cả chu kỳ", + remove_search_criteria_to_see_all_cycles: "Xóa tiêu chí tìm kiếm để xem tất cả chu kỳ", + only_completed_cycles_can_be_archived: "Chỉ có thể lưu trữ chu kỳ đã hoàn thành", + start_date: "Ngày bắt đầu", + end_date: "Ngày kết thúc", + in_your_timezone: "Trong múi giờ của bạn", + transfer_work_items: "Chuyển {count} mục công việc", + date_range: "Khoảng thời gian", + add_date: "Thêm ngày", + active_cycle: { + label: "Chu kỳ hoạt động", + progress: "Tiến độ", + chart: "Biểu đồ burndown", + priority_issue: "Mục công việc ưu tiên", + assignees: "Người được giao", + issue_burndown: "Burndown mục công việc", + ideal: "Lý tưởng", + current: "Hiện tại", + labels: "Nhãn", + }, + upcoming_cycle: { + label: "Chu kỳ sắp tới", + }, + completed_cycle: { + label: "Chu kỳ đã hoàn thành", + }, + status: { + days_left: "Số ngày còn lại", + completed: "Đã hoàn thành", + yet_to_start: "Chưa bắt đầu", + in_progress: "Đang tiến hành", + draft: "Bản nháp", + }, + action: { + restore: { + title: "Khôi phục chu kỳ", + success: { + title: "Đã khôi phục chu kỳ", + description: "Chu kỳ đã được khôi phục.", + }, + failed: { + title: "Khôi phục chu kỳ thất bại", + description: "Không thể khôi phục chu kỳ. Vui lòng thử lại.", + }, + }, + favorite: { + loading: "Đang thêm chu kỳ vào mục yêu thích", + success: { + description: "Chu kỳ đã được thêm vào mục yêu thích.", + title: "Thành công!", + }, + failed: { + description: "Không thể thêm chu kỳ vào mục yêu thích. Vui lòng thử lại.", + title: "Lỗi!", + }, + }, + unfavorite: { + loading: "Đang xóa chu kỳ khỏi mục yêu thích", + success: { + description: "Chu kỳ đã được xóa khỏi mục yêu thích.", + title: "Thành công!", + }, + failed: { + description: "Không thể xóa chu kỳ khỏi mục yêu thích. Vui lòng thử lại.", + title: "Lỗi!", + }, + }, + update: { + loading: "Đang cập nhật chu kỳ", + success: { + description: "Chu kỳ đã được cập nhật thành công.", + title: "Thành công!", + }, + failed: { + description: "Đã xảy ra lỗi khi cập nhật chu kỳ. Vui lòng thử lại.", + title: "Lỗi!", + }, + error: { + already_exists: + "Đã tồn tại chu kỳ trong khoảng thời gian đã cho, nếu bạn muốn tạo chu kỳ nháp, bạn có thể làm vậy bằng cách xóa cả hai ngày.", + }, + }, + }, + empty_state: { + general: { + title: "Nhóm và đặt khung thời gian cho công việc của bạn trong chu kỳ.", + description: + "Chia nhỏ công việc theo khung thời gian, đặt ngày từ thời hạn dự án và đạt được tiến độ cụ thể với tư cách là một nhóm.", + primary_button: { + text: "Thiết lập chu kỳ đầu tiên của bạn", + comic: { + title: "Chu kỳ là khung thời gian lặp lại.", + description: + "Sprint, iteration hoặc bất kỳ thuật ngữ nào khác bạn sử dụng để theo dõi công việc hàng tuần hoặc hai tuần một lần đều là một chu kỳ.", + }, + }, + }, + no_issues: { + title: "Chưa thêm mục công việc vào chu kỳ", + description: "Thêm hoặc tạo mục công việc bạn muốn đặt khung thời gian và giao trong chu kỳ này", + primary_button: { + text: "Tạo mục công việc mới", + }, + secondary_button: { + text: "Thêm mục công việc hiện có", + }, + }, + completed_no_issues: { + title: "Không có mục công việc trong chu kỳ", + description: + "Không có mục công việc trong chu kỳ. Mục công việc đã được chuyển hoặc ẩn. Để xem mục công việc đã ẩn (nếu có), vui lòng cập nhật thuộc tính hiển thị của bạn tương ứng.", + }, + active: { + title: "Không có chu kỳ hoạt động", + description: + "Chu kỳ hoạt động bao gồm bất kỳ khoảng thời gian nào có ngày hôm nay trong phạm vi của nó. Tìm tiến độ và chi tiết về chu kỳ hoạt động ở đây.", + }, + archived: { + title: "Chưa có chu kỳ đã lưu trữ", + description: + "Để tổ chức dự án của bạn, hãy lưu trữ chu kỳ đã hoàn thành. Bạn có thể tìm thấy chúng ở đây sau khi lưu trữ.", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "Tạo mục công việc và giao nó cho ai đó, thậm chí là chính bạn", + description: + "Xem mục công việc như công việc, nhiệm vụ hoặc công việc cần hoàn thành. Mục công việc và các mục công việc con của chúng thường dựa trên thời gian, được giao cho thành viên nhóm để thực hiện. Nhóm của bạn thúc đẩy dự án đạt được mục tiêu bằng cách tạo, giao và hoàn thành mục công việc.", + primary_button: { + text: "Tạo mục công việc đầu tiên của bạn", + comic: { + title: "Mục công việc là khối xây dựng cơ bản trong Plane.", + description: + "Thiết kế lại giao diện Plane, định vị lại thương hiệu công ty hoặc ra mắt hệ thống phun nhiên liệu mới đều là ví dụ về mục công việc có thể chứa các mục công việc con.", + }, + }, + }, + no_archived_issues: { + title: "Chưa có mục công việc đã lưu trữ", + description: + "Thông qua phương thức thủ công hoặc tự động, bạn có thể lưu trữ mục công việc đã hoàn thành hoặc đã hủy. Bạn có thể tìm thấy chúng ở đây sau khi lưu trữ.", + primary_button: { + text: "Thiết lập tự động hóa", + }, + }, + issues_empty_filter: { + title: "Không tìm thấy mục công việc phù hợp với bộ lọc", + secondary_button: { + text: "Xóa tất cả bộ lọc", + }, + }, + }, + }, + project_module: { + add_module: "Thêm mô-đun", + update_module: "Cập nhật mô-đun", + create_module: "Tạo mô-đun", + archive_module: "Lưu trữ mô-đun", + restore_module: "Khôi phục mô-đun", + delete_module: "Xóa mô-đun", + empty_state: { + general: { + title: "Ánh xạ cột mốc dự án vào mô-đun, dễ dàng theo dõi công việc tổng hợp.", + description: + "Một nhóm mục công việc thuộc cấp cha trong cấu trúc logic tạo thành một mô-đun. Xem nó như một cách theo dõi công việc theo cột mốc dự án. Chúng có chu kỳ riêng và thời hạn cùng với các tính năng phân tích giúp bạn hiểu bạn đang ở đâu so với cột mốc.", + primary_button: { + text: "Xây dựng mô-đun đầu tiên của bạn", + comic: { + title: "Mô-đun giúp nhóm công việc theo cấu trúc phân cấp.", + description: "Mô-đun giỏ hàng, mô-đun khung gầm và mô-đun kho đều là ví dụ tốt về nhóm như vậy.", + }, + }, + }, + no_issues: { + title: "Không có mục công việc trong mô-đun", + description: "Tạo hoặc thêm mục công việc bạn muốn hoàn thành như một phần của mô-đun này", + primary_button: { + text: "Tạo mục công việc mới", + }, + secondary_button: { + text: "Thêm mục công việc hiện có", + }, + }, + archived: { + title: "Chưa có mô-đun đã lưu trữ", + description: + "Để tổ chức dự án của bạn, hãy lưu trữ mô-đun đã hoàn thành hoặc đã hủy. Bạn có thể tìm thấy chúng ở đây sau khi lưu trữ.", + }, + sidebar: { + in_active: "Mô-đun này chưa được kích hoạt.", + invalid_date: "Ngày không hợp lệ. Vui lòng nhập ngày hợp lệ.", + }, + }, + quick_actions: { + archive_module: "Lưu trữ mô-đun", + archive_module_description: "Chỉ mô-đun đã hoàn thành hoặc đã hủy\ncó thể được lưu trữ.", + delete_module: "Xóa mô-đun", + }, + toast: { + copy: { + success: "Đã sao chép liên kết mô-đun vào bảng tạm", + }, + delete: { + success: "Đã xóa mô-đun thành công", + error: "Xóa mô-đun thất bại", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "Lưu chế độ xem đã lọc cho dự án của bạn. Tạo bao nhiêu tùy ý", + description: + "Chế độ xem là bộ bộ lọc đã lưu mà bạn thường xuyên sử dụng hoặc muốn truy cập dễ dàng. Tất cả đồng nghiệp trong dự án có thể thấy chế độ xem của mọi người và chọn cái phù hợp nhất với nhu cầu của họ.", + primary_button: { + text: "Tạo chế độ xem đầu tiên của bạn", + comic: { + title: "Chế độ xem hoạt động dựa trên thuộc tính mục công việc.", + description: + "Bạn có thể tạo chế độ xem ở đây sử dụng bất kỳ số lượng thuộc tính nào làm bộ lọc theo nhu cầu của bạn.", + }, + }, + }, + filter: { + title: "Không có chế độ xem phù hợp", + description: "Không có chế độ xem phù hợp với tiêu chí tìm kiếm.\nTạo chế độ xem mới.", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "Viết ghi chú, tài liệu hoặc cơ sở kiến thức đầy đủ. Để trợ lý AI Galileo của Plane giúp bạn bắt đầu", + description: + "Trang là không gian ghi lại suy nghĩ trong Plane. Ghi lại các ghi chú cuộc họp, định dạng dễ dàng, nhúng mục công việc, sử dụng thư viện thành phần để bố cục và lưu tất cả trong ngữ cảnh dự án. Để hoàn thành nhanh bất kỳ tài liệu nào, bạn có thể gọi AI Galileo của Plane thông qua phím tắt hoặc nhấp nút.", + primary_button: { + text: "Tạo trang đầu tiên của bạn", + }, + }, + private: { + title: "Chưa có trang riêng tư", + description: "Lưu ý riêng tư của bạn ở đây. Khi sẵn sàng chia sẻ, nhóm của bạn chỉ cách một cú nhấp chuột.", + primary_button: { + text: "Tạo trang đầu tiên của bạn", + }, + }, + public: { + title: "Chưa có trang công khai", + description: "Xem các trang được chia sẻ với mọi người trong dự án tại đây.", + primary_button: { + text: "Tạo trang đầu tiên của bạn", + }, + }, + archived: { + title: "Chưa có trang đã lưu trữ", + description: "Lưu trữ các trang không còn trong tầm nhìn của bạn. Truy cập chúng ở đây khi cần.", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "Không tìm thấy kết quả", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "Không tìm thấy mục công việc phù hợp", + }, + no_issues: { + title: "Không tìm thấy mục công việc", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "Chưa có bình luận", + description: "Bình luận có thể được sử dụng như không gian thảo luận và theo dõi cho mục công việc", + }, + }, + }, + notification: { + label: "Hộp thư đến", + page_label: "{workspace} - Hộp thư đến", + options: { + mark_all_as_read: "Đánh dấu tất cả là đã đọc", + mark_read: "Đánh dấu đã đọc", + mark_unread: "Đánh dấu chưa đọc", + refresh: "Làm mới", + filters: "Bộ lọc hộp thư đến", + show_unread: "Hiển thị chưa đọc", + show_snoozed: "Hiển thị đã tạm hoãn", + show_archived: "Hiển thị đã lưu trữ", + mark_archive: "Lưu trữ", + mark_unarchive: "Hủy lưu trữ", + mark_snooze: "Tạm hoãn", + mark_unsnooze: "Hủy tạm hoãn", + }, + toasts: { + read: "Thông báo đã được đánh dấu là đã đọc", + unread: "Thông báo đã được đánh dấu là chưa đọc", + archived: "Thông báo đã được đánh dấu là đã lưu trữ", + unarchived: "Thông báo đã được đánh dấu là đã hủy lưu trữ", + snoozed: "Thông báo đã được tạm hoãn", + unsnoozed: "Thông báo đã được hủy tạm hoãn", + }, + empty_state: { + detail: { + title: "Chọn để xem chi tiết.", + }, + all: { + title: "Không có mục công việc được giao", + description: "Xem cập nhật về mục công việc được giao cho bạn tại đây", + }, + mentions: { + title: "Không có mục công việc được giao", + description: "Xem cập nhật về mục công việc được giao cho bạn tại đây", + }, + }, + tabs: { + all: "Tất cả", + mentions: "Đề cập", + }, + filter: { + assigned: "Được giao cho tôi", + created: "Được tạo bởi tôi", + subscribed: "Được đăng ký bởi tôi", + }, + snooze: { + "1_day": "1 ngày", + "3_days": "3 ngày", + "5_days": "5 ngày", + "1_week": "1 tuần", + "2_weeks": "2 tuần", + custom: "Tùy chỉnh", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "Thêm mục công việc vào chu kỳ để xem tiến độ của nó", + }, + chart: { + title: "Thêm mục công việc vào chu kỳ để xem biểu đồ burndown.", + }, + priority_issue: { + title: "Xem nhanh các mục công việc ưu tiên cao đang được xử lý trong chu kỳ.", + }, + assignee: { + title: "Thêm người phụ trách cho mục công việc để xem phân tích công việc theo người phụ trách.", + }, + label: { + title: "Thêm nhãn cho mục công việc để xem phân tích công việc theo nhãn.", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "Dự án chưa bật tính năng thu thập.", + description: + "Tính năng thu thập giúp bạn quản lý các yêu cầu đến của dự án và thêm chúng như mục công việc trong quy trình làm việc. Bật tính năng thu thập từ cài đặt dự án để quản lý yêu cầu.", + primary_button: { + text: "Quản lý tính năng", + }, + }, + cycle: { + title: "Dự án này chưa bật tính năng chu kỳ.", + description: + "Chia nhỏ công việc theo khung thời gian, đặt ngày từ thời hạn dự án, và đạt được tiến độ cụ thể với tư cách là một nhóm. Bật tính năng chu kỳ cho dự án của bạn để bắt đầu sử dụng.", + primary_button: { + text: "Quản lý tính năng", + }, + }, + module: { + title: "Dự án chưa bật tính năng mô-đun.", + description: "Mô-đun là khối xây dựng cơ bản của dự án. Bật mô-đun từ cài đặt dự án để bắt đầu sử dụng chúng.", + primary_button: { + text: "Quản lý tính năng", + }, + }, + page: { + title: "Dự án chưa bật tính năng trang.", + description: "Trang là khối xây dựng cơ bản của dự án. Bật trang từ cài đặt dự án để bắt đầu sử dụng chúng.", + primary_button: { + text: "Quản lý tính năng", + }, + }, + view: { + title: "Dự án chưa bật tính năng chế độ xem.", + description: + "Chế độ xem là khối xây dựng cơ bản của dự án. Bật chế độ xem từ cài đặt dự án để bắt đầu sử dụng chúng.", + primary_button: { + text: "Quản lý tính năng", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "Nháp một mục công việc", + empty_state: { + title: "Mục công việc viết dở và bình luận sắp ra mắt sẽ hiển thị ở đây.", + description: + "Để thử tính năng này, hãy bắt đầu thêm mục công việc và rời đi giữa chừng, hoặc tạo bản nháp đầu tiên của bạn bên dưới. 😉", + primary_button: { + text: "Tạo bản nháp đầu tiên của bạn", + }, + }, + delete_modal: { + title: "Xóa bản nháp", + description: "Bạn có chắc chắn muốn xóa bản nháp này không? Hành động này không thể hoàn tác.", + }, + toasts: { + created: { + success: "Đã tạo bản nháp", + error: "Không thể tạo mục công việc. Vui lòng thử lại.", + }, + deleted: { + success: "Đã xóa bản nháp", + }, + }, + }, + stickies: { + title: "Ghi chú của bạn", + placeholder: "Nhấp vào đây để nhập", + all: "Tất cả ghi chú", + "no-data": + "Ghi lại một ý tưởng, nắm bắt một cảm hứng, hoặc ghi lại một suy nghĩ chợt nảy ra. Thêm ghi chú để bắt đầu.", + add: "Thêm ghi chú", + search_placeholder: "Tìm kiếm theo tiêu đề", + delete: "Xóa ghi chú", + delete_confirmation: "Bạn có chắc chắn muốn xóa ghi chú này không?", + empty_state: { + simple: + "Ghi lại một ý tưởng, nắm bắt một cảm hứng, hoặc ghi lại một suy nghĩ chợt nảy ra. Thêm ghi chú để bắt đầu.", + general: { + title: "Ghi chú là ghi chú nhanh và việc cần làm mà bạn ghi lại ngay lập tức.", + description: + "Dễ dàng nắm bắt ý tưởng và sáng tạo của bạn bằng cách tạo ghi chú có thể truy cập từ mọi nơi, mọi lúc.", + primary_button: { + text: "Thêm ghi chú", + }, + }, + search: { + title: "Điều này không khớp với bất kỳ ghi chú nào của bạn.", + description: + "Thử sử dụng các thuật ngữ khác, hoặc nếu bạn chắc chắn\ntìm kiếm là chính xác, hãy cho chúng tôi biết.", + primary_button: { + text: "Thêm ghi chú", + }, + }, + }, + toasts: { + errors: { + wrong_name: "Tên ghi chú không thể vượt quá 100 ký tự.", + already_exists: "Đã tồn tại một ghi chú không có mô tả", + }, + created: { + title: "Đã tạo ghi chú", + message: "Ghi chú đã được tạo thành công", + }, + not_created: { + title: "Chưa tạo ghi chú", + message: "Không thể tạo ghi chú", + }, + updated: { + title: "Đã cập nhật ghi chú", + message: "Ghi chú đã được cập nhật thành công", + }, + not_updated: { + title: "Chưa cập nhật ghi chú", + message: "Không thể cập nhật ghi chú", + }, + removed: { + title: "Đã xóa ghi chú", + message: "Ghi chú đã được xóa thành công", + }, + not_removed: { + title: "Chưa xóa ghi chú", + message: "Không thể xóa ghi chú", + }, + }, + }, + role_details: { + guest: { + title: "Khách", + description: "Thành viên bên ngoài của tổ chức có thể được mời với tư cách khách.", + }, + member: { + title: "Thành viên", + description: "Có thể đọc, viết, chỉnh sửa và xóa thực thể trong dự án, chu kỳ và mô-đun", + }, + admin: { + title: "Quản trị viên", + description: "Tất cả quyền trong không gian làm việc đều được đặt là cho phép.", + }, + }, + user_roles: { + product_or_project_manager: "Quản lý sản phẩm/dự án", + development_or_engineering: "Phát triển/Kỹ thuật", + founder_or_executive: "Nhà sáng lập/Giám đốc điều hành", + freelancer_or_consultant: "Freelancer/Tư vấn viên", + marketing_or_growth: "Marketing/Tăng trưởng", + sales_or_business_development: "Bán hàng/Phát triển kinh doanh", + support_or_operations: "Hỗ trợ/Vận hành", + student_or_professor: "Sinh viên/Giáo sư", + human_resources: "Nhân sự", + other: "Khác", + }, + importer: { + github: { + title: "GitHub", + description: "Nhập và đồng bộ mục công việc từ kho lưu trữ GitHub.", + }, + jira: { + title: "Jira", + description: "Nhập mục công việc và sử thi từ dự án và sử thi Jira.", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "Xuất mục công việc thành tệp CSV.", + short_description: "Xuất sang CSV", + }, + excel: { + title: "Excel", + description: "Xuất mục công việc thành tệp Excel.", + short_description: "Xuất sang Excel", + }, + xlsx: { + title: "Excel", + description: "Xuất mục công việc thành tệp Excel.", + short_description: "Xuất sang Excel", + }, + json: { + title: "JSON", + description: "Xuất mục công việc thành tệp JSON.", + short_description: "Xuất sang JSON", + }, + }, + default_global_view: { + all_issues: "Tất cả mục công việc", + assigned: "Đã giao", + created: "Đã tạo", + subscribed: "Đã đăng ký", + }, + themes: { + theme_options: { + system_preference: { + label: "Tùy chọn hệ thống", + }, + light: { + label: "Sáng", + }, + dark: { + label: "Tối", + }, + light_contrast: { + label: "Sáng tương phản cao", + }, + dark_contrast: { + label: "Tối tương phản cao", + }, + custom: { + label: "Chủ đề tùy chỉnh", + }, + }, + }, + project_modules: { + status: { + backlog: "Tồn đọng", + planned: "Đã lên kế hoạch", + in_progress: "Đang tiến hành", + paused: "Đã tạm dừng", + completed: "Đã hoàn thành", + cancelled: "Đã hủy", + }, + layout: { + list: "Bố cục danh sách", + board: "Bố cục bảng", + timeline: "Bố cục dòng thời gian", + }, + order_by: { + name: "Tên", + progress: "Tiến độ", + issues: "Số lượng mục công việc", + due_date: "Ngày hết hạn", + created_at: "Ngày tạo", + manual: "Thủ công", + }, + }, + cycle: { + label: "{count, plural, one {chu kỳ} other {chu kỳ}}", + no_cycle: "Không có chu kỳ", + }, + module: { + label: "{count, plural, one {mô-đun} other {mô-đun}}", + no_module: "Không có mô-đun", + }, + description_versions: { + last_edited_by: "Chỉnh sửa lần cuối bởi", + previously_edited_by: "Trước đây được chỉnh sửa bởi", + edited_by: "Được chỉnh sửa bởi", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane không khởi động được. Điều này có thể do một hoặc nhiều dịch vụ Plane không khởi động được.", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: "Chọn View Logs từ setup.sh và log Docker để chắc chắn.", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "Phác thảo", + empty_state: { + title: "Thiếu tiêu đề", + description: "Hãy thêm một số tiêu đề vào trang này để xem chúng ở đây.", + }, + }, + info: { + label: "Thông tin", + document_info: { + words: "Từ", + characters: "Ký tự", + paragraphs: "Đoạn văn", + read_time: "Thời gian đọc", + }, + actors_info: { + edited_by: "Được chỉnh sửa bởi", + created_by: "Được tạo bởi", + }, + version_history: { + label: "Lịch sử phiên bản", + current_version: "Phiên bản hiện tại", + }, + }, + assets: { + label: "Tài sản", + download_button: "Tải xuống", + empty_state: { + title: "Thiếu hình ảnh", + description: "Thêm hình ảnh để xem chúng ở đây.", + }, + }, + }, + open_button: "Mở bảng điều hướng", + close_button: "Đóng bảng điều hướng", + outline_floating_button: "Mở phác thảo", + }, +} as const; diff --git a/packages/i18n/src/locales/zh-CN/accessibility.json b/packages/i18n/src/locales/zh-CN/accessibility.json deleted file mode 100644 index fea84d0637..0000000000 --- a/packages/i18n/src/locales/zh-CN/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "工作空间徽标", - "open_workspace_switcher": "打开工作空间切换器", - "open_user_menu": "打开用户菜单", - "open_command_palette": "打开命令面板", - "open_extended_sidebar": "打开扩展侧边栏", - "close_extended_sidebar": "关闭扩展侧边栏", - "create_favorites_folder": "创建收藏夹文件夹", - "open_folder": "打开文件夹", - "close_folder": "关闭文件夹", - "open_favorites_menu": "打开收藏夹菜单", - "close_favorites_menu": "关闭收藏夹菜单", - "enter_folder_name": "输入文件夹名称", - "create_new_project": "创建新项目", - "open_projects_menu": "打开项目菜单", - "close_projects_menu": "关闭项目菜单", - "toggle_quick_actions_menu": "切换快速操作菜单", - "open_project_menu": "打开项目菜单", - "close_project_menu": "关闭项目菜单", - "collapse_sidebar": "折叠侧边栏", - "expand_sidebar": "展开侧边栏", - "edition_badge": "打开付费计划模态框" - }, - "auth_forms": { - "clear_email": "清除邮箱", - "show_password": "显示密码", - "hide_password": "隐藏密码", - "close_alert": "关闭警告", - "close_popover": "关闭弹出框" - } - } -} diff --git a/packages/i18n/src/locales/zh-CN/accessibility.ts b/packages/i18n/src/locales/zh-CN/accessibility.ts new file mode 100644 index 0000000000..d537ef62a1 --- /dev/null +++ b/packages/i18n/src/locales/zh-CN/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "工作空间徽标", + open_workspace_switcher: "打开工作空间切换器", + open_user_menu: "打开用户菜单", + open_command_palette: "打开命令面板", + open_extended_sidebar: "打开扩展侧边栏", + close_extended_sidebar: "关闭扩展侧边栏", + create_favorites_folder: "创建收藏夹文件夹", + open_folder: "打开文件夹", + close_folder: "关闭文件夹", + open_favorites_menu: "打开收藏夹菜单", + close_favorites_menu: "关闭收藏夹菜单", + enter_folder_name: "输入文件夹名称", + create_new_project: "创建新项目", + open_projects_menu: "打开项目菜单", + close_projects_menu: "关闭项目菜单", + toggle_quick_actions_menu: "切换快速操作菜单", + open_project_menu: "打开项目菜单", + close_project_menu: "关闭项目菜单", + collapse_sidebar: "折叠侧边栏", + expand_sidebar: "展开侧边栏", + edition_badge: "打开付费计划模态框", + }, + auth_forms: { + clear_email: "清除邮箱", + show_password: "显示密码", + hide_password: "隐藏密码", + close_alert: "关闭警告", + close_popover: "关闭弹出框", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/zh-CN/editor.json b/packages/i18n/src/locales/zh-CN/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/zh-CN/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/zh-CN/editor.ts b/packages/i18n/src/locales/zh-CN/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/zh-CN/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/zh-CN/translations.json b/packages/i18n/src/locales/zh-CN/translations.json deleted file mode 100644 index 03b35d9f69..0000000000 --- a/packages/i18n/src/locales/zh-CN/translations.json +++ /dev/null @@ -1,2514 +0,0 @@ -{ - "sidebar": { - "projects": "项目", - "pages": "页面", - "new_work_item": "新工作项", - "home": "主页", - "your_work": "我的工作", - "inbox": "收件箱", - "workspace": "工作区", - "views": "视图", - "analytics": "分析", - "work_items": "工作项", - "cycles": "周期", - "modules": "模块", - "intake": "收集", - "drafts": "草稿", - "favorites": "收藏", - "pro": "专业版", - "upgrade": "升级" - }, - "auth": { - "common": { - "email": { - "label": "邮箱", - "placeholder": "name@company.com", - "errors": { - "required": "邮箱是必填项", - "invalid": "邮箱格式无效" - } - }, - "password": { - "label": "密码", - "set_password": "设置密码", - "placeholder": "输入密码", - "confirm_password": { - "label": "确认密码", - "placeholder": "确认密码" - }, - "current_password": { - "label": "当前密码" - }, - "new_password": { - "label": "新密码", - "placeholder": "输入新密码" - }, - "change_password": { - "label": { - "default": "修改密码", - "submitting": "正在修改密码" - } - }, - "errors": { - "match": "密码不匹配", - "empty": "请输入密码", - "length": "密码长度应超过8个字符", - "strength": { - "weak": "密码强度较弱", - "strong": "密码强度较强" - } - }, - "submit": "设置密码", - "toast": { - "change_password": { - "success": { - "title": "成功!", - "message": "密码修改成功。" - }, - "error": { - "title": "错误!", - "message": "出现错误。请重试。" - } - } - } - }, - "unique_code": { - "label": "唯一码", - "placeholder": "gets-sets-flys", - "paste_code": "粘贴发送到您邮箱的验证码", - "requesting_new_code": "正在请求新验证码", - "sending_code": "正在发送验证码" - }, - "already_have_an_account": "已有账号?", - "login": "登录", - "create_account": "创建账号", - "new_to_plane": "首次使用 Plane?", - "back_to_sign_in": "返回登录", - "resend_in": "{seconds} 秒后重新发送", - "sign_in_with_unique_code": "使用唯一码登录", - "forgot_password": "忘记密码?" - }, - "sign_up": { - "header": { - "label": "创建账号以开始与团队一起管理工作。", - "step": { - "email": { - "header": "注册", - "sub_header": "" - }, - "password": { - "header": "注册", - "sub_header": "使用邮箱-密码组合注册。" - }, - "unique_code": { - "header": "注册", - "sub_header": "使用发送到上述邮箱的唯一码注册。" - } - } - }, - "errors": { - "password": { - "strength": "请设置一个强密码以继续" - } - } - }, - "sign_in": { - "header": { - "label": "登录以开始与团队一起管理工作。", - "step": { - "email": { - "header": "登录或注册", - "sub_header": "" - }, - "password": { - "header": "登录或注册", - "sub_header": "使用您的邮箱-密码组合登录。" - }, - "unique_code": { - "header": "登录或注册", - "sub_header": "使用发送到上述邮箱的唯一码登录。" - } - } - } - }, - "forgot_password": { - "title": "重置密码", - "description": "输入您的用户账号已验证的邮箱地址,我们将向您发送密码重置链接。", - "email_sent": "我们已将重置链接发送到您的邮箱", - "send_reset_link": "发送重置链接", - "errors": { - "smtp_not_enabled": "我们发现您的管理员未启用 SMTP,我们将无法发送密码重置链接" - }, - "toast": { - "success": { - "title": "邮件已发送", - "message": "请查看您的收件箱以获取重置密码的链接。如果几分钟内未收到,请检查垃圾邮件文件夹。" - }, - "error": { - "title": "错误!", - "message": "出现错误。请重试。" - } - } - }, - "reset_password": { - "title": "设置新密码", - "description": "使用强密码保护您的账号" - }, - "set_password": { - "title": "保护您的账号", - "description": "设置密码有助于您安全登录" - }, - "sign_out": { - "toast": { - "error": { - "title": "错误!", - "message": "登出失败。请重试。" - } - } - } - }, - "submit": "提交", - "cancel": "取消", - "loading": "加载中", - "error": "错误", - "success": "成功", - "warning": "警告", - "info": "信息", - "close": "关闭", - "yes": "是", - "no": "否", - "ok": "确定", - "name": "名称", - "description": "描述", - "search": "搜索", - "add_member": "添加成员", - "adding_members": "正在添加成员", - "remove_member": "移除成员", - "add_members": "添加成员", - "adding_member": "正在添加成员", - "remove_members": "移除成员", - "add": "添加", - "adding": "添加中", - "remove": "移除", - "add_new": "添加新的", - "remove_selected": "移除所选", - "first_name": "名", - "last_name": "姓", - "email": "邮箱", - "display_name": "显示名称", - "role": "角色", - "timezone": "时区", - "avatar": "头像", - "cover_image": "封面图片", - "password": "密码", - "change_cover": "更改封面", - "language": "语言", - "saving": "保存中", - "save_changes": "保存更改", - "deactivate_account": "停用账号", - "deactivate_account_description": "停用账号后,该账号内的所有数据和资源将被永久删除且无法恢复。", - "profile_settings": "个人资料设置", - "your_account": "您的账号", - "security": "安全", - "activity": "活动", - "appearance": "外观", - "notifications": "通知", - "workspaces": "工作区", - "create_workspace": "创建工作区", - "invitations": "邀请", - "summary": "摘要", - "assigned": "已分配", - "created": "已创建", - "subscribed": "已订阅", - "you_do_not_have_the_permission_to_access_this_page": "您没有访问此页面的权限。", - "something_went_wrong_please_try_again": "出现错误。请重试。", - "load_more": "加载更多", - "select_or_customize_your_interface_color_scheme": "选择或自定义您的界面配色方案。", - "theme": "主题", - "system_preference": "系统偏好", - "light": "浅色", - "dark": "深色", - "light_contrast": "浅色高对比度", - "dark_contrast": "深色高对比度", - "custom": "自定义主题", - "select_your_theme": "选择您的主题", - "customize_your_theme": "自定义您的主题", - "background_color": "背景颜色", - "text_color": "文字颜色", - "primary_color": "主要(主题)颜色", - "sidebar_background_color": "侧边栏背景颜色", - "sidebar_text_color": "侧边栏文字颜色", - "set_theme": "设置主题", - "enter_a_valid_hex_code_of_6_characters": "输入有效的6位十六进制代码", - "background_color_is_required": "背景颜色为必填项", - "text_color_is_required": "文字颜色为必填项", - "primary_color_is_required": "主要颜色为必填项", - "sidebar_background_color_is_required": "侧边栏背景颜色为必填项", - "sidebar_text_color_is_required": "侧边栏文字颜色为必填项", - "updating_theme": "正在更新主题", - "theme_updated_successfully": "主题更新成功", - "failed_to_update_the_theme": "主题更新失败", - "email_notifications": "邮件通知", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "及时了解您订阅的工作项。启用此功能以获取通知。", - "email_notification_setting_updated_successfully": "邮件通知设置更新成功", - "failed_to_update_email_notification_setting": "邮件通知设置更新失败", - "notify_me_when": "在以下情况通知我", - "property_changes": "属性变更", - "property_changes_description": "当工作项的属性(如负责人、优先级、估算等)发生变更时通知我。", - "state_change": "状态变更", - "state_change_description": "当工作项移动到不同状态时通知我", - "issue_completed": "工作项完成", - "issue_completed_description": "仅当工作项完成时通知我", - "comments": "评论", - "comments_description": "当有人在工作项上发表评论时通知我", - "mentions": "提及", - "mentions_description": "仅当有人在评论或描述中提及我时通知我", - "old_password": "旧密码", - "general_settings": "常规设置", - "sign_out": "退出登录", - "signing_out": "正在退出登录", - "active_cycles": "活动周期", - "active_cycles_description": "监控各个项目的周期,跟踪高优先级工作项,并关注需要注意的周期。", - "on_demand_snapshots_of_all_your_cycles": "所有周期的实时快照", - "upgrade": "升级", - "10000_feet_view": "所有活动周期的全局视图。", - "10000_feet_view_description": "放大视角,一次性查看所有项目中正在进行的周期,而不是在每个项目中逐个查看周期。", - "get_snapshot_of_each_active_cycle": "获取每个活动周期的快照。", - "get_snapshot_of_each_active_cycle_description": "跟踪所有活动周期的高级指标,查看其进度状态,并了解与截止日期相关的范围。", - "compare_burndowns": "比较燃尽图。", - "compare_burndowns_description": "通过查看每个周期的燃尽报告,监控每个团队的表现。", - "quickly_see_make_or_break_issues": "快速查看关键工作项。", - "quickly_see_make_or_break_issues_description": "预览每个周期中与截止日期相关的高优先级工作项。一键查看每个周期的所有工作项。", - "zoom_into_cycles_that_need_attention": "关注需要注意的周期。", - "zoom_into_cycles_that_need_attention_description": "一键调查任何不符合预期的周期状态。", - "stay_ahead_of_blockers": "提前预防阻塞。", - "stay_ahead_of_blockers_description": "发现从一个项目到另一个项目的挑战,并查看从其他视图中不易发现的周期间依赖关系。", - "analytics": "分析", - "workspace_invites": "工作区邀请", - "enter_god_mode": "进入管理员模式", - "workspace_logo": "工作区标志", - "new_issue": "新工作项", - "your_work": "我的工作", - "drafts": "草稿", - "projects": "项目", - "views": "视图", - "workspace": "工作区", - "archives": "归档", - "settings": "设置", - "failed_to_move_favorite": "移动收藏失败", - "favorites": "收藏", - "no_favorites_yet": "暂无收藏", - "create_folder": "创建文件夹", - "new_folder": "新建文件夹", - "favorite_updated_successfully": "收藏更新成功", - "favorite_created_successfully": "收藏创建成功", - "folder_already_exists": "文件夹已存在", - "folder_name_cannot_be_empty": "文件夹名称不能为空", - "something_went_wrong": "出现错误", - "failed_to_reorder_favorite": "重新排序收藏失败", - "favorite_removed_successfully": "收藏移除成功", - "failed_to_create_favorite": "创建收藏失败", - "failed_to_rename_favorite": "重命名收藏失败", - "project_link_copied_to_clipboard": "项目链接已复制到剪贴板", - "link_copied": "链接已复制", - "add_project": "添加项目", - "create_project": "创建项目", - "failed_to_remove_project_from_favorites": "无法从收藏中移除项目。请重试。", - "project_created_successfully": "项目创建成功", - "project_created_successfully_description": "项目创建成功。您现在可以开始添加工作项了。", - "project_name_already_taken": "项目名称已被使用。", - "project_identifier_already_taken": "项目标识符已被使用。", - "project_cover_image_alt": "项目封面图片", - "name_is_required": "名称为必填项", - "title_should_be_less_than_255_characters": "标题应少于255个字符", - "project_name": "项目名称", - "project_id_must_be_at_least_1_character": "项目ID至少需要1个字符", - "project_id_must_be_at_most_5_characters": "项目ID最多只能有5个字符", - "project_id": "项目ID", - "project_id_tooltip_content": "帮助您唯一标识项目中的工作项。最多5个字符。", - "description_placeholder": "描述", - "only_alphanumeric_non_latin_characters_allowed": "仅允许字母数字和非拉丁字符。", - "project_id_is_required": "项目ID为必填项", - "project_id_allowed_char": "仅允许字母数字和非拉丁字符。", - "project_id_min_char": "项目ID至少需要1个字符", - "project_id_max_char": "项目ID最多只能有5个字符", - "project_description_placeholder": "输入项目描述", - "select_network": "选择网络", - "lead": "负责人", - "date_range": "日期范围", - "private": "私有", - "public": "公开", - "accessible_only_by_invite": "仅受邀者可访问", - "anyone_in_the_workspace_except_guests_can_join": "除访客外的工作区所有成员都可以加入", - "creating": "创建中", - "creating_project": "正在创建项目", - "adding_project_to_favorites": "正在将项目添加到收藏", - "project_added_to_favorites": "项目已添加到收藏", - "couldnt_add_the_project_to_favorites": "无法将项目添加到收藏。请重试。", - "removing_project_from_favorites": "正在从收藏中移除项目", - "project_removed_from_favorites": "项目已从收藏中移除", - "couldnt_remove_the_project_from_favorites": "无法从收藏中移除项目。请重试。", - "add_to_favorites": "添加到收藏", - "remove_from_favorites": "从收藏中移除", - "publish_project": "发布项目", - "publish": "发布", - "copy_link": "复制链接", - "leave_project": "离开项目", - "join_the_project_to_rearrange": "加入项目以重新排列", - "drag_to_rearrange": "拖动以重新排列", - "congrats": "恭喜!", - "open_project": "打开项目", - "issues": "工作项", - "cycles": "周期", - "modules": "模块", - "pages": "页面", - "intake": "收集", - "time_tracking": "时间跟踪", - "work_management": "工作管理", - "projects_and_issues": "项目和工作项", - "projects_and_issues_description": "在此项目中开启或关闭这些功能。", - "cycles_description": "为每个项目设置时间框,并根据需要调整周期。一个周期可以是两周,下一个周期是一周。", - "modules_description": "将工作组织为子项目,并指定专门的负责人和受理人。", - "views_description": "保存自定义排序、筛选和显示选项,或与团队共享。", - "pages_description": "创建和编辑自由格式的内容:笔记、文档,任何内容。", - "intake_description": "允许非成员提交 Bug、反馈和建议,且不会干扰您的工作流程。", - "time_tracking_description": "记录在工作项和项目上花费的时间。", - "work_management_description": "轻松管理您的工作和项目。", - "documentation": "文档", - "message_support": "联系支持", - "contact_sales": "联系销售", - "hyper_mode": "超级模式", - "keyboard_shortcuts": "键盘快捷键", - "whats_new": "新功能", - "version": "版本", - "we_are_having_trouble_fetching_the_updates": "我们在获取更新时遇到问题。", - "our_changelogs": "我们的更新日志", - "for_the_latest_updates": "获取最新更新。", - "please_visit": "请访问", - "docs": "文档", - "full_changelog": "完整更新日志", - "support": "支持", - "discord": "Discord", - "powered_by_plane_pages": "由Plane Pages提供支持", - "please_select_at_least_one_invitation": "请至少选择一个邀请。", - "please_select_at_least_one_invitation_description": "请至少选择一个加入工作区的邀请。", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "我们看到有人邀请您加入工作区", - "join_a_workspace": "加入工作区", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "我们看到有人邀请您加入工作区", - "join_a_workspace_description": "加入工作区", - "accept_and_join": "接受并加入", - "go_home": "返回首页", - "no_pending_invites": "没有待处理的邀请", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "如果有人邀请您加入工作区,您可以在这里看到", - "back_to_home": "返回首页", - "workspace_name": "工作区名称", - "deactivate_your_account": "停用您的账户", - "deactivate_your_account_description": "一旦停用,您将无法被分配工作项,也不会被计入工作区的账单。要重新激活您的账户,您需要收到发送到此电子邮件地址的工作区邀请。", - "deactivating": "正在停用", - "confirm": "确认", - "confirming": "确认中", - "draft_created": "草稿已创建", - "issue_created_successfully": "工作项创建成功", - "draft_creation_failed": "草稿创建失败", - "issue_creation_failed": "工作项创建失败", - "draft_issue": "草稿工作项", - "issue_updated_successfully": "工作项更新成功", - "issue_could_not_be_updated": "工作项无法更新", - "create_a_draft": "创建草稿", - "save_to_drafts": "保存到草稿", - "save": "保存", - "update": "更新", - "updating": "更新中", - "create_new_issue": "创建新工作项", - "editor_is_not_ready_to_discard_changes": "编辑器尚未准备好放弃更改", - "failed_to_move_issue_to_project": "无法将工作项移动到项目", - "create_more": "创建更多", - "add_to_project": "添加到项目", - "discard": "放弃", - "duplicate_issue_found": "发现重复的工作项", - "duplicate_issues_found": "发现重复的工作项", - "no_matching_results": "没有匹配的结果", - "title_is_required": "标题为必填项", - "title": "标题", - "state": "状态", - "priority": "优先级", - "none": "无", - "urgent": "紧急", - "high": "高", - "medium": "中", - "low": "低", - "members": "成员", - "assignee": "负责人", - "assignees": "负责人", - "you": "您", - "labels": "标签", - "create_new_label": "创建新标签", - "start_date": "开始日期", - "end_date": "结束日期", - "due_date": "截止日期", - "estimate": "估算", - "change_parent_issue": "更改父工作项", - "remove_parent_issue": "移除父工作项", - "add_parent": "添加父项", - "loading_members": "正在加载成员", - "view_link_copied_to_clipboard": "视图链接已复制到剪贴板", - "required": "必填", - "optional": "可选", - "Cancel": "取消", - "edit": "编辑", - "archive": "归档", - "restore": "恢复", - "open_in_new_tab": "在新标签页中打开", - "delete": "删除", - "deleting": "删除中", - "make_a_copy": "创建副本", - "move_to_project": "移动到项目", - "good": "早上", - "morning": "早上", - "afternoon": "下午", - "evening": "晚上", - "show_all": "显示全部", - "show_less": "显示更少", - "no_data_yet": "暂无数据", - "syncing": "同步中", - "add_work_item": "添加工作项", - "advanced_description_placeholder": "按'/'使用命令", - "create_work_item": "创建工作项", - "attachments": "附件", - "declining": "拒绝中", - "declined": "已拒绝", - "decline": "拒绝", - "unassigned": "未分配", - "work_items": "工作项", - "add_link": "添加链接", - "points": "点数", - "no_assignee": "无负责人", - "no_assignees_yet": "暂无负责人", - "no_labels_yet": "暂无标签", - "ideal": "理想", - "current": "当前", - "no_matching_members": "没有匹配的成员", - "leaving": "离开中", - "removing": "移除中", - "leave": "离开", - "refresh": "刷新", - "refreshing": "刷新中", - "refresh_status": "刷新状态", - "prev": "上一个", - "next": "下一个", - "re_generating": "重新生成中", - "re_generate": "重新生成", - "re_generate_key": "重新生成密钥", - "export": "导出", - "member": "{count, plural, other{# 成员}}", - "new_password_must_be_different_from_old_password": "新密码必须不同于旧密码", - "edited": "已编辑", - "bot": "机器人", - "project_view": { - "sort_by": { - "created_at": "创建时间", - "updated_at": "更新时间", - "name": "名称" - } - }, - "toast": { - "success": "成功!", - "error": "错误!" - }, - "links": { - "toasts": { - "created": { - "title": "链接已创建", - "message": "链接已成功创建" - }, - "not_created": { - "title": "链接未创建", - "message": "无法创建链接" - }, - "updated": { - "title": "链接已更新", - "message": "链接已成功更新" - }, - "not_updated": { - "title": "链接未更新", - "message": "无法更新链接" - }, - "removed": { - "title": "链接已移除", - "message": "链接已成功移除" - }, - "not_removed": { - "title": "链接未移除", - "message": "无法移除链接" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "快速入门指南", - "not_right_now": "暂时不要", - "create_project": { - "title": "创建项目", - "description": "在Plane中,大多数事情都从项目开始。", - "cta": "开始使用" - }, - "invite_team": { - "title": "邀请您的团队", - "description": "与同事一起构建、发布和管理。", - "cta": "邀请他们加入" - }, - "configure_workspace": { - "title": "设置您的工作区", - "description": "开启或关闭功能,或进行更多设置。", - "cta": "配置此工作区" - }, - "personalize_account": { - "title": "让Plane更适合您", - "description": "选择您的头像、颜色等。", - "cta": "立即个性化" - }, - "widgets": { - "title": "没有小部件看起来很安静,开启它们吧", - "description": "看起来您的所有小部件都已关闭。现在启用它们\n来提升您的体验!", - "primary_button": { - "text": "管理小部件" - } - } - }, - "quick_links": { - "empty": "保存您想要方便访问的工作相关链接。", - "add": "添加快速链接", - "title": "快速链接", - "title_plural": "快速链接" - }, - "recents": { - "title": "最近", - "empty": { - "project": "访问项目后,您的最近项目将显示在这里。", - "page": "访问页面后,您的最近页面将显示在这里。", - "issue": "访问工作项后,您的最近工作项将显示在这里。", - "default": "您还没有任何最近项目。" - }, - "filters": { - "all": "所有", - "projects": "项目", - "pages": "页面", - "issues": "工作项" - } - }, - "new_at_plane": { - "title": "Plane新功能" - }, - "quick_tutorial": { - "title": "快速教程" - }, - "widget": { - "reordered_successfully": "小部件重新排序成功。", - "reordering_failed": "重新排序小部件时出错。" - }, - "manage_widgets": "管理小部件", - "title": "首页", - "star_us_on_github": "在GitHub上为我们加星" - }, - "link": { - "modal": { - "url": { - "text": "URL", - "required": "URL无效", - "placeholder": "输入或粘贴URL" - }, - "title": { - "text": "显示标题", - "placeholder": "您希望如何显示此链接" - } - } - }, - "common": { - "all": "全部", - "states": "状态", - "state": "状态", - "state_groups": "状态组", - "state_group": "状态组", - "priorities": "优先级", - "priority": "优先级", - "team_project": "团队项目", - "project": "项目", - "cycle": "周期", - "cycles": "周期", - "module": "模块", - "modules": "模块", - "labels": "标签", - "label": "标签", - "assignees": "负责人", - "assignee": "负责人", - "created_by": "创建者", - "none": "无", - "link": "链接", - "estimates": "估算", - "estimate": "估算", - "created_at": "创建于", - "completed_at": "完成于", - "layout": "布局", - "filters": "筛选", - "display": "显示", - "load_more": "加载更多", - "activity": "活动", - "analytics": "分析", - "dates": "日期", - "success": "成功!", - "something_went_wrong": "出现错误", - "error": { - "label": "错误!", - "message": "发生错误。请重试。" - }, - "group_by": "分组方式", - "epic": "史诗", - "epics": "史诗", - "work_item": "工作项", - "work_items": "工作项", - "sub_work_item": "子工作项", - "add": "添加", - "warning": "警告", - "updating": "更新中", - "adding": "添加中", - "update": "更新", - "creating": "创建中", - "create": "创建", - "cancel": "取消", - "description": "描述", - "title": "标题", - "attachment": "附件", - "general": "常规", - "features": "功能", - "automation": "自动化", - "project_name": "项目名称", - "project_id": "项目ID", - "project_timezone": "项目时区", - "created_on": "创建于", - "update_project": "更新项目", - "identifier_already_exists": "标识符已存在", - "add_more": "添加更多", - "defaults": "默认值", - "add_label": "添加标签", - "customize_time_range": "自定义时间范围", - "loading": "加载中", - "attachments": "附件", - "property": "属性", - "properties": "属性", - "parent": "父项", - "page": "页面", - "remove": "移除", - "archiving": "归档中", - "archive": "归档", - "access": { - "public": "公开", - "private": "私有" - }, - "done": "完成", - "sub_work_items": "子工作项", - "comment": "评论", - "workspace_level": "工作区级别", - "order_by": { - "label": "排序方式", - "manual": "手动", - "last_created": "最近创建", - "last_updated": "最近更新", - "start_date": "开始日期", - "due_date": "截止日期", - "asc": "升序", - "desc": "降序", - "updated_on": "更新时间" - }, - "sort": { - "asc": "升序", - "desc": "降序", - "created_on": "创建时间", - "updated_on": "更新时间" - }, - "comments": "评论", - "updates": "更新", - "clear_all": "清除全部", - "copied": "已复制!", - "link_copied": "链接已复制!", - "link_copied_to_clipboard": "链接已复制到剪贴板", - "copied_to_clipboard": "工作项链接已复制到剪贴板", - "is_copied_to_clipboard": "工作项已复制到剪贴板", - "no_links_added_yet": "暂无添加的链接", - "add_link": "添加链接", - "links": "链接", - "go_to_workspace": "前往工作区", - "progress": "进度", - "optional": "可选", - "join": "加入", - "go_back": "返回", - "continue": "继续", - "resend": "重新发送", - "relations": "关系", - "errors": { - "default": { - "title": "错误!", - "message": "发生错误。请重试。" - }, - "required": "此字段为必填项", - "entity_required": "{entity}为必填项", - "restricted_entity": "{entity}已被限制" - }, - "update_link": "更新链接", - "attach": "附加", - "create_new": "创建新的", - "add_existing": "添加现有", - "type_or_paste_a_url": "输入或粘贴URL", - "url_is_invalid": "URL无效", - "display_title": "显示标题", - "link_title_placeholder": "您希望如何显示此链接", - "url": "URL", - "side_peek": "侧边预览", - "modal": "模态框", - "full_screen": "全屏", - "close_peek_view": "关闭预览视图", - "toggle_peek_view_layout": "切换预览视图布局", - "options": "选项", - "duration": "持续时间", - "today": "今天", - "week": "周", - "month": "月", - "quarter": "季度", - "press_for_commands": "按'/'使用命令", - "click_to_add_description": "点击添加描述", - "search": { - "label": "搜索", - "placeholder": "输入搜索内容", - "no_matches_found": "未找到匹配项", - "no_matching_results": "没有匹配的结果" - }, - "actions": { - "edit": "编辑", - "make_a_copy": "创建副本", - "open_in_new_tab": "在新标签页中打开", - "copy_link": "复制链接", - "archive": "归档", - "delete": "删除", - "remove_relation": "移除关系", - "subscribe": "订阅", - "unsubscribe": "取消订阅", - "clear_sorting": "清除排序", - "show_weekends": "显示周末", - "enable": "启用", - "disable": "禁用" - }, - "name": "名称", - "discard": "放弃", - "confirm": "确认", - "confirming": "确认中", - "read_the_docs": "阅读文档", - "default": "默认", - "active": "活动", - "enabled": "已启用", - "disabled": "已禁用", - "mandate": "授权", - "mandatory": "必需的", - "yes": "是", - "no": "否", - "please_wait": "请稍候", - "enabling": "正在启用", - "disabling": "正在禁用", - "beta": "测试版", - "or": "或", - "next": "下一步", - "back": "返回", - "cancelling": "正在取消", - "configuring": "正在配置", - "clear": "清除", - "import": "导入", - "connect": "连接", - "authorizing": "正在授权", - "processing": "正在处理", - "no_data_available": "暂无数据", - "from": "来自 {name}", - "authenticated": "已认证", - "select": "选择", - "upgrade": "升级", - "add_seats": "添加席位", - "projects": "项目", - "workspace": "工作区", - "workspaces": "工作区", - "team": "团队", - "teams": "团队", - "entity": "实体", - "entities": "实体", - "task": "任务", - "tasks": "任务", - "section": "部分", - "sections": "部分", - "edit": "编辑", - "connecting": "正在连接", - "connected": "已连接", - "disconnect": "断开连接", - "disconnecting": "正在断开连接", - "installing": "正在安装", - "install": "安装", - "reset": "重置", - "live": "实时", - "change_history": "变更历史", - "coming_soon": "即将推出", - "member": "成员", - "members": "成员", - "you": "你", - "upgrade_cta": { - "higher_subscription": "升级到更高订阅", - "talk_to_sales": "联系销售" - }, - "category": "类别", - "categories": "类别", - "saving": "保存中", - "save_changes": "保存更改", - "delete": "删除", - "deleting": "删除中", - "pending": "待处理", - "invite": "邀请", - "view": "查看", - "deactivated_user": "已停用用户", - "apply": "应用", - "applying": "应用中", - "users": "用户", - "admins": "管理员", - "guests": "访客", - "on_track": "进展顺利", - "off_track": "偏离轨道", - "at_risk": "有风险", - "timeline": "时间轴", - "completion": "完成", - "upcoming": "即将发生", - "completed": "已完成", - "in_progress": "进行中", - "planned": "已计划", - "paused": "暂停", - "no_of": "{entity} 的数量", - "resolved": "已解决" - }, - "chart": { - "x_axis": "X轴", - "y_axis": "Y轴", - "metric": "指标" - }, - "form": { - "title": { - "required": "标题为必填项", - "max_length": "标题应少于 {length} 个字符" - } - }, - "entity": { - "grouping_title": "{entity}分组", - "priority": "{entity}优先级", - "all": "所有{entity}", - "drop_here_to_move": "拖放到此处以移动{entity}", - "delete": { - "label": "删除{entity}", - "success": "{entity}删除成功", - "failed": "{entity}删除失败" - }, - "update": { - "failed": "{entity}更新失败", - "success": "{entity}更新成功" - }, - "link_copied_to_clipboard": "{entity}链接已复制到剪贴板", - "fetch": { - "failed": "获取{entity}时出错" - }, - "add": { - "success": "{entity}添加成功", - "failed": "添加{entity}时出错" - }, - "remove": { - "success": "{entity}删除成功", - "failed": "删除{entity}时出错" - } - }, - "epic": { - "all": "所有史诗", - "label": "{count, plural, one {史诗} other {史诗}}", - "new": "新建史诗", - "adding": "正在添加史诗", - "create": { - "success": "史诗创建成功" - }, - "add": { - "press_enter": "按'Enter'添加另一个史诗", - "label": "添加史诗" - }, - "title": { - "label": "史诗标题", - "required": "史诗标题为必填项" - } - }, - "issue": { - "label": "{count, plural, one {工作项} other {工作项}}", - "all": "所有工作项", - "edit": "编辑工作项", - "title": { - "label": "工作项标题", - "required": "工作项标题为必填项" - }, - "add": { - "press_enter": "按'Enter'添加另一个工作项", - "label": "添加工作项", - "cycle": { - "failed": "无法将工作项添加到周期。请重试。", - "success": "{count, plural, one {工作项} other {工作项}}已成功添加到周期。", - "loading": "正在将{count, plural, one {工作项} other {工作项}}添加到周期" - }, - "assignee": "添加负责人", - "start_date": "添加开始日期", - "due_date": "添加截止日期", - "parent": "添加父工作项", - "sub_issue": "添加子工作项", - "relation": "添加关系", - "link": "添加链接", - "existing": "添加现有工作项" - }, - "remove": { - "label": "移除工作项", - "cycle": { - "loading": "正在从周期中移除工作项", - "success": "已成功从周期中移除工作项。", - "failed": "无法从周期中移除工作项。请重试。" - }, - "module": { - "loading": "正在从模块中移除工作项", - "success": "已成功从模块中移除工作项。", - "failed": "无法从模块中移除工作项。请重试。" - }, - "parent": { - "label": "移除父工作项" - } - }, - "new": "新建工作项", - "adding": "正在添加工作项", - "create": { - "success": "工作项创建成功" - }, - "priority": { - "urgent": "紧急", - "high": "高", - "medium": "中", - "low": "低" - }, - "display": { - "properties": { - "label": "显示属性", - "id": "ID", - "issue_type": "工作项类型", - "sub_issue_count": "子工作项数量", - "attachment_count": "附件数量", - "created_on": "创建于", - "sub_issue": "子工作项", - "work_item_count": "工作项数量" - }, - "extra": { - "show_sub_issues": "显示子工作项", - "show_empty_groups": "显示空组" - } - }, - "layouts": { - "ordered_by_label": "此布局按以下方式排序", - "list": "列表", - "kanban": "看板", - "calendar": "日历", - "spreadsheet": "表格", - "gantt": "时间线", - "title": { - "list": "列表布局", - "kanban": "看板布局", - "calendar": "日历布局", - "spreadsheet": "表格布局", - "gantt": "时间线布局" - } - }, - "states": { - "active": "活动", - "backlog": "待办" - }, - "comments": { - "placeholder": "添加评论", - "switch": { - "private": "切换为私密评论", - "public": "切换为公开评论" - }, - "create": { - "success": "评论创建成功", - "error": "评论创建失败。请稍后重试。" - }, - "update": { - "success": "评论更新成功", - "error": "评论更新失败。请稍后重试。" - }, - "remove": { - "success": "评论删除成功", - "error": "评论删除失败。请稍后重试。" - }, - "upload": { - "error": "资源上传失败。请稍后重试。" - }, - "copy_link": { - "success": "评论链接已复制到剪贴板", - "error": "复制评论链接时出错。请稍后再试。" - } - }, - "empty_state": { - "issue_detail": { - "title": "工作项不存在", - "description": "您查找的工作项不存在、已归档或已删除。", - "primary_button": { - "text": "查看其他工作项" - } - } - }, - "sibling": { - "label": "同级工作项" - }, - "archive": { - "description": "只有已完成或已取消的\n工作项可以归档", - "label": "归档工作项", - "confirm_message": "您确定要归档此工作项吗?所有已归档的工作项稍后可以恢复。", - "success": { - "label": "归档成功", - "message": "您的归档可以在项目归档中找到。" - }, - "failed": { - "message": "无法归档工作项。请重试。" - } - }, - "restore": { - "success": { - "title": "恢复成功", - "message": "您的工作项可以在项目工作项中找到。" - }, - "failed": { - "message": "无法恢复工作项。请重试。" - } - }, - "relation": { - "relates_to": "关联到", - "duplicate": "重复于", - "blocked_by": "被阻止于", - "blocking": "阻止" - }, - "copy_link": "复制工作项链接", - "delete": { - "label": "删除工作项", - "error": "删除工作项时出错" - }, - "subscription": { - "actions": { - "subscribed": "工作项订阅成功", - "unsubscribed": "工作项取消订阅成功" - } - }, - "select": { - "error": "请至少选择一个工作项", - "empty": "未选择工作项", - "add_selected": "添加所选工作项", - "select_all": "全选", - "deselect_all": "取消全选" - }, - "open_in_full_screen": "在全屏中打开工作项" - }, - "attachment": { - "error": "无法附加文件。请重新上传。", - "only_one_file_allowed": "一次只能上传一个文件。", - "file_size_limit": "文件大小必须小于或等于 {size}MB。", - "drag_and_drop": "拖放到任意位置以上传", - "delete": "删除附件" - }, - "label": { - "select": "选择标签", - "create": { - "success": "标签创建成功", - "failed": "标签创建失败", - "already_exists": "标签已存在", - "type": "输入以添加新标签" - } - }, - "sub_work_item": { - "update": { - "success": "子工作项更新成功", - "error": "更新子工作项时出错" - }, - "remove": { - "success": "子工作项移除成功", - "error": "移除子工作项时出错" - }, - "empty_state": { - "sub_list_filters": { - "title": "您没有符合您应用的过滤器的子工作项。", - "description": "要查看所有子工作项,请清除所有应用的过滤器。", - "action": "清除过滤器" - }, - "list_filters": { - "title": "您没有符合您应用的过滤器的工作项。", - "description": "要查看所有工作项,请清除所有应用的过滤器。", - "action": "清除过滤器" - } - } - }, - "view": { - "label": "{count, plural, one {视图} other {视图}}", - "create": { - "label": "创建视图" - }, - "update": { - "label": "更新视图" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "待处理", - "description": "待处理" - }, - "declined": { - "title": "已拒绝", - "description": "已拒绝" - }, - "snoozed": { - "title": "已暂停", - "description": "还剩{days, plural, one{# 天} other{# 天}}" - }, - "accepted": { - "title": "已接受", - "description": "已接受" - }, - "duplicate": { - "title": "重复", - "description": "重复" - } - }, - "modals": { - "decline": { - "title": "拒绝工作项", - "content": "您确定要拒绝工作项 {value} 吗?" - }, - "delete": { - "title": "删除工作项", - "content": "您确定要删除工作项 {value} 吗?", - "success": "工作项删除成功" - } - }, - "errors": { - "snooze_permission": "只有项目管理员可以暂停/取消暂停工作项", - "accept_permission": "只有项目管理员可以接受工作项", - "decline_permission": "只有项目管理员可以拒绝工作项" - }, - "actions": { - "accept": "接受", - "decline": "拒绝", - "snooze": "暂停", - "unsnooze": "取消暂停", - "copy": "复制工作项链接", - "delete": "删除", - "open": "打开工作项", - "mark_as_duplicate": "标记为重复", - "move": "将 {value} 移至项目工作项" - }, - "source": { - "in-app": "应用内" - }, - "order_by": { - "created_at": "创建时间", - "updated_at": "更新时间", - "id": "ID" - }, - "label": "收集", - "page_label": "{workspace} - 收集", - "modal": { - "title": "创建收集工作项" - }, - "tabs": { - "open": "未处理", - "closed": "已处理" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "没有未处理的工作项", - "description": "在此处查找未处理的工作项。创建新工作项。" - }, - "sidebar_closed_tab": { - "title": "没有已处理的工作项", - "description": "所有已接受或已拒绝的工作项都可以在这里找到。" - }, - "sidebar_filter": { - "title": "没有匹配的工作项", - "description": "收集中没有符合筛选条件的工作项。创建新工作项。" - }, - "detail": { - "title": "选择一个工作项以查看其详细信息。" - } - } - }, - "workspace_creation": { - "heading": "创建您的工作区", - "subheading": "要开始使用 Plane,您需要创建或加入一个工作区。", - "form": { - "name": { - "label": "为您的工作区命名", - "placeholder": "熟悉且易于识别的名称总是最好的。" - }, - "url": { - "label": "设置您的工作区 URL", - "placeholder": "输入或粘贴 URL", - "edit_slug": "您只能编辑 URL 的标识符部分" - }, - "organization_size": { - "label": "有多少人将使用这个工作区?", - "placeholder": "选择一个范围" - } - }, - "errors": { - "creation_disabled": { - "title": "只有您的实例管理员可以创建工作区", - "description": "如果您知道实例管理员的电子邮件地址,请点击下方按钮与他们联系。", - "request_button": "请求实例管理员" - }, - "validation": { - "name_alphanumeric": "工作区名称只能包含 (' '), ('-'), ('_') 和字母数字字符。", - "name_length": "名称限制在 80 个字符以内。", - "url_alphanumeric": "URL 只能包含 ('-') 和字母数字字符。", - "url_length": "URL 限制在 48 个字符以内。", - "url_already_taken": "工作区 URL 已被占用!" - } - }, - "request_email": { - "subject": "请求新工作区", - "body": "您好,实例管理员:\n\n请为 [创建工作区的目的] 创建一个 URL 为 [/workspace-name] 的新工作区。\n\n谢谢,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "创建工作区", - "loading": "正在创建工作区" - }, - "toast": { - "success": { - "title": "成功", - "message": "工作区创建成功" - }, - "error": { - "title": "错误", - "message": "工作区创建失败。请重试。" - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "项目、活动和指标概览", - "description": "欢迎使用 Plane,我们很高兴您能来到这里。创建您的第一个项目并跟踪您的工作项,这个页面将转变为帮助您进展的空间。管理员还将看到帮助团队进展的项目。", - "primary_button": { - "text": "构建您的第一个项目", - "comic": { - "title": "在 Plane 中一切都从项目开始", - "description": "项目可以是产品路线图、营销活动或新车发布。" - } - } - } - } - }, - "workspace_analytics": { - "label": "分析", - "page_label": "{workspace} - 分析", - "open_tasks": "总开放任务", - "error": "获取数据时出现错误。", - "work_items_closed_in": "已关闭的工作项", - "selected_projects": "已选择的项目", - "total_members": "总成员数", - "total_cycles": "总周期数", - "total_modules": "总模块数", - "pending_work_items": { - "title": "待处理工作项", - "empty_state": "同事的待处理工作项分析将显示在这里。" - }, - "work_items_closed_in_a_year": { - "title": "一年内关闭的工作项", - "empty_state": "关闭工作项以查看以图表形式显示的分析。" - }, - "most_work_items_created": { - "title": "创建最多工作项", - "empty_state": "同事及其创建的工作项数量将显示在这里。" - }, - "most_work_items_closed": { - "title": "关闭最多工作项", - "empty_state": "同事及其关闭的工作项数量将显示在这里。" - }, - "tabs": { - "scope_and_demand": "范围和需求", - "custom": "自定义分析" - }, - "empty_state": { - "customized_insights": { - "description": "分配给您的工作项将按状态分类显示在此处。", - "title": "暂无数据" - }, - "created_vs_resolved": { - "description": "随着时间推移创建和解决的工作项将显示在此处。", - "title": "暂无数据" - }, - "project_insights": { - "title": "暂无数据", - "description": "分配给您的工作项将按状态分类显示在此处。" - }, - "general": { - "title": "跟踪进度、工作量和分配。发现趋势,消除障碍,加速工作进展", - "description": "查看范围与需求、估算和范围蔓延。获取团队成员和团队的性能,确保您的项目按时运行。", - "primary_button": { - "text": "开始您的第一个项目", - "comic": { - "title": "分析功能在周期 + 模块中效果最佳", - "description": "首先,将您的问题在周期中进行时间限制,如果可能的话,将跨越多个周期的问题分组到模块中。在左侧导航中查看这两个功能。" - } - } - } - }, - "created_vs_resolved": "已创建 vs 已解决", - "customized_insights": "自定义洞察", - "backlog_work_items": "待办的{entity}", - "active_projects": "活跃项目", - "trend_on_charts": "图表趋势", - "all_projects": "所有项目", - "summary_of_projects": "项目概览", - "project_insights": "项目洞察", - "started_work_items": "已开始的{entity}", - "total_work_items": "{entity}总数", - "total_projects": "项目总数", - "total_admins": "管理员总数", - "total_users": "用户总数", - "total_intake": "总收入", - "un_started_work_items": "未开始的{entity}", - "total_guests": "访客总数", - "completed_work_items": "已完成的{entity}", - "total": "{entity}总数" - }, - "workspace_projects": { - "label": "{count, plural, one {项目} other {项目}}", - "create": { - "label": "添加项目" - }, - "network": { - "private": { - "title": "私有", - "description": "仅限邀请访问" - }, - "public": { - "title": "公开", - "description": "工作区中除访客外的任何人都可以加入" - } - }, - "error": { - "permission": "您没有执行此操作的权限。", - "cycle_delete": "删除周期失败", - "module_delete": "删除模块失败", - "issue_delete": "删除工作项失败" - }, - "state": { - "backlog": "待办", - "unstarted": "未开始", - "started": "进行中", - "completed": "已完成", - "cancelled": "已取消" - }, - "sort": { - "manual": "手动", - "name": "名称", - "created_at": "创建日期", - "members_length": "成员数量" - }, - "scope": { - "my_projects": "我的项目", - "archived_projects": "已归档" - }, - "common": { - "months_count": "{months, plural, one{# 个月} other{# 个月}}" - }, - "empty_state": { - "general": { - "title": "没有活动项目", - "description": "将每个项目视为目标导向工作的父级。项目是工作项、周期和模块所在的地方,与您的同事一起帮助您实现目标。创建新项目或筛选已归档的项目。", - "primary_button": { - "text": "开始您的第一个项目", - "comic": { - "title": "在 Plane 中一切都从项目开始", - "description": "项目可以是产品路线图、营销活动或新车发布。" - } - } - }, - "no_projects": { - "title": "没有项目", - "description": "要创建工作项或管理您的工作,您需要创建一个项目或成为项目的一部分。", - "primary_button": { - "text": "开始您的第一个项目", - "comic": { - "title": "在 Plane 中一切都从项目开始", - "description": "项目可以是产品路线图、营销活动或新车发布。" - } - } - }, - "filter": { - "title": "没有匹配的项目", - "description": "未检测到符合匹配条件的项目。\n创建一个新项目。" - }, - "search": { - "description": "未检测到符合匹配条件的项目。\n创建一个新项目" - } - } - }, - "workspace_views": { - "add_view": "添加视图", - "empty_state": { - "all-issues": { - "title": "项目中没有工作项", - "description": "第一个项目完成!现在,将您的工作分解成可跟踪的工作项。让我们开始吧!", - "primary_button": { - "text": "创建新工作项" - } - }, - "assigned": { - "title": "还没有工作项", - "description": "可以在这里跟踪分配给您的工作项。", - "primary_button": { - "text": "创建新工作项" - } - }, - "created": { - "title": "还没有工作项", - "description": "您创建的所有工作项都会出现在这里,直接在这里跟踪它们。", - "primary_button": { - "text": "创建新工作项" - } - }, - "subscribed": { - "title": "还没有工作项", - "description": "订阅您感兴趣的工作项,在这里跟踪所有这些工作项。" - }, - "custom-view": { - "title": "还没有工作项", - "description": "符合筛选条件的工作项,在这里跟踪所有这些工作项。" - } - } - }, - "workspace_settings": { - "label": "工作区设置", - "page_label": "{workspace} - 常规设置", - "key_created": "密钥已创建", - "copy_key": "复制并将此密钥保存在 Plane Pages 中。关闭后您将无法看到此密钥。包含密钥的 CSV 文件已下载。", - "token_copied": "令牌已复制到剪贴板。", - "settings": { - "general": { - "title": "常规", - "upload_logo": "上传标志", - "edit_logo": "编辑标志", - "name": "工作区名称", - "company_size": "公司规模", - "url": "工作区网址", - "update_workspace": "更新工作区", - "delete_workspace": "删除此工作区", - "delete_workspace_description": "删除工作区时,该工作区内的所有数据和资源将被永久删除,且无法恢复。", - "delete_btn": "删除此工作区", - "delete_modal": { - "title": "确定要删除此工作区吗?", - "description": "您目前正在试用我们的付费方案。请先取消试用后再继续。", - "dismiss": "关闭", - "cancel": "取消试用", - "success_title": "工作区已删除。", - "success_message": "即将跳转到您的个人资料页面。", - "error_title": "操作失败。", - "error_message": "请重试。" - }, - "errors": { - "name": { - "required": "名称为必填项", - "max_length": "工作区名称不应超过80个字符" - }, - "company_size": { - "required": "公司规模为必填项", - "select_a_range": "选择组织规模" - } - } - }, - "members": { - "title": "成员", - "add_member": "添加成员", - "pending_invites": "待处理邀请", - "invitations_sent_successfully": "邀请发送成功", - "leave_confirmation": "您确定要离开工作区吗?您将无法再访问此工作区。此操作无法撤消。", - "details": { - "full_name": "全名", - "display_name": "显示名称", - "email_address": "电子邮件地址", - "account_type": "账户类型", - "authentication": "身份验证", - "joining_date": "加入日期" - }, - "modal": { - "title": "邀请人员协作", - "description": "邀请人员在您的工作区中协作。", - "button": "发送邀请", - "button_loading": "正在发送邀请", - "placeholder": "name@company.com", - "errors": { - "required": "我们需要一个电子邮件地址来邀请他们。", - "invalid": "电子邮件无效" - } - } - }, - "billing_and_plans": { - "title": "账单与计划", - "current_plan": "当前计划", - "free_plan": "您目前使用的是免费计划", - "view_plans": "查看计划" - }, - "exports": { - "title": "导出", - "exporting": "导出中", - "previous_exports": "以前的导出", - "export_separate_files": "将数据导出为单独的文件", - "modal": { - "title": "导出到", - "toasts": { - "success": { - "title": "导出成功", - "message": "您可以从之前的导出中下载导出的{entity}" - }, - "error": { - "title": "导出失败", - "message": "导出未成功。请重试。" - } - } - } - }, - "webhooks": { - "title": "Webhooks", - "add_webhook": "添加 webhook", - "modal": { - "title": "创建 webhook", - "details": "Webhook 详情", - "payload": "负载 URL", - "question": "您希望触发此 webhook 的事件有哪些?", - "error": "URL 为必填项" - }, - "secret_key": { - "title": "密钥", - "message": "生成令牌以登录 webhook 负载" - }, - "options": { - "all": "发送所有内容", - "individual": "选择单个事件" - }, - "toasts": { - "created": { - "title": "Webhook 已创建", - "message": "Webhook 已成功创建" - }, - "not_created": { - "title": "Webhook 未创建", - "message": "无法创建 webhook" - }, - "updated": { - "title": "Webhook 已更新", - "message": "Webhook 已成功更新" - }, - "not_updated": { - "title": "Webhook 未更新", - "message": "无法更新 webhook" - }, - "removed": { - "title": "Webhook 已移除", - "message": "Webhook 已成功移除" - }, - "not_removed": { - "title": "Webhook 未移除", - "message": "无法移除 webhook" - }, - "secret_key_copied": { - "message": "密钥已复制到剪贴板。" - }, - "secret_key_not_copied": { - "message": "复制密钥时出错。" - } - } - }, - "api_tokens": { - "title": "API 令牌", - "add_token": "添加 API 令牌", - "create_token": "创建令牌", - "never_expires": "永不过期", - "generate_token": "生成令牌", - "generating": "生成中", - "delete": { - "title": "删除 API 令牌", - "description": "使用此令牌的任何应用程序将无法再访问 Plane 数据。此操作无法撤消。", - "success": { - "title": "成功!", - "message": "API 令牌已成功删除" - }, - "error": { - "title": "错误!", - "message": "无法删除 API 令牌" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "尚未创建 API 令牌", - "description": "Plane API 可用于将您在 Plane 中的数据与任何外部系统集成。创建令牌以开始使用。" - }, - "webhooks": { - "title": "尚未添加 webhook", - "description": "创建 webhook 以接收实时更新并自动执行操作。" - }, - "exports": { - "title": "尚无导出", - "description": "每次导出时,您都会在这里有一个副本以供参考。" - }, - "imports": { - "title": "尚无导入", - "description": "在这里查找所有以前的导入并下载它们。" - } - } - }, - "profile": { - "label": "个人资料", - "page_label": "您的工作", - "work": "工作", - "details": { - "joined_on": "加入时间", - "time_zone": "时区" - }, - "stats": { - "workload": "工作量", - "overview": "概览", - "created": "已创建的工作项", - "assigned": "已分配的工作项", - "subscribed": "已订阅的工作项", - "state_distribution": { - "title": "按状态分类的工作项", - "empty": "创建工作项以在图表中查看按状态分类的工作项,以便更好地分析。" - }, - "priority_distribution": { - "title": "按优先级分类的工作项", - "empty": "创建工作项以在图表中查看按优先级分类的工作项,以便更好地分析。" - }, - "recent_activity": { - "title": "最近活动", - "empty": "我们找不到数据。请查看您的输入", - "button": "下载今天的活动", - "button_loading": "下载中" - } - }, - "actions": { - "profile": "个人资料", - "security": "安全", - "activity": "活动", - "appearance": "外观", - "notifications": "通知" - }, - "tabs": { - "summary": "摘要", - "assigned": "已分配", - "created": "已创建", - "subscribed": "已订阅", - "activity": "活动" - }, - "empty_state": { - "activity": { - "title": "尚无活动", - "description": "通过创建新工作项开始!为其添加详细信息和属性。在 Plane 中探索更多内容以查看您的活动。" - }, - "assigned": { - "title": "没有分配给您的工作项", - "description": "可以从这里跟踪分配给您的工作项。" - }, - "created": { - "title": "尚无工作项", - "description": "您创建的所有工作项都会出现在这里,直接在这里跟踪它们。" - }, - "subscribed": { - "title": "尚无工作项", - "description": "订阅您感兴趣的工作项,在这里跟踪所有这些工作项。" - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "输入项目 ID", - "please_select_a_timezone": "请选择时区", - "archive_project": { - "title": "归档项目", - "description": "归档项目将从您的侧边导航中取消列出您的项目,但您仍然可以从项目页面访问它。您可以随时恢复或删除项目。", - "button": "归档项目" - }, - "delete_project": { - "title": "删除项目", - "description": "删除项目时,该项目内的所有数据和资源将被永久删除且无法恢复。", - "button": "删除我的项目" - }, - "toast": { - "success": "项目更新成功", - "error": "项目无法更新。请重试。" - } - }, - "members": { - "label": "成员", - "project_lead": "项目负责人", - "default_assignee": "默认受理人", - "guest_super_permissions": { - "title": "为访客用户授予查看所有工作项的权限:", - "sub_heading": "这将允许访客查看所有项目工作项。" - }, - "invite_members": { - "title": "邀请成员", - "sub_heading": "邀请成员参与您的项目。", - "select_co_worker": "选择同事" - } - }, - "states": { - "describe_this_state_for_your_members": "为您的成员描述此状态。", - "empty_state": { - "title": "{groupKey} 组中没有状态", - "description": "请创建一个新状态" - } - }, - "labels": { - "label_title": "标签标题", - "label_title_is_required": "标签标题为必填项", - "label_max_char": "标签名称不应超过255个字符", - "toast": { - "error": "更新标签时出错" - } - }, - "estimates": { - "label": "估算", - "title": "为我的项目启用估算", - "description": "它们有助于您传达团队的复杂性和工作量。", - "no_estimate": "无估算", - "new": "新估算系统", - "create": { - "custom": "自定义", - "start_from_scratch": "从头开始", - "choose_template": "选择模板", - "choose_estimate_system": "选择估算系统", - "enter_estimate_point": "输入估算点数", - "step": "步骤 {step} 共 {total}", - "label": "创建估算" - }, - "toasts": { - "created": { - "success": { - "title": "已创建估算点数", - "message": "估算点数创建成功" - }, - "error": { - "title": "无法创建估算点数", - "message": "无法创建新的估算点数,请重试" - } - }, - "updated": { - "success": { - "title": "已更新估算", - "message": "您项目中的估算点数已更新" - }, - "error": { - "title": "无法更新估算", - "message": "无法更新估算,请重试" - } - }, - "enabled": { - "success": { - "title": "成功!", - "message": "已启用估算" - } - }, - "disabled": { - "success": { - "title": "成功!", - "message": "已禁用估算" - }, - "error": { - "title": "错误!", - "message": "无法禁用估算。请重试" - } - } - }, - "validation": { - "min_length": "估算需要大于0。", - "unable_to_process": "我们无法处理您的请求,请重试。", - "numeric": "估算需要是数值。", - "character": "估算需要是字符值。", - "empty": "估算值不能为空。", - "already_exists": "估算值已存在。", - "unsaved_changes": "您有未保存的更改,请在点击完成前保存。", - "remove_empty": "估算不能为空。请在每个字段中输入值或删除没有值的字段。" - } - }, - "automations": { - "label": "自动化", - "auto-archive": { - "title": "自动归档已关闭的工作项", - "description": "Plane 将自动归档已完成或已取消的工作项。", - "duration": "自动归档已关闭" - }, - "auto-close": { - "title": "自动关闭工作项", - "description": "Plane 将自动关闭尚未完成或取消的工作项。", - "duration": "自动关闭不活跃", - "auto_close_status": "自动关闭状态" - } - }, - "empty_state": { - "labels": { - "title": "尚无标签", - "description": "创建标签以帮助组织和筛选项目中的工作项。" - }, - "estimates": { - "title": "尚无估算系统", - "description": "创建一组估算以传达每个工作项的工作量。", - "primary_button": "添加估算系统" - } - } - }, - "project_cycles": { - "add_cycle": "添加周期", - "more_details": "更多详情", - "cycle": "周期", - "update_cycle": "更新周期", - "create_cycle": "创建周期", - "no_matching_cycles": "没有匹配的周期", - "remove_filters_to_see_all_cycles": "移除筛选器以查看所有周期", - "remove_search_criteria_to_see_all_cycles": "移除搜索条件以查看所有周期", - "only_completed_cycles_can_be_archived": "只能归档已完成的周期", - "start_date": "开始日期", - "end_date": "结束日期", - "in_your_timezone": "在您的时区", - "transfer_work_items": "转移 {count} 工作项", - "date_range": "日期范围", - "add_date": "添加日期", - "active_cycle": { - "label": "活动周期", - "progress": "进度", - "chart": "燃尽图", - "priority_issue": "优先工作项", - "assignees": "受理人", - "issue_burndown": "工作项燃尽", - "ideal": "理想", - "current": "当前", - "labels": "标签" - }, - "upcoming_cycle": { - "label": "即将到来的周期" - }, - "completed_cycle": { - "label": "已完成的周期" - }, - "status": { - "days_left": "剩余天数", - "completed": "已完成", - "yet_to_start": "尚未开始", - "in_progress": "进行中", - "draft": "草稿" - }, - "action": { - "restore": { - "title": "恢复周期", - "success": { - "title": "周期已恢复", - "description": "周期已被恢复。" - }, - "failed": { - "title": "周期恢复失败", - "description": "无法恢复周期。请重试。" - } - }, - "favorite": { - "loading": "正在将周期添加到收藏", - "success": { - "description": "周期已添加到收藏。", - "title": "成功!" - }, - "failed": { - "description": "无法将周期添加到收藏。请重试。", - "title": "错误!" - } - }, - "unfavorite": { - "loading": "正在从收藏中移除周期", - "success": { - "description": "周期已从收藏中移除。", - "title": "成功!" - }, - "failed": { - "description": "无法从收藏中移除周期。请重试。", - "title": "错误!" - } - }, - "update": { - "loading": "正在更新周期", - "success": { - "description": "周期更新成功。", - "title": "成功!" - }, - "failed": { - "description": "更新周期时出错。请重试。", - "title": "错误!" - }, - "error": { - "already_exists": "在给定日期范围内已存在周期,如果您想创建草稿周期,可以通过移除两个日期来实现。" - } - } - }, - "empty_state": { - "general": { - "title": "在周期中分组和时间框定您的工作。", - "description": "将工作按时间框分解,从项目截止日期倒推设置日期,并作为团队取得切实的进展。", - "primary_button": { - "text": "设置您的第一个周期", - "comic": { - "title": "周期是重复的时间框。", - "description": "冲刺、迭代或您用于每周或每两周跟踪工作的任何其他术语都是一个周期。" - } - } - }, - "no_issues": { - "title": "尚未向周期添加工作项", - "description": "添加或创建您希望在此周期内时间框定和交付的工作项", - "primary_button": { - "text": "创建新工作项" - }, - "secondary_button": { - "text": "添加现有工作项" - } - }, - "completed_no_issues": { - "title": "周期中没有工作项", - "description": "周期中没有工作项。工作项已被转移或隐藏。要查看隐藏的工作项(如果有),请相应更新您的显示属性。" - }, - "active": { - "title": "没有活动周期", - "description": "活动周期包括其范围内包含今天日期的任何时期。在这里查找活动周期的进度和详细信息。" - }, - "archived": { - "title": "尚无已归档的周期", - "description": "为了整理您的项目,归档已完成的周期。归档后可以在这里找到它们。" - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "创建工作项并将其分配给某人,甚至是您自己", - "description": "将工作项视为工作、任务或待完成的工作。工作项及其子工作项通常是基于时间的、分配给团队成员的可执行项。您的团队通过创建、分配和完成工作项来推动项目实现其目标。", - "primary_button": { - "text": "创建您的第一个工作项", - "comic": { - "title": "工作项是 Plane 中的基本构建块。", - "description": "重新设计 Plane 界面、重塑公司品牌或启动新的燃料喷射系统都是可能包含子工作项的工作项示例。" - } - } - }, - "no_archived_issues": { - "title": "尚无已归档的工作项", - "description": "通过手动或自动化方式,您可以归档已完成或已取消的工作项。归档后可以在这里找到它们。", - "primary_button": { - "text": "设置自动化" - } - }, - "issues_empty_filter": { - "title": "未找到符合筛选条件的工作项", - "secondary_button": { - "text": "清除所有筛选条件" - } - } - } - }, - "project_module": { - "add_module": "添加模块", - "update_module": "更新模块", - "create_module": "创建模块", - "archive_module": "归档模块", - "restore_module": "恢复模块", - "delete_module": "删除模块", - "empty_state": { - "general": { - "title": "将项目里程碑映射到模块,轻松跟踪汇总工作。", - "description": "属于逻辑层次结构父级的一组工作项形成一个模块。将其视为按项目里程碑跟踪工作的方式。它们有自己的周期和截止日期以及分析功能,帮助您了解距离里程碑的远近。", - "primary_button": { - "text": "构建您的第一个模块", - "comic": { - "title": "模块帮助按层次结构对工作进行分组。", - "description": "购物车模块、底盘模块和仓库模块都是这种分组的好例子。" - } - } - }, - "no_issues": { - "title": "模块中没有工作项", - "description": "创建或添加您想作为此模块一部分完成的工作项", - "primary_button": { - "text": "创建新工作项" - }, - "secondary_button": { - "text": "添加现有工作项" - } - }, - "archived": { - "title": "尚无已归档的模块", - "description": "为了整理您的项目,归档已完成或已取消的模块。归档后可以在这里找到它们。" - }, - "sidebar": { - "in_active": "此模块尚未激活。", - "invalid_date": "日期无效。请输入有效日期。" - } - }, - "quick_actions": { - "archive_module": "归档模块", - "archive_module_description": "只有已完成或已取消的\n模块可以归档。", - "delete_module": "删除模块" - }, - "toast": { - "copy": { - "success": "模块链接已复制到剪贴板" - }, - "delete": { - "success": "模块删除成功", - "error": "删除模块失败" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "为您的项目保存筛选视图。根据需要创建任意数量", - "description": "视图是您经常使用或想要轻松访问的一组已保存的筛选条件。项目中的所有同事都可以看到每个人的视图,并选择最适合他们需求的视图。", - "primary_button": { - "text": "创建您的第一个视图", - "comic": { - "title": "视图基于工作项属性运作。", - "description": "您可以在此处创建一个视图,根据需要使用任意数量的属性作为筛选条件。" - } - } - }, - "filter": { - "title": "没有匹配的视图", - "description": "没有符合搜索条件的视图。\n创建一个新视图。" - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "写笔记、文档或完整的知识库。让 Plane 的 AI 助手 Galileo 帮助您开始", - "description": "页面是 Plane 中的思维记录空间。记录会议笔记,轻松格式化,嵌入工作项,使用组件库进行布局,并将它们全部保存在项目上下文中。要快速完成任何文档,可以通过快捷键或点击按钮调用 Plane 的 AI Galileo。", - "primary_button": { - "text": "创建您的第一个页面" - } - }, - "private": { - "title": "尚无私人页面", - "description": "在这里保存您的私人想法。准备好分享时,团队就在一键之遥。", - "primary_button": { - "text": "创建您的第一个页面" - } - }, - "public": { - "title": "尚无公共页面", - "description": "在这里查看与项目中所有人共享的页面。", - "primary_button": { - "text": "创建您的第一个页面" - } - }, - "archived": { - "title": "尚无已归档的页面", - "description": "归档不在您关注范围内的页面。需要时可以在这里访问它们。" - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "未找到结果" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "未找到匹配的工作项" - }, - "no_issues": { - "title": "未找到工作项" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "尚无评论", - "description": "评论可用作工作项的讨论和跟进空间" - } - } - }, - "notification": { - "label": "收件箱", - "page_label": "{workspace} - 收件箱", - "options": { - "mark_all_as_read": "全部标记为已读", - "mark_read": "标记为已读", - "mark_unread": "标记为未读", - "refresh": "刷新", - "filters": "收件箱筛选", - "show_unread": "显示未读", - "show_snoozed": "显示已暂停", - "show_archived": "显示已归档", - "mark_archive": "归档", - "mark_unarchive": "取消归档", - "mark_snooze": "暂停", - "mark_unsnooze": "取消暂停" - }, - "toasts": { - "read": "通知已标记为已读", - "unread": "通知已标记为未读", - "archived": "通知已标记为已归档", - "unarchived": "通知已标记为未归档", - "snoozed": "通知已暂停", - "unsnoozed": "通知已取消暂停" - }, - "empty_state": { - "detail": { - "title": "选择以查看详情。" - }, - "all": { - "title": "没有分配的工作项", - "description": "在这里可以看到分配给您的工作项的更新" - }, - "mentions": { - "title": "没有分配的工作项", - "description": "在这里可以看到分配给您的工作项的更新" - } - }, - "tabs": { - "all": "全部", - "mentions": "提及" - }, - "filter": { - "assigned": "分配给我", - "created": "由我创建", - "subscribed": "由我订阅" - }, - "snooze": { - "1_day": "1 天", - "3_days": "3 天", - "5_days": "5 天", - "1_week": "1 周", - "2_weeks": "2 周", - "custom": "自定义" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "向周期添加工作项以查看其进度" - }, - "chart": { - "title": "向周期添加工作项以查看燃尽图。" - }, - "priority_issue": { - "title": "一目了然地观察周期中处理的高优先级工作项。" - }, - "assignee": { - "title": "为工作项添加负责人以查看按负责人划分的工作明细。" - }, - "label": { - "title": "为工作项添加标签以查看按标签划分的工作明细。" - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "项目未启用收集功能。", - "description": "收集功能帮助您管理项目的传入请求,并将其添加为工作流中的工作项。从项目设置启用收集功能以管理请求。", - "primary_button": { - "text": "管理功能" - } - }, - "cycle": { - "title": "此项目未启用周期功能。", - "description": "按时间框将工作分解,从项目截止日期倒推设置日期,并作为团队取得切实的进展。为您的项目启用周期功能以开始使用它们。", - "primary_button": { - "text": "管理功能" - } - }, - "module": { - "title": "项目未启用模块功能。", - "description": "模块是项目的基本构建块。从项目设置启用模块以开始使用它们。", - "primary_button": { - "text": "管理功能" - } - }, - "page": { - "title": "项目未启用页面功能。", - "description": "页面是项目的基本构建块。从项目设置启用页面以开始使用它们。", - "primary_button": { - "text": "管理功能" - } - }, - "view": { - "title": "项目未启用视图功能。", - "description": "视图是项目的基本构建块。从项目设置启用视图以开始使用它们。", - "primary_button": { - "text": "管理功能" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "起草工作项", - "empty_state": { - "title": "半写的工作项,以及即将推出的评论将在这里显示。", - "description": "要试用此功能,请开始添加工作项并中途离开,或在下方创建您的第一个草稿。😉", - "primary_button": { - "text": "创建您的第一个草稿" - } - }, - "delete_modal": { - "title": "删除草稿", - "description": "您确定要删除此草稿吗?此操作无法撤消。" - }, - "toasts": { - "created": { - "success": "草稿已创建", - "error": "无法创建工作项。请重试。" - }, - "deleted": { - "success": "草稿已删除" - } - } - }, - "stickies": { - "title": "您的便签", - "placeholder": "点击此处输入", - "all": "所有便签", - "no-data": "记下一个想法,捕捉一个灵感,或记录一个突发奇想。添加便签开始使用。", - "add": "添加便签", - "search_placeholder": "按标题搜索", - "delete": "删除便签", - "delete_confirmation": "您确定要删除此便签吗?", - "empty_state": { - "simple": "记下一个想法,捕捉一个灵感,或记录一个突发奇想。添加便签开始使用。", - "general": { - "title": "便签是您随手记下的快速笔记和待办事项。", - "description": "通过创建随时随地都可以访问的便签,轻松捕捉您的想法和创意。", - "primary_button": { - "text": "添加便签" - } - }, - "search": { - "title": "这与您的任何便签都不匹配。", - "description": "尝试使用不同的术语,或如果您确定\n搜索是正确的,请告诉我们。", - "primary_button": { - "text": "添加便签" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "便签名称不能超过100个字符。", - "already_exists": "已存在一个没有描述的便签" - }, - "created": { - "title": "便签已创建", - "message": "便签已成功创建" - }, - "not_created": { - "title": "便签未创建", - "message": "无法创建便签" - }, - "updated": { - "title": "便签已更新", - "message": "便签已成功更新" - }, - "not_updated": { - "title": "便签未更新", - "message": "无法更新便签" - }, - "removed": { - "title": "便签已移除", - "message": "便签已成功移除" - }, - "not_removed": { - "title": "便签未移除", - "message": "无法移除便签" - } - } - }, - "role_details": { - "guest": { - "title": "访客", - "description": "组织的外部成员可以被邀请为访客。" - }, - "member": { - "title": "成员", - "description": "可以在项目、周期和模块内读取、写入、编辑和删除实体" - }, - "admin": { - "title": "管理员", - "description": "在工作区内所有权限均设置为允许。" - } - }, - "user_roles": { - "product_or_project_manager": "产品/项目经理", - "development_or_engineering": "开发/工程", - "founder_or_executive": "创始人/高管", - "freelancer_or_consultant": "自由职业者/顾问", - "marketing_or_growth": "市场/增长", - "sales_or_business_development": "销售/业务发展", - "support_or_operations": "支持/运营", - "student_or_professor": "学生/教授", - "human_resources": "人力资源", - "other": "其他" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "从 GitHub 仓库导入工作项并同步。" - }, - "jira": { - "title": "Jira", - "description": "从 Jira 项目和史诗导入工作项和史诗。" - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "将工作项导出为 CSV 文件。", - "short_description": "导出为 CSV" - }, - "excel": { - "title": "Excel", - "description": "将工作项导出为 Excel 文件。", - "short_description": "导出为 Excel" - }, - "xlsx": { - "title": "Excel", - "description": "将工作项导出为 Excel 文件。", - "short_description": "导出为 Excel" - }, - "json": { - "title": "JSON", - "description": "将工作项导出为 JSON 文件。", - "short_description": "导出为 JSON" - } - }, - "default_global_view": { - "all_issues": "所有工作项", - "assigned": "已分配", - "created": "已创建", - "subscribed": "已订阅" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "系统偏好" - }, - "light": { - "label": "浅色" - }, - "dark": { - "label": "深色" - }, - "light_contrast": { - "label": "浅色高对比度" - }, - "dark_contrast": { - "label": "深色高对比度" - }, - "custom": { - "label": "自定义主题" - } - } - }, - "project_modules": { - "status": { - "backlog": "待办", - "planned": "已计划", - "in_progress": "进行中", - "paused": "已暂停", - "completed": "已完成", - "cancelled": "已取消" - }, - "layout": { - "list": "列表布局", - "board": "画廊布局", - "timeline": "时间线布局" - }, - "order_by": { - "name": "名称", - "progress": "进度", - "issues": "工作项数量", - "due_date": "截止日期", - "created_at": "创建日期", - "manual": "手动" - } - }, - "cycle": { - "label": "{count, plural, one {周期} other {周期}}", - "no_cycle": "无周期" - }, - "module": { - "label": "{count, plural, one {模块} other {模块}}", - "no_module": "无模块" - }, - "description_versions": { - "last_edited_by": "最后编辑者", - "previously_edited_by": "之前编辑者", - "edited_by": "编辑者" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane 未能启动。这可能是因为一个或多个 Plane 服务启动失败。", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "请选择“查看日志”来查看 setup.sh 和 Docker 日志,以确认问题。" - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "大纲", - "empty_state": { - "title": "缺少标题", - "description": "让我们在这个页面添加一些标题来在这里查看它们。" - } - }, - "info": { - "label": "信息", - "document_info": { - "words": "字数", - "characters": "字符数", - "paragraphs": "段落数", - "read_time": "阅读时间" - }, - "actors_info": { - "edited_by": "编辑者", - "created_by": "创建者" - }, - "version_history": { - "label": "版本历史", - "current_version": "当前版本" - } - }, - "assets": { - "label": "资源", - "download_button": "下载", - "empty_state": { - "title": "缺少图片", - "description": "添加图片以在这里查看它们。" - } - } - }, - "open_button": "打开导航面板", - "close_button": "关闭导航面板", - "outline_floating_button": "打开大纲" - } -} diff --git a/packages/i18n/src/locales/zh-CN/translations.ts b/packages/i18n/src/locales/zh-CN/translations.ts new file mode 100644 index 0000000000..d0563a86a3 --- /dev/null +++ b/packages/i18n/src/locales/zh-CN/translations.ts @@ -0,0 +1,2530 @@ +export default { + sidebar: { + projects: "项目", + pages: "页面", + new_work_item: "新工作项", + home: "主页", + your_work: "我的工作", + inbox: "收件箱", + workspace: "工作区", + views: "视图", + analytics: "分析", + work_items: "工作项", + cycles: "周期", + modules: "模块", + intake: "收集", + drafts: "草稿", + favorites: "收藏", + pro: "专业版", + upgrade: "升级", + }, + auth: { + common: { + email: { + label: "邮箱", + placeholder: "name@company.com", + errors: { + required: "邮箱是必填项", + invalid: "邮箱格式无效", + }, + }, + password: { + label: "密码", + set_password: "设置密码", + placeholder: "输入密码", + confirm_password: { + label: "确认密码", + placeholder: "确认密码", + }, + current_password: { + label: "当前密码", + }, + new_password: { + label: "新密码", + placeholder: "输入新密码", + }, + change_password: { + label: { + default: "修改密码", + submitting: "正在修改密码", + }, + }, + errors: { + match: "密码不匹配", + empty: "请输入密码", + length: "密码长度应超过8个字符", + strength: { + weak: "密码强度较弱", + strong: "密码强度较强", + }, + }, + submit: "设置密码", + toast: { + change_password: { + success: { + title: "成功!", + message: "密码修改成功。", + }, + error: { + title: "错误!", + message: "出现错误。请重试。", + }, + }, + }, + }, + unique_code: { + label: "唯一码", + placeholder: "gets-sets-flys", + paste_code: "粘贴发送到您邮箱的验证码", + requesting_new_code: "正在请求新验证码", + sending_code: "正在发送验证码", + }, + already_have_an_account: "已有账号?", + login: "登录", + create_account: "创建账号", + new_to_plane: "首次使用 Plane?", + back_to_sign_in: "返回登录", + resend_in: "{seconds} 秒后重新发送", + sign_in_with_unique_code: "使用唯一码登录", + forgot_password: "忘记密码?", + }, + sign_up: { + header: { + label: "创建账号以开始与团队一起管理工作。", + step: { + email: { + header: "注册", + sub_header: "", + }, + password: { + header: "注册", + sub_header: "使用邮箱-密码组合注册。", + }, + unique_code: { + header: "注册", + sub_header: "使用发送到上述邮箱的唯一码注册。", + }, + }, + }, + errors: { + password: { + strength: "请设置一个强密码以继续", + }, + }, + }, + sign_in: { + header: { + label: "登录以开始与团队一起管理工作。", + step: { + email: { + header: "登录或注册", + sub_header: "", + }, + password: { + header: "登录或注册", + sub_header: "使用您的邮箱-密码组合登录。", + }, + unique_code: { + header: "登录或注册", + sub_header: "使用发送到上述邮箱的唯一码登录。", + }, + }, + }, + }, + forgot_password: { + title: "重置密码", + description: "输入您的用户账号已验证的邮箱地址,我们将向您发送密码重置链接。", + email_sent: "我们已将重置链接发送到您的邮箱", + send_reset_link: "发送重置链接", + errors: { + smtp_not_enabled: "我们发现您的管理员未启用 SMTP,我们将无法发送密码重置链接", + }, + toast: { + success: { + title: "邮件已发送", + message: "请查看您的收件箱以获取重置密码的链接。如果几分钟内未收到,请检查垃圾邮件文件夹。", + }, + error: { + title: "错误!", + message: "出现错误。请重试。", + }, + }, + }, + reset_password: { + title: "设置新密码", + description: "使用强密码保护您的账号", + }, + set_password: { + title: "保护您的账号", + description: "设置密码有助于您安全登录", + }, + sign_out: { + toast: { + error: { + title: "错误!", + message: "登出失败。请重试。", + }, + }, + }, + }, + submit: "提交", + cancel: "取消", + loading: "加载中", + error: "错误", + success: "成功", + warning: "警告", + info: "信息", + close: "关闭", + yes: "是", + no: "否", + ok: "确定", + name: "名称", + description: "描述", + search: "搜索", + add_member: "添加成员", + adding_members: "正在添加成员", + remove_member: "移除成员", + add_members: "添加成员", + adding_member: "正在添加成员", + remove_members: "移除成员", + add: "添加", + adding: "添加中", + remove: "移除", + add_new: "添加新的", + remove_selected: "移除所选", + first_name: "名", + last_name: "姓", + email: "邮箱", + display_name: "显示名称", + role: "角色", + timezone: "时区", + avatar: "头像", + cover_image: "封面图片", + password: "密码", + change_cover: "更改封面", + language: "语言", + saving: "保存中", + save_changes: "保存更改", + deactivate_account: "停用账号", + deactivate_account_description: "停用账号后,该账号内的所有数据和资源将被永久删除且无法恢复。", + profile_settings: "个人资料设置", + your_account: "您的账号", + security: "安全", + activity: "活动", + appearance: "外观", + notifications: "通知", + workspaces: "工作区", + create_workspace: "创建工作区", + invitations: "邀请", + summary: "摘要", + assigned: "已分配", + created: "已创建", + subscribed: "已订阅", + you_do_not_have_the_permission_to_access_this_page: "您没有访问此页面的权限。", + something_went_wrong_please_try_again: "出现错误。请重试。", + load_more: "加载更多", + select_or_customize_your_interface_color_scheme: "选择或自定义您的界面配色方案。", + theme: "主题", + system_preference: "系统偏好", + light: "浅色", + dark: "深色", + light_contrast: "浅色高对比度", + dark_contrast: "深色高对比度", + custom: "自定义主题", + select_your_theme: "选择您的主题", + customize_your_theme: "自定义您的主题", + background_color: "背景颜色", + text_color: "文字颜色", + primary_color: "主要(主题)颜色", + sidebar_background_color: "侧边栏背景颜色", + sidebar_text_color: "侧边栏文字颜色", + set_theme: "设置主题", + enter_a_valid_hex_code_of_6_characters: "输入有效的6位十六进制代码", + background_color_is_required: "背景颜色为必填项", + text_color_is_required: "文字颜色为必填项", + primary_color_is_required: "主要颜色为必填项", + sidebar_background_color_is_required: "侧边栏背景颜色为必填项", + sidebar_text_color_is_required: "侧边栏文字颜色为必填项", + updating_theme: "正在更新主题", + theme_updated_successfully: "主题更新成功", + failed_to_update_the_theme: "主题更新失败", + email_notifications: "邮件通知", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "及时了解您订阅的工作项。启用此功能以获取通知。", + email_notification_setting_updated_successfully: "邮件通知设置更新成功", + failed_to_update_email_notification_setting: "邮件通知设置更新失败", + notify_me_when: "在以下情况通知我", + property_changes: "属性变更", + property_changes_description: "当工作项的属性(如负责人、优先级、估算等)发生变更时通知我。", + state_change: "状态变更", + state_change_description: "当工作项移动到不同状态时通知我", + issue_completed: "工作项完成", + issue_completed_description: "仅当工作项完成时通知我", + comments: "评论", + comments_description: "当有人在工作项上发表评论时通知我", + mentions: "提及", + mentions_description: "仅当有人在评论或描述中提及我时通知我", + old_password: "旧密码", + general_settings: "常规设置", + sign_out: "退出登录", + signing_out: "正在退出登录", + active_cycles: "活动周期", + active_cycles_description: "监控各个项目的周期,跟踪高优先级工作项,并关注需要注意的周期。", + on_demand_snapshots_of_all_your_cycles: "所有周期的实时快照", + upgrade: "升级", + "10000_feet_view": "所有活动周期的全局视图。", + "10000_feet_view_description": "放大视角,一次性查看所有项目中正在进行的周期,而不是在每个项目中逐个查看周期。", + get_snapshot_of_each_active_cycle: "获取每个活动周期的快照。", + get_snapshot_of_each_active_cycle_description: + "跟踪所有活动周期的高级指标,查看其进度状态,并了解与截止日期相关的范围。", + compare_burndowns: "比较燃尽图。", + compare_burndowns_description: "通过查看每个周期的燃尽报告,监控每个团队的表现。", + quickly_see_make_or_break_issues: "快速查看关键工作项。", + quickly_see_make_or_break_issues_description: + "预览每个周期中与截止日期相关的高优先级工作项。一键查看每个周期的所有工作项。", + zoom_into_cycles_that_need_attention: "关注需要注意的周期。", + zoom_into_cycles_that_need_attention_description: "一键调查任何不符合预期的周期状态。", + stay_ahead_of_blockers: "提前预防阻塞。", + stay_ahead_of_blockers_description: "发现从一个项目到另一个项目的挑战,并查看从其他视图中不易发现的周期间依赖关系。", + analytics: "分析", + workspace_invites: "工作区邀请", + enter_god_mode: "进入管理员模式", + workspace_logo: "工作区标志", + new_issue: "新工作项", + your_work: "我的工作", + drafts: "草稿", + projects: "项目", + views: "视图", + workspace: "工作区", + archives: "归档", + settings: "设置", + failed_to_move_favorite: "移动收藏失败", + favorites: "收藏", + no_favorites_yet: "暂无收藏", + create_folder: "创建文件夹", + new_folder: "新建文件夹", + favorite_updated_successfully: "收藏更新成功", + favorite_created_successfully: "收藏创建成功", + folder_already_exists: "文件夹已存在", + folder_name_cannot_be_empty: "文件夹名称不能为空", + something_went_wrong: "出现错误", + failed_to_reorder_favorite: "重新排序收藏失败", + favorite_removed_successfully: "收藏移除成功", + failed_to_create_favorite: "创建收藏失败", + failed_to_rename_favorite: "重命名收藏失败", + project_link_copied_to_clipboard: "项目链接已复制到剪贴板", + link_copied: "链接已复制", + add_project: "添加项目", + create_project: "创建项目", + failed_to_remove_project_from_favorites: "无法从收藏中移除项目。请重试。", + project_created_successfully: "项目创建成功", + project_created_successfully_description: "项目创建成功。您现在可以开始添加工作项了。", + project_name_already_taken: "项目名称已被使用。", + project_identifier_already_taken: "项目标识符已被使用。", + project_cover_image_alt: "项目封面图片", + name_is_required: "名称为必填项", + title_should_be_less_than_255_characters: "标题应少于255个字符", + project_name: "项目名称", + project_id_must_be_at_least_1_character: "项目ID至少需要1个字符", + project_id_must_be_at_most_5_characters: "项目ID最多只能有5个字符", + project_id: "项目ID", + project_id_tooltip_content: "帮助您唯一标识项目中的工作项。最多5个字符。", + description_placeholder: "描述", + only_alphanumeric_non_latin_characters_allowed: "仅允许字母数字和非拉丁字符。", + project_id_is_required: "项目ID为必填项", + project_id_allowed_char: "仅允许字母数字和非拉丁字符。", + project_id_min_char: "项目ID至少需要1个字符", + project_id_max_char: "项目ID最多只能有5个字符", + project_description_placeholder: "输入项目描述", + select_network: "选择网络", + lead: "负责人", + date_range: "日期范围", + private: "私有", + public: "公开", + accessible_only_by_invite: "仅受邀者可访问", + anyone_in_the_workspace_except_guests_can_join: "除访客外的工作区所有成员都可以加入", + creating: "创建中", + creating_project: "正在创建项目", + adding_project_to_favorites: "正在将项目添加到收藏", + project_added_to_favorites: "项目已添加到收藏", + couldnt_add_the_project_to_favorites: "无法将项目添加到收藏。请重试。", + removing_project_from_favorites: "正在从收藏中移除项目", + project_removed_from_favorites: "项目已从收藏中移除", + couldnt_remove_the_project_from_favorites: "无法从收藏中移除项目。请重试。", + add_to_favorites: "添加到收藏", + remove_from_favorites: "从收藏中移除", + publish_project: "发布项目", + publish: "发布", + copy_link: "复制链接", + leave_project: "离开项目", + join_the_project_to_rearrange: "加入项目以重新排列", + drag_to_rearrange: "拖动以重新排列", + congrats: "恭喜!", + open_project: "打开项目", + issues: "工作项", + cycles: "周期", + modules: "模块", + pages: "页面", + intake: "收集", + time_tracking: "时间跟踪", + work_management: "工作管理", + projects_and_issues: "项目和工作项", + projects_and_issues_description: "在此项目中开启或关闭这些功能。", + cycles_description: "为每个项目设置时间框,并根据需要调整周期。一个周期可以是两周,下一个周期是一周。", + modules_description: "将工作组织为子项目,并指定专门的负责人和受理人。", + views_description: "保存自定义排序、筛选和显示选项,或与团队共享。", + pages_description: "创建和编辑自由格式的内容:笔记、文档,任何内容。", + intake_description: "允许非成员提交 Bug、反馈和建议,且不会干扰您的工作流程。", + time_tracking_description: "记录在工作项和项目上花费的时间。", + work_management_description: "轻松管理您的工作和项目。", + documentation: "文档", + message_support: "联系支持", + contact_sales: "联系销售", + hyper_mode: "超级模式", + keyboard_shortcuts: "键盘快捷键", + whats_new: "新功能", + version: "版本", + we_are_having_trouble_fetching_the_updates: "我们在获取更新时遇到问题。", + our_changelogs: "我们的更新日志", + for_the_latest_updates: "获取最新更新。", + please_visit: "请访问", + docs: "文档", + full_changelog: "完整更新日志", + support: "支持", + discord: "Discord", + powered_by_plane_pages: "由Plane Pages提供支持", + please_select_at_least_one_invitation: "请至少选择一个邀请。", + please_select_at_least_one_invitation_description: "请至少选择一个加入工作区的邀请。", + we_see_that_someone_has_invited_you_to_join_a_workspace: "我们看到有人邀请您加入工作区", + join_a_workspace: "加入工作区", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: "我们看到有人邀请您加入工作区", + join_a_workspace_description: "加入工作区", + accept_and_join: "接受并加入", + go_home: "返回首页", + no_pending_invites: "没有待处理的邀请", + you_can_see_here_if_someone_invites_you_to_a_workspace: "如果有人邀请您加入工作区,您可以在这里看到", + back_to_home: "返回首页", + workspace_name: "工作区名称", + deactivate_your_account: "停用您的账户", + deactivate_your_account_description: + "一旦停用,您将无法被分配工作项,也不会被计入工作区的账单。要重新激活您的账户,您需要收到发送到此电子邮件地址的工作区邀请。", + deactivating: "正在停用", + confirm: "确认", + confirming: "确认中", + draft_created: "草稿已创建", + issue_created_successfully: "工作项创建成功", + draft_creation_failed: "草稿创建失败", + issue_creation_failed: "工作项创建失败", + draft_issue: "草稿工作项", + issue_updated_successfully: "工作项更新成功", + issue_could_not_be_updated: "工作项无法更新", + create_a_draft: "创建草稿", + save_to_drafts: "保存到草稿", + save: "保存", + update: "更新", + updating: "更新中", + create_new_issue: "创建新工作项", + editor_is_not_ready_to_discard_changes: "编辑器尚未准备好放弃更改", + failed_to_move_issue_to_project: "无法将工作项移动到项目", + create_more: "创建更多", + add_to_project: "添加到项目", + discard: "放弃", + duplicate_issue_found: "发现重复的工作项", + duplicate_issues_found: "发现重复的工作项", + no_matching_results: "没有匹配的结果", + title_is_required: "标题为必填项", + title: "标题", + state: "状态", + priority: "优先级", + none: "无", + urgent: "紧急", + high: "高", + medium: "中", + low: "低", + members: "成员", + assignee: "负责人", + assignees: "负责人", + you: "您", + labels: "标签", + create_new_label: "创建新标签", + start_date: "开始日期", + end_date: "结束日期", + due_date: "截止日期", + estimate: "估算", + change_parent_issue: "更改父工作项", + remove_parent_issue: "移除父工作项", + add_parent: "添加父项", + loading_members: "正在加载成员", + view_link_copied_to_clipboard: "视图链接已复制到剪贴板", + required: "必填", + optional: "可选", + Cancel: "取消", + edit: "编辑", + archive: "归档", + restore: "恢复", + open_in_new_tab: "在新标签页中打开", + delete: "删除", + deleting: "删除中", + make_a_copy: "创建副本", + move_to_project: "移动到项目", + good: "早上", + morning: "早上", + afternoon: "下午", + evening: "晚上", + show_all: "显示全部", + show_less: "显示更少", + no_data_yet: "暂无数据", + syncing: "同步中", + add_work_item: "添加工作项", + advanced_description_placeholder: "按'/'使用命令", + create_work_item: "创建工作项", + attachments: "附件", + declining: "拒绝中", + declined: "已拒绝", + decline: "拒绝", + unassigned: "未分配", + work_items: "工作项", + add_link: "添加链接", + points: "点数", + no_assignee: "无负责人", + no_assignees_yet: "暂无负责人", + no_labels_yet: "暂无标签", + ideal: "理想", + current: "当前", + no_matching_members: "没有匹配的成员", + leaving: "离开中", + removing: "移除中", + leave: "离开", + refresh: "刷新", + refreshing: "刷新中", + refresh_status: "刷新状态", + prev: "上一个", + next: "下一个", + re_generating: "重新生成中", + re_generate: "重新生成", + re_generate_key: "重新生成密钥", + export: "导出", + member: "{count, plural, other{# 成员}}", + new_password_must_be_different_from_old_password: "新密码必须不同于旧密码", + edited: "已编辑", + bot: "机器人", + project_view: { + sort_by: { + created_at: "创建时间", + updated_at: "更新时间", + name: "名称", + }, + }, + toast: { + success: "成功!", + error: "错误!", + }, + links: { + toasts: { + created: { + title: "链接已创建", + message: "链接已成功创建", + }, + not_created: { + title: "链接未创建", + message: "无法创建链接", + }, + updated: { + title: "链接已更新", + message: "链接已成功更新", + }, + not_updated: { + title: "链接未更新", + message: "无法更新链接", + }, + removed: { + title: "链接已移除", + message: "链接已成功移除", + }, + not_removed: { + title: "链接未移除", + message: "无法移除链接", + }, + }, + }, + home: { + empty: { + quickstart_guide: "快速入门指南", + not_right_now: "暂时不要", + create_project: { + title: "创建项目", + description: "在Plane中,大多数事情都从项目开始。", + cta: "开始使用", + }, + invite_team: { + title: "邀请您的团队", + description: "与同事一起构建、发布和管理。", + cta: "邀请他们加入", + }, + configure_workspace: { + title: "设置您的工作区", + description: "开启或关闭功能,或进行更多设置。", + cta: "配置此工作区", + }, + personalize_account: { + title: "让Plane更适合您", + description: "选择您的头像、颜色等。", + cta: "立即个性化", + }, + widgets: { + title: "没有小部件看起来很安静,开启它们吧", + description: "看起来您的所有小部件都已关闭。现在启用它们\n来提升您的体验!", + primary_button: { + text: "管理小部件", + }, + }, + }, + quick_links: { + empty: "保存您想要方便访问的工作相关链接。", + add: "添加快速链接", + title: "快速链接", + title_plural: "快速链接", + }, + recents: { + title: "最近", + empty: { + project: "访问项目后,您的最近项目将显示在这里。", + page: "访问页面后,您的最近页面将显示在这里。", + issue: "访问工作项后,您的最近工作项将显示在这里。", + default: "您还没有任何最近项目。", + }, + filters: { + all: "所有", + projects: "项目", + pages: "页面", + issues: "工作项", + }, + }, + new_at_plane: { + title: "Plane新功能", + }, + quick_tutorial: { + title: "快速教程", + }, + widget: { + reordered_successfully: "小部件重新排序成功。", + reordering_failed: "重新排序小部件时出错。", + }, + manage_widgets: "管理小部件", + title: "首页", + star_us_on_github: "在GitHub上为我们加星", + }, + link: { + modal: { + url: { + text: "URL", + required: "URL无效", + placeholder: "输入或粘贴URL", + }, + title: { + text: "显示标题", + placeholder: "您希望如何显示此链接", + }, + }, + }, + common: { + all: "全部", + states: "状态", + state: "状态", + state_groups: "状态组", + state_group: "状态组", + priorities: "优先级", + priority: "优先级", + team_project: "团队项目", + project: "项目", + cycle: "周期", + cycles: "周期", + module: "模块", + modules: "模块", + labels: "标签", + label: "标签", + assignees: "负责人", + assignee: "负责人", + created_by: "创建者", + none: "无", + link: "链接", + estimates: "估算", + estimate: "估算", + created_at: "创建于", + completed_at: "完成于", + layout: "布局", + filters: "筛选", + display: "显示", + load_more: "加载更多", + activity: "活动", + analytics: "分析", + dates: "日期", + success: "成功!", + something_went_wrong: "出现错误", + error: { + label: "错误!", + message: "发生错误。请重试。", + }, + group_by: "分组方式", + epic: "史诗", + epics: "史诗", + work_item: "工作项", + work_items: "工作项", + sub_work_item: "子工作项", + add: "添加", + warning: "警告", + updating: "更新中", + adding: "添加中", + update: "更新", + creating: "创建中", + create: "创建", + cancel: "取消", + description: "描述", + title: "标题", + attachment: "附件", + general: "常规", + features: "功能", + automation: "自动化", + project_name: "项目名称", + project_id: "项目ID", + project_timezone: "项目时区", + created_on: "创建于", + update_project: "更新项目", + identifier_already_exists: "标识符已存在", + add_more: "添加更多", + defaults: "默认值", + add_label: "添加标签", + customize_time_range: "自定义时间范围", + loading: "加载中", + attachments: "附件", + property: "属性", + properties: "属性", + parent: "父项", + page: "页面", + remove: "移除", + archiving: "归档中", + archive: "归档", + access: { + public: "公开", + private: "私有", + }, + done: "完成", + sub_work_items: "子工作项", + comment: "评论", + workspace_level: "工作区级别", + order_by: { + label: "排序方式", + manual: "手动", + last_created: "最近创建", + last_updated: "最近更新", + start_date: "开始日期", + due_date: "截止日期", + asc: "升序", + desc: "降序", + updated_on: "更新时间", + }, + sort: { + asc: "升序", + desc: "降序", + created_on: "创建时间", + updated_on: "更新时间", + }, + comments: "评论", + updates: "更新", + clear_all: "清除全部", + copied: "已复制!", + link_copied: "链接已复制!", + link_copied_to_clipboard: "链接已复制到剪贴板", + copied_to_clipboard: "工作项链接已复制到剪贴板", + is_copied_to_clipboard: "工作项已复制到剪贴板", + no_links_added_yet: "暂无添加的链接", + add_link: "添加链接", + links: "链接", + go_to_workspace: "前往工作区", + progress: "进度", + optional: "可选", + join: "加入", + go_back: "返回", + continue: "继续", + resend: "重新发送", + relations: "关系", + errors: { + default: { + title: "错误!", + message: "发生错误。请重试。", + }, + required: "此字段为必填项", + entity_required: "{entity}为必填项", + restricted_entity: "{entity}已被限制", + }, + update_link: "更新链接", + attach: "附加", + create_new: "创建新的", + add_existing: "添加现有", + type_or_paste_a_url: "输入或粘贴URL", + url_is_invalid: "URL无效", + display_title: "显示标题", + link_title_placeholder: "您希望如何显示此链接", + url: "URL", + side_peek: "侧边预览", + modal: "模态框", + full_screen: "全屏", + close_peek_view: "关闭预览视图", + toggle_peek_view_layout: "切换预览视图布局", + options: "选项", + duration: "持续时间", + today: "今天", + week: "周", + month: "月", + quarter: "季度", + press_for_commands: "按'/'使用命令", + click_to_add_description: "点击添加描述", + search: { + label: "搜索", + placeholder: "输入搜索内容", + no_matches_found: "未找到匹配项", + no_matching_results: "没有匹配的结果", + }, + actions: { + edit: "编辑", + make_a_copy: "创建副本", + open_in_new_tab: "在新标签页中打开", + copy_link: "复制链接", + archive: "归档", + delete: "删除", + remove_relation: "移除关系", + subscribe: "订阅", + unsubscribe: "取消订阅", + clear_sorting: "清除排序", + show_weekends: "显示周末", + enable: "启用", + disable: "禁用", + }, + name: "名称", + discard: "放弃", + confirm: "确认", + confirming: "确认中", + read_the_docs: "阅读文档", + default: "默认", + active: "活动", + enabled: "已启用", + disabled: "已禁用", + mandate: "授权", + mandatory: "必需的", + yes: "是", + no: "否", + please_wait: "请稍候", + enabling: "正在启用", + disabling: "正在禁用", + beta: "测试版", + or: "或", + next: "下一步", + back: "返回", + cancelling: "正在取消", + configuring: "正在配置", + clear: "清除", + import: "导入", + connect: "连接", + authorizing: "正在授权", + processing: "正在处理", + no_data_available: "暂无数据", + from: "来自 {name}", + authenticated: "已认证", + select: "选择", + upgrade: "升级", + add_seats: "添加席位", + projects: "项目", + workspace: "工作区", + workspaces: "工作区", + team: "团队", + teams: "团队", + entity: "实体", + entities: "实体", + task: "任务", + tasks: "任务", + section: "部分", + sections: "部分", + edit: "编辑", + connecting: "正在连接", + connected: "已连接", + disconnect: "断开连接", + disconnecting: "正在断开连接", + installing: "正在安装", + install: "安装", + reset: "重置", + live: "实时", + change_history: "变更历史", + coming_soon: "即将推出", + member: "成员", + members: "成员", + you: "你", + upgrade_cta: { + higher_subscription: "升级到更高订阅", + talk_to_sales: "联系销售", + }, + category: "类别", + categories: "类别", + saving: "保存中", + save_changes: "保存更改", + delete: "删除", + deleting: "删除中", + pending: "待处理", + invite: "邀请", + view: "查看", + deactivated_user: "已停用用户", + apply: "应用", + applying: "应用中", + users: "用户", + admins: "管理员", + guests: "访客", + on_track: "进展顺利", + off_track: "偏离轨道", + at_risk: "有风险", + timeline: "时间轴", + completion: "完成", + upcoming: "即将发生", + completed: "已完成", + in_progress: "进行中", + planned: "已计划", + paused: "暂停", + no_of: "{entity} 的数量", + resolved: "已解决", + }, + chart: { + x_axis: "X轴", + y_axis: "Y轴", + metric: "指标", + }, + form: { + title: { + required: "标题为必填项", + max_length: "标题应少于 {length} 个字符", + }, + }, + entity: { + grouping_title: "{entity}分组", + priority: "{entity}优先级", + all: "所有{entity}", + drop_here_to_move: "拖放到此处以移动{entity}", + delete: { + label: "删除{entity}", + success: "{entity}删除成功", + failed: "{entity}删除失败", + }, + update: { + failed: "{entity}更新失败", + success: "{entity}更新成功", + }, + link_copied_to_clipboard: "{entity}链接已复制到剪贴板", + fetch: { + failed: "获取{entity}时出错", + }, + add: { + success: "{entity}添加成功", + failed: "添加{entity}时出错", + }, + remove: { + success: "{entity}删除成功", + failed: "删除{entity}时出错", + }, + }, + epic: { + all: "所有史诗", + label: "{count, plural, one {史诗} other {史诗}}", + new: "新建史诗", + adding: "正在添加史诗", + create: { + success: "史诗创建成功", + }, + add: { + press_enter: "按'Enter'添加另一个史诗", + label: "添加史诗", + }, + title: { + label: "史诗标题", + required: "史诗标题为必填项", + }, + }, + issue: { + label: "{count, plural, one {工作项} other {工作项}}", + all: "所有工作项", + edit: "编辑工作项", + title: { + label: "工作项标题", + required: "工作项标题为必填项", + }, + add: { + press_enter: "按'Enter'添加另一个工作项", + label: "添加工作项", + cycle: { + failed: "无法将工作项添加到周期。请重试。", + success: "{count, plural, one {工作项} other {工作项}}已成功添加到周期。", + loading: "正在将{count, plural, one {工作项} other {工作项}}添加到周期", + }, + assignee: "添加负责人", + start_date: "添加开始日期", + due_date: "添加截止日期", + parent: "添加父工作项", + sub_issue: "添加子工作项", + relation: "添加关系", + link: "添加链接", + existing: "添加现有工作项", + }, + remove: { + label: "移除工作项", + cycle: { + loading: "正在从周期中移除工作项", + success: "已成功从周期中移除工作项。", + failed: "无法从周期中移除工作项。请重试。", + }, + module: { + loading: "正在从模块中移除工作项", + success: "已成功从模块中移除工作项。", + failed: "无法从模块中移除工作项。请重试。", + }, + parent: { + label: "移除父工作项", + }, + }, + new: "新建工作项", + adding: "正在添加工作项", + create: { + success: "工作项创建成功", + }, + priority: { + urgent: "紧急", + high: "高", + medium: "中", + low: "低", + }, + display: { + properties: { + label: "显示属性", + id: "ID", + issue_type: "工作项类型", + sub_issue_count: "子工作项数量", + attachment_count: "附件数量", + created_on: "创建于", + sub_issue: "子工作项", + work_item_count: "工作项数量", + }, + extra: { + show_sub_issues: "显示子工作项", + show_empty_groups: "显示空组", + }, + }, + layouts: { + ordered_by_label: "此布局按以下方式排序", + list: "列表", + kanban: "看板", + calendar: "日历", + spreadsheet: "表格", + gantt: "时间线", + title: { + list: "列表布局", + kanban: "看板布局", + calendar: "日历布局", + spreadsheet: "表格布局", + gantt: "时间线布局", + }, + }, + states: { + active: "活动", + backlog: "待办", + }, + comments: { + placeholder: "添加评论", + switch: { + private: "切换为私密评论", + public: "切换为公开评论", + }, + create: { + success: "评论创建成功", + error: "评论创建失败。请稍后重试。", + }, + update: { + success: "评论更新成功", + error: "评论更新失败。请稍后重试。", + }, + remove: { + success: "评论删除成功", + error: "评论删除失败。请稍后重试。", + }, + upload: { + error: "资源上传失败。请稍后重试。", + }, + copy_link: { + success: "评论链接已复制到剪贴板", + error: "复制评论链接时出错。请稍后再试。", + }, + }, + empty_state: { + issue_detail: { + title: "工作项不存在", + description: "您查找的工作项不存在、已归档或已删除。", + primary_button: { + text: "查看其他工作项", + }, + }, + }, + sibling: { + label: "同级工作项", + }, + archive: { + description: "只有已完成或已取消的\n工作项可以归档", + label: "归档工作项", + confirm_message: "您确定要归档此工作项吗?所有已归档的工作项稍后可以恢复。", + success: { + label: "归档成功", + message: "您的归档可以在项目归档中找到。", + }, + failed: { + message: "无法归档工作项。请重试。", + }, + }, + restore: { + success: { + title: "恢复成功", + message: "您的工作项可以在项目工作项中找到。", + }, + failed: { + message: "无法恢复工作项。请重试。", + }, + }, + relation: { + relates_to: "关联到", + duplicate: "重复于", + blocked_by: "被阻止于", + blocking: "阻止", + }, + copy_link: "复制工作项链接", + delete: { + label: "删除工作项", + error: "删除工作项时出错", + }, + subscription: { + actions: { + subscribed: "工作项订阅成功", + unsubscribed: "工作项取消订阅成功", + }, + }, + select: { + error: "请至少选择一个工作项", + empty: "未选择工作项", + add_selected: "添加所选工作项", + select_all: "全选", + deselect_all: "取消全选", + }, + open_in_full_screen: "在全屏中打开工作项", + }, + attachment: { + error: "无法附加文件。请重新上传。", + only_one_file_allowed: "一次只能上传一个文件。", + file_size_limit: "文件大小必须小于或等于 {size}MB。", + drag_and_drop: "拖放到任意位置以上传", + delete: "删除附件", + }, + label: { + select: "选择标签", + create: { + success: "标签创建成功", + failed: "标签创建失败", + already_exists: "标签已存在", + type: "输入以添加新标签", + }, + }, + sub_work_item: { + update: { + success: "子工作项更新成功", + error: "更新子工作项时出错", + }, + remove: { + success: "子工作项移除成功", + error: "移除子工作项时出错", + }, + empty_state: { + sub_list_filters: { + title: "您没有符合您应用的过滤器的子工作项。", + description: "要查看所有子工作项,请清除所有应用的过滤器。", + action: "清除过滤器", + }, + list_filters: { + title: "您没有符合您应用的过滤器的工作项。", + description: "要查看所有工作项,请清除所有应用的过滤器。", + action: "清除过滤器", + }, + }, + }, + view: { + label: "{count, plural, one {视图} other {视图}}", + create: { + label: "创建视图", + }, + update: { + label: "更新视图", + }, + }, + inbox_issue: { + status: { + pending: { + title: "待处理", + description: "待处理", + }, + declined: { + title: "已拒绝", + description: "已拒绝", + }, + snoozed: { + title: "已暂停", + description: "还剩{days, plural, one{# 天} other{# 天}}", + }, + accepted: { + title: "已接受", + description: "已接受", + }, + duplicate: { + title: "重复", + description: "重复", + }, + }, + modals: { + decline: { + title: "拒绝工作项", + content: "您确定要拒绝工作项 {value} 吗?", + }, + delete: { + title: "删除工作项", + content: "您确定要删除工作项 {value} 吗?", + success: "工作项删除成功", + }, + }, + errors: { + snooze_permission: "只有项目管理员可以暂停/取消暂停工作项", + accept_permission: "只有项目管理员可以接受工作项", + decline_permission: "只有项目管理员可以拒绝工作项", + }, + actions: { + accept: "接受", + decline: "拒绝", + snooze: "暂停", + unsnooze: "取消暂停", + copy: "复制工作项链接", + delete: "删除", + open: "打开工作项", + mark_as_duplicate: "标记为重复", + move: "将 {value} 移至项目工作项", + }, + source: { + "in-app": "应用内", + }, + order_by: { + created_at: "创建时间", + updated_at: "更新时间", + id: "ID", + }, + label: "收集", + page_label: "{workspace} - 收集", + modal: { + title: "创建收集工作项", + }, + tabs: { + open: "未处理", + closed: "已处理", + }, + empty_state: { + sidebar_open_tab: { + title: "没有未处理的工作项", + description: "在此处查找未处理的工作项。创建新工作项。", + }, + sidebar_closed_tab: { + title: "没有已处理的工作项", + description: "所有已接受或已拒绝的工作项都可以在这里找到。", + }, + sidebar_filter: { + title: "没有匹配的工作项", + description: "收集中没有符合筛选条件的工作项。创建新工作项。", + }, + detail: { + title: "选择一个工作项以查看其详细信息。", + }, + }, + }, + workspace_creation: { + heading: "创建您的工作区", + subheading: "要开始使用 Plane,您需要创建或加入一个工作区。", + form: { + name: { + label: "为您的工作区命名", + placeholder: "熟悉且易于识别的名称总是最好的。", + }, + url: { + label: "设置您的工作区 URL", + placeholder: "输入或粘贴 URL", + edit_slug: "您只能编辑 URL 的标识符部分", + }, + organization_size: { + label: "有多少人将使用这个工作区?", + placeholder: "选择一个范围", + }, + }, + errors: { + creation_disabled: { + title: "只有您的实例管理员可以创建工作区", + description: "如果您知道实例管理员的电子邮件地址,请点击下方按钮与他们联系。", + request_button: "请求实例管理员", + }, + validation: { + name_alphanumeric: "工作区名称只能包含 (' '), ('-'), ('_') 和字母数字字符。", + name_length: "名称限制在 80 个字符以内。", + url_alphanumeric: "URL 只能包含 ('-') 和字母数字字符。", + url_length: "URL 限制在 48 个字符以内。", + url_already_taken: "工作区 URL 已被占用!", + }, + }, + request_email: { + subject: "请求新工作区", + body: "您好,实例管理员:\n\n请为 [创建工作区的目的] 创建一个 URL 为 [/workspace-name] 的新工作区。\n\n谢谢,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "创建工作区", + loading: "正在创建工作区", + }, + toast: { + success: { + title: "成功", + message: "工作区创建成功", + }, + error: { + title: "错误", + message: "工作区创建失败。请重试。", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "项目、活动和指标概览", + description: + "欢迎使用 Plane,我们很高兴您能来到这里。创建您的第一个项目并跟踪您的工作项,这个页面将转变为帮助您进展的空间。管理员还将看到帮助团队进展的项目。", + primary_button: { + text: "构建您的第一个项目", + comic: { + title: "在 Plane 中一切都从项目开始", + description: "项目可以是产品路线图、营销活动或新车发布。", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "分析", + page_label: "{workspace} - 分析", + open_tasks: "总开放任务", + error: "获取数据时出现错误。", + work_items_closed_in: "已关闭的工作项", + selected_projects: "已选择的项目", + total_members: "总成员数", + total_cycles: "总周期数", + total_modules: "总模块数", + pending_work_items: { + title: "待处理工作项", + empty_state: "同事的待处理工作项分析将显示在这里。", + }, + work_items_closed_in_a_year: { + title: "一年内关闭的工作项", + empty_state: "关闭工作项以查看以图表形式显示的分析。", + }, + most_work_items_created: { + title: "创建最多工作项", + empty_state: "同事及其创建的工作项数量将显示在这里。", + }, + most_work_items_closed: { + title: "关闭最多工作项", + empty_state: "同事及其关闭的工作项数量将显示在这里。", + }, + tabs: { + scope_and_demand: "范围和需求", + custom: "自定义分析", + }, + empty_state: { + customized_insights: { + description: "分配给您的工作项将按状态分类显示在此处。", + title: "暂无数据", + }, + created_vs_resolved: { + description: "随着时间推移创建和解决的工作项将显示在此处。", + title: "暂无数据", + }, + project_insights: { + title: "暂无数据", + description: "分配给您的工作项将按状态分类显示在此处。", + }, + general: { + title: "跟踪进度、工作量和分配。发现趋势,消除障碍,加速工作进展", + description: "查看范围与需求、估算和范围蔓延。获取团队成员和团队的性能,确保您的项目按时运行。", + primary_button: { + text: "开始您的第一个项目", + comic: { + title: "分析功能在周期 + 模块中效果最佳", + description: + "首先,将您的问题在周期中进行时间限制,如果可能的话,将跨越多个周期的问题分组到模块中。在左侧导航中查看这两个功能。", + }, + }, + }, + }, + created_vs_resolved: "已创建 vs 已解决", + customized_insights: "自定义洞察", + backlog_work_items: "待办的{entity}", + active_projects: "活跃项目", + trend_on_charts: "图表趋势", + all_projects: "所有项目", + summary_of_projects: "项目概览", + project_insights: "项目洞察", + started_work_items: "已开始的{entity}", + total_work_items: "{entity}总数", + total_projects: "项目总数", + total_admins: "管理员总数", + total_users: "用户总数", + total_intake: "总收入", + un_started_work_items: "未开始的{entity}", + total_guests: "访客总数", + completed_work_items: "已完成的{entity}", + total: "{entity}总数", + }, + workspace_projects: { + label: "{count, plural, one {项目} other {项目}}", + create: { + label: "添加项目", + }, + network: { + private: { + title: "私有", + description: "仅限邀请访问", + }, + public: { + title: "公开", + description: "工作区中除访客外的任何人都可以加入", + }, + }, + error: { + permission: "您没有执行此操作的权限。", + cycle_delete: "删除周期失败", + module_delete: "删除模块失败", + issue_delete: "删除工作项失败", + }, + state: { + backlog: "待办", + unstarted: "未开始", + started: "进行中", + completed: "已完成", + cancelled: "已取消", + }, + sort: { + manual: "手动", + name: "名称", + created_at: "创建日期", + members_length: "成员数量", + }, + scope: { + my_projects: "我的项目", + archived_projects: "已归档", + }, + common: { + months_count: "{months, plural, one{# 个月} other{# 个月}}", + }, + empty_state: { + general: { + title: "没有活动项目", + description: + "将每个项目视为目标导向工作的父级。项目是工作项、周期和模块所在的地方,与您的同事一起帮助您实现目标。创建新项目或筛选已归档的项目。", + primary_button: { + text: "开始您的第一个项目", + comic: { + title: "在 Plane 中一切都从项目开始", + description: "项目可以是产品路线图、营销活动或新车发布。", + }, + }, + }, + no_projects: { + title: "没有项目", + description: "要创建工作项或管理您的工作,您需要创建一个项目或成为项目的一部分。", + primary_button: { + text: "开始您的第一个项目", + comic: { + title: "在 Plane 中一切都从项目开始", + description: "项目可以是产品路线图、营销活动或新车发布。", + }, + }, + }, + filter: { + title: "没有匹配的项目", + description: "未检测到符合匹配条件的项目。\n创建一个新项目。", + }, + search: { + description: "未检测到符合匹配条件的项目。\n创建一个新项目", + }, + }, + }, + workspace_views: { + add_view: "添加视图", + empty_state: { + "all-issues": { + title: "项目中没有工作项", + description: "第一个项目完成!现在,将您的工作分解成可跟踪的工作项。让我们开始吧!", + primary_button: { + text: "创建新工作项", + }, + }, + assigned: { + title: "还没有工作项", + description: "可以在这里跟踪分配给您的工作项。", + primary_button: { + text: "创建新工作项", + }, + }, + created: { + title: "还没有工作项", + description: "您创建的所有工作项都会出现在这里,直接在这里跟踪它们。", + primary_button: { + text: "创建新工作项", + }, + }, + subscribed: { + title: "还没有工作项", + description: "订阅您感兴趣的工作项,在这里跟踪所有这些工作项。", + }, + "custom-view": { + title: "还没有工作项", + description: "符合筛选条件的工作项,在这里跟踪所有这些工作项。", + }, + }, + }, + workspace_settings: { + label: "工作区设置", + page_label: "{workspace} - 常规设置", + key_created: "密钥已创建", + copy_key: "复制并将此密钥保存在 Plane Pages 中。关闭后您将无法看到此密钥。包含密钥的 CSV 文件已下载。", + token_copied: "令牌已复制到剪贴板。", + settings: { + general: { + title: "常规", + upload_logo: "上传标志", + edit_logo: "编辑标志", + name: "工作区名称", + company_size: "公司规模", + url: "工作区网址", + update_workspace: "更新工作区", + delete_workspace: "删除此工作区", + delete_workspace_description: "删除工作区时,该工作区内的所有数据和资源将被永久删除,且无法恢复。", + delete_btn: "删除此工作区", + delete_modal: { + title: "确定要删除此工作区吗?", + description: "您目前正在试用我们的付费方案。请先取消试用后再继续。", + dismiss: "关闭", + cancel: "取消试用", + success_title: "工作区已删除。", + success_message: "即将跳转到您的个人资料页面。", + error_title: "操作失败。", + error_message: "请重试。", + }, + errors: { + name: { + required: "名称为必填项", + max_length: "工作区名称不应超过80个字符", + }, + company_size: { + required: "公司规模为必填项", + select_a_range: "选择组织规模", + }, + }, + }, + members: { + title: "成员", + add_member: "添加成员", + pending_invites: "待处理邀请", + invitations_sent_successfully: "邀请发送成功", + leave_confirmation: "您确定要离开工作区吗?您将无法再访问此工作区。此操作无法撤消。", + details: { + full_name: "全名", + display_name: "显示名称", + email_address: "电子邮件地址", + account_type: "账户类型", + authentication: "身份验证", + joining_date: "加入日期", + }, + modal: { + title: "邀请人员协作", + description: "邀请人员在您的工作区中协作。", + button: "发送邀请", + button_loading: "正在发送邀请", + placeholder: "name@company.com", + errors: { + required: "我们需要一个电子邮件地址来邀请他们。", + invalid: "电子邮件无效", + }, + }, + }, + billing_and_plans: { + title: "账单与计划", + current_plan: "当前计划", + free_plan: "您目前使用的是免费计划", + view_plans: "查看计划", + }, + exports: { + title: "导出", + exporting: "导出中", + previous_exports: "以前的导出", + export_separate_files: "将数据导出为单独的文件", + modal: { + title: "导出到", + toasts: { + success: { + title: "导出成功", + message: "您可以从之前的导出中下载导出的{entity}", + }, + error: { + title: "导出失败", + message: "导出未成功。请重试。", + }, + }, + }, + }, + webhooks: { + title: "Webhooks", + add_webhook: "添加 webhook", + modal: { + title: "创建 webhook", + details: "Webhook 详情", + payload: "负载 URL", + question: "您希望触发此 webhook 的事件有哪些?", + error: "URL 为必填项", + }, + secret_key: { + title: "密钥", + message: "生成令牌以登录 webhook 负载", + }, + options: { + all: "发送所有内容", + individual: "选择单个事件", + }, + toasts: { + created: { + title: "Webhook 已创建", + message: "Webhook 已成功创建", + }, + not_created: { + title: "Webhook 未创建", + message: "无法创建 webhook", + }, + updated: { + title: "Webhook 已更新", + message: "Webhook 已成功更新", + }, + not_updated: { + title: "Webhook 未更新", + message: "无法更新 webhook", + }, + removed: { + title: "Webhook 已移除", + message: "Webhook 已成功移除", + }, + not_removed: { + title: "Webhook 未移除", + message: "无法移除 webhook", + }, + secret_key_copied: { + message: "密钥已复制到剪贴板。", + }, + secret_key_not_copied: { + message: "复制密钥时出错。", + }, + }, + }, + api_tokens: { + title: "API 令牌", + add_token: "添加 API 令牌", + create_token: "创建令牌", + never_expires: "永不过期", + generate_token: "生成令牌", + generating: "生成中", + delete: { + title: "删除 API 令牌", + description: "使用此令牌的任何应用程序将无法再访问 Plane 数据。此操作无法撤消。", + success: { + title: "成功!", + message: "API 令牌已成功删除", + }, + error: { + title: "错误!", + message: "无法删除 API 令牌", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "尚未创建 API 令牌", + description: "Plane API 可用于将您在 Plane 中的数据与任何外部系统集成。创建令牌以开始使用。", + }, + webhooks: { + title: "尚未添加 webhook", + description: "创建 webhook 以接收实时更新并自动执行操作。", + }, + exports: { + title: "尚无导出", + description: "每次导出时,您都会在这里有一个副本以供参考。", + }, + imports: { + title: "尚无导入", + description: "在这里查找所有以前的导入并下载它们。", + }, + }, + }, + profile: { + label: "个人资料", + page_label: "您的工作", + work: "工作", + details: { + joined_on: "加入时间", + time_zone: "时区", + }, + stats: { + workload: "工作量", + overview: "概览", + created: "已创建的工作项", + assigned: "已分配的工作项", + subscribed: "已订阅的工作项", + state_distribution: { + title: "按状态分类的工作项", + empty: "创建工作项以在图表中查看按状态分类的工作项,以便更好地分析。", + }, + priority_distribution: { + title: "按优先级分类的工作项", + empty: "创建工作项以在图表中查看按优先级分类的工作项,以便更好地分析。", + }, + recent_activity: { + title: "最近活动", + empty: "我们找不到数据。请查看您的输入", + button: "下载今天的活动", + button_loading: "下载中", + }, + }, + actions: { + profile: "个人资料", + security: "安全", + activity: "活动", + appearance: "外观", + notifications: "通知", + }, + tabs: { + summary: "摘要", + assigned: "已分配", + created: "已创建", + subscribed: "已订阅", + activity: "活动", + }, + empty_state: { + activity: { + title: "尚无活动", + description: "通过创建新工作项开始!为其添加详细信息和属性。在 Plane 中探索更多内容以查看您的活动。", + }, + assigned: { + title: "没有分配给您的工作项", + description: "可以从这里跟踪分配给您的工作项。", + }, + created: { + title: "尚无工作项", + description: "您创建的所有工作项都会出现在这里,直接在这里跟踪它们。", + }, + subscribed: { + title: "尚无工作项", + description: "订阅您感兴趣的工作项,在这里跟踪所有这些工作项。", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "输入项目 ID", + please_select_a_timezone: "请选择时区", + archive_project: { + title: "归档项目", + description: + "归档项目将从您的侧边导航中取消列出您的项目,但您仍然可以从项目页面访问它。您可以随时恢复或删除项目。", + button: "归档项目", + }, + delete_project: { + title: "删除项目", + description: "删除项目时,该项目内的所有数据和资源将被永久删除且无法恢复。", + button: "删除我的项目", + }, + toast: { + success: "项目更新成功", + error: "项目无法更新。请重试。", + }, + }, + members: { + label: "成员", + project_lead: "项目负责人", + default_assignee: "默认受理人", + guest_super_permissions: { + title: "为访客用户授予查看所有工作项的权限:", + sub_heading: "这将允许访客查看所有项目工作项。", + }, + invite_members: { + title: "邀请成员", + sub_heading: "邀请成员参与您的项目。", + select_co_worker: "选择同事", + }, + }, + states: { + describe_this_state_for_your_members: "为您的成员描述此状态。", + empty_state: { + title: "{groupKey} 组中没有状态", + description: "请创建一个新状态", + }, + }, + labels: { + label_title: "标签标题", + label_title_is_required: "标签标题为必填项", + label_max_char: "标签名称不应超过255个字符", + toast: { + error: "更新标签时出错", + }, + }, + estimates: { + label: "估算", + title: "为我的项目启用估算", + description: "它们有助于您传达团队的复杂性和工作量。", + no_estimate: "无估算", + new: "新估算系统", + create: { + custom: "自定义", + start_from_scratch: "从头开始", + choose_template: "选择模板", + choose_estimate_system: "选择估算系统", + enter_estimate_point: "输入估算点数", + step: "步骤 {step} 共 {total}", + label: "创建估算", + }, + toasts: { + created: { + success: { + title: "已创建估算点数", + message: "估算点数创建成功", + }, + error: { + title: "无法创建估算点数", + message: "无法创建新的估算点数,请重试", + }, + }, + updated: { + success: { + title: "已更新估算", + message: "您项目中的估算点数已更新", + }, + error: { + title: "无法更新估算", + message: "无法更新估算,请重试", + }, + }, + enabled: { + success: { + title: "成功!", + message: "已启用估算", + }, + }, + disabled: { + success: { + title: "成功!", + message: "已禁用估算", + }, + error: { + title: "错误!", + message: "无法禁用估算。请重试", + }, + }, + }, + validation: { + min_length: "估算需要大于0。", + unable_to_process: "我们无法处理您的请求,请重试。", + numeric: "估算需要是数值。", + character: "估算需要是字符值。", + empty: "估算值不能为空。", + already_exists: "估算值已存在。", + unsaved_changes: "您有未保存的更改,请在点击完成前保存。", + remove_empty: "估算不能为空。请在每个字段中输入值或删除没有值的字段。", + }, + }, + automations: { + label: "自动化", + "auto-archive": { + title: "自动归档已关闭的工作项", + description: "Plane 将自动归档已完成或已取消的工作项。", + duration: "自动归档已关闭", + }, + "auto-close": { + title: "自动关闭工作项", + description: "Plane 将自动关闭尚未完成或取消的工作项。", + duration: "自动关闭不活跃", + auto_close_status: "自动关闭状态", + }, + }, + empty_state: { + labels: { + title: "尚无标签", + description: "创建标签以帮助组织和筛选项目中的工作项。", + }, + estimates: { + title: "尚无估算系统", + description: "创建一组估算以传达每个工作项的工作量。", + primary_button: "添加估算系统", + }, + }, + }, + project_cycles: { + add_cycle: "添加周期", + more_details: "更多详情", + cycle: "周期", + update_cycle: "更新周期", + create_cycle: "创建周期", + no_matching_cycles: "没有匹配的周期", + remove_filters_to_see_all_cycles: "移除筛选器以查看所有周期", + remove_search_criteria_to_see_all_cycles: "移除搜索条件以查看所有周期", + only_completed_cycles_can_be_archived: "只能归档已完成的周期", + start_date: "开始日期", + end_date: "结束日期", + in_your_timezone: "在您的时区", + transfer_work_items: "转移 {count} 工作项", + date_range: "日期范围", + add_date: "添加日期", + active_cycle: { + label: "活动周期", + progress: "进度", + chart: "燃尽图", + priority_issue: "优先工作项", + assignees: "受理人", + issue_burndown: "工作项燃尽", + ideal: "理想", + current: "当前", + labels: "标签", + }, + upcoming_cycle: { + label: "即将到来的周期", + }, + completed_cycle: { + label: "已完成的周期", + }, + status: { + days_left: "剩余天数", + completed: "已完成", + yet_to_start: "尚未开始", + in_progress: "进行中", + draft: "草稿", + }, + action: { + restore: { + title: "恢复周期", + success: { + title: "周期已恢复", + description: "周期已被恢复。", + }, + failed: { + title: "周期恢复失败", + description: "无法恢复周期。请重试。", + }, + }, + favorite: { + loading: "正在将周期添加到收藏", + success: { + description: "周期已添加到收藏。", + title: "成功!", + }, + failed: { + description: "无法将周期添加到收藏。请重试。", + title: "错误!", + }, + }, + unfavorite: { + loading: "正在从收藏中移除周期", + success: { + description: "周期已从收藏中移除。", + title: "成功!", + }, + failed: { + description: "无法从收藏中移除周期。请重试。", + title: "错误!", + }, + }, + update: { + loading: "正在更新周期", + success: { + description: "周期更新成功。", + title: "成功!", + }, + failed: { + description: "更新周期时出错。请重试。", + title: "错误!", + }, + error: { + already_exists: "在给定日期范围内已存在周期,如果您想创建草稿周期,可以通过移除两个日期来实现。", + }, + }, + }, + empty_state: { + general: { + title: "在周期中分组和时间框定您的工作。", + description: "将工作按时间框分解,从项目截止日期倒推设置日期,并作为团队取得切实的进展。", + primary_button: { + text: "设置您的第一个周期", + comic: { + title: "周期是重复的时间框。", + description: "冲刺、迭代或您用于每周或每两周跟踪工作的任何其他术语都是一个周期。", + }, + }, + }, + no_issues: { + title: "尚未向周期添加工作项", + description: "添加或创建您希望在此周期内时间框定和交付的工作项", + primary_button: { + text: "创建新工作项", + }, + secondary_button: { + text: "添加现有工作项", + }, + }, + completed_no_issues: { + title: "周期中没有工作项", + description: "周期中没有工作项。工作项已被转移或隐藏。要查看隐藏的工作项(如果有),请相应更新您的显示属性。", + }, + active: { + title: "没有活动周期", + description: "活动周期包括其范围内包含今天日期的任何时期。在这里查找活动周期的进度和详细信息。", + }, + archived: { + title: "尚无已归档的周期", + description: "为了整理您的项目,归档已完成的周期。归档后可以在这里找到它们。", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "创建工作项并将其分配给某人,甚至是您自己", + description: + "将工作项视为工作、任务或待完成的工作。工作项及其子工作项通常是基于时间的、分配给团队成员的可执行项。您的团队通过创建、分配和完成工作项来推动项目实现其目标。", + primary_button: { + text: "创建您的第一个工作项", + comic: { + title: "工作项是 Plane 中的基本构建块。", + description: "重新设计 Plane 界面、重塑公司品牌或启动新的燃料喷射系统都是可能包含子工作项的工作项示例。", + }, + }, + }, + no_archived_issues: { + title: "尚无已归档的工作项", + description: "通过手动或自动化方式,您可以归档已完成或已取消的工作项。归档后可以在这里找到它们。", + primary_button: { + text: "设置自动化", + }, + }, + issues_empty_filter: { + title: "未找到符合筛选条件的工作项", + secondary_button: { + text: "清除所有筛选条件", + }, + }, + }, + }, + project_module: { + add_module: "添加模块", + update_module: "更新模块", + create_module: "创建模块", + archive_module: "归档模块", + restore_module: "恢复模块", + delete_module: "删除模块", + empty_state: { + general: { + title: "将项目里程碑映射到模块,轻松跟踪汇总工作。", + description: + "属于逻辑层次结构父级的一组工作项形成一个模块。将其视为按项目里程碑跟踪工作的方式。它们有自己的周期和截止日期以及分析功能,帮助您了解距离里程碑的远近。", + primary_button: { + text: "构建您的第一个模块", + comic: { + title: "模块帮助按层次结构对工作进行分组。", + description: "购物车模块、底盘模块和仓库模块都是这种分组的好例子。", + }, + }, + }, + no_issues: { + title: "模块中没有工作项", + description: "创建或添加您想作为此模块一部分完成的工作项", + primary_button: { + text: "创建新工作项", + }, + secondary_button: { + text: "添加现有工作项", + }, + }, + archived: { + title: "尚无已归档的模块", + description: "为了整理您的项目,归档已完成或已取消的模块。归档后可以在这里找到它们。", + }, + sidebar: { + in_active: "此模块尚未激活。", + invalid_date: "日期无效。请输入有效日期。", + }, + }, + quick_actions: { + archive_module: "归档模块", + archive_module_description: "只有已完成或已取消的\n模块可以归档。", + delete_module: "删除模块", + }, + toast: { + copy: { + success: "模块链接已复制到剪贴板", + }, + delete: { + success: "模块删除成功", + error: "删除模块失败", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "为您的项目保存筛选视图。根据需要创建任意数量", + description: + "视图是您经常使用或想要轻松访问的一组已保存的筛选条件。项目中的所有同事都可以看到每个人的视图,并选择最适合他们需求的视图。", + primary_button: { + text: "创建您的第一个视图", + comic: { + title: "视图基于工作项属性运作。", + description: "您可以在此处创建一个视图,根据需要使用任意数量的属性作为筛选条件。", + }, + }, + }, + filter: { + title: "没有匹配的视图", + description: "没有符合搜索条件的视图。\n创建一个新视图。", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "写笔记、文档或完整的知识库。让 Plane 的 AI 助手 Galileo 帮助您开始", + description: + "页面是 Plane 中的思维记录空间。记录会议笔记,轻松格式化,嵌入工作项,使用组件库进行布局,并将它们全部保存在项目上下文中。要快速完成任何文档,可以通过快捷键或点击按钮调用 Plane 的 AI Galileo。", + primary_button: { + text: "创建您的第一个页面", + }, + }, + private: { + title: "尚无私人页面", + description: "在这里保存您的私人想法。准备好分享时,团队就在一键之遥。", + primary_button: { + text: "创建您的第一个页面", + }, + }, + public: { + title: "尚无公共页面", + description: "在这里查看与项目中所有人共享的页面。", + primary_button: { + text: "创建您的第一个页面", + }, + }, + archived: { + title: "尚无已归档的页面", + description: "归档不在您关注范围内的页面。需要时可以在这里访问它们。", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "未找到结果", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "未找到匹配的工作项", + }, + no_issues: { + title: "未找到工作项", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "尚无评论", + description: "评论可用作工作项的讨论和跟进空间", + }, + }, + }, + notification: { + label: "收件箱", + page_label: "{workspace} - 收件箱", + options: { + mark_all_as_read: "全部标记为已读", + mark_read: "标记为已读", + mark_unread: "标记为未读", + refresh: "刷新", + filters: "收件箱筛选", + show_unread: "显示未读", + show_snoozed: "显示已暂停", + show_archived: "显示已归档", + mark_archive: "归档", + mark_unarchive: "取消归档", + mark_snooze: "暂停", + mark_unsnooze: "取消暂停", + }, + toasts: { + read: "通知已标记为已读", + unread: "通知已标记为未读", + archived: "通知已标记为已归档", + unarchived: "通知已标记为未归档", + snoozed: "通知已暂停", + unsnoozed: "通知已取消暂停", + }, + empty_state: { + detail: { + title: "选择以查看详情。", + }, + all: { + title: "没有分配的工作项", + description: "在这里可以看到分配给您的工作项的更新", + }, + mentions: { + title: "没有分配的工作项", + description: "在这里可以看到分配给您的工作项的更新", + }, + }, + tabs: { + all: "全部", + mentions: "提及", + }, + filter: { + assigned: "分配给我", + created: "由我创建", + subscribed: "由我订阅", + }, + snooze: { + "1_day": "1 天", + "3_days": "3 天", + "5_days": "5 天", + "1_week": "1 周", + "2_weeks": "2 周", + custom: "自定义", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "向周期添加工作项以查看其进度", + }, + chart: { + title: "向周期添加工作项以查看燃尽图。", + }, + priority_issue: { + title: "一目了然地观察周期中处理的高优先级工作项。", + }, + assignee: { + title: "为工作项添加负责人以查看按负责人划分的工作明细。", + }, + label: { + title: "为工作项添加标签以查看按标签划分的工作明细。", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "项目未启用收集功能。", + description: + "收集功能帮助您管理项目的传入请求,并将其添加为工作流中的工作项。从项目设置启用收集功能以管理请求。", + primary_button: { + text: "管理功能", + }, + }, + cycle: { + title: "此项目未启用周期功能。", + description: + "按时间框将工作分解,从项目截止日期倒推设置日期,并作为团队取得切实的进展。为您的项目启用周期功能以开始使用它们。", + primary_button: { + text: "管理功能", + }, + }, + module: { + title: "项目未启用模块功能。", + description: "模块是项目的基本构建块。从项目设置启用模块以开始使用它们。", + primary_button: { + text: "管理功能", + }, + }, + page: { + title: "项目未启用页面功能。", + description: "页面是项目的基本构建块。从项目设置启用页面以开始使用它们。", + primary_button: { + text: "管理功能", + }, + }, + view: { + title: "项目未启用视图功能。", + description: "视图是项目的基本构建块。从项目设置启用视图以开始使用它们。", + primary_button: { + text: "管理功能", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "起草工作项", + empty_state: { + title: "半写的工作项,以及即将推出的评论将在这里显示。", + description: "要试用此功能,请开始添加工作项并中途离开,或在下方创建您的第一个草稿。😉", + primary_button: { + text: "创建您的第一个草稿", + }, + }, + delete_modal: { + title: "删除草稿", + description: "您确定要删除此草稿吗?此操作无法撤消。", + }, + toasts: { + created: { + success: "草稿已创建", + error: "无法创建工作项。请重试。", + }, + deleted: { + success: "草稿已删除", + }, + }, + }, + stickies: { + title: "您的便签", + placeholder: "点击此处输入", + all: "所有便签", + "no-data": "记下一个想法,捕捉一个灵感,或记录一个突发奇想。添加便签开始使用。", + add: "添加便签", + search_placeholder: "按标题搜索", + delete: "删除便签", + delete_confirmation: "您确定要删除此便签吗?", + empty_state: { + simple: "记下一个想法,捕捉一个灵感,或记录一个突发奇想。添加便签开始使用。", + general: { + title: "便签是您随手记下的快速笔记和待办事项。", + description: "通过创建随时随地都可以访问的便签,轻松捕捉您的想法和创意。", + primary_button: { + text: "添加便签", + }, + }, + search: { + title: "这与您的任何便签都不匹配。", + description: "尝试使用不同的术语,或如果您确定\n搜索是正确的,请告诉我们。", + primary_button: { + text: "添加便签", + }, + }, + }, + toasts: { + errors: { + wrong_name: "便签名称不能超过100个字符。", + already_exists: "已存在一个没有描述的便签", + }, + created: { + title: "便签已创建", + message: "便签已成功创建", + }, + not_created: { + title: "便签未创建", + message: "无法创建便签", + }, + updated: { + title: "便签已更新", + message: "便签已成功更新", + }, + not_updated: { + title: "便签未更新", + message: "无法更新便签", + }, + removed: { + title: "便签已移除", + message: "便签已成功移除", + }, + not_removed: { + title: "便签未移除", + message: "无法移除便签", + }, + }, + }, + role_details: { + guest: { + title: "访客", + description: "组织的外部成员可以被邀请为访客。", + }, + member: { + title: "成员", + description: "可以在项目、周期和模块内读取、写入、编辑和删除实体", + }, + admin: { + title: "管理员", + description: "在工作区内所有权限均设置为允许。", + }, + }, + user_roles: { + product_or_project_manager: "产品/项目经理", + development_or_engineering: "开发/工程", + founder_or_executive: "创始人/高管", + freelancer_or_consultant: "自由职业者/顾问", + marketing_or_growth: "市场/增长", + sales_or_business_development: "销售/业务发展", + support_or_operations: "支持/运营", + student_or_professor: "学生/教授", + human_resources: "人力资源", + other: "其他", + }, + importer: { + github: { + title: "GitHub", + description: "从 GitHub 仓库导入工作项并同步。", + }, + jira: { + title: "Jira", + description: "从 Jira 项目和史诗导入工作项和史诗。", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "将工作项导出为 CSV 文件。", + short_description: "导出为 CSV", + }, + excel: { + title: "Excel", + description: "将工作项导出为 Excel 文件。", + short_description: "导出为 Excel", + }, + xlsx: { + title: "Excel", + description: "将工作项导出为 Excel 文件。", + short_description: "导出为 Excel", + }, + json: { + title: "JSON", + description: "将工作项导出为 JSON 文件。", + short_description: "导出为 JSON", + }, + }, + default_global_view: { + all_issues: "所有工作项", + assigned: "已分配", + created: "已创建", + subscribed: "已订阅", + }, + themes: { + theme_options: { + system_preference: { + label: "系统偏好", + }, + light: { + label: "浅色", + }, + dark: { + label: "深色", + }, + light_contrast: { + label: "浅色高对比度", + }, + dark_contrast: { + label: "深色高对比度", + }, + custom: { + label: "自定义主题", + }, + }, + }, + project_modules: { + status: { + backlog: "待办", + planned: "已计划", + in_progress: "进行中", + paused: "已暂停", + completed: "已完成", + cancelled: "已取消", + }, + layout: { + list: "列表布局", + board: "画廊布局", + timeline: "时间线布局", + }, + order_by: { + name: "名称", + progress: "进度", + issues: "工作项数量", + due_date: "截止日期", + created_at: "创建日期", + manual: "手动", + }, + }, + cycle: { + label: "{count, plural, one {周期} other {周期}}", + no_cycle: "无周期", + }, + module: { + label: "{count, plural, one {模块} other {模块}}", + no_module: "无模块", + }, + description_versions: { + last_edited_by: "最后编辑者", + previously_edited_by: "之前编辑者", + edited_by: "编辑者", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane 未能启动。这可能是因为一个或多个 Plane 服务启动失败。", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: + "请选择“查看日志”来查看 setup.sh 和 Docker 日志,以确认问题。", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "大纲", + empty_state: { + title: "缺少标题", + description: "让我们在这个页面添加一些标题来在这里查看它们。", + }, + }, + info: { + label: "信息", + document_info: { + words: "字数", + characters: "字符数", + paragraphs: "段落数", + read_time: "阅读时间", + }, + actors_info: { + edited_by: "编辑者", + created_by: "创建者", + }, + version_history: { + label: "版本历史", + current_version: "当前版本", + }, + }, + assets: { + label: "资源", + download_button: "下载", + empty_state: { + title: "缺少图片", + description: "添加图片以在这里查看它们。", + }, + }, + }, + open_button: "打开导航面板", + close_button: "关闭导航面板", + outline_floating_button: "打开大纲", + }, +} as const; diff --git a/packages/i18n/src/locales/zh-TW/accessibility.json b/packages/i18n/src/locales/zh-TW/accessibility.json deleted file mode 100644 index 75747f8612..0000000000 --- a/packages/i18n/src/locales/zh-TW/accessibility.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "aria_labels": { - "projects_sidebar": { - "workspace_logo": "工作空間標誌", - "open_workspace_switcher": "打開工作空間切換器", - "open_user_menu": "打開用戶選單", - "open_command_palette": "打開命令面板", - "open_extended_sidebar": "打開擴展側邊欄", - "close_extended_sidebar": "關閉擴展側邊欄", - "create_favorites_folder": "創建收藏夾文件夾", - "open_folder": "打開文件夾", - "close_folder": "關閉文件夾", - "open_favorites_menu": "打開收藏夾選單", - "close_favorites_menu": "關閉收藏夾選單", - "enter_folder_name": "輸入文件夾名稱", - "create_new_project": "創建新項目", - "open_projects_menu": "打開項目選單", - "close_projects_menu": "關閉項目選單", - "toggle_quick_actions_menu": "切換快速操作選單", - "open_project_menu": "打開項目選單", - "close_project_menu": "關閉項目選單", - "collapse_sidebar": "摺疊側邊欄", - "expand_sidebar": "展開側邊欄", - "edition_badge": "打開付費計劃模態框" - }, - "auth_forms": { - "clear_email": "清除電子郵件", - "show_password": "顯示密碼", - "hide_password": "隱藏密碼", - "close_alert": "關閉警告", - "close_popover": "關閉彈出框" - } - } -} diff --git a/packages/i18n/src/locales/zh-TW/accessibility.ts b/packages/i18n/src/locales/zh-TW/accessibility.ts new file mode 100644 index 0000000000..4f8999f009 --- /dev/null +++ b/packages/i18n/src/locales/zh-TW/accessibility.ts @@ -0,0 +1,34 @@ +export default { + aria_labels: { + projects_sidebar: { + workspace_logo: "工作空間標誌", + open_workspace_switcher: "打開工作空間切換器", + open_user_menu: "打開用戶選單", + open_command_palette: "打開命令面板", + open_extended_sidebar: "打開擴展側邊欄", + close_extended_sidebar: "關閉擴展側邊欄", + create_favorites_folder: "創建收藏夾文件夾", + open_folder: "打開文件夾", + close_folder: "關閉文件夾", + open_favorites_menu: "打開收藏夾選單", + close_favorites_menu: "關閉收藏夾選單", + enter_folder_name: "輸入文件夾名稱", + create_new_project: "創建新項目", + open_projects_menu: "打開項目選單", + close_projects_menu: "關閉項目選單", + toggle_quick_actions_menu: "切換快速操作選單", + open_project_menu: "打開項目選單", + close_project_menu: "關閉項目選單", + collapse_sidebar: "摺疊側邊欄", + expand_sidebar: "展開側邊欄", + edition_badge: "打開付費計劃模態框", + }, + auth_forms: { + clear_email: "清除電子郵件", + show_password: "顯示密碼", + hide_password: "隱藏密碼", + close_alert: "關閉警告", + close_popover: "關閉彈出框", + }, + }, +} as const; diff --git a/packages/i18n/src/locales/zh-TW/editor.json b/packages/i18n/src/locales/zh-TW/editor.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/packages/i18n/src/locales/zh-TW/editor.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/packages/i18n/src/locales/zh-TW/editor.ts b/packages/i18n/src/locales/zh-TW/editor.ts new file mode 100644 index 0000000000..927e1a9f2f --- /dev/null +++ b/packages/i18n/src/locales/zh-TW/editor.ts @@ -0,0 +1 @@ +export default {} as const; diff --git a/packages/i18n/src/locales/zh-TW/translations.json b/packages/i18n/src/locales/zh-TW/translations.json deleted file mode 100644 index 0b7273b326..0000000000 --- a/packages/i18n/src/locales/zh-TW/translations.json +++ /dev/null @@ -1,2535 +0,0 @@ -{ - "sidebar": { - "projects": "專案", - "pages": "頁面", - "new_work_item": "新工作項目", - "home": "首頁", - "your_work": "你的工作", - "inbox": "收件匣", - "workspace": "工作區", - "views": "視圖", - "analytics": "分析", - "work_items": "工作項目", - "cycles": "週期", - "modules": "模組", - "intake": "接收", - "drafts": "草稿", - "favorites": "收藏", - "pro": "專業版", - "upgrade": "升級" - }, - "auth": { - "common": { - "email": { - "label": "電子郵件", - "placeholder": "name@company.com", - "errors": { - "required": "必須填寫電子郵件", - "invalid": "電子郵件無效" - } - }, - "password": { - "label": "密碼", - "set_password": "設定密碼", - "placeholder": "輸入密碼", - "confirm_password": { - "label": "確認密碼", - "placeholder": "確認密碼" - }, - "current_password": { - "label": "目前密碼" - }, - "new_password": { - "label": "新密碼", - "placeholder": "輸入新密碼" - }, - "change_password": { - "label": { - "default": "更改密碼", - "submitting": "正在更改密碼" - } - }, - "errors": { - "match": "密碼不匹配", - "empty": "請輸入密碼", - "length": "密碼長度應超過8個字符", - "strength": { - "weak": "密碼強度弱", - "strong": "密碼強度強" - } - }, - "submit": "設定密碼", - "toast": { - "change_password": { - "success": { - "title": "成功!", - "message": "密碼已成功更改。" - }, - "error": { - "title": "錯誤!", - "message": "出現問題。請重試。" - } - } - } - }, - "unique_code": { - "label": "唯一代碼", - "placeholder": "gets-sets-flys", - "paste_code": "貼上傳送到您電子郵件的代碼", - "requesting_new_code": "正在請求新代碼", - "sending_code": "正在發送代碼" - }, - "already_have_an_account": "已有帳戶?", - "login": "登入", - "create_account": "創建帳戶", - "new_to_plane": "初次使用Plane?", - "back_to_sign_in": "返回登入", - "resend_in": "{seconds}秒後重新發送", - "sign_in_with_unique_code": "使用唯一代碼登入", - "forgot_password": "忘記密碼?" - }, - "sign_up": { - "header": { - "label": "創建帳戶開始與團隊一起管理工作。", - "step": { - "email": { - "header": "註冊", - "sub_header": "" - }, - "password": { - "header": "註冊", - "sub_header": "使用電子郵件-密碼組合註冊。" - }, - "unique_code": { - "header": "註冊", - "sub_header": "使用發送到上述電子郵件的唯一代碼註冊。" - } - } - }, - "errors": { - "password": { - "strength": "請設定強密碼以繼續" - } - } - }, - "sign_in": { - "header": { - "label": "登入開始與團隊一起管理工作。", - "step": { - "email": { - "header": "登入或註冊", - "sub_header": "" - }, - "password": { - "header": "登入或註冊", - "sub_header": "使用您的電子郵件-密碼組合登入。" - }, - "unique_code": { - "header": "登入或註冊", - "sub_header": "使用發送到上述電子郵件地址的唯一代碼登入。" - } - } - } - }, - "forgot_password": { - "title": "重設密碼", - "description": "輸入您的用戶帳戶已驗證的電子郵件地址,我們將向您發送密碼重設連結。", - "email_sent": "我們已將重設連結發送到您的電子郵件地址", - "send_reset_link": "發送重設連結", - "errors": { - "smtp_not_enabled": "我們發現您的管理員尚未啟用SMTP,我們將無法發送密碼重設連結" - }, - "toast": { - "success": { - "title": "郵件已發送", - "message": "請查看您的收件箱以獲取重設密碼的連結。如果幾分鐘內未收到,請檢查垃圾郵件文件夾。" - }, - "error": { - "title": "錯誤!", - "message": "出現問題。請重試。" - } - } - }, - "reset_password": { - "title": "設定新密碼", - "description": "使用強密碼保護您的帳戶" - }, - "set_password": { - "title": "保護您的帳戶", - "description": "設定密碼有助於您安全登入" - }, - "sign_out": { - "toast": { - "error": { - "title": "錯誤!", - "message": "登出失敗。請重試。" - } - } - } - }, - "submit": "送出", - "cancel": "取消", - "loading": "載入中", - "error": "錯誤", - "success": "成功", - "warning": "警告", - "info": "資訊", - "close": "關閉", - "yes": "是", - "no": "否", - "ok": "確定", - "name": "名稱", - "description": "描述", - "search": "搜尋", - "add_member": "新增成員", - "adding_members": "新增成員中", - "remove_member": "移除成員", - "add_members": "新增成員", - "adding_member": "新增成員中", - "remove_members": "移除成員", - "add": "新增", - "adding": "新增中", - "remove": "移除", - "add_new": "新增", - "remove_selected": "移除已選取項目", - "first_name": "名字", - "last_name": "姓氏", - "email": "電子郵件", - "display_name": "顯示名稱", - "role": "角色", - "timezone": "時區", - "avatar": "大頭貼", - "cover_image": "封面圖片", - "password": "密碼", - "change_cover": "更換封面", - "language": "語言", - "saving": "儲存中", - "save_changes": "儲存變更", - "deactivate_account": "停用帳號", - "deactivate_account_description": "停用帳號時,該帳號內的所有資料和資源將被永久移除,且無法復原。", - "profile_settings": "個人資料設定", - "your_account": "您的帳號", - "security": "安全性", - "activity": "活動", - "appearance": "外觀", - "notifications": "通知", - "workspaces": "工作區", - "create_workspace": "建立工作區", - "invitations": "邀請", - "summary": "摘要", - "assigned": "已指派", - "created": "已建立", - "subscribed": "已訂閱", - "you_do_not_have_the_permission_to_access_this_page": "您沒有權限存取此頁面。", - "something_went_wrong_please_try_again": "發生錯誤,請再試一次。", - "load_more": "載入更多", - "select_or_customize_your_interface_color_scheme": "選擇或自訂您的介面配色方案。", - "theme": "主題", - "system_preference": "系統偏好設定", - "light": "淺色", - "dark": "深色", - "light_contrast": "高對比淺色", - "dark_contrast": "高對比深色", - "custom": "自訂主題", - "select_your_theme": "選擇您的主題", - "customize_your_theme": "自訂您的主題", - "background_color": "背景顏色", - "text_color": "文字顏色", - "primary_color": "主要 (主題) 顏色", - "sidebar_background_color": "側邊欄背景顏色", - "sidebar_text_color": "側邊欄文字顏色", - "set_theme": "設定主題", - "enter_a_valid_hex_code_of_6_characters": "請輸入有效的 6 位數十六進位色碼", - "background_color_is_required": "背景顏色為必填", - "text_color_is_required": "文字顏色為必填", - "primary_color_is_required": "主要顏色為必填", - "sidebar_background_color_is_required": "側邊欄背景顏色為必填", - "sidebar_text_color_is_required": "側邊欄文字顏色為必填", - "updating_theme": "更新主題中", - "theme_updated_successfully": "主題更新成功", - "failed_to_update_the_theme": "主題更新失敗", - "email_notifications": "電子郵件通知", - "stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified": "持續追蹤您訂閱的工作事項。啟用此功能以接收通知。", - "email_notification_setting_updated_successfully": "電子郵件通知設定更新成功", - "failed_to_update_email_notification_setting": "電子郵件通知設定更新失敗", - "notify_me_when": "在以下情況通知我", - "property_changes": "屬性變更", - "property_changes_description": "當工作事項的屬性 (如:指派對象、優先順序、評估等) 發生變更時通知我。", - "state_change": "狀態變更", - "state_change_description": "當工作事項狀態變更時通知我", - "issue_completed": "工作事項完成", - "issue_completed_description": "僅在工作事項完成時通知我", - "comments": "留言", - "comments_description": "當有人在工作事項上留下留言時通知我", - "mentions": "提及", - "mentions_description": "僅在有人在留言或描述中提及我時通知我", - "old_password": "舊密碼", - "general_settings": "一般設定", - "sign_out": "登出", - "signing_out": "登出中", - "active_cycles": "進行中的週期", - "active_cycles_description": "監控跨專案的週期、追蹤高優先順序工作事項,並關注需要注意的週期。", - "on_demand_snapshots_of_all_your_cycles": "依需求檢視所有週期的快照", - "upgrade": "升級", - "10000_feet_view": "俯瞰所有進行中的週期。", - "10000_feet_view_description": "一次檢視所有專案的進行中週期,不需逐一檢視每個專案的週期。", - "get_snapshot_of_each_active_cycle": "取得每個進行中週期的快照。", - "get_snapshot_of_each_active_cycle_description": "追蹤所有進行中週期的高階指標,檢視其進度狀態,並根據期限衡量範圍。", - "compare_burndowns": "比較燃盡圖。", - "compare_burndowns_description": "透過檢視每個週期的燃盡報告來監控每個團隊的表現。", - "quickly_see_make_or_break_issues": "快速檢視關鍵工作事項。", - "quickly_see_make_or_break_issues_description": "預覽每個週期中相對於截止日期的高優先順序工作事項。一鍵檢視每個週期的所有工作事項。", - "zoom_into_cycles_that_need_attention": "關注需要注意的週期。", - "zoom_into_cycles_that_need_attention_description": "一鍵調查任何不符合預期的週期狀態。", - "stay_ahead_of_blockers": "預防阻礙。", - "stay_ahead_of_blockers_description": "發現跨專案的挑戰,並檢視其他檢視無法明顯看出的週期間相依性。", - "analytics": "分析", - "workspace_invites": "工作區邀請", - "enter_god_mode": "進入管理員模式", - "workspace_logo": "工作區標誌", - "new_issue": "新增工作事項", - "your_work": "您的工作", - "drafts": "草稿", - "projects": "專案", - "views": "檢視", - "workspace": "工作區", - "archives": "封存", - "settings": "設定", - "failed_to_move_favorite": "無法移動我的最愛", - "favorites": "我的最愛", - "no_favorites_yet": "尚無我的最愛", - "create_folder": "建立資料夾", - "new_folder": "新資料夾", - "favorite_updated_successfully": "我的最愛更新成功", - "favorite_created_successfully": "我的最愛建立成功", - "folder_already_exists": "資料夾已存在", - "folder_name_cannot_be_empty": "資料夾名稱不能為空", - "something_went_wrong": "發生錯誤", - "failed_to_reorder_favorite": "無法重新排序我的最愛", - "favorite_removed_successfully": "我的最愛移除成功", - "failed_to_create_favorite": "無法建立我的最愛", - "failed_to_rename_favorite": "無法重新命名我的最愛", - "project_link_copied_to_clipboard": "專案連結已複製到剪貼簿", - "link_copied": "連結已複製", - "add_project": "新增專案", - "create_project": "建立專案", - "failed_to_remove_project_from_favorites": "無法從我的最愛移除專案。請再試一次。", - "project_created_successfully": "專案建立成功", - "project_created_successfully_description": "專案建立成功。您現在可以開始新增工作事項。", - "project_name_already_taken": "專案名稱已被使用。", - "project_identifier_already_taken": "專案識別碼已被使用。", - "project_cover_image_alt": "專案封面圖片", - "name_is_required": "名稱為必填", - "title_should_be_less_than_255_characters": "標題不應超過 255 個字元", - "project_name": "專案名稱", - "project_id_must_be_at_least_1_character": "專案 ID 至少必須有 1 個字元", - "project_id_must_be_at_most_5_characters": "專案 ID 最多只能有 5 個字元", - "project_id": "專案 ID", - "project_id_tooltip_content": "協助您唯一識別專案中的工作事項。最多 5 個字元。", - "description_placeholder": "描述", - "only_alphanumeric_non_latin_characters_allowed": "僅允許英數字元和非拉丁字元。", - "project_id_is_required": "專案 ID 為必填", - "project_id_allowed_char": "僅允許英數字元和非拉丁字元。", - "project_id_min_char": "專案 ID 至少必須有 1 個字元", - "project_id_max_char": "專案 ID 最多只能有 5 個字元", - "project_description_placeholder": "輸入專案描述", - "select_network": "選擇網路", - "lead": "負責人", - "date_range": "日期範圍", - "private": "私人", - "public": "公開", - "accessible_only_by_invite": "僅受邀者可存取", - "anyone_in_the_workspace_except_guests_can_join": "工作區中除了訪客以外的任何人都可以加入", - "creating": "建立中", - "creating_project": "建立專案中", - "adding_project_to_favorites": "將專案加入我的最愛", - "project_added_to_favorites": "專案已加入我的最愛", - "couldnt_add_the_project_to_favorites": "無法將專案加入我的最愛。請再試一次。", - "removing_project_from_favorites": "從我的最愛移除專案中", - "project_removed_from_favorites": "專案已從我的最愛移除", - "couldnt_remove_the_project_from_favorites": "無法從我的最愛移除專案。請再試一次。", - "add_to_favorites": "加入我的最愛", - "remove_from_favorites": "從我的最愛移除", - "publish_project": "發佈專案", - "publish": "發布", - "copy_link": "複製連結", - "leave_project": "離開專案", - "join_the_project_to_rearrange": "加入專案以重新排列", - "drag_to_rearrange": "拖曳以重新排列", - "congrats": "恭喜!", - "open_project": "開啟專案", - "issues": "工作事項", - "cycles": "週期", - "modules": "模組", - "pages": "頁面", - "intake": "進件", - "time_tracking": "時間追蹤", - "work_management": "工作管理", - "projects_and_issues": "專案與工作事項", - "projects_and_issues_description": "為此專案開啟或關閉這些功能。", - "cycles_description": "為每個專案設定工作時間區段,並依需求調整週期。一個週期可以是兩週,下一個是一週。", - "modules_description": "將工作組織成子專案,並指派專屬的負責人與任務對象。", - "views_description": "儲存自訂排序、篩選和顯示選項,或與團隊分享。", - "pages_description": "建立與編輯自由格式內容:筆記、文件,任何內容皆可。", - "intake_description": "允許非成員分享錯誤、回饋和建議,而不會中斷您的工作流程。", - "time_tracking_description": "記錄在工作事項和專案上花費的時間。", - "work_management_description": "輕鬆管理您的工作和專案。", - "documentation": "文件", - "message_support": "聯絡支援", - "contact_sales": "聯絡業務", - "hyper_mode": "極速模式", - "keyboard_shortcuts": "鍵盤快速鍵", - "whats_new": "新功能", - "version": "版本", - "we_are_having_trouble_fetching_the_updates": "我們在取得更新時遇到問題。", - "our_changelogs": "我們的更新日誌", - "for_the_latest_updates": "以取得最新更新。", - "please_visit": "請造訪", - "docs": "文件", - "full_changelog": "完整更新日誌", - "support": "支援", - "discord": "Discord", - "powered_by_plane_pages": "由 Plane Pages 提供", - "please_select_at_least_one_invitation": "請至少選擇一個邀請。", - "please_select_at_least_one_invitation_description": "請至少選擇一個邀請加入工作區。", - "we_see_that_someone_has_invited_you_to_join_a_workspace": "我們發現有人邀請您加入工作區", - "join_a_workspace": "加入工作區", - "we_see_that_someone_has_invited_you_to_join_a_workspace_description": "我們發現有人邀請您加入工作區", - "join_a_workspace_description": "加入工作區", - "accept_and_join": "接受並加入", - "go_home": "回首頁", - "no_pending_invites": "沒有待處理的邀請", - "you_can_see_here_if_someone_invites_you_to_a_workspace": "如果有人邀請您加入工作區,您可以在此處檢視", - "back_to_home": "回到首頁", - "workspace_name": "工作區名稱", - "deactivate_your_account": "停用您的帳號", - "deactivate_your_account_description": "一旦停用,您將無法被指派工作事項,並且不會被收費。若要重新啟用帳號,您需要使用此電子郵件地址收到工作區的邀請。", - "deactivating": "停用中", - "confirm": "確認", - "confirming": "確認中", - "draft_created": "草稿已建立", - "issue_created_successfully": "工作事項建立成功", - "draft_creation_failed": "草稿建立失敗", - "issue_creation_failed": "工作事項建立失敗", - "draft_issue": "草稿工作事項", - "issue_updated_successfully": "工作事項更新成功", - "issue_could_not_be_updated": "工作事項無法更新", - "create_a_draft": "建立草稿", - "save_to_drafts": "儲存為草稿", - "save": "儲存", - "update": "更新", - "updating": "更新中", - "create_new_issue": "建立新工作事項", - "editor_is_not_ready_to_discard_changes": "編輯器尚未準備好捨棄變更", - "failed_to_move_issue_to_project": "無法將工作事項移至專案", - "create_more": "建立更多", - "add_to_project": "新增至專案", - "discard": "捨棄", - "duplicate_issue_found": "找到重複的工作事項", - "duplicate_issues_found": "找到重複的工作事項", - "no_matching_results": "沒有符合的結果", - "title_is_required": "標題為必填", - "title": "標題", - "state": "狀態", - "priority": "優先順序", - "none": "無", - "urgent": "緊急", - "high": "高", - "medium": "中", - "low": "低", - "members": "成員", - "assignee": "指派對象", - "assignees": "指派對象", - "you": "您", - "labels": "標籤", - "create_new_label": "建立新標籤", - "start_date": "開始日期", - "end_date": "結束日期", - "due_date": "截止日期", - "estimate": "評估", - "change_parent_issue": "變更父工作事項", - "remove_parent_issue": "移除父工作事項", - "add_parent": "新增上層", - "loading_members": "載入成員中", - "view_link_copied_to_clipboard": "檢視連結已複製到剪貼簿。", - "required": "必填", - "optional": "選填", - "Cancel": "取消", - "edit": "編輯", - "archive": "封存", - "restore": "還原", - "open_in_new_tab": "在新分頁中開啟", - "delete": "刪除", - "deleting": "刪除中", - "make_a_copy": "複製一份", - "move_to_project": "移至專案", - "good": "早安", - "morning": "早上", - "afternoon": "下午", - "evening": "晚上", - "show_all": "顯示全部", - "show_less": "顯示較少", - "no_data_yet": "尚無資料", - "syncing": "同步中", - "add_work_item": "新增工作事項", - "advanced_description_placeholder": "按 '/' 以使用指令", - "create_work_item": "建立工作事項", - "attachments": "附件", - "declining": "拒絕中", - "declined": "已拒絕", - "decline": "拒絕", - "unassigned": "未指派", - "work_items": "工作事項", - "add_link": "新增連結", - "points": "點數", - "no_assignee": "無指派對象", - "no_assignees_yet": "尚無指派對象", - "no_labels_yet": "尚無標籤", - "ideal": "理想", - "current": "目前", - "no_matching_members": "沒有符合的成員", - "leaving": "離開中", - "removing": "移除中", - "leave": "離開", - "refresh": "重新整理", - "refreshing": "重新整理中", - "refresh_status": "重新整理狀態", - "prev": "上一頁", - "next": "下一頁", - "re_generating": "重新產生中", - "re_generate": "重新產生", - "re_generate_key": "重新產生金鑰", - "export": "匯出", - "member": "{count, plural, one{# 位成員} other{# 位成員}}", - "new_password_must_be_different_from_old_password": "新密碼必須與舊密碼不同", - "edited": "已編輯", - "bot": "機器人", - "project_view": { - "sort_by": { - "created_at": "建立時間", - "updated_at": "更新時間", - "name": "名稱" - } - }, - "toast": { - "success": "成功!", - "error": "錯誤!" - }, - "links": { - "toasts": { - "created": { - "title": "連結已建立", - "message": "連結已成功建立" - }, - "not_created": { - "title": "連結未建立", - "message": "無法建立連結" - }, - "updated": { - "title": "連結已更新", - "message": "連結已成功更新" - }, - "not_updated": { - "title": "連結未更新", - "message": "無法更新連結" - }, - "removed": { - "title": "連結已移除", - "message": "連結已成功移除" - }, - "not_removed": { - "title": "連結未移除", - "message": "無法移除連結" - } - } - }, - "home": { - "empty": { - "quickstart_guide": "您的快速入門指南", - "not_right_now": "現在不要", - "create_project": { - "title": "建立專案", - "description": "Plane 中的大多數事情都始於一個專案。", - "cta": "開始使用" - }, - "invite_team": { - "title": "邀請您的團隊", - "description": "與同事一起建立、發佈和管理。", - "cta": "邀請他們" - }, - "configure_workspace": { - "title": "設定您的工作區。", - "description": "開啟或關閉功能,或進一步調整。", - "cta": "設定此工作區" - }, - "personalize_account": { - "title": "讓 Plane 成為您的。", - "description": "選擇您的圖片、配色及其他個人化設定。", - "cta": "立即個人化" - }, - "widgets": { - "title": "沒有小工具很安靜,開啟它們吧", - "description": "看起來您的所有小工具都已關閉。現在\n啟用它們以提升您的體驗!", - "primary_button": { - "text": "管理小工具" - } - } - }, - "quick_links": { - "empty": "儲存您想要隨手可得的工作連結。", - "add": "新增快速連結", - "title": "快速連結", - "title_plural": "快速連結" - }, - "recents": { - "title": "最近", - "empty": { - "project": "一旦您造訪專案,您的最近專案就會出現在這裡。", - "page": "一旦您造訪頁面,您的最近頁面就會出現在這裡。", - "issue": "一旦您造訪工作事項,您的最近工作事項就會出現在這裡。", - "default": "您還沒有任何最近項目。" - }, - "filters": { - "all": "所有", - "projects": "專案", - "pages": "頁面", - "issues": "工作事項" - } - }, - "new_at_plane": { - "title": "Plane 新功能" - }, - "quick_tutorial": { - "title": "快速教學" - }, - "widget": { - "reordered_successfully": "小工具重新排序成功。", - "reordering_failed": "重新排序小工具時發生錯誤。" - }, - "manage_widgets": "管理小工具", - "title": "首頁", - "star_us_on_github": "在 GitHub 上給我們星星" - }, - "link": { - "modal": { - "url": { - "text": "網址", - "required": "網址無效", - "placeholder": "輸入或貼上網址" - }, - "title": { - "text": "顯示標題", - "placeholder": "您希望如何顯示這個連結" - } - } - }, - "common": { - "all": "全部", - "states": "狀態", - "state": "狀態", - "state_groups": "狀態群組", - "state_group": "狀態群組", - "priorities": "優先順序", - "priority": "優先順序", - "team_project": "團隊專案", - "project": "專案", - "cycle": "週期", - "cycles": "週期", - "module": "模組", - "modules": "模組", - "labels": "標籤", - "label": "標籤", - "assignees": "指派對象", - "assignee": "指派對象", - "created_by": "建立者", - "none": "無", - "link": "連結", - "estimates": "評估", - "estimate": "評估", - "created_at": "建立於", - "completed_at": "完成於", - "layout": "版面配置", - "filters": "篩選器", - "display": "顯示", - "load_more": "載入更多", - "activity": "活動", - "analytics": "分析", - "dates": "日期", - "success": "成功!", - "something_went_wrong": "發生錯誤", - "error": { - "label": "錯誤!", - "message": "發生錯誤。請再試一次。" - }, - "group_by": "分組依據", - "epic": "Epic", - "epics": "Epic", - "work_item": "工作事項", - "work_items": "工作事項", - "sub_work_item": "子工作事項", - "add": "新增", - "warning": "警告", - "updating": "更新中", - "adding": "新增中", - "update": "更新", - "creating": "建立中", - "create": "建立", - "cancel": "取消", - "description": "描述", - "title": "標題", - "attachment": "附件", - "general": "一般", - "features": "功能", - "automation": "自動化", - "project_name": "專案名稱", - "project_id": "專案 ID", - "project_timezone": "專案時區", - "created_on": "建立於", - "update_project": "更新專案", - "identifier_already_exists": "識別碼已存在", - "add_more": "新增更多", - "defaults": "預設值", - "add_label": "新增標籤", - "customize_time_range": "自訂時間範圍", - "loading": "載入中", - "attachments": "附件", - "property": "屬性", - "properties": "屬性", - "parent": "上層", - "page": "頁面", - "remove": "移除", - "archiving": "封存中", - "archive": "封存", - "access": { - "public": "公開", - "private": "私人" - }, - "done": "完成", - "sub_work_items": "子工作事項", - "comment": "留言", - "workspace_level": "工作區層級", - "order_by": { - "label": "排序依據", - "manual": "手動", - "last_created": "最後建立", - "last_updated": "最後更新", - "start_date": "開始日期", - "due_date": "截止日期", - "asc": "遞增", - "desc": "遞減", - "updated_on": "更新於" - }, - "sort": { - "asc": "遞增", - "desc": "遞減", - "created_on": "建立於", - "updated_on": "更新於" - }, - "comments": "留言", - "updates": "更新", - "clear_all": "清除全部", - "copied": "已複製!", - "link_copied": "連結已複製!", - "link_copied_to_clipboard": "連結已複製到剪貼簿", - "copied_to_clipboard": "工作事項連結已複製到剪貼簿", - "is_copied_to_clipboard": "工作事項已複製到剪貼簿", - "no_links_added_yet": "尚未新增連結", - "add_link": "新增連結", - "links": "連結", - "go_to_workspace": "前往工作區", - "progress": "進度", - "optional": "選填", - "join": "加入", - "go_back": "返回", - "continue": "繼續", - "resend": "重新傳送", - "relations": "關聯", - "errors": { - "default": { - "title": "錯誤!", - "message": "發生錯誤。請再試一次。" - }, - "required": "此欄位為必填", - "entity_required": "{entity} 為必填", - "restricted_entity": "{entity}已被限制" - }, - "update_link": "更新連結", - "attach": "附加", - "create_new": "建立新的", - "add_existing": "新增現有的", - "type_or_paste_a_url": "輸入或貼上網址", - "url_is_invalid": "網址無效", - "display_title": "顯示標題", - "link_title_placeholder": "您希望如何顯示這個連結", - "url": "網址", - "side_peek": "側邊預覽", - "modal": "彈出視窗", - "full_screen": "全螢幕", - "close_peek_view": "關閉預覽檢視", - "toggle_peek_view_layout": "切換預覽檢視版面配置", - "options": "選項", - "duration": "時長", - "today": "今天", - "week": "週", - "month": "月", - "quarter": "季", - "press_for_commands": "按 '/' 以使用指令", - "click_to_add_description": "點選以新增描述", - "search": { - "label": "搜尋", - "placeholder": "輸入以搜尋", - "no_matches_found": "找不到符合的項目", - "no_matching_results": "沒有符合的結果" - }, - "actions": { - "edit": "編輯", - "make_a_copy": "複製一份", - "open_in_new_tab": "在新分頁中開啟", - "copy_link": "複製連結", - "archive": "封存", - "restore": "還原", - "delete": "刪除", - "remove_relation": "移除關聯", - "subscribe": "訂閱", - "unsubscribe": "取消訂閱", - "clear_sorting": "清除排序", - "show_weekends": "顯示週末", - "enable": "啟用", - "disable": "停用" - }, - "name": "名稱", - "discard": "捨棄", - "confirm": "確認", - "confirming": "確認中", - "read_the_docs": "閱讀文件", - "default": "預設", - "active": "使用中", - "enabled": "已啟用", - "disabled": "已停用", - "mandate": "授權", - "mandatory": "必要的", - "yes": "是", - "no": "否", - "please_wait": "請稍候", - "enabling": "啟用中", - "disabling": "停用中", - "beta": "測試版", - "or": "或", - "next": "下一步", - "back": "返回", - "cancelling": "取消中", - "configuring": "設定中", - "clear": "清除", - "import": "匯入", - "connect": "連線", - "authorizing": "授權中", - "processing": "處理中", - "no_data_available": "無可用資料", - "from": "來自 {name}", - "authenticated": "已認證", - "select": "選擇", - "upgrade": "升級", - "add_seats": "新增席位", - "projects": "專案", - "workspace": "工作區", - "workspaces": "工作區", - "team": "團隊", - "teams": "團隊", - "entity": "實體", - "entities": "實體", - "task": "任務", - "tasks": "任務", - "section": "區段", - "sections": "區段", - "edit": "編輯", - "connecting": "連線中", - "connected": "已連線", - "disconnect": "中斷連線", - "disconnecting": "中斷連線中", - "installing": "安裝中", - "install": "安裝", - "reset": "重設", - "live": "即時", - "change_history": "變更歷史記錄", - "coming_soon": "即將推出", - "member": "成員", - "members": "成員", - "you": "您", - "upgrade_cta": { - "higher_subscription": "升級至更高等級的訂閱方案", - "talk_to_sales": "聯絡業務" - }, - "category": "類別", - "categories": "類別", - "saving": "儲存中", - "save_changes": "儲存變更", - "delete": "刪除", - "deleting": "刪除中", - "pending": "待處理", - "invite": "邀請", - "view": "檢視", - "deactivated_user": "已停用用戶", - "apply": "應用", - "applying": "應用中", - "users": "使用者", - "admins": "管理員", - "guests": "訪客", - "on_track": "進展順利", - "off_track": "偏離軌道", - "timeline": "時間軸", - "completion": "完成", - "upcoming": "即將發生", - "completed": "已完成", - "in_progress": "進行中", - "planned": "已計劃", - "paused": "暫停", - "at_risk": "有風險", - "no_of": "{entity} 的數量", - "resolved": "已解決" - }, - "chart": { - "x_axis": "X 軸", - "y_axis": "Y 軸", - "metric": "指標" - }, - "form": { - "title": { - "required": "標題為必填", - "max_length": "標題不應超過 {length} 個字元" - } - }, - "entity": { - "grouping_title": "{entity} 分組", - "priority": "{entity} 優先順序", - "all": "所有 {entity}", - "drop_here_to_move": "拖曳到此處以移動 {entity}", - "delete": { - "label": "刪除 {entity}", - "success": "{entity} 刪除成功", - "failed": "{entity} 刪除失敗" - }, - "update": { - "failed": "{entity} 更新失敗", - "success": "{entity} 更新成功" - }, - "link_copied_to_clipboard": "{entity} 連結已複製到剪貼簿", - "fetch": { - "failed": "取得 {entity} 時發生錯誤" - }, - "add": { - "success": "{entity} 新增成功", - "failed": "新增 {entity} 時發生錯誤" - }, - "remove": { - "success": "{entity} 刪除成功", - "failed": "刪除 {entity} 時發生錯誤" - } - }, - "epic": { - "all": "所有 Epic", - "label": "{count, plural, one {Epic} other {Epic}}", - "new": "新 Epic", - "adding": "新增 Epic 中", - "create": { - "success": "Epic 建立成功" - }, - "add": { - "press_enter": "按 'Enter' 以新增另一個 Epic", - "label": "新增 Epic" - }, - "title": { - "label": "Epic 標題", - "required": "Epic 標題為必填。" - } - }, - "issue": { - "label": "{count, plural, one {工作事項} other {工作事項}}", - "all": "所有工作事項", - "edit": "編輯工作事項", - "title": { - "label": "工作事項標題", - "required": "工作事項標題為必填。" - }, - "add": { - "press_enter": "按 'Enter' 以新增另一個工作事項", - "label": "新增工作事項", - "cycle": { - "failed": "無法將工作事項新增到週期。請再試一次。", - "success": "{count, plural, one {工作事項} other {工作事項}} 已成功新增到週期。", - "loading": "正在將 {count, plural, one {工作事項} other {工作事項}} 新增到週期" - }, - "assignee": "新增指派對象", - "start_date": "新增開始日期", - "due_date": "新增截止日期", - "parent": "新增父工作事項", - "sub_issue": "新增子工作事項", - "relation": "新增關聯", - "link": "新增連結", - "existing": "新增現有工作事項" - }, - "remove": { - "label": "移除工作事項", - "cycle": { - "loading": "正在從週期移除工作事項", - "success": "已成功從週期移除工作事項。", - "failed": "無法從週期移除工作事項。請再試一次。" - }, - "module": { - "loading": "正在從模組移除工作事項", - "success": "已成功從模組移除工作事項。", - "failed": "無法從模組移除工作事項。請再試一次。" - }, - "parent": { - "label": "移除父工作事項" - } - }, - "new": "新工作事項", - "adding": "新增工作事項中", - "create": { - "success": "工作事項建立成功" - }, - "priority": { - "urgent": "緊急", - "high": "高", - "medium": "中", - "low": "低" - }, - "display": { - "properties": { - "label": "顯示屬性", - "id": "ID", - "issue_type": "工作事項類型", - "sub_issue_count": "子工作事項數量", - "attachment_count": "附件數量", - "created_on": "建立於", - "sub_issue": "子工作事項", - "work_item_count": "工作事項數量" - }, - "extra": { - "show_sub_issues": "顯示子工作事項", - "show_empty_groups": "顯示空群組" - } - }, - "layouts": { - "ordered_by_label": "此版面配置依據以下條件排序", - "list": "清單", - "kanban": "看板", - "calendar": "日曆", - "spreadsheet": "試算表", - "gantt": "甘特圖", - "title": { - "list": "清單版面配置", - "kanban": "看板版面配置", - "calendar": "日曆版面配置", - "spreadsheet": "試算表版面配置", - "gantt": "甘特圖版面配置" - } - }, - "states": { - "active": "使用中", - "backlog": "待辦事項" - }, - "comments": { - "placeholder": "新增留言", - "switch": { - "private": "切換為私人留言", - "public": "切換為公開留言" - }, - "create": { - "success": "留言建立成功", - "error": "留言建立失敗。請稍後再試。" - }, - "update": { - "success": "留言更新成功", - "error": "留言更新失敗。請稍後再試。" - }, - "remove": { - "success": "留言移除成功", - "error": "留言移除失敗。請稍後再試。" - }, - "upload": { - "error": "資產上傳失敗。請稍後再試。" - }, - "copy_link": { - "success": "評論連結已複製到剪貼簿", - "error": "複製評論連結時出錯。請稍後再試。" - } - }, - "empty_state": { - "issue_detail": { - "title": "工作事項不存在", - "description": "您尋找的工作事項不存在、已封存或已刪除。", - "primary_button": { - "text": "檢視其他工作事項" - } - } - }, - "sibling": { - "label": "同層級工作事項" - }, - "archive": { - "description": "只有已完成或取消的\n工作事項可以封存", - "label": "封存工作事項", - "confirm_message": "您確定要封存工作事項嗎?所有已封存的工作事項稍後都可以還原。", - "success": { - "label": "封存成功", - "message": "您的封存可以在專案封存中找到。" - }, - "failed": { - "message": "無法封存工作事項。請再試一次。" - } - }, - "restore": { - "success": { - "title": "還原成功", - "message": "您的工作事項可以在專案工作事項中找到。" - }, - "failed": { - "message": "無法還原工作事項。請再試一次。" - } - }, - "relation": { - "relates_to": "與此相關", - "duplicate": "此項重複", - "blocked_by": "被此阻礙", - "blocking": "阻礙此項" - }, - "copy_link": "複製工作事項連結", - "delete": { - "label": "刪除工作事項", - "error": "刪除工作事項時發生錯誤" - }, - "subscription": { - "actions": { - "subscribed": "已成功訂閱工作事項", - "unsubscribed": "已成功取消訂閱工作事項" - } - }, - "select": { - "error": "請至少選擇一個工作事項", - "empty": "未選擇工作事項", - "add_selected": "新增已選取的工作事項", - "select_all": "全選", - "deselect_all": "取消全選" - }, - "open_in_full_screen": "以全螢幕開啟工作事項" - }, - "attachment": { - "error": "無法附加檔案。請重新上傳。", - "only_one_file_allowed": "一次只能上傳一個檔案。", - "file_size_limit": "檔案大小必須小於或等於 {size}MB。", - "drag_and_drop": "拖曳到任何位置以上傳", - "delete": "刪除附件" - }, - "label": { - "select": "選擇標籤", - "create": { - "success": "標籤建立成功", - "failed": "標籤建立失敗", - "already_exists": "標籤已存在", - "type": "輸入以新增標籤" - } - }, - "sub_work_item": { - "update": { - "success": "子工作事項更新成功", - "error": "更新子工作事項時發生錯誤" - }, - "remove": { - "success": "子工作事項移除成功", - "error": "移除子工作事項時發生錯誤" - }, - "empty_state": { - "sub_list_filters": { - "title": "您沒有符合您應用過的過濾器的子工作事項。", - "description": "要查看所有子工作事項,請清除所有應用過的過濾器。", - "action": "清除過濾器" - }, - "list_filters": { - "title": "您沒有符合您應用過的過濾器的工作事項。", - "description": "要查看所有工作事項,請清除所有應用過的過濾器。", - "action": "清除過濾器" - } - } - }, - "view": { - "label": "{count, plural, one {檢視} other {檢視}}", - "create": { - "label": "建立檢視" - }, - "update": { - "label": "更新檢視" - } - }, - "inbox_issue": { - "status": { - "pending": { - "title": "待處理", - "description": "待處理" - }, - "declined": { - "title": "已拒絕", - "description": "已拒絕" - }, - "snoozed": { - "title": "已延後", - "description": "還剩 {days, plural, one{# 天} other{# 天}}" - }, - "accepted": { - "title": "已接受", - "description": "已接受" - }, - "duplicate": { - "title": "重複", - "description": "重複" - } - }, - "modals": { - "decline": { - "title": "拒絕工作事項", - "content": "您確定要拒絕工作事項 {value} 嗎?" - }, - "delete": { - "title": "刪除工作事項", - "content": "您確定要刪除工作事項 {value} 嗎?", - "success": "工作事項刪除成功" - } - }, - "errors": { - "snooze_permission": "只有專案管理員可以延後/取消延後工作事項", - "accept_permission": "只有專案管理員可以接受工作事項", - "decline_permission": "只有專案管理員可以拒絕工作事項" - }, - "actions": { - "accept": "接受", - "decline": "拒絕", - "snooze": "延後", - "unsnooze": "取消延後", - "copy": "複製工作事項連結", - "delete": "刪除", - "open": "開啟工作事項", - "mark_as_duplicate": "標記為重複", - "move": "將 {value} 移至專案工作事項" - }, - "source": { - "in-app": "應用程式內" - }, - "order_by": { - "created_at": "建立時間", - "updated_at": "更新時間", - "id": "ID" - }, - "label": "進件", - "page_label": "{workspace} - 進件", - "modal": { - "title": "建立進件工作事項" - }, - "tabs": { - "open": "開啟", - "closed": "已關閉" - }, - "empty_state": { - "sidebar_open_tab": { - "title": "沒有開啟的工作事項", - "description": "在這裡尋找開啟的工作事項。建立新工作事項。" - }, - "sidebar_closed_tab": { - "title": "沒有已關閉的工作事項", - "description": "所有已接受或拒絕的工作事項都可以在這裡找到。" - }, - "sidebar_filter": { - "title": "沒有符合的工作事項", - "description": "沒有工作事項符合進件中套用的篩選條件。建立新工作事項。" - }, - "detail": { - "title": "選擇工作事項以檢視其詳細資訊。" - } - } - }, - "workspace_creation": { - "heading": "建立您的工作區", - "subheading": "若要開始使用 Plane,您需要建立或加入工作區。", - "form": { - "name": { - "label": "為您的工作區命名", - "placeholder": "最好使用熟悉且容易識別的名稱。" - }, - "url": { - "label": "設定您的工作區網址", - "placeholder": "輸入或貼上網址", - "edit_slug": "您只能編輯網址的片段" - }, - "organization_size": { - "label": "有多少人會使用這個工作區?", - "placeholder": "選擇一個範圍" - } - }, - "errors": { - "creation_disabled": { - "title": "只有您的執行個體管理員可以建立工作區", - "description": "如果您知道您的執行個體管理員的電子郵件地址,請點選下方按鈕與他們聯絡。", - "request_button": "請求執行個體管理員" - }, - "validation": { - "name_alphanumeric": "工作區名稱只能包含 (' ')、('-')、('_') 和英數字元。", - "name_length": "名稱請限制在 80 個字元以內。", - "url_alphanumeric": "網址只能包含 ('-') 和英數字元。", - "url_length": "網址請限制在 48 個字元以內。", - "url_already_taken": "工作區網址已被使用!" - } - }, - "request_email": { - "subject": "請求新工作區", - "body": "您好,執行個體管理員:\n\n請以網址 [/workspace-name] 建立一個新工作區,用於 [建立工作區的目的]。\n\n謝謝,\n{firstName} {lastName}\n{email}" - }, - "button": { - "default": "建立工作區", - "loading": "建立工作區中" - }, - "toast": { - "success": { - "title": "成功", - "message": "工作區建立成功" - }, - "error": { - "title": "錯誤", - "message": "無法建立工作區。請再試一次。" - } - } - }, - "workspace_dashboard": { - "empty_state": { - "general": { - "title": "您的專案、活動和指標概覽", - "description": "歡迎使用 Plane,我們很高興您在這裡。建立您的第一個專案並追蹤您的工作事項,這個頁面將會變成一個協助您進展的空間。管理員也會看到協助他們團隊進展的項目。", - "primary_button": { - "text": "建立您的第一個專案", - "comic": { - "title": "在 Plane 中,一切都始於專案", - "description": "專案可以是產品的藍圖、行銷活動,或是推出新車。" - } - } - } - } - }, - "workspace_analytics": { - "label": "分析", - "page_label": "{workspace} - 分析", - "open_tasks": "開啟任務總數", - "error": "取得資料時發生錯誤。", - "work_items_closed_in": "已完成的工作事項數量在", - "selected_projects": "已選取的專案", - "total_members": "成員總數", - "total_cycles": "週期總數", - "total_modules": "模組總數", - "pending_work_items": { - "title": "待處理工作事項", - "empty_state": "在此顯示同事待處理工作事項的分析。" - }, - "work_items_closed_in_a_year": { - "title": "年度完成工作事項", - "empty_state": "完成工作事項以圖表形式檢視分析。" - }, - "most_work_items_created": { - "title": "最多工作事項建立者", - "empty_state": "在此顯示同事及其建立的工作事項數量。" - }, - "most_work_items_closed": { - "title": "最多工作事項完成者", - "empty_state": "在此顯示同事及其完成的工作事項數量。" - }, - "tabs": { - "scope_and_demand": "範圍與需求", - "custom": "自訂分析" - }, - "empty_state": { - "customized_insights": { - "description": "指派給您的工作項目將依狀態分類顯示在此處。", - "title": "尚無資料" - }, - "created_vs_resolved": { - "description": "隨著時間推移所建立與解決的工作項目將顯示在此處。", - "title": "尚無資料" - }, - "project_insights": { - "title": "尚無資料", - "description": "指派給您的工作項目將依狀態分類顯示在此處。" - }, - "general": { - "title": "追蹤進度、工作量和分配。發現趨勢,消除障礙,加速工作進展", - "description": "查看範圍與需求、估算和範圍蔓延。獲取團隊成員和團隊的績效,確保您的專案按時運行。", - "primary_button": { - "text": "開始您的第一個專案", - "comic": { - "title": "分析功能在週期 + 模組中效果最佳", - "description": "首先,將您的問題在週期中進行時間限制,如果可能的話,將跨越多個週期的問題分組到模組中。在左側導覽中查看這兩個功能。" - } - } - } - }, - "created_vs_resolved": "已建立 vs 已解決", - "customized_insights": "自訂化洞察", - "backlog_work_items": "待辦的{entity}", - "active_projects": "啟用中的專案", - "trend_on_charts": "圖表趨勢", - "all_projects": "所有專案", - "summary_of_projects": "專案摘要", - "project_insights": "專案洞察", - "started_work_items": "已開始的{entity}", - "total_work_items": "{entity}總數", - "total_projects": "專案總數", - "total_admins": "管理員總數", - "total_users": "使用者總數", - "total_intake": "總收入", - "un_started_work_items": "未開始的{entity}", - "total_guests": "訪客總數", - "completed_work_items": "已完成的{entity}", - "total": "{entity}總數" - }, - "workspace_projects": { - "label": "{count, plural, one {專案} other {專案}}", - "create": { - "label": "新增專案" - }, - "network": { - "label": "網路", - "private": { - "title": "私人", - "description": "僅受邀者可存取" - }, - "public": { - "title": "公開", - "description": "工作區中除了訪客以外的任何人都可以加入" - } - }, - "error": { - "permission": "您沒有執行此操作的權限。", - "cycle_delete": "無法刪除週期", - "module_delete": "無法刪除模組", - "issue_delete": "無法刪除工作事項" - }, - "state": { - "backlog": "待辦事項", - "unstarted": "未開始", - "started": "已開始", - "completed": "已完成", - "cancelled": "已取消" - }, - "sort": { - "manual": "手動", - "name": "名稱", - "created_at": "建立日期", - "members_length": "成員數量" - }, - "scope": { - "my_projects": "我的專案", - "archived_projects": "已封存" - }, - "common": { - "months_count": "{months, plural, one{# 個月} other{# 個月}}" - }, - "empty_state": { - "general": { - "title": "沒有使用中的專案", - "description": "請將每個專案視為目標導向工作的上層。專案是工作、週期和模組所在的地方,並與您的同事一起協助您達成目標。建立新專案或篩選已封存的專案。", - "primary_button": { - "text": "開始您的第一個專案", - "comic": { - "title": "在 Plane 中,一切都始於專案", - "description": "專案可以是產品的藍圖、行銷活動,或是推出新車。" - } - } - }, - "no_projects": { - "title": "沒有專案", - "description": "若要建立工作事項或管理您的工作,您需要建立專案或成為專案的一部分。", - "primary_button": { - "text": "開始您的第一個專案", - "comic": { - "title": "在 Plane 中,一切都始於專案", - "description": "專案可以是產品的藍圖、行銷活動,或是推出新車。" - } - } - }, - "filter": { - "title": "沒有符合的專案", - "description": "找不到符合篩選條件的專案。\n改為建立新專案。" - }, - "search": { - "description": "找不到符合篩選條件的專案。\n改為建立新專案" - } - } - }, - "workspace_views": { - "add_view": "新增檢視", - "empty_state": { - "all-issues": { - "title": "專案中沒有工作事項", - "description": "第一個專案完成!現在,將您的工作分割成可追蹤的工作事項。讓我們開始吧!", - "primary_button": { - "text": "建立新工作事項" - } - }, - "assigned": { - "title": "尚無工作事項", - "description": "從這裡可以追蹤指派給您的工作事項。", - "primary_button": { - "text": "建立新工作事項" - } - }, - "created": { - "title": "尚無工作事項", - "description": "您建立的所有工作事項都會出現在這裡,直接在這裡追蹤它們。", - "primary_button": { - "text": "建立新工作事項" - } - }, - "subscribed": { - "title": "尚無工作事項", - "description": "訂閱您感興趣的工作事項,在這裡追蹤它們。" - }, - "custom-view": { - "title": "尚無工作事項", - "description": "符合篩選條件的工作事項,在這裡追蹤它們。" - } - } - }, - "workspace_settings": { - "label": "工作區設定", - "page_label": "{workspace} - 一般設定", - "key_created": "金鑰已建立", - "copy_key": "複製並儲存此金鑰到 Plane Pages。關閉後您將無法看到此金鑰。已下載包含金鑰的 CSV 檔案。", - "token_copied": "權杖已複製到剪貼簿。", - "settings": { - "general": { - "title": "一般", - "upload_logo": "上傳標誌", - "edit_logo": "編輯標誌", - "name": "工作區名稱", - "company_size": "公司規模", - "url": "工作區網址", - "update_workspace": "更新工作區", - "delete_workspace": "刪除此工作區", - "delete_workspace_description": "刪除工作區時,該工作區內的所有資料和資源都將被永久移除且無法復原。", - "delete_btn": "刪除此工作區", - "delete_modal": { - "title": "您確定要刪除此工作區嗎?", - "description": "您有一個使用中的付費方案試用期。請先取消試用期再繼續。", - "dismiss": "關閉", - "cancel": "取消試用", - "success_title": "工作區已刪除。", - "success_message": "您很快就會進入個人資料頁面。", - "error_title": "操作失敗。", - "error_message": "請重試。" - }, - "errors": { - "name": { - "required": "名稱為必填", - "max_length": "工作區名稱不應超過 80 個字元" - }, - "company_size": { - "required": "公司規模為必填", - "select_a_range": "選擇組織規模" - } - } - }, - "members": { - "title": "成員", - "add_member": "新增成員", - "pending_invites": "待處理的邀請", - "invitations_sent_successfully": "邀請傳送成功", - "leave_confirmation": "您確定要離開工作區嗎?您將無法再存取此工作區。此操作無法復原。", - "details": { - "full_name": "全名", - "display_name": "顯示名稱", - "email_address": "電子郵件地址", - "account_type": "帳號類型", - "authentication": "驗證", - "joining_date": "加入日期" - }, - "modal": { - "title": "邀請人員協作", - "description": "邀請人員加入您的工作區進行協作。", - "button": "傳送邀請", - "button_loading": "傳送邀請中", - "placeholder": "name@company.com", - "errors": { - "required": "我們需要電子郵件地址才能邀請他們。", - "invalid": "電子郵件無效" - } - } - }, - "billing_and_plans": { - "title": "計費和方案", - "current_plan": "目前方案", - "free_plan": "您目前使用的是免費方案", - "view_plans": "檢視方案" - }, - "exports": { - "title": "匯出", - "exporting": "匯出中", - "previous_exports": "先前的匯出", - "export_separate_files": "將資料匯出為個別檔案", - "modal": { - "title": "匯出至", - "toasts": { - "success": { - "title": "匯出成功", - "message": "您可以從先前的匯出下載匯出的 {entity}" - }, - "error": { - "title": "匯出失敗", - "message": "匯出未成功。請再試一次。" - } - } - } - }, - "webhooks": { - "title": "Webhook", - "add_webhook": "新增 Webhook", - "modal": { - "title": "建立 Webhook", - "details": "Webhook 詳細資訊", - "payload": "承載網址", - "question": "您希望觸發此 Webhook 的事件有哪些?", - "error": "網址為必填" - }, - "secret_key": { - "title": "金鑰", - "message": "產生權杖以簽署 Webhook 承載" - }, - "options": { - "all": "傳送所有資訊給我", - "individual": "選擇個別事件" - }, - "toasts": { - "created": { - "title": "Webhook 已建立", - "message": "Webhook 已成功建立" - }, - "not_created": { - "title": "Webhook 未建立", - "message": "無法建立 Webhook" - }, - "updated": { - "title": "Webhook 已更新", - "message": "Webhook 已成功更新" - }, - "not_updated": { - "title": "Webhook 未更新", - "message": "無法更新 Webhook" - }, - "removed": { - "title": "Webhook 已移除", - "message": "Webhook 已成功移除" - }, - "not_removed": { - "title": "Webhook 未移除", - "message": "無法移除 Webhook" - }, - "secret_key_copied": { - "message": "金鑰已複製到剪貼簿。" - }, - "secret_key_not_copied": { - "message": "複製金鑰時發生錯誤。" - } - } - }, - "api_tokens": { - "title": "API 權杖", - "add_token": "新增 API 權杖", - "create_token": "建立權杖", - "never_expires": "永不過期", - "generate_token": "產生權杖", - "generating": "產生中", - "delete": { - "title": "刪除 API 權杖", - "description": "使用此權杖的任何應用程式將無法再存取 Plane 資料。此操作無法復原。", - "success": { - "title": "成功!", - "message": "API 權杖已成功刪除" - }, - "error": { - "title": "錯誤!", - "message": "無法刪除 API 權杖" - } - } - } - }, - "empty_state": { - "api_tokens": { - "title": "尚未建立 API 權杖", - "description": "Plane API 可用於將您在 Plane 中的資料與任何外部系統整合。建立權杖以開始使用。" - }, - "webhooks": { - "title": "尚未新增 Webhook", - "description": "建立 Webhook 以接收即時更新並自動執行操作。" - }, - "exports": { - "title": "尚無匯出", - "description": "每當您匯出時,也會在這裡保留一份副本供參考。" - }, - "imports": { - "title": "尚無匯入", - "description": "在這裡找到所有您先前的匯入並下載它們。" - } - } - }, - "profile": { - "label": "個人資料", - "page_label": "您的工作", - "work": "工作", - "details": { - "joined_on": "加入於", - "time_zone": "時區" - }, - "stats": { - "workload": "工作量", - "overview": "概覽", - "created": "已建立的工作事項", - "assigned": "已指派的工作事項", - "subscribed": "已訂閱的工作事項", - "state_distribution": { - "title": "依狀態分類的工作事項", - "empty": "建立工作事項以在圖表中檢視依狀態分類的工作事項,以便進行更好的分析。" - }, - "priority_distribution": { - "title": "依優先順序分類的工作事項", - "empty": "建立工作事項以在圖表中檢視依優先順序分類的工作事項,以便進行更好的分析。" - }, - "recent_activity": { - "title": "最近活動", - "empty": "我們找不到資料。請檢查您的輸入", - "button": "下載今天的活動", - "button_loading": "下載中" - } - }, - "actions": { - "profile": "個人資料", - "security": "安全性", - "activity": "活動", - "appearance": "外觀", - "notifications": "通知" - }, - "tabs": { - "summary": "摘要", - "assigned": "已指派", - "created": "已建立", - "subscribed": "已訂閱", - "activity": "活動" - }, - "empty_state": { - "activity": { - "title": "尚無活動", - "description": "開始建立新工作事項!為其新增詳細資訊和屬性。探索更多 Plane 功能以檢視您的活動。" - }, - "assigned": { - "title": "沒有指派給您的工作事項", - "description": "從這裡可以追蹤指派給您的工作事項。" - }, - "created": { - "title": "尚無工作事項", - "description": "您建立的所有工作事項都會出現在這裡,直接在這裡追蹤它們。" - }, - "subscribed": { - "title": "尚無工作事項", - "description": "訂閱您感興趣的工作事項,在這裡追蹤它們。" - } - } - }, - "project_settings": { - "general": { - "enter_project_id": "輸入專案 ID", - "please_select_a_timezone": "請選擇時區", - "archive_project": { - "title": "封存專案", - "description": "封存專案將不再從您的側邊導覽列中列出您的專案,但您仍然可以從專案頁面存取它。您可以隨時還原專案或刪除它。", - "button": "封存專案" - }, - "delete_project": { - "title": "刪除專案", - "description": "刪除專案時,該專案內的所有資料和資源都將被永久移除且無法復原。", - "button": "刪除我的專案" - }, - "toast": { - "success": "專案更新成功", - "error": "無法更新專案。請再試一次。" - } - }, - "members": { - "label": "成員", - "project_lead": "專案負責人", - "default_assignee": "預設指派對象", - "guest_super_permissions": { - "title": "授予訪客使用者檢視所有工作事項的權限:", - "sub_heading": "這將允許訪客檢視所有專案工作事項。" - }, - "invite_members": { - "title": "邀請成員", - "sub_heading": "邀請成員參與您的專案。", - "select_co_worker": "選擇同事" - } - }, - "states": { - "describe_this_state_for_your_members": "為您的成員描述此狀態。", - "empty_state": { - "title": "{groupKey} 群組沒有可用的狀態", - "description": "請建立新狀態" - } - }, - "labels": { - "label_title": "標籤標題", - "label_title_is_required": "標籤標題為必填", - "label_max_char": "標籤名稱不應超過 255 個字元", - "toast": { - "error": "更新標籤時發生錯誤" - } - }, - "estimates": { - "label": "預估", - "title": "為我的專案啟用預估", - "description": "幫助你傳達團隊的複雜性和工作負荷。", - "no_estimate": "無預估", - "new": "新估算系統", - "create": { - "custom": "自訂", - "start_from_scratch": "從頭開始", - "choose_template": "選擇範本", - "choose_estimate_system": "選擇預估系統", - "enter_estimate_point": "輸入預估", - "step": "步驟 {step} 共 {total}", - "label": "建立預估" - }, - "toasts": { - "created": { - "success": { - "title": "預估已建立", - "message": "預估已成功建立" - }, - "error": { - "title": "預估建立失敗", - "message": "我們無法建立新的預估,請重試。" - } - }, - "updated": { - "success": { - "title": "預估已修改", - "message": "專案中的預估已更新。" - }, - "error": { - "title": "預估修改失敗", - "message": "我們無法修改預估,請重試" - } - }, - "enabled": { - "success": { - "title": "成功!", - "message": "預估已啟用。" - } - }, - "disabled": { - "success": { - "title": "成功!", - "message": "預估已停用。" - }, - "error": { - "title": "錯誤!", - "message": "無法停用預估。請重試" - } - } - }, - "validation": { - "min_length": "預估必須大於0。", - "unable_to_process": "我們無法處理你的請求,請重試。", - "numeric": "預估必須是數值。", - "character": "預估必須是字元值。", - "empty": "預估值不能為空。", - "already_exists": "預估值已存在。", - "unsaved_changes": "你有未儲存的變更。請在點擊完成前儲存", - "remove_empty": "預估不能為空。在每個欄位中輸入值或移除沒有值的欄位。" - }, - "systems": { - "points": { - "label": "點數", - "fibonacci": "費波那契數列", - "linear": "線性", - "squares": "平方數", - "custom": "自訂" - }, - "categories": { - "label": "類別", - "t_shirt_sizes": "T恤尺寸", - "easy_to_hard": "簡單到困難", - "custom": "自訂" - }, - "time": { - "label": "時間", - "hours": "小時" - } - } - }, - "automations": { - "label": "自動化", - "auto-archive": { - "title": "自動封存已關閉的工作項目", - "description": "Plane將自動封存已完成或已取消的工作項目。", - "duration": "自動封存已關閉的工作項目" - }, - "auto-close": { - "title": "自動關閉工作項目", - "description": "Plane將自動關閉未完成或未取消的工作項目。", - "duration": "自動關閉非活動工作項目", - "auto_close_status": "自動關閉狀態" - } - }, - "empty_state": { - "labels": { - "title": "尚無標籤", - "description": "建立標籤以協助組織和篩選專案中的工作事項。" - }, - "estimates": { - "title": "尚無評估系統", - "description": "建立一組評估以傳達每個工作事項的工作量。", - "primary_button": "新增評估系統" - } - } - }, - "project_cycles": { - "add_cycle": "新增週期", - "more_details": "更多詳細資訊", - "cycle": "週期", - "update_cycle": "更新週期", - "create_cycle": "建立週期", - "no_matching_cycles": "沒有符合的週期", - "remove_filters_to_see_all_cycles": "移除篩選器以檢視所有週期", - "remove_search_criteria_to_see_all_cycles": "移除搜尋條件以檢視所有週期", - "only_completed_cycles_can_be_archived": "只有已完成的週期可以封存", - "start_date": "開始日期", - "end_date": "結束日期", - "in_your_timezone": "在您的時區", - "transfer_work_items": "轉移 {count} 工作事項", - "date_range": "日期範圍", - "add_date": "新增日期", - "active_cycle": { - "label": "使用中的週期", - "progress": "進度", - "chart": "燃盡圖", - "priority_issue": "優先順序工作事項", - "assignees": "指派對象", - "issue_burndown": "工作事項燃盡", - "ideal": "理想", - "current": "目前", - "labels": "標籤" - }, - "upcoming_cycle": { - "label": "即將到來的週期" - }, - "completed_cycle": { - "label": "已完成的週期" - }, - "status": { - "days_left": "剩餘天數", - "completed": "已完成", - "yet_to_start": "尚未開始", - "in_progress": "進行中", - "draft": "草稿" - }, - "action": { - "restore": { - "title": "還原週期", - "success": { - "title": "週期已還原", - "description": "週期已還原。" - }, - "failed": { - "title": "週期還原失敗", - "description": "無法還原週期。請再試一次。" - } - }, - "favorite": { - "loading": "將週期加入我的最愛", - "success": { - "description": "週期已加入我的最愛。", - "title": "成功!" - }, - "failed": { - "description": "無法將週期加入我的最愛。請再試一次。", - "title": "錯誤!" - } - }, - "unfavorite": { - "loading": "從我的最愛移除週期", - "success": { - "description": "週期已從我的最愛移除。", - "title": "成功!" - }, - "failed": { - "description": "無法從我的最愛移除週期。請再試一次。", - "title": "錯誤!" - } - }, - "update": { - "loading": "更新週期中", - "success": { - "description": "週期更新成功。", - "title": "成功!" - }, - "failed": { - "description": "更新週期時發生錯誤。請再試一次。", - "title": "錯誤!" - }, - "error": { - "already_exists": "給定日期範圍內已有週期,如果您要建立草稿週期,可以移除兩個日期來執行此操作。" - } - } - }, - "empty_state": { - "general": { - "title": "在週期中分組和時間區段化您的工作。", - "description": "將工作分解為時間區段化的區塊,從您的專案截止日期向後設定日期,並以團隊的方式取得具體進展。", - "primary_button": { - "text": "設定您的第一個週期", - "comic": { - "title": "週期是重複的時間區段。", - "description": "衝刺、迭代,或您用於每週或每兩週追蹤工作的任何其他術語都是週期。" - } - } - }, - "no_issues": { - "title": "週期中沒有新增工作事項", - "description": "新增或建立您希望在此週期內時間區段化和交付的工作事項", - "primary_button": { - "text": "建立新工作事項" - }, - "secondary_button": { - "text": "新增現有工作事項" - } - }, - "completed_no_issues": { - "title": "週期中沒有工作事項", - "description": "週期中沒有工作事項。工作事項已被轉移或隱藏。若要檢視隱藏的工作事項(如果有),請相應地更新您的顯示屬性。" - }, - "active": { - "title": "沒有使用中的週期", - "description": "使用中的週期包括任何期間內包含今天日期的週期。在這裡找到使用中週期的進度和詳細資訊。" - }, - "archived": { - "title": "尚無已封存的週期", - "description": "為了整理您的專案,可以封存已完成的週期。一旦封存,您可以在這裡找到它們。" - } - } - }, - "project_issues": { - "empty_state": { - "no_issues": { - "title": "建立工作事項並指派給某人,甚至是您自己", - "description": "將工作事項視為工作、任務、工作或待辦事項。我們喜歡這樣。工作事項及其子工作事項通常是指派給團隊成員的以時間為基礎的可執行項目。您的團隊建立、指派和完成工作事項,以推動您的專案朝向其目標前進。", - "primary_button": { - "text": "建立您的第一個工作事項", - "comic": { - "title": "工作事項是 Plane 中的基本單位。", - "description": "重新設計 Plane 使用者介面、重塑公司品牌或推出新的燃料噴射系統都是可能有子工作事項的工作事項範例。" - } - } - }, - "no_archived_issues": { - "title": "尚無已封存的工作事項", - "description": "透過手動或自動化的方式,您可以封存已完成或取消的工作事項。一旦封存,您可以在這裡找到它們。", - "primary_button": { - "text": "設定自動化" - } - }, - "issues_empty_filter": { - "title": "找不到符合套用篩選器的工作事項", - "secondary_button": { - "text": "清除所有篩選器" - } - } - } - }, - "project_module": { - "add_module": "新增模組", - "update_module": "更新模組", - "create_module": "建立模組", - "archive_module": "封存模組", - "restore_module": "還原模組", - "delete_module": "刪除模組", - "empty_state": { - "general": { - "title": "將您的專案里程碑對應到模組並輕鬆追蹤彙總工作。", - "description": "屬於邏輯、階層式上層的一組工作事項形成一個模組。將其視為一種依專案里程碑追蹤工作的方式。它們有自己的期間和截止日期以及分析,可協助您了解您距離里程碑有多近或多遠。", - "primary_button": { - "text": "建立您的第一個模組", - "comic": { - "title": "模組協助依階層結構分組工作。", - "description": "購物車模組、底盤模組和倉庫模組都是這種分組的好例子。" - } - } - }, - "no_issues": { - "title": "模組中沒有工作事項", - "description": "建立或新增您想要作為此模組一部分完成的工作事項", - "primary_button": { - "text": "建立新工作事項" - }, - "secondary_button": { - "text": "新增現有工作事項" - } - }, - "archived": { - "title": "尚無已封存的模組", - "description": "為了整理您的專案,可以封存已完成或取消的模組。一旦封存,您可以在這裡找到它們。" - }, - "sidebar": { - "in_active": "此模組尚未啟用。", - "invalid_date": "日期無效。請輸入有效日期。" - } - }, - "quick_actions": { - "archive_module": "封存模組", - "archive_module_description": "只有已完成或取消的\n模組可以封存。", - "delete_module": "刪除模組" - }, - "toast": { - "copy": { - "success": "模組連結已複製到剪貼簿" - }, - "delete": { - "success": "模組刪除成功", - "error": "刪除模組失敗" - } - } - }, - "project_views": { - "empty_state": { - "general": { - "title": "為您的專案儲存篩選的檢視。依需要建立多個檢視", - "description": "檢視是您經常使用或想要輕鬆存取的已儲存篩選器集。專案中的所有同事都可以看到每個人的檢視,並選擇最適合他們需求的檢視。", - "primary_button": { - "text": "建立您的第一個檢視", - "comic": { - "title": "檢視基於工作事項屬性運作。", - "description": "您可以從這裡建立檢視,使用您認為合適的屬性作為篩選器。" - } - } - }, - "filter": { - "title": "沒有符合的檢視", - "description": "沒有檢視符合搜尋條件。\n改為建立新檢視。" - } - } - }, - "project_page": { - "empty_state": { - "general": { - "title": "撰寫筆記、文件或完整的知識庫。讓 Galileo(Plane 的 AI 助手)協助您開始", - "description": "頁面是 Plane 中的思考筆記空間。記下會議筆記,輕鬆格式化,嵌入工作事項,使用元件庫排版,並將它們全部保留在專案的上下文中。若要快速完成任何文件,可以使用快速鍵或按鈕來呼叫 Plane 的 AI Galileo。", - "primary_button": { - "text": "建立您的第一個頁面" - } - }, - "private": { - "title": "尚無私人頁面", - "description": "在這裡保留您的私人想法。當您準備好分享時,團隊只需點選一下即可。", - "primary_button": { - "text": "建立您的第一個頁面" - } - }, - "public": { - "title": "尚無公開頁面", - "description": "在這裡檢視與專案中所有人分享的頁面。", - "primary_button": { - "text": "建立您的第一個頁面" - } - }, - "archived": { - "title": "尚無已封存的頁面", - "description": "封存不在您雷達上的頁面。需要時在這裡存取它們。" - } - } - }, - "command_k": { - "empty_state": { - "search": { - "title": "找不到結果" - } - } - }, - "issue_relation": { - "empty_state": { - "search": { - "title": "找不到符合的工作事項" - }, - "no_issues": { - "title": "找不到工作事項" - } - } - }, - "issue_comment": { - "empty_state": { - "general": { - "title": "尚無留言", - "description": "留言可用作工作事項的討論和後續追蹤空間" - } - } - }, - "notification": { - "label": "收件匣", - "page_label": "{workspace} - 收件匣", - "options": { - "mark_all_as_read": "全部標記為已讀", - "mark_read": "標記為已讀", - "mark_unread": "標記為未讀", - "refresh": "重新整理", - "filters": "收件匣篩選器", - "show_unread": "顯示未讀", - "show_snoozed": "顯示已延後", - "show_archived": "顯示已封存", - "mark_archive": "封存", - "mark_unarchive": "取消封存", - "mark_snooze": "延後", - "mark_unsnooze": "取消延後" - }, - "toasts": { - "read": "通知已標記為已讀", - "unread": "通知已標記為未讀", - "archived": "通知已標記為已封存", - "unarchived": "通知已標記為未封存", - "snoozed": "通知已延後", - "unsnoozed": "通知已取消延後" - }, - "empty_state": { - "detail": { - "title": "選擇以檢視詳細資訊。" - }, - "all": { - "title": "沒有指派的工作事項", - "description": "您可以在這裡看到指派給您的工作事項的更新" - }, - "mentions": { - "title": "沒有指派的工作事項", - "description": "您可以在這裡看到指派給您的工作事項的更新" - } - }, - "tabs": { - "all": "全部", - "mentions": "提及" - }, - "filter": { - "assigned": "指派給我", - "created": "由我建立", - "subscribed": "由我訂閱" - }, - "snooze": { - "1_day": "1 天", - "3_days": "3 天", - "5_days": "5 天", - "1_week": "1 週", - "2_weeks": "2 週", - "custom": "自訂" - } - }, - "active_cycle": { - "empty_state": { - "progress": { - "title": "新增工作事項到週期以檢視其進度" - }, - "chart": { - "title": "新增工作事項到週期以檢視燃盡圖。" - }, - "priority_issue": { - "title": "快速檢視週期中處理的高優先順序工作事項。" - }, - "assignee": { - "title": "新增指派對象到工作事項以檢視依指派對象分類的工作分析。" - }, - "label": { - "title": "新增標籤到工作事項以檢視依標籤分類的工作分析。" - } - } - }, - "disabled_project": { - "empty_state": { - "inbox": { - "title": "進件功能未啟用於此專案。", - "description": "進件可協助您管理專案的傳入請求,並將它們新增為工作流程中的工作事項。從專案設定啟用進件以管理請求。", - "primary_button": { - "text": "管理功能" - } - }, - "cycle": { - "title": "週期功能未啟用於此專案。", - "description": "將工作分解成時間區段化的區塊,從專案截止日期向後設定日期,並以團隊的方式取得具體進展。啟用專案的週期功能以開始使用。", - "primary_button": { - "text": "管理功能" - } - }, - "module": { - "title": "模組未啟用於此專案。", - "description": "模組是專案的基本組成部分。從專案設定啟用模組以開始使用。", - "primary_button": { - "text": "管理功能" - } - }, - "page": { - "title": "頁面未啟用於此專案。", - "description": "頁面是專案的基本組成部分。從專案設定啟用頁面以開始使用。", - "primary_button": { - "text": "管理功能" - } - }, - "view": { - "title": "檢視未啟用於此專案。", - "description": "檢視是專案的基本組成部分。從專案設定啟用檢視以開始使用。", - "primary_button": { - "text": "管理功能" - } - } - } - }, - "workspace_draft_issues": { - "draft_an_issue": "建立工作事項草稿", - "empty_state": { - "title": "寫到一半的工作事項,以及即將推出的留言會出現在這裡。", - "description": "若要試用此功能,請開始新增工作事項並中途離開,或在下方建立您的第一個草稿。😉", - "primary_button": { - "text": "建立您的第一個草稿" - } - }, - "delete_modal": { - "title": "刪除草稿", - "description": "您確定要刪除此草稿嗎?此操作無法復原。" - }, - "toasts": { - "created": { - "success": "草稿已建立", - "error": "無法建立工作事項。請再試一次。" - }, - "deleted": { - "success": "草稿已刪除" - } - } - }, - "stickies": { - "title": "您的便利貼", - "placeholder": "點選此處輸入", - "all": "所有便利貼", - "no-data": "記下想法、捕捉靈感或記錄突發奇想。新增便利貼以開始。", - "add": "新增便利貼", - "search_placeholder": "依標題搜尋", - "delete": "刪除便利貼", - "delete_confirmation": "您確定要刪除此便利貼嗎?", - "empty_state": { - "simple": "記下想法、捕捉靈感或記錄突發奇想。新增便利貼以開始。", - "general": { - "title": "便利貼是您隨手記下的快速筆記和待辦事項。", - "description": "透過建立可隨時隨地存取的便利貼,輕鬆捕捉您的想法和點子。", - "primary_button": { - "text": "新增便利貼" - } - }, - "search": { - "title": "這與您的便利貼都不符。", - "description": "嘗試使用不同的詞彙或讓我們知道\n如果您確定您的搜尋是正確的。", - "primary_button": { - "text": "新增便利貼" - } - } - }, - "toasts": { - "errors": { - "wrong_name": "便利貼名稱不能超過 100 個字元。", - "already_exists": "已存在一個沒有描述的便利貼" - }, - "created": { - "title": "便利貼已建立", - "message": "便利貼已成功建立" - }, - "not_created": { - "title": "便利貼未建立", - "message": "無法建立便利貼" - }, - "updated": { - "title": "便利貼已更新", - "message": "便利貼已成功更新" - }, - "not_updated": { - "title": "便利貼未更新", - "message": "無法更新便利貼" - }, - "removed": { - "title": "便利貼已移除", - "message": "便利貼已成功移除" - }, - "not_removed": { - "title": "便利貼未移除", - "message": "無法移除便利貼" - } - } - }, - "role_details": { - "guest": { - "title": "訪客", - "description": "組織的外部成員可以被邀請為訪客。" - }, - "member": { - "title": "成員", - "description": "在專案、週期和模組內具有讀取、寫入、編輯和刪除實體的能力" - }, - "admin": { - "title": "管理員", - "description": "工作區內的所有權限都設為允許。" - } - }, - "user_roles": { - "product_or_project_manager": "產品/專案經理", - "development_or_engineering": "開發/工程", - "founder_or_executive": "創辦人/主管", - "freelancer_or_consultant": "自由工作者/顧問", - "marketing_or_growth": "行銷/成長", - "sales_or_business_development": "業務/業務發展", - "support_or_operations": "支援/營運", - "student_or_professor": "學生/教授", - "human_resources": "人力資源", - "other": "其他" - }, - "importer": { - "github": { - "title": "GitHub", - "description": "從 GitHub 儲存庫匯入工作事項並同步。" - }, - "jira": { - "title": "Jira", - "description": "從 Jira 專案和 Epic 匯入工作事項和 Epic。" - } - }, - "exporter": { - "csv": { - "title": "CSV", - "description": "將工作事項匯出為 CSV 檔案。", - "short_description": "匯出為 CSV" - }, - "excel": { - "title": "Excel", - "description": "將工作事項匯出為 Excel 檔案。", - "short_description": "匯出為 Excel" - }, - "xlsx": { - "title": "Excel", - "description": "將工作事項匯出為 Excel 檔案。", - "short_description": "匯出為 Excel" - }, - "json": { - "title": "JSON", - "description": "將工作事項匯出為 JSON 檔案。", - "short_description": "匯出為 JSON" - } - }, - "default_global_view": { - "all_issues": "所有工作事項", - "assigned": "已指派", - "created": "已建立", - "subscribed": "已訂閱" - }, - "themes": { - "theme_options": { - "system_preference": { - "label": "系統偏好設定" - }, - "light": { - "label": "淺色" - }, - "dark": { - "label": "深色" - }, - "light_contrast": { - "label": "高對比淺色" - }, - "dark_contrast": { - "label": "高對比深色" - }, - "custom": { - "label": "自訂主題" - } - } - }, - "project_modules": { - "status": { - "backlog": "待辦事項", - "planned": "已規劃", - "in_progress": "進行中", - "paused": "已暫停", - "completed": "已完成", - "cancelled": "已取消" - }, - "layout": { - "list": "清單版面配置", - "board": "圖庫版面配置", - "timeline": "時間軸版面配置" - }, - "order_by": { - "name": "名稱", - "progress": "進度", - "issues": "工作事項數量", - "due_date": "截止日期", - "created_at": "建立日期", - "manual": "手動" - } - }, - "cycle": { - "label": "{count, plural, one {週期} other {週期}}", - "no_cycle": "無週期" - }, - "module": { - "label": "{count, plural, one {模組} other {模組}}", - "no_module": "無模組" - }, - "description_versions": { - "last_edited_by": "最後編輯者", - "previously_edited_by": "先前編輯者", - "edited_by": "編輯者" - }, - "self_hosted_maintenance_message": { - "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane 未能啟動。這可能是因為一個或多個 Plane 服務啟動失敗。", - "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "從 setup.sh 和 Docker 日誌中選擇 View Logs 來確認。" - }, - "page_navigation_pane": { - "tabs": { - "outline": { - "label": "大綱", - "empty_state": { - "title": "缺少標題", - "description": "讓我們在這個頁面添加一些標題來在這裡查看它們。" - } - }, - "info": { - "label": "資訊", - "document_info": { - "words": "字數", - "characters": "字元數", - "paragraphs": "段落數", - "read_time": "閱讀時間" - }, - "actors_info": { - "edited_by": "編輯者", - "created_by": "建立者" - }, - "version_history": { - "label": "版本歷史", - "current_version": "目前版本" - } - }, - "assets": { - "label": "資源", - "download_button": "下載", - "empty_state": { - "title": "缺少圖片", - "description": "添加圖片以在這裡查看它們。" - } - } - }, - "open_button": "打開導航面板", - "close_button": "關閉導航面板", - "outline_floating_button": "打開大綱" - } -} diff --git a/packages/i18n/src/locales/zh-TW/translations.ts b/packages/i18n/src/locales/zh-TW/translations.ts new file mode 100644 index 0000000000..5f3de51367 --- /dev/null +++ b/packages/i18n/src/locales/zh-TW/translations.ts @@ -0,0 +1,2551 @@ +export default { + sidebar: { + projects: "專案", + pages: "頁面", + new_work_item: "新工作項目", + home: "首頁", + your_work: "你的工作", + inbox: "收件匣", + workspace: "工作區", + views: "視圖", + analytics: "分析", + work_items: "工作項目", + cycles: "週期", + modules: "模組", + intake: "接收", + drafts: "草稿", + favorites: "收藏", + pro: "專業版", + upgrade: "升級", + }, + auth: { + common: { + email: { + label: "電子郵件", + placeholder: "name@company.com", + errors: { + required: "必須填寫電子郵件", + invalid: "電子郵件無效", + }, + }, + password: { + label: "密碼", + set_password: "設定密碼", + placeholder: "輸入密碼", + confirm_password: { + label: "確認密碼", + placeholder: "確認密碼", + }, + current_password: { + label: "目前密碼", + }, + new_password: { + label: "新密碼", + placeholder: "輸入新密碼", + }, + change_password: { + label: { + default: "更改密碼", + submitting: "正在更改密碼", + }, + }, + errors: { + match: "密碼不匹配", + empty: "請輸入密碼", + length: "密碼長度應超過8個字符", + strength: { + weak: "密碼強度弱", + strong: "密碼強度強", + }, + }, + submit: "設定密碼", + toast: { + change_password: { + success: { + title: "成功!", + message: "密碼已成功更改。", + }, + error: { + title: "錯誤!", + message: "出現問題。請重試。", + }, + }, + }, + }, + unique_code: { + label: "唯一代碼", + placeholder: "gets-sets-flys", + paste_code: "貼上傳送到您電子郵件的代碼", + requesting_new_code: "正在請求新代碼", + sending_code: "正在發送代碼", + }, + already_have_an_account: "已有帳戶?", + login: "登入", + create_account: "創建帳戶", + new_to_plane: "初次使用Plane?", + back_to_sign_in: "返回登入", + resend_in: "{seconds}秒後重新發送", + sign_in_with_unique_code: "使用唯一代碼登入", + forgot_password: "忘記密碼?", + }, + sign_up: { + header: { + label: "創建帳戶開始與團隊一起管理工作。", + step: { + email: { + header: "註冊", + sub_header: "", + }, + password: { + header: "註冊", + sub_header: "使用電子郵件-密碼組合註冊。", + }, + unique_code: { + header: "註冊", + sub_header: "使用發送到上述電子郵件的唯一代碼註冊。", + }, + }, + }, + errors: { + password: { + strength: "請設定強密碼以繼續", + }, + }, + }, + sign_in: { + header: { + label: "登入開始與團隊一起管理工作。", + step: { + email: { + header: "登入或註冊", + sub_header: "", + }, + password: { + header: "登入或註冊", + sub_header: "使用您的電子郵件-密碼組合登入。", + }, + unique_code: { + header: "登入或註冊", + sub_header: "使用發送到上述電子郵件地址的唯一代碼登入。", + }, + }, + }, + }, + forgot_password: { + title: "重設密碼", + description: "輸入您的用戶帳戶已驗證的電子郵件地址,我們將向您發送密碼重設連結。", + email_sent: "我們已將重設連結發送到您的電子郵件地址", + send_reset_link: "發送重設連結", + errors: { + smtp_not_enabled: "我們發現您的管理員尚未啟用SMTP,我們將無法發送密碼重設連結", + }, + toast: { + success: { + title: "郵件已發送", + message: "請查看您的收件箱以獲取重設密碼的連結。如果幾分鐘內未收到,請檢查垃圾郵件文件夾。", + }, + error: { + title: "錯誤!", + message: "出現問題。請重試。", + }, + }, + }, + reset_password: { + title: "設定新密碼", + description: "使用強密碼保護您的帳戶", + }, + set_password: { + title: "保護您的帳戶", + description: "設定密碼有助於您安全登入", + }, + sign_out: { + toast: { + error: { + title: "錯誤!", + message: "登出失敗。請重試。", + }, + }, + }, + }, + submit: "送出", + cancel: "取消", + loading: "載入中", + error: "錯誤", + success: "成功", + warning: "警告", + info: "資訊", + close: "關閉", + yes: "是", + no: "否", + ok: "確定", + name: "名稱", + description: "描述", + search: "搜尋", + add_member: "新增成員", + adding_members: "新增成員中", + remove_member: "移除成員", + add_members: "新增成員", + adding_member: "新增成員中", + remove_members: "移除成員", + add: "新增", + adding: "新增中", + remove: "移除", + add_new: "新增", + remove_selected: "移除已選取項目", + first_name: "名字", + last_name: "姓氏", + email: "電子郵件", + display_name: "顯示名稱", + role: "角色", + timezone: "時區", + avatar: "大頭貼", + cover_image: "封面圖片", + password: "密碼", + change_cover: "更換封面", + language: "語言", + saving: "儲存中", + save_changes: "儲存變更", + deactivate_account: "停用帳號", + deactivate_account_description: "停用帳號時,該帳號內的所有資料和資源將被永久移除,且無法復原。", + profile_settings: "個人資料設定", + your_account: "您的帳號", + security: "安全性", + activity: "活動", + appearance: "外觀", + notifications: "通知", + workspaces: "工作區", + create_workspace: "建立工作區", + invitations: "邀請", + summary: "摘要", + assigned: "已指派", + created: "已建立", + subscribed: "已訂閱", + you_do_not_have_the_permission_to_access_this_page: "您沒有權限存取此頁面。", + something_went_wrong_please_try_again: "發生錯誤,請再試一次。", + load_more: "載入更多", + select_or_customize_your_interface_color_scheme: "選擇或自訂您的介面配色方案。", + theme: "主題", + system_preference: "系統偏好設定", + light: "淺色", + dark: "深色", + light_contrast: "高對比淺色", + dark_contrast: "高對比深色", + custom: "自訂主題", + select_your_theme: "選擇您的主題", + customize_your_theme: "自訂您的主題", + background_color: "背景顏色", + text_color: "文字顏色", + primary_color: "主要 (主題) 顏色", + sidebar_background_color: "側邊欄背景顏色", + sidebar_text_color: "側邊欄文字顏色", + set_theme: "設定主題", + enter_a_valid_hex_code_of_6_characters: "請輸入有效的 6 位數十六進位色碼", + background_color_is_required: "背景顏色為必填", + text_color_is_required: "文字顏色為必填", + primary_color_is_required: "主要顏色為必填", + sidebar_background_color_is_required: "側邊欄背景顏色為必填", + sidebar_text_color_is_required: "側邊欄文字顏色為必填", + updating_theme: "更新主題中", + theme_updated_successfully: "主題更新成功", + failed_to_update_the_theme: "主題更新失敗", + email_notifications: "電子郵件通知", + stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified: + "持續追蹤您訂閱的工作事項。啟用此功能以接收通知。", + email_notification_setting_updated_successfully: "電子郵件通知設定更新成功", + failed_to_update_email_notification_setting: "電子郵件通知設定更新失敗", + notify_me_when: "在以下情況通知我", + property_changes: "屬性變更", + property_changes_description: "當工作事項的屬性 (如:指派對象、優先順序、評估等) 發生變更時通知我。", + state_change: "狀態變更", + state_change_description: "當工作事項狀態變更時通知我", + issue_completed: "工作事項完成", + issue_completed_description: "僅在工作事項完成時通知我", + comments: "留言", + comments_description: "當有人在工作事項上留下留言時通知我", + mentions: "提及", + mentions_description: "僅在有人在留言或描述中提及我時通知我", + old_password: "舊密碼", + general_settings: "一般設定", + sign_out: "登出", + signing_out: "登出中", + active_cycles: "進行中的週期", + active_cycles_description: "監控跨專案的週期、追蹤高優先順序工作事項,並關注需要注意的週期。", + on_demand_snapshots_of_all_your_cycles: "依需求檢視所有週期的快照", + upgrade: "升級", + "10000_feet_view": "俯瞰所有進行中的週期。", + "10000_feet_view_description": "一次檢視所有專案的進行中週期,不需逐一檢視每個專案的週期。", + get_snapshot_of_each_active_cycle: "取得每個進行中週期的快照。", + get_snapshot_of_each_active_cycle_description: "追蹤所有進行中週期的高階指標,檢視其進度狀態,並根據期限衡量範圍。", + compare_burndowns: "比較燃盡圖。", + compare_burndowns_description: "透過檢視每個週期的燃盡報告來監控每個團隊的表現。", + quickly_see_make_or_break_issues: "快速檢視關鍵工作事項。", + quickly_see_make_or_break_issues_description: + "預覽每個週期中相對於截止日期的高優先順序工作事項。一鍵檢視每個週期的所有工作事項。", + zoom_into_cycles_that_need_attention: "關注需要注意的週期。", + zoom_into_cycles_that_need_attention_description: "一鍵調查任何不符合預期的週期狀態。", + stay_ahead_of_blockers: "預防阻礙。", + stay_ahead_of_blockers_description: "發現跨專案的挑戰,並檢視其他檢視無法明顯看出的週期間相依性。", + analytics: "分析", + workspace_invites: "工作區邀請", + enter_god_mode: "進入管理員模式", + workspace_logo: "工作區標誌", + new_issue: "新增工作事項", + your_work: "您的工作", + drafts: "草稿", + projects: "專案", + views: "檢視", + workspace: "工作區", + archives: "封存", + settings: "設定", + failed_to_move_favorite: "無法移動我的最愛", + favorites: "我的最愛", + no_favorites_yet: "尚無我的最愛", + create_folder: "建立資料夾", + new_folder: "新資料夾", + favorite_updated_successfully: "我的最愛更新成功", + favorite_created_successfully: "我的最愛建立成功", + folder_already_exists: "資料夾已存在", + folder_name_cannot_be_empty: "資料夾名稱不能為空", + something_went_wrong: "發生錯誤", + failed_to_reorder_favorite: "無法重新排序我的最愛", + favorite_removed_successfully: "我的最愛移除成功", + failed_to_create_favorite: "無法建立我的最愛", + failed_to_rename_favorite: "無法重新命名我的最愛", + project_link_copied_to_clipboard: "專案連結已複製到剪貼簿", + link_copied: "連結已複製", + add_project: "新增專案", + create_project: "建立專案", + failed_to_remove_project_from_favorites: "無法從我的最愛移除專案。請再試一次。", + project_created_successfully: "專案建立成功", + project_created_successfully_description: "專案建立成功。您現在可以開始新增工作事項。", + project_name_already_taken: "專案名稱已被使用。", + project_identifier_already_taken: "專案識別碼已被使用。", + project_cover_image_alt: "專案封面圖片", + name_is_required: "名稱為必填", + title_should_be_less_than_255_characters: "標題不應超過 255 個字元", + project_name: "專案名稱", + project_id_must_be_at_least_1_character: "專案 ID 至少必須有 1 個字元", + project_id_must_be_at_most_5_characters: "專案 ID 最多只能有 5 個字元", + project_id: "專案 ID", + project_id_tooltip_content: "協助您唯一識別專案中的工作事項。最多 5 個字元。", + description_placeholder: "描述", + only_alphanumeric_non_latin_characters_allowed: "僅允許英數字元和非拉丁字元。", + project_id_is_required: "專案 ID 為必填", + project_id_allowed_char: "僅允許英數字元和非拉丁字元。", + project_id_min_char: "專案 ID 至少必須有 1 個字元", + project_id_max_char: "專案 ID 最多只能有 5 個字元", + project_description_placeholder: "輸入專案描述", + select_network: "選擇網路", + lead: "負責人", + date_range: "日期範圍", + private: "私人", + public: "公開", + accessible_only_by_invite: "僅受邀者可存取", + anyone_in_the_workspace_except_guests_can_join: "工作區中除了訪客以外的任何人都可以加入", + creating: "建立中", + creating_project: "建立專案中", + adding_project_to_favorites: "將專案加入我的最愛", + project_added_to_favorites: "專案已加入我的最愛", + couldnt_add_the_project_to_favorites: "無法將專案加入我的最愛。請再試一次。", + removing_project_from_favorites: "從我的最愛移除專案中", + project_removed_from_favorites: "專案已從我的最愛移除", + couldnt_remove_the_project_from_favorites: "無法從我的最愛移除專案。請再試一次。", + add_to_favorites: "加入我的最愛", + remove_from_favorites: "從我的最愛移除", + publish_project: "發佈專案", + publish: "發布", + copy_link: "複製連結", + leave_project: "離開專案", + join_the_project_to_rearrange: "加入專案以重新排列", + drag_to_rearrange: "拖曳以重新排列", + congrats: "恭喜!", + open_project: "開啟專案", + issues: "工作事項", + cycles: "週期", + modules: "模組", + pages: "頁面", + intake: "進件", + time_tracking: "時間追蹤", + work_management: "工作管理", + projects_and_issues: "專案與工作事項", + projects_and_issues_description: "為此專案開啟或關閉這些功能。", + cycles_description: "為每個專案設定工作時間區段,並依需求調整週期。一個週期可以是兩週,下一個是一週。", + modules_description: "將工作組織成子專案,並指派專屬的負責人與任務對象。", + views_description: "儲存自訂排序、篩選和顯示選項,或與團隊分享。", + pages_description: "建立與編輯自由格式內容:筆記、文件,任何內容皆可。", + intake_description: "允許非成員分享錯誤、回饋和建議,而不會中斷您的工作流程。", + time_tracking_description: "記錄在工作事項和專案上花費的時間。", + work_management_description: "輕鬆管理您的工作和專案。", + documentation: "文件", + message_support: "聯絡支援", + contact_sales: "聯絡業務", + hyper_mode: "極速模式", + keyboard_shortcuts: "鍵盤快速鍵", + whats_new: "新功能", + version: "版本", + we_are_having_trouble_fetching_the_updates: "我們在取得更新時遇到問題。", + our_changelogs: "我們的更新日誌", + for_the_latest_updates: "以取得最新更新。", + please_visit: "請造訪", + docs: "文件", + full_changelog: "完整更新日誌", + support: "支援", + discord: "Discord", + powered_by_plane_pages: "由 Plane Pages 提供", + please_select_at_least_one_invitation: "請至少選擇一個邀請。", + please_select_at_least_one_invitation_description: "請至少選擇一個邀請加入工作區。", + we_see_that_someone_has_invited_you_to_join_a_workspace: "我們發現有人邀請您加入工作區", + join_a_workspace: "加入工作區", + we_see_that_someone_has_invited_you_to_join_a_workspace_description: "我們發現有人邀請您加入工作區", + join_a_workspace_description: "加入工作區", + accept_and_join: "接受並加入", + go_home: "回首頁", + no_pending_invites: "沒有待處理的邀請", + you_can_see_here_if_someone_invites_you_to_a_workspace: "如果有人邀請您加入工作區,您可以在此處檢視", + back_to_home: "回到首頁", + workspace_name: "工作區名稱", + deactivate_your_account: "停用您的帳號", + deactivate_your_account_description: + "一旦停用,您將無法被指派工作事項,並且不會被收費。若要重新啟用帳號,您需要使用此電子郵件地址收到工作區的邀請。", + deactivating: "停用中", + confirm: "確認", + confirming: "確認中", + draft_created: "草稿已建立", + issue_created_successfully: "工作事項建立成功", + draft_creation_failed: "草稿建立失敗", + issue_creation_failed: "工作事項建立失敗", + draft_issue: "草稿工作事項", + issue_updated_successfully: "工作事項更新成功", + issue_could_not_be_updated: "工作事項無法更新", + create_a_draft: "建立草稿", + save_to_drafts: "儲存為草稿", + save: "儲存", + update: "更新", + updating: "更新中", + create_new_issue: "建立新工作事項", + editor_is_not_ready_to_discard_changes: "編輯器尚未準備好捨棄變更", + failed_to_move_issue_to_project: "無法將工作事項移至專案", + create_more: "建立更多", + add_to_project: "新增至專案", + discard: "捨棄", + duplicate_issue_found: "找到重複的工作事項", + duplicate_issues_found: "找到重複的工作事項", + no_matching_results: "沒有符合的結果", + title_is_required: "標題為必填", + title: "標題", + state: "狀態", + priority: "優先順序", + none: "無", + urgent: "緊急", + high: "高", + medium: "中", + low: "低", + members: "成員", + assignee: "指派對象", + assignees: "指派對象", + you: "您", + labels: "標籤", + create_new_label: "建立新標籤", + start_date: "開始日期", + end_date: "結束日期", + due_date: "截止日期", + estimate: "評估", + change_parent_issue: "變更父工作事項", + remove_parent_issue: "移除父工作事項", + add_parent: "新增上層", + loading_members: "載入成員中", + view_link_copied_to_clipboard: "檢視連結已複製到剪貼簿。", + required: "必填", + optional: "選填", + Cancel: "取消", + edit: "編輯", + archive: "封存", + restore: "還原", + open_in_new_tab: "在新分頁中開啟", + delete: "刪除", + deleting: "刪除中", + make_a_copy: "複製一份", + move_to_project: "移至專案", + good: "早安", + morning: "早上", + afternoon: "下午", + evening: "晚上", + show_all: "顯示全部", + show_less: "顯示較少", + no_data_yet: "尚無資料", + syncing: "同步中", + add_work_item: "新增工作事項", + advanced_description_placeholder: "按 '/' 以使用指令", + create_work_item: "建立工作事項", + attachments: "附件", + declining: "拒絕中", + declined: "已拒絕", + decline: "拒絕", + unassigned: "未指派", + work_items: "工作事項", + add_link: "新增連結", + points: "點數", + no_assignee: "無指派對象", + no_assignees_yet: "尚無指派對象", + no_labels_yet: "尚無標籤", + ideal: "理想", + current: "目前", + no_matching_members: "沒有符合的成員", + leaving: "離開中", + removing: "移除中", + leave: "離開", + refresh: "重新整理", + refreshing: "重新整理中", + refresh_status: "重新整理狀態", + prev: "上一頁", + next: "下一頁", + re_generating: "重新產生中", + re_generate: "重新產生", + re_generate_key: "重新產生金鑰", + export: "匯出", + member: "{count, plural, one{# 位成員} other{# 位成員}}", + new_password_must_be_different_from_old_password: "新密碼必須與舊密碼不同", + edited: "已編輯", + bot: "機器人", + project_view: { + sort_by: { + created_at: "建立時間", + updated_at: "更新時間", + name: "名稱", + }, + }, + toast: { + success: "成功!", + error: "錯誤!", + }, + links: { + toasts: { + created: { + title: "連結已建立", + message: "連結已成功建立", + }, + not_created: { + title: "連結未建立", + message: "無法建立連結", + }, + updated: { + title: "連結已更新", + message: "連結已成功更新", + }, + not_updated: { + title: "連結未更新", + message: "無法更新連結", + }, + removed: { + title: "連結已移除", + message: "連結已成功移除", + }, + not_removed: { + title: "連結未移除", + message: "無法移除連結", + }, + }, + }, + home: { + empty: { + quickstart_guide: "您的快速入門指南", + not_right_now: "現在不要", + create_project: { + title: "建立專案", + description: "Plane 中的大多數事情都始於一個專案。", + cta: "開始使用", + }, + invite_team: { + title: "邀請您的團隊", + description: "與同事一起建立、發佈和管理。", + cta: "邀請他們", + }, + configure_workspace: { + title: "設定您的工作區。", + description: "開啟或關閉功能,或進一步調整。", + cta: "設定此工作區", + }, + personalize_account: { + title: "讓 Plane 成為您的。", + description: "選擇您的圖片、配色及其他個人化設定。", + cta: "立即個人化", + }, + widgets: { + title: "沒有小工具很安靜,開啟它們吧", + description: "看起來您的所有小工具都已關閉。現在\n啟用它們以提升您的體驗!", + primary_button: { + text: "管理小工具", + }, + }, + }, + quick_links: { + empty: "儲存您想要隨手可得的工作連結。", + add: "新增快速連結", + title: "快速連結", + title_plural: "快速連結", + }, + recents: { + title: "最近", + empty: { + project: "一旦您造訪專案,您的最近專案就會出現在這裡。", + page: "一旦您造訪頁面,您的最近頁面就會出現在這裡。", + issue: "一旦您造訪工作事項,您的最近工作事項就會出現在這裡。", + default: "您還沒有任何最近項目。", + }, + filters: { + all: "所有", + projects: "專案", + pages: "頁面", + issues: "工作事項", + }, + }, + new_at_plane: { + title: "Plane 新功能", + }, + quick_tutorial: { + title: "快速教學", + }, + widget: { + reordered_successfully: "小工具重新排序成功。", + reordering_failed: "重新排序小工具時發生錯誤。", + }, + manage_widgets: "管理小工具", + title: "首頁", + star_us_on_github: "在 GitHub 上給我們星星", + }, + link: { + modal: { + url: { + text: "網址", + required: "網址無效", + placeholder: "輸入或貼上網址", + }, + title: { + text: "顯示標題", + placeholder: "您希望如何顯示這個連結", + }, + }, + }, + common: { + all: "全部", + states: "狀態", + state: "狀態", + state_groups: "狀態群組", + state_group: "狀態群組", + priorities: "優先順序", + priority: "優先順序", + team_project: "團隊專案", + project: "專案", + cycle: "週期", + cycles: "週期", + module: "模組", + modules: "模組", + labels: "標籤", + label: "標籤", + assignees: "指派對象", + assignee: "指派對象", + created_by: "建立者", + none: "無", + link: "連結", + estimates: "評估", + estimate: "評估", + created_at: "建立於", + completed_at: "完成於", + layout: "版面配置", + filters: "篩選器", + display: "顯示", + load_more: "載入更多", + activity: "活動", + analytics: "分析", + dates: "日期", + success: "成功!", + something_went_wrong: "發生錯誤", + error: { + label: "錯誤!", + message: "發生錯誤。請再試一次。", + }, + group_by: "分組依據", + epic: "Epic", + epics: "Epic", + work_item: "工作事項", + work_items: "工作事項", + sub_work_item: "子工作事項", + add: "新增", + warning: "警告", + updating: "更新中", + adding: "新增中", + update: "更新", + creating: "建立中", + create: "建立", + cancel: "取消", + description: "描述", + title: "標題", + attachment: "附件", + general: "一般", + features: "功能", + automation: "自動化", + project_name: "專案名稱", + project_id: "專案 ID", + project_timezone: "專案時區", + created_on: "建立於", + update_project: "更新專案", + identifier_already_exists: "識別碼已存在", + add_more: "新增更多", + defaults: "預設值", + add_label: "新增標籤", + customize_time_range: "自訂時間範圍", + loading: "載入中", + attachments: "附件", + property: "屬性", + properties: "屬性", + parent: "上層", + page: "頁面", + remove: "移除", + archiving: "封存中", + archive: "封存", + access: { + public: "公開", + private: "私人", + }, + done: "完成", + sub_work_items: "子工作事項", + comment: "留言", + workspace_level: "工作區層級", + order_by: { + label: "排序依據", + manual: "手動", + last_created: "最後建立", + last_updated: "最後更新", + start_date: "開始日期", + due_date: "截止日期", + asc: "遞增", + desc: "遞減", + updated_on: "更新於", + }, + sort: { + asc: "遞增", + desc: "遞減", + created_on: "建立於", + updated_on: "更新於", + }, + comments: "留言", + updates: "更新", + clear_all: "清除全部", + copied: "已複製!", + link_copied: "連結已複製!", + link_copied_to_clipboard: "連結已複製到剪貼簿", + copied_to_clipboard: "工作事項連結已複製到剪貼簿", + is_copied_to_clipboard: "工作事項已複製到剪貼簿", + no_links_added_yet: "尚未新增連結", + add_link: "新增連結", + links: "連結", + go_to_workspace: "前往工作區", + progress: "進度", + optional: "選填", + join: "加入", + go_back: "返回", + continue: "繼續", + resend: "重新傳送", + relations: "關聯", + errors: { + default: { + title: "錯誤!", + message: "發生錯誤。請再試一次。", + }, + required: "此欄位為必填", + entity_required: "{entity} 為必填", + restricted_entity: "{entity}已被限制", + }, + update_link: "更新連結", + attach: "附加", + create_new: "建立新的", + add_existing: "新增現有的", + type_or_paste_a_url: "輸入或貼上網址", + url_is_invalid: "網址無效", + display_title: "顯示標題", + link_title_placeholder: "您希望如何顯示這個連結", + url: "網址", + side_peek: "側邊預覽", + modal: "彈出視窗", + full_screen: "全螢幕", + close_peek_view: "關閉預覽檢視", + toggle_peek_view_layout: "切換預覽檢視版面配置", + options: "選項", + duration: "時長", + today: "今天", + week: "週", + month: "月", + quarter: "季", + press_for_commands: "按 '/' 以使用指令", + click_to_add_description: "點選以新增描述", + search: { + label: "搜尋", + placeholder: "輸入以搜尋", + no_matches_found: "找不到符合的項目", + no_matching_results: "沒有符合的結果", + }, + actions: { + edit: "編輯", + make_a_copy: "複製一份", + open_in_new_tab: "在新分頁中開啟", + copy_link: "複製連結", + archive: "封存", + restore: "還原", + delete: "刪除", + remove_relation: "移除關聯", + subscribe: "訂閱", + unsubscribe: "取消訂閱", + clear_sorting: "清除排序", + show_weekends: "顯示週末", + enable: "啟用", + disable: "停用", + }, + name: "名稱", + discard: "捨棄", + confirm: "確認", + confirming: "確認中", + read_the_docs: "閱讀文件", + default: "預設", + active: "使用中", + enabled: "已啟用", + disabled: "已停用", + mandate: "授權", + mandatory: "必要的", + yes: "是", + no: "否", + please_wait: "請稍候", + enabling: "啟用中", + disabling: "停用中", + beta: "測試版", + or: "或", + next: "下一步", + back: "返回", + cancelling: "取消中", + configuring: "設定中", + clear: "清除", + import: "匯入", + connect: "連線", + authorizing: "授權中", + processing: "處理中", + no_data_available: "無可用資料", + from: "來自 {name}", + authenticated: "已認證", + select: "選擇", + upgrade: "升級", + add_seats: "新增席位", + projects: "專案", + workspace: "工作區", + workspaces: "工作區", + team: "團隊", + teams: "團隊", + entity: "實體", + entities: "實體", + task: "任務", + tasks: "任務", + section: "區段", + sections: "區段", + edit: "編輯", + connecting: "連線中", + connected: "已連線", + disconnect: "中斷連線", + disconnecting: "中斷連線中", + installing: "安裝中", + install: "安裝", + reset: "重設", + live: "即時", + change_history: "變更歷史記錄", + coming_soon: "即將推出", + member: "成員", + members: "成員", + you: "您", + upgrade_cta: { + higher_subscription: "升級至更高等級的訂閱方案", + talk_to_sales: "聯絡業務", + }, + category: "類別", + categories: "類別", + saving: "儲存中", + save_changes: "儲存變更", + delete: "刪除", + deleting: "刪除中", + pending: "待處理", + invite: "邀請", + view: "檢視", + deactivated_user: "已停用用戶", + apply: "應用", + applying: "應用中", + users: "使用者", + admins: "管理員", + guests: "訪客", + on_track: "進展順利", + off_track: "偏離軌道", + timeline: "時間軸", + completion: "完成", + upcoming: "即將發生", + completed: "已完成", + in_progress: "進行中", + planned: "已計劃", + paused: "暫停", + at_risk: "有風險", + no_of: "{entity} 的數量", + resolved: "已解決", + }, + chart: { + x_axis: "X 軸", + y_axis: "Y 軸", + metric: "指標", + }, + form: { + title: { + required: "標題為必填", + max_length: "標題不應超過 {length} 個字元", + }, + }, + entity: { + grouping_title: "{entity} 分組", + priority: "{entity} 優先順序", + all: "所有 {entity}", + drop_here_to_move: "拖曳到此處以移動 {entity}", + delete: { + label: "刪除 {entity}", + success: "{entity} 刪除成功", + failed: "{entity} 刪除失敗", + }, + update: { + failed: "{entity} 更新失敗", + success: "{entity} 更新成功", + }, + link_copied_to_clipboard: "{entity} 連結已複製到剪貼簿", + fetch: { + failed: "取得 {entity} 時發生錯誤", + }, + add: { + success: "{entity} 新增成功", + failed: "新增 {entity} 時發生錯誤", + }, + remove: { + success: "{entity} 刪除成功", + failed: "刪除 {entity} 時發生錯誤", + }, + }, + epic: { + all: "所有 Epic", + label: "{count, plural, one {Epic} other {Epic}}", + new: "新 Epic", + adding: "新增 Epic 中", + create: { + success: "Epic 建立成功", + }, + add: { + press_enter: "按 'Enter' 以新增另一個 Epic", + label: "新增 Epic", + }, + title: { + label: "Epic 標題", + required: "Epic 標題為必填。", + }, + }, + issue: { + label: "{count, plural, one {工作事項} other {工作事項}}", + all: "所有工作事項", + edit: "編輯工作事項", + title: { + label: "工作事項標題", + required: "工作事項標題為必填。", + }, + add: { + press_enter: "按 'Enter' 以新增另一個工作事項", + label: "新增工作事項", + cycle: { + failed: "無法將工作事項新增到週期。請再試一次。", + success: "{count, plural, one {工作事項} other {工作事項}} 已成功新增到週期。", + loading: "正在將 {count, plural, one {工作事項} other {工作事項}} 新增到週期", + }, + assignee: "新增指派對象", + start_date: "新增開始日期", + due_date: "新增截止日期", + parent: "新增父工作事項", + sub_issue: "新增子工作事項", + relation: "新增關聯", + link: "新增連結", + existing: "新增現有工作事項", + }, + remove: { + label: "移除工作事項", + cycle: { + loading: "正在從週期移除工作事項", + success: "已成功從週期移除工作事項。", + failed: "無法從週期移除工作事項。請再試一次。", + }, + module: { + loading: "正在從模組移除工作事項", + success: "已成功從模組移除工作事項。", + failed: "無法從模組移除工作事項。請再試一次。", + }, + parent: { + label: "移除父工作事項", + }, + }, + new: "新工作事項", + adding: "新增工作事項中", + create: { + success: "工作事項建立成功", + }, + priority: { + urgent: "緊急", + high: "高", + medium: "中", + low: "低", + }, + display: { + properties: { + label: "顯示屬性", + id: "ID", + issue_type: "工作事項類型", + sub_issue_count: "子工作事項數量", + attachment_count: "附件數量", + created_on: "建立於", + sub_issue: "子工作事項", + work_item_count: "工作事項數量", + }, + extra: { + show_sub_issues: "顯示子工作事項", + show_empty_groups: "顯示空群組", + }, + }, + layouts: { + ordered_by_label: "此版面配置依據以下條件排序", + list: "清單", + kanban: "看板", + calendar: "日曆", + spreadsheet: "試算表", + gantt: "甘特圖", + title: { + list: "清單版面配置", + kanban: "看板版面配置", + calendar: "日曆版面配置", + spreadsheet: "試算表版面配置", + gantt: "甘特圖版面配置", + }, + }, + states: { + active: "使用中", + backlog: "待辦事項", + }, + comments: { + placeholder: "新增留言", + switch: { + private: "切換為私人留言", + public: "切換為公開留言", + }, + create: { + success: "留言建立成功", + error: "留言建立失敗。請稍後再試。", + }, + update: { + success: "留言更新成功", + error: "留言更新失敗。請稍後再試。", + }, + remove: { + success: "留言移除成功", + error: "留言移除失敗。請稍後再試。", + }, + upload: { + error: "資產上傳失敗。請稍後再試。", + }, + copy_link: { + success: "評論連結已複製到剪貼簿", + error: "複製評論連結時出錯。請稍後再試。", + }, + }, + empty_state: { + issue_detail: { + title: "工作事項不存在", + description: "您尋找的工作事項不存在、已封存或已刪除。", + primary_button: { + text: "檢視其他工作事項", + }, + }, + }, + sibling: { + label: "同層級工作事項", + }, + archive: { + description: "只有已完成或取消的\n工作事項可以封存", + label: "封存工作事項", + confirm_message: "您確定要封存工作事項嗎?所有已封存的工作事項稍後都可以還原。", + success: { + label: "封存成功", + message: "您的封存可以在專案封存中找到。", + }, + failed: { + message: "無法封存工作事項。請再試一次。", + }, + }, + restore: { + success: { + title: "還原成功", + message: "您的工作事項可以在專案工作事項中找到。", + }, + failed: { + message: "無法還原工作事項。請再試一次。", + }, + }, + relation: { + relates_to: "與此相關", + duplicate: "此項重複", + blocked_by: "被此阻礙", + blocking: "阻礙此項", + }, + copy_link: "複製工作事項連結", + delete: { + label: "刪除工作事項", + error: "刪除工作事項時發生錯誤", + }, + subscription: { + actions: { + subscribed: "已成功訂閱工作事項", + unsubscribed: "已成功取消訂閱工作事項", + }, + }, + select: { + error: "請至少選擇一個工作事項", + empty: "未選擇工作事項", + add_selected: "新增已選取的工作事項", + select_all: "全選", + deselect_all: "取消全選", + }, + open_in_full_screen: "以全螢幕開啟工作事項", + }, + attachment: { + error: "無法附加檔案。請重新上傳。", + only_one_file_allowed: "一次只能上傳一個檔案。", + file_size_limit: "檔案大小必須小於或等於 {size}MB。", + drag_and_drop: "拖曳到任何位置以上傳", + delete: "刪除附件", + }, + label: { + select: "選擇標籤", + create: { + success: "標籤建立成功", + failed: "標籤建立失敗", + already_exists: "標籤已存在", + type: "輸入以新增標籤", + }, + }, + sub_work_item: { + update: { + success: "子工作事項更新成功", + error: "更新子工作事項時發生錯誤", + }, + remove: { + success: "子工作事項移除成功", + error: "移除子工作事項時發生錯誤", + }, + empty_state: { + sub_list_filters: { + title: "您沒有符合您應用過的過濾器的子工作事項。", + description: "要查看所有子工作事項,請清除所有應用過的過濾器。", + action: "清除過濾器", + }, + list_filters: { + title: "您沒有符合您應用過的過濾器的工作事項。", + description: "要查看所有工作事項,請清除所有應用過的過濾器。", + action: "清除過濾器", + }, + }, + }, + view: { + label: "{count, plural, one {檢視} other {檢視}}", + create: { + label: "建立檢視", + }, + update: { + label: "更新檢視", + }, + }, + inbox_issue: { + status: { + pending: { + title: "待處理", + description: "待處理", + }, + declined: { + title: "已拒絕", + description: "已拒絕", + }, + snoozed: { + title: "已延後", + description: "還剩 {days, plural, one{# 天} other{# 天}}", + }, + accepted: { + title: "已接受", + description: "已接受", + }, + duplicate: { + title: "重複", + description: "重複", + }, + }, + modals: { + decline: { + title: "拒絕工作事項", + content: "您確定要拒絕工作事項 {value} 嗎?", + }, + delete: { + title: "刪除工作事項", + content: "您確定要刪除工作事項 {value} 嗎?", + success: "工作事項刪除成功", + }, + }, + errors: { + snooze_permission: "只有專案管理員可以延後/取消延後工作事項", + accept_permission: "只有專案管理員可以接受工作事項", + decline_permission: "只有專案管理員可以拒絕工作事項", + }, + actions: { + accept: "接受", + decline: "拒絕", + snooze: "延後", + unsnooze: "取消延後", + copy: "複製工作事項連結", + delete: "刪除", + open: "開啟工作事項", + mark_as_duplicate: "標記為重複", + move: "將 {value} 移至專案工作事項", + }, + source: { + "in-app": "應用程式內", + }, + order_by: { + created_at: "建立時間", + updated_at: "更新時間", + id: "ID", + }, + label: "進件", + page_label: "{workspace} - 進件", + modal: { + title: "建立進件工作事項", + }, + tabs: { + open: "開啟", + closed: "已關閉", + }, + empty_state: { + sidebar_open_tab: { + title: "沒有開啟的工作事項", + description: "在這裡尋找開啟的工作事項。建立新工作事項。", + }, + sidebar_closed_tab: { + title: "沒有已關閉的工作事項", + description: "所有已接受或拒絕的工作事項都可以在這裡找到。", + }, + sidebar_filter: { + title: "沒有符合的工作事項", + description: "沒有工作事項符合進件中套用的篩選條件。建立新工作事項。", + }, + detail: { + title: "選擇工作事項以檢視其詳細資訊。", + }, + }, + }, + workspace_creation: { + heading: "建立您的工作區", + subheading: "若要開始使用 Plane,您需要建立或加入工作區。", + form: { + name: { + label: "為您的工作區命名", + placeholder: "最好使用熟悉且容易識別的名稱。", + }, + url: { + label: "設定您的工作區網址", + placeholder: "輸入或貼上網址", + edit_slug: "您只能編輯網址的片段", + }, + organization_size: { + label: "有多少人會使用這個工作區?", + placeholder: "選擇一個範圍", + }, + }, + errors: { + creation_disabled: { + title: "只有您的執行個體管理員可以建立工作區", + description: "如果您知道您的執行個體管理員的電子郵件地址,請點選下方按鈕與他們聯絡。", + request_button: "請求執行個體管理員", + }, + validation: { + name_alphanumeric: "工作區名稱只能包含 (' ')、('-')、('_') 和英數字元。", + name_length: "名稱請限制在 80 個字元以內。", + url_alphanumeric: "網址只能包含 ('-') 和英數字元。", + url_length: "網址請限制在 48 個字元以內。", + url_already_taken: "工作區網址已被使用!", + }, + }, + request_email: { + subject: "請求新工作區", + body: "您好,執行個體管理員:\n\n請以網址 [/workspace-name] 建立一個新工作區,用於 [建立工作區的目的]。\n\n謝謝,\n{firstName} {lastName}\n{email}", + }, + button: { + default: "建立工作區", + loading: "建立工作區中", + }, + toast: { + success: { + title: "成功", + message: "工作區建立成功", + }, + error: { + title: "錯誤", + message: "無法建立工作區。請再試一次。", + }, + }, + }, + workspace_dashboard: { + empty_state: { + general: { + title: "您的專案、活動和指標概覽", + description: + "歡迎使用 Plane,我們很高興您在這裡。建立您的第一個專案並追蹤您的工作事項,這個頁面將會變成一個協助您進展的空間。管理員也會看到協助他們團隊進展的項目。", + primary_button: { + text: "建立您的第一個專案", + comic: { + title: "在 Plane 中,一切都始於專案", + description: "專案可以是產品的藍圖、行銷活動,或是推出新車。", + }, + }, + }, + }, + }, + workspace_analytics: { + label: "分析", + page_label: "{workspace} - 分析", + open_tasks: "開啟任務總數", + error: "取得資料時發生錯誤。", + work_items_closed_in: "已完成的工作事項數量在", + selected_projects: "已選取的專案", + total_members: "成員總數", + total_cycles: "週期總數", + total_modules: "模組總數", + pending_work_items: { + title: "待處理工作事項", + empty_state: "在此顯示同事待處理工作事項的分析。", + }, + work_items_closed_in_a_year: { + title: "年度完成工作事項", + empty_state: "完成工作事項以圖表形式檢視分析。", + }, + most_work_items_created: { + title: "最多工作事項建立者", + empty_state: "在此顯示同事及其建立的工作事項數量。", + }, + most_work_items_closed: { + title: "最多工作事項完成者", + empty_state: "在此顯示同事及其完成的工作事項數量。", + }, + tabs: { + scope_and_demand: "範圍與需求", + custom: "自訂分析", + }, + empty_state: { + customized_insights: { + description: "指派給您的工作項目將依狀態分類顯示在此處。", + title: "尚無資料", + }, + created_vs_resolved: { + description: "隨著時間推移所建立與解決的工作項目將顯示在此處。", + title: "尚無資料", + }, + project_insights: { + title: "尚無資料", + description: "指派給您的工作項目將依狀態分類顯示在此處。", + }, + general: { + title: "追蹤進度、工作量和分配。發現趨勢,消除障礙,加速工作進展", + description: "查看範圍與需求、估算和範圍蔓延。獲取團隊成員和團隊的績效,確保您的專案按時運行。", + primary_button: { + text: "開始您的第一個專案", + comic: { + title: "分析功能在週期 + 模組中效果最佳", + description: + "首先,將您的問題在週期中進行時間限制,如果可能的話,將跨越多個週期的問題分組到模組中。在左側導覽中查看這兩個功能。", + }, + }, + }, + }, + created_vs_resolved: "已建立 vs 已解決", + customized_insights: "自訂化洞察", + backlog_work_items: "待辦的{entity}", + active_projects: "啟用中的專案", + trend_on_charts: "圖表趨勢", + all_projects: "所有專案", + summary_of_projects: "專案摘要", + project_insights: "專案洞察", + started_work_items: "已開始的{entity}", + total_work_items: "{entity}總數", + total_projects: "專案總數", + total_admins: "管理員總數", + total_users: "使用者總數", + total_intake: "總收入", + un_started_work_items: "未開始的{entity}", + total_guests: "訪客總數", + completed_work_items: "已完成的{entity}", + total: "{entity}總數", + }, + workspace_projects: { + label: "{count, plural, one {專案} other {專案}}", + create: { + label: "新增專案", + }, + network: { + label: "網路", + private: { + title: "私人", + description: "僅受邀者可存取", + }, + public: { + title: "公開", + description: "工作區中除了訪客以外的任何人都可以加入", + }, + }, + error: { + permission: "您沒有執行此操作的權限。", + cycle_delete: "無法刪除週期", + module_delete: "無法刪除模組", + issue_delete: "無法刪除工作事項", + }, + state: { + backlog: "待辦事項", + unstarted: "未開始", + started: "已開始", + completed: "已完成", + cancelled: "已取消", + }, + sort: { + manual: "手動", + name: "名稱", + created_at: "建立日期", + members_length: "成員數量", + }, + scope: { + my_projects: "我的專案", + archived_projects: "已封存", + }, + common: { + months_count: "{months, plural, one{# 個月} other{# 個月}}", + }, + empty_state: { + general: { + title: "沒有使用中的專案", + description: + "請將每個專案視為目標導向工作的上層。專案是工作、週期和模組所在的地方,並與您的同事一起協助您達成目標。建立新專案或篩選已封存的專案。", + primary_button: { + text: "開始您的第一個專案", + comic: { + title: "在 Plane 中,一切都始於專案", + description: "專案可以是產品的藍圖、行銷活動,或是推出新車。", + }, + }, + }, + no_projects: { + title: "沒有專案", + description: "若要建立工作事項或管理您的工作,您需要建立專案或成為專案的一部分。", + primary_button: { + text: "開始您的第一個專案", + comic: { + title: "在 Plane 中,一切都始於專案", + description: "專案可以是產品的藍圖、行銷活動,或是推出新車。", + }, + }, + }, + filter: { + title: "沒有符合的專案", + description: "找不到符合篩選條件的專案。\n改為建立新專案。", + }, + search: { + description: "找不到符合篩選條件的專案。\n改為建立新專案", + }, + }, + }, + workspace_views: { + add_view: "新增檢視", + empty_state: { + "all-issues": { + title: "專案中沒有工作事項", + description: "第一個專案完成!現在,將您的工作分割成可追蹤的工作事項。讓我們開始吧!", + primary_button: { + text: "建立新工作事項", + }, + }, + assigned: { + title: "尚無工作事項", + description: "從這裡可以追蹤指派給您的工作事項。", + primary_button: { + text: "建立新工作事項", + }, + }, + created: { + title: "尚無工作事項", + description: "您建立的所有工作事項都會出現在這裡,直接在這裡追蹤它們。", + primary_button: { + text: "建立新工作事項", + }, + }, + subscribed: { + title: "尚無工作事項", + description: "訂閱您感興趣的工作事項,在這裡追蹤它們。", + }, + "custom-view": { + title: "尚無工作事項", + description: "符合篩選條件的工作事項,在這裡追蹤它們。", + }, + }, + }, + workspace_settings: { + label: "工作區設定", + page_label: "{workspace} - 一般設定", + key_created: "金鑰已建立", + copy_key: "複製並儲存此金鑰到 Plane Pages。關閉後您將無法看到此金鑰。已下載包含金鑰的 CSV 檔案。", + token_copied: "權杖已複製到剪貼簿。", + settings: { + general: { + title: "一般", + upload_logo: "上傳標誌", + edit_logo: "編輯標誌", + name: "工作區名稱", + company_size: "公司規模", + url: "工作區網址", + update_workspace: "更新工作區", + delete_workspace: "刪除此工作區", + delete_workspace_description: "刪除工作區時,該工作區內的所有資料和資源都將被永久移除且無法復原。", + delete_btn: "刪除此工作區", + delete_modal: { + title: "您確定要刪除此工作區嗎?", + description: "您有一個使用中的付費方案試用期。請先取消試用期再繼續。", + dismiss: "關閉", + cancel: "取消試用", + success_title: "工作區已刪除。", + success_message: "您很快就會進入個人資料頁面。", + error_title: "操作失敗。", + error_message: "請重試。", + }, + errors: { + name: { + required: "名稱為必填", + max_length: "工作區名稱不應超過 80 個字元", + }, + company_size: { + required: "公司規模為必填", + select_a_range: "選擇組織規模", + }, + }, + }, + members: { + title: "成員", + add_member: "新增成員", + pending_invites: "待處理的邀請", + invitations_sent_successfully: "邀請傳送成功", + leave_confirmation: "您確定要離開工作區嗎?您將無法再存取此工作區。此操作無法復原。", + details: { + full_name: "全名", + display_name: "顯示名稱", + email_address: "電子郵件地址", + account_type: "帳號類型", + authentication: "驗證", + joining_date: "加入日期", + }, + modal: { + title: "邀請人員協作", + description: "邀請人員加入您的工作區進行協作。", + button: "傳送邀請", + button_loading: "傳送邀請中", + placeholder: "name@company.com", + errors: { + required: "我們需要電子郵件地址才能邀請他們。", + invalid: "電子郵件無效", + }, + }, + }, + billing_and_plans: { + title: "計費和方案", + current_plan: "目前方案", + free_plan: "您目前使用的是免費方案", + view_plans: "檢視方案", + }, + exports: { + title: "匯出", + exporting: "匯出中", + previous_exports: "先前的匯出", + export_separate_files: "將資料匯出為個別檔案", + modal: { + title: "匯出至", + toasts: { + success: { + title: "匯出成功", + message: "您可以從先前的匯出下載匯出的 {entity}", + }, + error: { + title: "匯出失敗", + message: "匯出未成功。請再試一次。", + }, + }, + }, + }, + webhooks: { + title: "Webhook", + add_webhook: "新增 Webhook", + modal: { + title: "建立 Webhook", + details: "Webhook 詳細資訊", + payload: "承載網址", + question: "您希望觸發此 Webhook 的事件有哪些?", + error: "網址為必填", + }, + secret_key: { + title: "金鑰", + message: "產生權杖以簽署 Webhook 承載", + }, + options: { + all: "傳送所有資訊給我", + individual: "選擇個別事件", + }, + toasts: { + created: { + title: "Webhook 已建立", + message: "Webhook 已成功建立", + }, + not_created: { + title: "Webhook 未建立", + message: "無法建立 Webhook", + }, + updated: { + title: "Webhook 已更新", + message: "Webhook 已成功更新", + }, + not_updated: { + title: "Webhook 未更新", + message: "無法更新 Webhook", + }, + removed: { + title: "Webhook 已移除", + message: "Webhook 已成功移除", + }, + not_removed: { + title: "Webhook 未移除", + message: "無法移除 Webhook", + }, + secret_key_copied: { + message: "金鑰已複製到剪貼簿。", + }, + secret_key_not_copied: { + message: "複製金鑰時發生錯誤。", + }, + }, + }, + api_tokens: { + title: "API 權杖", + add_token: "新增 API 權杖", + create_token: "建立權杖", + never_expires: "永不過期", + generate_token: "產生權杖", + generating: "產生中", + delete: { + title: "刪除 API 權杖", + description: "使用此權杖的任何應用程式將無法再存取 Plane 資料。此操作無法復原。", + success: { + title: "成功!", + message: "API 權杖已成功刪除", + }, + error: { + title: "錯誤!", + message: "無法刪除 API 權杖", + }, + }, + }, + }, + empty_state: { + api_tokens: { + title: "尚未建立 API 權杖", + description: "Plane API 可用於將您在 Plane 中的資料與任何外部系統整合。建立權杖以開始使用。", + }, + webhooks: { + title: "尚未新增 Webhook", + description: "建立 Webhook 以接收即時更新並自動執行操作。", + }, + exports: { + title: "尚無匯出", + description: "每當您匯出時,也會在這裡保留一份副本供參考。", + }, + imports: { + title: "尚無匯入", + description: "在這裡找到所有您先前的匯入並下載它們。", + }, + }, + }, + profile: { + label: "個人資料", + page_label: "您的工作", + work: "工作", + details: { + joined_on: "加入於", + time_zone: "時區", + }, + stats: { + workload: "工作量", + overview: "概覽", + created: "已建立的工作事項", + assigned: "已指派的工作事項", + subscribed: "已訂閱的工作事項", + state_distribution: { + title: "依狀態分類的工作事項", + empty: "建立工作事項以在圖表中檢視依狀態分類的工作事項,以便進行更好的分析。", + }, + priority_distribution: { + title: "依優先順序分類的工作事項", + empty: "建立工作事項以在圖表中檢視依優先順序分類的工作事項,以便進行更好的分析。", + }, + recent_activity: { + title: "最近活動", + empty: "我們找不到資料。請檢查您的輸入", + button: "下載今天的活動", + button_loading: "下載中", + }, + }, + actions: { + profile: "個人資料", + security: "安全性", + activity: "活動", + appearance: "外觀", + notifications: "通知", + }, + tabs: { + summary: "摘要", + assigned: "已指派", + created: "已建立", + subscribed: "已訂閱", + activity: "活動", + }, + empty_state: { + activity: { + title: "尚無活動", + description: "開始建立新工作事項!為其新增詳細資訊和屬性。探索更多 Plane 功能以檢視您的活動。", + }, + assigned: { + title: "沒有指派給您的工作事項", + description: "從這裡可以追蹤指派給您的工作事項。", + }, + created: { + title: "尚無工作事項", + description: "您建立的所有工作事項都會出現在這裡,直接在這裡追蹤它們。", + }, + subscribed: { + title: "尚無工作事項", + description: "訂閱您感興趣的工作事項,在這裡追蹤它們。", + }, + }, + }, + project_settings: { + general: { + enter_project_id: "輸入專案 ID", + please_select_a_timezone: "請選擇時區", + archive_project: { + title: "封存專案", + description: + "封存專案將不再從您的側邊導覽列中列出您的專案,但您仍然可以從專案頁面存取它。您可以隨時還原專案或刪除它。", + button: "封存專案", + }, + delete_project: { + title: "刪除專案", + description: "刪除專案時,該專案內的所有資料和資源都將被永久移除且無法復原。", + button: "刪除我的專案", + }, + toast: { + success: "專案更新成功", + error: "無法更新專案。請再試一次。", + }, + }, + members: { + label: "成員", + project_lead: "專案負責人", + default_assignee: "預設指派對象", + guest_super_permissions: { + title: "授予訪客使用者檢視所有工作事項的權限:", + sub_heading: "這將允許訪客檢視所有專案工作事項。", + }, + invite_members: { + title: "邀請成員", + sub_heading: "邀請成員參與您的專案。", + select_co_worker: "選擇同事", + }, + }, + states: { + describe_this_state_for_your_members: "為您的成員描述此狀態。", + empty_state: { + title: "{groupKey} 群組沒有可用的狀態", + description: "請建立新狀態", + }, + }, + labels: { + label_title: "標籤標題", + label_title_is_required: "標籤標題為必填", + label_max_char: "標籤名稱不應超過 255 個字元", + toast: { + error: "更新標籤時發生錯誤", + }, + }, + estimates: { + label: "預估", + title: "為我的專案啟用預估", + description: "幫助你傳達團隊的複雜性和工作負荷。", + no_estimate: "無預估", + new: "新估算系統", + create: { + custom: "自訂", + start_from_scratch: "從頭開始", + choose_template: "選擇範本", + choose_estimate_system: "選擇預估系統", + enter_estimate_point: "輸入預估", + step: "步驟 {step} 共 {total}", + label: "建立預估", + }, + toasts: { + created: { + success: { + title: "預估已建立", + message: "預估已成功建立", + }, + error: { + title: "預估建立失敗", + message: "我們無法建立新的預估,請重試。", + }, + }, + updated: { + success: { + title: "預估已修改", + message: "專案中的預估已更新。", + }, + error: { + title: "預估修改失敗", + message: "我們無法修改預估,請重試", + }, + }, + enabled: { + success: { + title: "成功!", + message: "預估已啟用。", + }, + }, + disabled: { + success: { + title: "成功!", + message: "預估已停用。", + }, + error: { + title: "錯誤!", + message: "無法停用預估。請重試", + }, + }, + }, + validation: { + min_length: "預估必須大於0。", + unable_to_process: "我們無法處理你的請求,請重試。", + numeric: "預估必須是數值。", + character: "預估必須是字元值。", + empty: "預估值不能為空。", + already_exists: "預估值已存在。", + unsaved_changes: "你有未儲存的變更。請在點擊完成前儲存", + remove_empty: "預估不能為空。在每個欄位中輸入值或移除沒有值的欄位。", + }, + systems: { + points: { + label: "點數", + fibonacci: "費波那契數列", + linear: "線性", + squares: "平方數", + custom: "自訂", + }, + categories: { + label: "類別", + t_shirt_sizes: "T恤尺寸", + easy_to_hard: "簡單到困難", + custom: "自訂", + }, + time: { + label: "時間", + hours: "小時", + }, + }, + }, + automations: { + label: "自動化", + "auto-archive": { + title: "自動封存已關閉的工作項目", + description: "Plane將自動封存已完成或已取消的工作項目。", + duration: "自動封存已關閉的工作項目", + }, + "auto-close": { + title: "自動關閉工作項目", + description: "Plane將自動關閉未完成或未取消的工作項目。", + duration: "自動關閉非活動工作項目", + auto_close_status: "自動關閉狀態", + }, + }, + empty_state: { + labels: { + title: "尚無標籤", + description: "建立標籤以協助組織和篩選專案中的工作事項。", + }, + estimates: { + title: "尚無評估系統", + description: "建立一組評估以傳達每個工作事項的工作量。", + primary_button: "新增評估系統", + }, + }, + }, + project_cycles: { + add_cycle: "新增週期", + more_details: "更多詳細資訊", + cycle: "週期", + update_cycle: "更新週期", + create_cycle: "建立週期", + no_matching_cycles: "沒有符合的週期", + remove_filters_to_see_all_cycles: "移除篩選器以檢視所有週期", + remove_search_criteria_to_see_all_cycles: "移除搜尋條件以檢視所有週期", + only_completed_cycles_can_be_archived: "只有已完成的週期可以封存", + start_date: "開始日期", + end_date: "結束日期", + in_your_timezone: "在您的時區", + transfer_work_items: "轉移 {count} 工作事項", + date_range: "日期範圍", + add_date: "新增日期", + active_cycle: { + label: "使用中的週期", + progress: "進度", + chart: "燃盡圖", + priority_issue: "優先順序工作事項", + assignees: "指派對象", + issue_burndown: "工作事項燃盡", + ideal: "理想", + current: "目前", + labels: "標籤", + }, + upcoming_cycle: { + label: "即將到來的週期", + }, + completed_cycle: { + label: "已完成的週期", + }, + status: { + days_left: "剩餘天數", + completed: "已完成", + yet_to_start: "尚未開始", + in_progress: "進行中", + draft: "草稿", + }, + action: { + restore: { + title: "還原週期", + success: { + title: "週期已還原", + description: "週期已還原。", + }, + failed: { + title: "週期還原失敗", + description: "無法還原週期。請再試一次。", + }, + }, + favorite: { + loading: "將週期加入我的最愛", + success: { + description: "週期已加入我的最愛。", + title: "成功!", + }, + failed: { + description: "無法將週期加入我的最愛。請再試一次。", + title: "錯誤!", + }, + }, + unfavorite: { + loading: "從我的最愛移除週期", + success: { + description: "週期已從我的最愛移除。", + title: "成功!", + }, + failed: { + description: "無法從我的最愛移除週期。請再試一次。", + title: "錯誤!", + }, + }, + update: { + loading: "更新週期中", + success: { + description: "週期更新成功。", + title: "成功!", + }, + failed: { + description: "更新週期時發生錯誤。請再試一次。", + title: "錯誤!", + }, + error: { + already_exists: "給定日期範圍內已有週期,如果您要建立草稿週期,可以移除兩個日期來執行此操作。", + }, + }, + }, + empty_state: { + general: { + title: "在週期中分組和時間區段化您的工作。", + description: "將工作分解為時間區段化的區塊,從您的專案截止日期向後設定日期,並以團隊的方式取得具體進展。", + primary_button: { + text: "設定您的第一個週期", + comic: { + title: "週期是重複的時間區段。", + description: "衝刺、迭代,或您用於每週或每兩週追蹤工作的任何其他術語都是週期。", + }, + }, + }, + no_issues: { + title: "週期中沒有新增工作事項", + description: "新增或建立您希望在此週期內時間區段化和交付的工作事項", + primary_button: { + text: "建立新工作事項", + }, + secondary_button: { + text: "新增現有工作事項", + }, + }, + completed_no_issues: { + title: "週期中沒有工作事項", + description: + "週期中沒有工作事項。工作事項已被轉移或隱藏。若要檢視隱藏的工作事項(如果有),請相應地更新您的顯示屬性。", + }, + active: { + title: "沒有使用中的週期", + description: "使用中的週期包括任何期間內包含今天日期的週期。在這裡找到使用中週期的進度和詳細資訊。", + }, + archived: { + title: "尚無已封存的週期", + description: "為了整理您的專案,可以封存已完成的週期。一旦封存,您可以在這裡找到它們。", + }, + }, + }, + project_issues: { + empty_state: { + no_issues: { + title: "建立工作事項並指派給某人,甚至是您自己", + description: + "將工作事項視為工作、任務、工作或待辦事項。我們喜歡這樣。工作事項及其子工作事項通常是指派給團隊成員的以時間為基礎的可執行項目。您的團隊建立、指派和完成工作事項,以推動您的專案朝向其目標前進。", + primary_button: { + text: "建立您的第一個工作事項", + comic: { + title: "工作事項是 Plane 中的基本單位。", + description: + "重新設計 Plane 使用者介面、重塑公司品牌或推出新的燃料噴射系統都是可能有子工作事項的工作事項範例。", + }, + }, + }, + no_archived_issues: { + title: "尚無已封存的工作事項", + description: "透過手動或自動化的方式,您可以封存已完成或取消的工作事項。一旦封存,您可以在這裡找到它們。", + primary_button: { + text: "設定自動化", + }, + }, + issues_empty_filter: { + title: "找不到符合套用篩選器的工作事項", + secondary_button: { + text: "清除所有篩選器", + }, + }, + }, + }, + project_module: { + add_module: "新增模組", + update_module: "更新模組", + create_module: "建立模組", + archive_module: "封存模組", + restore_module: "還原模組", + delete_module: "刪除模組", + empty_state: { + general: { + title: "將您的專案里程碑對應到模組並輕鬆追蹤彙總工作。", + description: + "屬於邏輯、階層式上層的一組工作事項形成一個模組。將其視為一種依專案里程碑追蹤工作的方式。它們有自己的期間和截止日期以及分析,可協助您了解您距離里程碑有多近或多遠。", + primary_button: { + text: "建立您的第一個模組", + comic: { + title: "模組協助依階層結構分組工作。", + description: "購物車模組、底盤模組和倉庫模組都是這種分組的好例子。", + }, + }, + }, + no_issues: { + title: "模組中沒有工作事項", + description: "建立或新增您想要作為此模組一部分完成的工作事項", + primary_button: { + text: "建立新工作事項", + }, + secondary_button: { + text: "新增現有工作事項", + }, + }, + archived: { + title: "尚無已封存的模組", + description: "為了整理您的專案,可以封存已完成或取消的模組。一旦封存,您可以在這裡找到它們。", + }, + sidebar: { + in_active: "此模組尚未啟用。", + invalid_date: "日期無效。請輸入有效日期。", + }, + }, + quick_actions: { + archive_module: "封存模組", + archive_module_description: "只有已完成或取消的\n模組可以封存。", + delete_module: "刪除模組", + }, + toast: { + copy: { + success: "模組連結已複製到剪貼簿", + }, + delete: { + success: "模組刪除成功", + error: "刪除模組失敗", + }, + }, + }, + project_views: { + empty_state: { + general: { + title: "為您的專案儲存篩選的檢視。依需要建立多個檢視", + description: + "檢視是您經常使用或想要輕鬆存取的已儲存篩選器集。專案中的所有同事都可以看到每個人的檢視,並選擇最適合他們需求的檢視。", + primary_button: { + text: "建立您的第一個檢視", + comic: { + title: "檢視基於工作事項屬性運作。", + description: "您可以從這裡建立檢視,使用您認為合適的屬性作為篩選器。", + }, + }, + }, + filter: { + title: "沒有符合的檢視", + description: "沒有檢視符合搜尋條件。\n改為建立新檢視。", + }, + }, + }, + project_page: { + empty_state: { + general: { + title: "撰寫筆記、文件或完整的知識庫。讓 Galileo(Plane 的 AI 助手)協助您開始", + description: + "頁面是 Plane 中的思考筆記空間。記下會議筆記,輕鬆格式化,嵌入工作事項,使用元件庫排版,並將它們全部保留在專案的上下文中。若要快速完成任何文件,可以使用快速鍵或按鈕來呼叫 Plane 的 AI Galileo。", + primary_button: { + text: "建立您的第一個頁面", + }, + }, + private: { + title: "尚無私人頁面", + description: "在這裡保留您的私人想法。當您準備好分享時,團隊只需點選一下即可。", + primary_button: { + text: "建立您的第一個頁面", + }, + }, + public: { + title: "尚無公開頁面", + description: "在這裡檢視與專案中所有人分享的頁面。", + primary_button: { + text: "建立您的第一個頁面", + }, + }, + archived: { + title: "尚無已封存的頁面", + description: "封存不在您雷達上的頁面。需要時在這裡存取它們。", + }, + }, + }, + command_k: { + empty_state: { + search: { + title: "找不到結果", + }, + }, + }, + issue_relation: { + empty_state: { + search: { + title: "找不到符合的工作事項", + }, + no_issues: { + title: "找不到工作事項", + }, + }, + }, + issue_comment: { + empty_state: { + general: { + title: "尚無留言", + description: "留言可用作工作事項的討論和後續追蹤空間", + }, + }, + }, + notification: { + label: "收件匣", + page_label: "{workspace} - 收件匣", + options: { + mark_all_as_read: "全部標記為已讀", + mark_read: "標記為已讀", + mark_unread: "標記為未讀", + refresh: "重新整理", + filters: "收件匣篩選器", + show_unread: "顯示未讀", + show_snoozed: "顯示已延後", + show_archived: "顯示已封存", + mark_archive: "封存", + mark_unarchive: "取消封存", + mark_snooze: "延後", + mark_unsnooze: "取消延後", + }, + toasts: { + read: "通知已標記為已讀", + unread: "通知已標記為未讀", + archived: "通知已標記為已封存", + unarchived: "通知已標記為未封存", + snoozed: "通知已延後", + unsnoozed: "通知已取消延後", + }, + empty_state: { + detail: { + title: "選擇以檢視詳細資訊。", + }, + all: { + title: "沒有指派的工作事項", + description: "您可以在這裡看到指派給您的工作事項的更新", + }, + mentions: { + title: "沒有指派的工作事項", + description: "您可以在這裡看到指派給您的工作事項的更新", + }, + }, + tabs: { + all: "全部", + mentions: "提及", + }, + filter: { + assigned: "指派給我", + created: "由我建立", + subscribed: "由我訂閱", + }, + snooze: { + "1_day": "1 天", + "3_days": "3 天", + "5_days": "5 天", + "1_week": "1 週", + "2_weeks": "2 週", + custom: "自訂", + }, + }, + active_cycle: { + empty_state: { + progress: { + title: "新增工作事項到週期以檢視其進度", + }, + chart: { + title: "新增工作事項到週期以檢視燃盡圖。", + }, + priority_issue: { + title: "快速檢視週期中處理的高優先順序工作事項。", + }, + assignee: { + title: "新增指派對象到工作事項以檢視依指派對象分類的工作分析。", + }, + label: { + title: "新增標籤到工作事項以檢視依標籤分類的工作分析。", + }, + }, + }, + disabled_project: { + empty_state: { + inbox: { + title: "進件功能未啟用於此專案。", + description: + "進件可協助您管理專案的傳入請求,並將它們新增為工作流程中的工作事項。從專案設定啟用進件以管理請求。", + primary_button: { + text: "管理功能", + }, + }, + cycle: { + title: "週期功能未啟用於此專案。", + description: + "將工作分解成時間區段化的區塊,從專案截止日期向後設定日期,並以團隊的方式取得具體進展。啟用專案的週期功能以開始使用。", + primary_button: { + text: "管理功能", + }, + }, + module: { + title: "模組未啟用於此專案。", + description: "模組是專案的基本組成部分。從專案設定啟用模組以開始使用。", + primary_button: { + text: "管理功能", + }, + }, + page: { + title: "頁面未啟用於此專案。", + description: "頁面是專案的基本組成部分。從專案設定啟用頁面以開始使用。", + primary_button: { + text: "管理功能", + }, + }, + view: { + title: "檢視未啟用於此專案。", + description: "檢視是專案的基本組成部分。從專案設定啟用檢視以開始使用。", + primary_button: { + text: "管理功能", + }, + }, + }, + }, + workspace_draft_issues: { + draft_an_issue: "建立工作事項草稿", + empty_state: { + title: "寫到一半的工作事項,以及即將推出的留言會出現在這裡。", + description: "若要試用此功能,請開始新增工作事項並中途離開,或在下方建立您的第一個草稿。😉", + primary_button: { + text: "建立您的第一個草稿", + }, + }, + delete_modal: { + title: "刪除草稿", + description: "您確定要刪除此草稿嗎?此操作無法復原。", + }, + toasts: { + created: { + success: "草稿已建立", + error: "無法建立工作事項。請再試一次。", + }, + deleted: { + success: "草稿已刪除", + }, + }, + }, + stickies: { + title: "您的便利貼", + placeholder: "點選此處輸入", + all: "所有便利貼", + "no-data": "記下想法、捕捉靈感或記錄突發奇想。新增便利貼以開始。", + add: "新增便利貼", + search_placeholder: "依標題搜尋", + delete: "刪除便利貼", + delete_confirmation: "您確定要刪除此便利貼嗎?", + empty_state: { + simple: "記下想法、捕捉靈感或記錄突發奇想。新增便利貼以開始。", + general: { + title: "便利貼是您隨手記下的快速筆記和待辦事項。", + description: "透過建立可隨時隨地存取的便利貼,輕鬆捕捉您的想法和點子。", + primary_button: { + text: "新增便利貼", + }, + }, + search: { + title: "這與您的便利貼都不符。", + description: "嘗試使用不同的詞彙或讓我們知道\n如果您確定您的搜尋是正確的。", + primary_button: { + text: "新增便利貼", + }, + }, + }, + toasts: { + errors: { + wrong_name: "便利貼名稱不能超過 100 個字元。", + already_exists: "已存在一個沒有描述的便利貼", + }, + created: { + title: "便利貼已建立", + message: "便利貼已成功建立", + }, + not_created: { + title: "便利貼未建立", + message: "無法建立便利貼", + }, + updated: { + title: "便利貼已更新", + message: "便利貼已成功更新", + }, + not_updated: { + title: "便利貼未更新", + message: "無法更新便利貼", + }, + removed: { + title: "便利貼已移除", + message: "便利貼已成功移除", + }, + not_removed: { + title: "便利貼未移除", + message: "無法移除便利貼", + }, + }, + }, + role_details: { + guest: { + title: "訪客", + description: "組織的外部成員可以被邀請為訪客。", + }, + member: { + title: "成員", + description: "在專案、週期和模組內具有讀取、寫入、編輯和刪除實體的能力", + }, + admin: { + title: "管理員", + description: "工作區內的所有權限都設為允許。", + }, + }, + user_roles: { + product_or_project_manager: "產品/專案經理", + development_or_engineering: "開發/工程", + founder_or_executive: "創辦人/主管", + freelancer_or_consultant: "自由工作者/顧問", + marketing_or_growth: "行銷/成長", + sales_or_business_development: "業務/業務發展", + support_or_operations: "支援/營運", + student_or_professor: "學生/教授", + human_resources: "人力資源", + other: "其他", + }, + importer: { + github: { + title: "GitHub", + description: "從 GitHub 儲存庫匯入工作事項並同步。", + }, + jira: { + title: "Jira", + description: "從 Jira 專案和 Epic 匯入工作事項和 Epic。", + }, + }, + exporter: { + csv: { + title: "CSV", + description: "將工作事項匯出為 CSV 檔案。", + short_description: "匯出為 CSV", + }, + excel: { + title: "Excel", + description: "將工作事項匯出為 Excel 檔案。", + short_description: "匯出為 Excel", + }, + xlsx: { + title: "Excel", + description: "將工作事項匯出為 Excel 檔案。", + short_description: "匯出為 Excel", + }, + json: { + title: "JSON", + description: "將工作事項匯出為 JSON 檔案。", + short_description: "匯出為 JSON", + }, + }, + default_global_view: { + all_issues: "所有工作事項", + assigned: "已指派", + created: "已建立", + subscribed: "已訂閱", + }, + themes: { + theme_options: { + system_preference: { + label: "系統偏好設定", + }, + light: { + label: "淺色", + }, + dark: { + label: "深色", + }, + light_contrast: { + label: "高對比淺色", + }, + dark_contrast: { + label: "高對比深色", + }, + custom: { + label: "自訂主題", + }, + }, + }, + project_modules: { + status: { + backlog: "待辦事項", + planned: "已規劃", + in_progress: "進行中", + paused: "已暫停", + completed: "已完成", + cancelled: "已取消", + }, + layout: { + list: "清單版面配置", + board: "圖庫版面配置", + timeline: "時間軸版面配置", + }, + order_by: { + name: "名稱", + progress: "進度", + issues: "工作事項數量", + due_date: "截止日期", + created_at: "建立日期", + manual: "手動", + }, + }, + cycle: { + label: "{count, plural, one {週期} other {週期}}", + no_cycle: "無週期", + }, + module: { + label: "{count, plural, one {模組} other {模組}}", + no_module: "無模組", + }, + description_versions: { + last_edited_by: "最後編輯者", + previously_edited_by: "先前編輯者", + edited_by: "編輯者", + }, + self_hosted_maintenance_message: { + plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start: + "Plane 未能啟動。這可能是因為一個或多個 Plane 服務啟動失敗。", + choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure: "從 setup.sh 和 Docker 日誌中選擇 View Logs 來確認。", + }, + page_navigation_pane: { + tabs: { + outline: { + label: "大綱", + empty_state: { + title: "缺少標題", + description: "讓我們在這個頁面添加一些標題來在這裡查看它們。", + }, + }, + info: { + label: "資訊", + document_info: { + words: "字數", + characters: "字元數", + paragraphs: "段落數", + read_time: "閱讀時間", + }, + actors_info: { + edited_by: "編輯者", + created_by: "建立者", + }, + version_history: { + label: "版本歷史", + current_version: "目前版本", + }, + }, + assets: { + label: "資源", + download_button: "下載", + empty_state: { + title: "缺少圖片", + description: "添加圖片以在這裡查看它們。", + }, + }, + }, + open_button: "打開導航面板", + close_button: "關閉導航面板", + outline_floating_button: "打開大綱", + }, +} as const; diff --git a/packages/i18n/tsdown.config.ts b/packages/i18n/tsdown.config.ts index e3281f2b10..7b2ea6fe2f 100644 --- a/packages/i18n/tsdown.config.ts +++ b/packages/i18n/tsdown.config.ts @@ -4,7 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, dts: true, - external: ["react", "lodash", "mobx", "mobx-react", "intl-messageformat"], + clean: true, sourcemap: true, }); diff --git a/packages/logger/package.json b/packages/logger/package.json index ba944ab94a..28dc39ef06 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -4,19 +4,13 @@ "license": "AGPL-3.0", "description": "Logger shared across multiple apps internally", "private": true, - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", "exports": { ".": { - "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" - } + }, + "./package.json": "./package.json" }, - "files": [ - "dist/**" - ], "scripts": { "build": "tsdown", "dev": "tsdown --watch", @@ -38,5 +32,8 @@ "@types/node": "^20.14.9", "tsdown": "catalog:", "typescript": "catalog:" - } + }, + "main": "./dist/index.js", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts" } diff --git a/packages/logger/tsdown.config.ts b/packages/logger/tsdown.config.ts index 194593e86c..7b2ea6fe2f 100644 --- a/packages/logger/tsdown.config.ts +++ b/packages/logger/tsdown.config.ts @@ -4,7 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, dts: true, - sourcemap: true, clean: true, + sourcemap: true, }); diff --git a/packages/propel/package.json b/packages/propel/package.json index b0b6ad39b5..f0d991852b 100644 --- a/packages/propel/package.json +++ b/packages/propel/package.json @@ -16,37 +16,145 @@ "build-storybook": "storybook build" }, "exports": { - "./accordion": "./dist/accordion/index.js", - "./animated-counter": "./dist/animated-counter/index.js", - "./avatar": "./dist/avatar/index.js", - "./button": "./dist/button/index.js", - "./calendar": "./dist/calendar/index.js", - "./card": "./dist/card/index.js", - "./charts/*": "./dist/charts/*/index.js", - "./collapsible": "./dist/collapsible/index.js", - "./combobox": "./dist/combobox/index.js", - "./command": "./dist/command/index.js", - "./context-menu": "./dist/context-menu/index.js", - "./dialog": "./dist/dialog/index.js", - "./emoji-icon-picker": "./dist/emoji-icon-picker/index.js", - "./emoji-reaction": "./dist/emoji-reaction/index.js", - "./emoji-reaction-picker": "./dist/emoji-reaction-picker/index.js", - "./icons": "./dist/icons/index.js", - "./menu": "./dist/menu/index.js", - "./pill": "./dist/pill/index.js", - "./popover": "./dist/popover/index.js", - "./portal": "./dist/portal/index.js", - "./scrollarea": "./dist/scrollarea/index.js", - "./skeleton": "./dist/skeleton/index.js", + "./accordion": { + "import": "./dist/accordion/index.mjs", + "require": "./dist/accordion/index.js" + }, + "./animated-counter": { + "import": "./dist/animated-counter/index.mjs", + "require": "./dist/animated-counter/index.js" + }, + "./avatar": { + "import": "./dist/avatar/index.mjs", + "require": "./dist/avatar/index.js" + }, + "./button": { + "import": "./dist/button/index.mjs", + "require": "./dist/button/index.js" + }, + "./calendar": { + "import": "./dist/calendar/index.mjs", + "require": "./dist/calendar/index.js" + }, + "./card": { + "import": "./dist/card/index.mjs", + "require": "./dist/card/index.js" + }, + "./charts/area-chart": { + "import": "./dist/charts/area-chart/index.mjs", + "require": "./dist/charts/area-chart/index.js" + }, + "./charts/bar-chart": { + "import": "./dist/charts/bar-chart/index.mjs", + "require": "./dist/charts/bar-chart/index.js" + }, + "./charts/line-chart": { + "import": "./dist/charts/line-chart/index.mjs", + "require": "./dist/charts/line-chart/index.js" + }, + "./charts/pie-chart": { + "import": "./dist/charts/pie-chart/index.mjs", + "require": "./dist/charts/pie-chart/index.js" + }, + "./charts/radar-chart": { + "import": "./dist/charts/radar-chart/index.mjs", + "require": "./dist/charts/radar-chart/index.js" + }, + "./charts/scatter-chart": { + "import": "./dist/charts/scatter-chart/index.mjs", + "require": "./dist/charts/scatter-chart/index.js" + }, + "./charts/tree-map": { + "import": "./dist/charts/tree-map/index.mjs", + "require": "./dist/charts/tree-map/index.js" + }, + "./collapsible": { + "import": "./dist/collapsible/index.mjs", + "require": "./dist/collapsible/index.js" + }, + "./combobox": { + "import": "./dist/combobox/index.mjs", + "require": "./dist/combobox/index.js" + }, + "./command": { + "import": "./dist/command/index.mjs", + "require": "./dist/command/index.js" + }, + "./context-menu": { + "import": "./dist/context-menu/index.mjs", + "require": "./dist/context-menu/index.js" + }, + "./dialog": { + "import": "./dist/dialog/index.mjs", + "require": "./dist/dialog/index.js" + }, + "./emoji-icon-picker": { + "import": "./dist/emoji-icon-picker/index.mjs", + "require": "./dist/emoji-icon-picker/index.js" + }, + "./emoji-reaction": { + "import": "./dist/emoji-reaction/index.mjs", + "require": "./dist/emoji-reaction/index.js" + }, + "./icons": { + "import": "./dist/icons/index.mjs", + "require": "./dist/icons/index.js" + }, + "./menu": { + "import": "./dist/menu/index.mjs", + "require": "./dist/menu/index.js" + }, + "./pill": { + "import": "./dist/pill/index.mjs", + "require": "./dist/pill/index.js" + }, + "./popover": { + "import": "./dist/popover/index.mjs", + "require": "./dist/popover/index.js" + }, + "./portal": { + "import": "./dist/portal/index.mjs", + "require": "./dist/portal/index.js" + }, + "./scrollarea": { + "import": "./dist/scrollarea/index.mjs", + "require": "./dist/scrollarea/index.js" + }, + "./skeleton": { + "import": "./dist/skeleton/index.mjs", + "require": "./dist/skeleton/index.js" + }, + "./switch": { + "import": "./dist/switch/index.mjs", + "require": "./dist/switch/index.js" + }, + "./table": { + "import": "./dist/table/index.mjs", + "require": "./dist/table/index.js" + }, + "./tabs": { + "import": "./dist/tabs/index.mjs", + "require": "./dist/tabs/index.js" + }, + "./toast": { + "import": "./dist/toast/index.mjs", + "require": "./dist/toast/index.js" + }, + "./toolbar": { + "import": "./dist/toolbar/index.mjs", + "require": "./dist/toolbar/index.js" + }, + "./tooltip": { + "import": "./dist/tooltip/index.mjs", + "require": "./dist/tooltip/index.js" + }, + "./utils": { + "import": "./dist/utils/index.mjs", + "require": "./dist/utils/index.js" + }, + "./package.json": "./package.json", "./styles/fonts": "./dist/styles/fonts/index.css", - "./styles/react-day-picker": "./dist/styles/react-day-picker.css", - "./switch": "./dist/switch/index.js", - "./table": "./dist/table/index.js", - "./tabs": "./dist/tabs/index.js", - "./toast": "./dist/toast/index.js", - "./toolbar": "./dist/toolbar/index.js", - "./tooltip": "./dist/tooltip/index.js", - "./utils": "./dist/utils/index.js" + "./styles/react-day-picker": "./dist/styles/react-day-picker.css" }, "dependencies": { "@base-ui-components/react": "^1.0.0-beta.2", diff --git a/packages/propel/tsdown.config.ts b/packages/propel/tsdown.config.ts index 5ad6a8c112..4a2ff85112 100644 --- a/packages/propel/tsdown.config.ts +++ b/packages/propel/tsdown.config.ts @@ -34,6 +34,15 @@ export default defineConfig({ ], outDir: "dist", format: ["esm", "cjs"], - dts: true, + exports: { + customExports: (out) => ({ + ...out, + "./styles/fonts": "./dist/styles/fonts/index.css", + "./styles/react-day-picker": "./dist/styles/react-day-picker.css", + }), + }, copy: ["src/styles"], + dts: true, + clean: true, + sourcemap: false, }); diff --git a/packages/services/package.json b/packages/services/package.json index 3f63f489fc..3f7fca38fd 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -3,12 +3,13 @@ "version": "1.0.0", "license": "AGPL-3.0", "private": true, - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", - "files": [ - "dist/**" - ], + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./package.json": "./package.json" + }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", @@ -29,5 +30,8 @@ "@plane/typescript-config": "workspace:*", "tsdown": "catalog:", "typescript": "catalog:" - } + }, + "main": "./dist/index.js", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts" } diff --git a/packages/services/tsdown.config.ts b/packages/services/tsdown.config.ts index 2d3ec61b6d..7b2ea6fe2f 100644 --- a/packages/services/tsdown.config.ts +++ b/packages/services/tsdown.config.ts @@ -4,4 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, + dts: true, + clean: true, + sourcemap: true, }); diff --git a/packages/shared-state/package.json b/packages/shared-state/package.json index 520239ccd1..efbd72f787 100644 --- a/packages/shared-state/package.json +++ b/packages/shared-state/package.json @@ -29,7 +29,6 @@ "@plane/typescript-config": "workspace:*", "@types/node": "^22.5.4", "@types/lodash-es": "catalog:", - "@types/uuid": "catalog:", "typescript": "catalog:" } } diff --git a/packages/types/package.json b/packages/types/package.json index 57a6dc7b33..b87b9f3a6f 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -3,18 +3,12 @@ "version": "1.0.0", "license": "AGPL-3.0", "private": true, - "files": [ - "dist" - ], - "types": "./dist/index.d.ts", - "main": "./dist/index.js", - "module": "./dist/index.js", "exports": { ".": { - "types": "./dist/index.d.ts", - "require": "./dist/index.js", - "import": "./dist/index.js" - } + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./package.json": "./package.json" }, "scripts": { "dev": "tsdown --watch", @@ -37,5 +31,8 @@ "@types/react-dom": "catalog:", "tsdown": "catalog:", "typescript": "catalog:" - } + }, + "main": "./dist/index.js", + "module": "./dist/index.mjs", + "types": "./dist/index.d.ts" } diff --git a/packages/types/tsdown.config.ts b/packages/types/tsdown.config.ts index 2d3ec61b6d..7b2ea6fe2f 100644 --- a/packages/types/tsdown.config.ts +++ b/packages/types/tsdown.config.ts @@ -4,4 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, + dts: true, + clean: true, + sourcemap: true, }); diff --git a/packages/typescript-config/react-library.json b/packages/typescript-config/react-library.json index c3a1b26fbb..6065fccff5 100644 --- a/packages/typescript-config/react-library.json +++ b/packages/typescript-config/react-library.json @@ -2,6 +2,8 @@ "$schema": "https://json.schemastore.org/tsconfig", "extends": "./base.json", "compilerOptions": { + "module": "Preserve", + "moduleResolution": "bundler", "jsx": "react-jsx" } } diff --git a/packages/ui/.eslintrc.js b/packages/ui/.eslintrc.cjs similarity index 100% rename from packages/ui/.eslintrc.js rename to packages/ui/.eslintrc.cjs diff --git a/packages/ui/package.json b/packages/ui/package.json index 0af3cc1173..3e20351000 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -5,12 +5,17 @@ "version": "1.0.0", "sideEffects": false, "license": "AGPL-3.0", - "files": [ - "dist" - ], - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.cts", + "exports": { + ".": { + "import": "./dist/index.js", + "require": "./dist/index.cjs" + }, + "./package.json": "./package.json" + }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", @@ -29,8 +34,8 @@ "react-dom": "catalog:" }, "dependencies": { - "@atlaskit/pragmatic-drag-and-drop": "^1.1.10", - "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3", + "@atlaskit/pragmatic-drag-and-drop": "catalog:", + "@atlaskit/pragmatic-drag-and-drop-hitbox": "catalog:", "@blueprintjs/core": "^4.16.3", "@blueprintjs/popover2": "^1.13.3", "@headlessui/react": "^1.7.3", diff --git a/packages/ui/src/form-fields/input-color-picker.tsx b/packages/ui/src/form-fields/input-color-picker.tsx index eb4f946b69..0294dff523 100644 --- a/packages/ui/src/form-fields/input-color-picker.tsx +++ b/packages/ui/src/form-fields/input-color-picker.tsx @@ -1,6 +1,7 @@ import { Popover, Transition } from "@headlessui/react"; import * as React from "react"; -import { ColorResult, SketchPicker } from "react-color"; +import * as ColorPicker from "react-color"; +import type { ColorResult } from "react-color"; import { usePopper } from "react-popper"; // helpers import { Button } from "../button"; @@ -100,7 +101,7 @@ export const InputColorPicker: React.FC = (props) => { style={styles.popper} {...attributes.popper} > - + diff --git a/packages/ui/src/sortable/draggable.tsx b/packages/ui/src/sortable/draggable.tsx index efc2f185fc..98db1b6bd6 100644 --- a/packages/ui/src/sortable/draggable.tsx +++ b/packages/ui/src/sortable/draggable.tsx @@ -1,6 +1,12 @@ -import { combine } from "@atlaskit/pragmatic-drag-and-drop/combine"; -import { draggable, dropTargetForElements } from "@atlaskit/pragmatic-drag-and-drop/element/adapter"; -import { attachClosestEdge, extractClosestEdge } from "@atlaskit/pragmatic-drag-and-drop-hitbox/closest-edge"; +import { combine } from "@atlaskit/pragmatic-drag-and-drop/dist/cjs/entry-point/combine.js"; +import { + draggable, + dropTargetForElements, +} from "@atlaskit/pragmatic-drag-and-drop/dist/cjs/entry-point/element/adapter.js"; +import { + attachClosestEdge, + extractClosestEdge, +} from "@atlaskit/pragmatic-drag-and-drop-hitbox/dist/cjs/closest-edge.js"; import { isEqual } from "lodash-es"; import React, { useEffect, useRef, useState } from "react"; import { DropIndicator } from "../drop-indicator"; diff --git a/packages/ui/src/sortable/sortable.tsx b/packages/ui/src/sortable/sortable.tsx index 29198ed8b5..36391a18b3 100644 --- a/packages/ui/src/sortable/sortable.tsx +++ b/packages/ui/src/sortable/sortable.tsx @@ -1,4 +1,4 @@ -import { monitorForElements } from "@atlaskit/pragmatic-drag-and-drop/element/adapter"; +import { monitorForElements } from "@atlaskit/pragmatic-drag-and-drop/dist/cjs/entry-point/element/adapter.js"; import React, { Fragment, useEffect, useMemo } from "react"; import { Draggable } from "./draggable"; diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index f9715d3d8b..2466c25e0d 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -1,9 +1,8 @@ { "extends": "@plane/typescript-config/react-library.json", + "include": ["src"], + "exclude": ["dist", "build", "node_modules"], "compilerOptions": { - "jsx": "react", - "lib": ["esnext", "dom"] - }, - "include": ["."], - "exclude": ["dist", "build", "node_modules"] + "esModuleInterop": true + } } diff --git a/packages/ui/tsdown.config.ts b/packages/ui/tsdown.config.ts index 2d3ec61b6d..7b2ea6fe2f 100644 --- a/packages/ui/tsdown.config.ts +++ b/packages/ui/tsdown.config.ts @@ -4,4 +4,8 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, + dts: true, + clean: true, + sourcemap: true, }); diff --git a/packages/utils/.eslintrc.js b/packages/utils/.eslintrc.cjs similarity index 100% rename from packages/utils/.eslintrc.js rename to packages/utils/.eslintrc.cjs diff --git a/packages/utils/package.json b/packages/utils/package.json index 5794b4ebf3..fb14bfd50b 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -4,12 +4,14 @@ "description": "Helper functions shared across multiple apps internally", "license": "AGPL-3.0", "private": true, - "main": "./dist/index.js", - "module": "./dist/index.mjs", - "types": "./dist/index.d.ts", - "files": [ - "dist" - ], + "type": "module", + "exports": { + ".": { + "import": "./dist/index.js", + "require": "./dist/index.cjs" + }, + "./package.json": "./package.json" + }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", @@ -30,7 +32,6 @@ "lucide-react": "catalog:", "react": "catalog:", "tailwind-merge": "^2.5.5", - "tlds": "1.259.0", "uuid": "catalog:" }, "devDependencies": { @@ -39,8 +40,10 @@ "@types/lodash-es": "catalog:", "@types/node": "^22.5.4", "@types/react": "catalog:", - "@types/uuid": "^9.0.8", "tsdown": "catalog:", "typescript": "catalog:" - } + }, + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.cts" } diff --git a/packages/utils/src/tlds.ts b/packages/utils/src/tlds.ts new file mode 100644 index 0000000000..e689a11a89 --- /dev/null +++ b/packages/utils/src/tlds.ts @@ -0,0 +1,1441 @@ +export default [ + "aaa", + "aarp", + "abb", + "abbott", + "abbvie", + "abc", + "able", + "abogado", + "abudhabi", + "ac", + "academy", + "accenture", + "accountant", + "accountants", + "aco", + "actor", + "ad", + "ads", + "adult", + "ae", + "aeg", + "aero", + "aetna", + "af", + "afl", + "africa", + "ag", + "agakhan", + "agency", + "ai", + "aig", + "airbus", + "airforce", + "airtel", + "akdn", + "al", + "alibaba", + "alipay", + "allfinanz", + "allstate", + "ally", + "alsace", + "alstom", + "am", + "amazon", + "americanexpress", + "americanfamily", + "amex", + "amfam", + "amica", + "amsterdam", + "analytics", + "android", + "anquan", + "anz", + "ao", + "aol", + "apartments", + "app", + "apple", + "aq", + "aquarelle", + "ar", + "arab", + "aramco", + "archi", + "army", + "arpa", + "art", + "arte", + "as", + "asda", + "asia", + "associates", + "at", + "athleta", + "attorney", + "au", + "auction", + "audi", + "audible", + "audio", + "auspost", + "author", + "auto", + "autos", + "aw", + "aws", + "ax", + "axa", + "az", + "azure", + "ba", + "baby", + "baidu", + "banamex", + "band", + "bank", + "bar", + "barcelona", + "barclaycard", + "barclays", + "barefoot", + "bargains", + "baseball", + "basketball", + "bauhaus", + "bayern", + "bb", + "bbc", + "bbt", + "bbva", + "bcg", + "bcn", + "bd", + "be", + "beats", + "beauty", + "beer", + "berlin", + "best", + "bestbuy", + "bet", + "bf", + "bg", + "bh", + "bharti", + "bi", + "bible", + "bid", + "bike", + "bing", + "bingo", + "bio", + "biz", + "bj", + "black", + "blackfriday", + "blockbuster", + "blog", + "bloomberg", + "blue", + "bm", + "bms", + "bmw", + "bn", + "bnpparibas", + "bo", + "boats", + "boehringer", + "bofa", + "bom", + "bond", + "boo", + "book", + "booking", + "bosch", + "bostik", + "boston", + "bot", + "boutique", + "box", + "br", + "bradesco", + "bridgestone", + "broadway", + "broker", + "brother", + "brussels", + "bs", + "bt", + "build", + "builders", + "business", + "buy", + "buzz", + "bv", + "bw", + "by", + "bz", + "bzh", + "ca", + "cab", + "cafe", + "cal", + "call", + "calvinklein", + "cam", + "camera", + "camp", + "canon", + "capetown", + "capital", + "capitalone", + "car", + "caravan", + "cards", + "care", + "career", + "careers", + "cars", + "casa", + "case", + "cash", + "casino", + "cat", + "catering", + "catholic", + "cba", + "cbn", + "cbre", + "cc", + "cd", + "center", + "ceo", + "cern", + "cf", + "cfa", + "cfd", + "cg", + "ch", + "chanel", + "channel", + "charity", + "chase", + "chat", + "cheap", + "chintai", + "christmas", + "chrome", + "church", + "ci", + "cipriani", + "circle", + "cisco", + "citadel", + "citi", + "citic", + "city", + "ck", + "cl", + "claims", + "cleaning", + "click", + "clinic", + "clinique", + "clothing", + "cloud", + "club", + "clubmed", + "cm", + "cn", + "co", + "coach", + "codes", + "coffee", + "college", + "cologne", + "com", + "commbank", + "community", + "company", + "compare", + "computer", + "comsec", + "condos", + "construction", + "consulting", + "contact", + "contractors", + "cooking", + "cool", + "coop", + "corsica", + "country", + "coupon", + "coupons", + "courses", + "cpa", + "cr", + "credit", + "creditcard", + "creditunion", + "cricket", + "crown", + "crs", + "cruise", + "cruises", + "cu", + "cuisinella", + "cv", + "cw", + "cx", + "cy", + "cymru", + "cyou", + "cz", + "dad", + "dance", + "data", + "date", + "dating", + "datsun", + "day", + "dclk", + "dds", + "de", + "deal", + "dealer", + "deals", + "degree", + "delivery", + "dell", + "deloitte", + "delta", + "democrat", + "dental", + "dentist", + "desi", + "design", + "dev", + "dhl", + "diamonds", + "diet", + "digital", + "direct", + "directory", + "discount", + "discover", + "dish", + "diy", + "dj", + "dk", + "dm", + "dnp", + "do", + "docs", + "doctor", + "dog", + "domains", + "dot", + "download", + "drive", + "dtv", + "dubai", + "dunlop", + "dupont", + "durban", + "dvag", + "dvr", + "dz", + "earth", + "eat", + "ec", + "eco", + "edeka", + "edu", + "education", + "ee", + "eg", + "email", + "emerck", + "energy", + "engineer", + "engineering", + "enterprises", + "epson", + "equipment", + "er", + "ericsson", + "erni", + "es", + "esq", + "estate", + "et", + "eu", + "eurovision", + "eus", + "events", + "exchange", + "expert", + "exposed", + "express", + "extraspace", + "fage", + "fail", + "fairwinds", + "faith", + "family", + "fan", + "fans", + "farm", + "farmers", + "fashion", + "fast", + "fedex", + "feedback", + "ferrari", + "ferrero", + "fi", + "fidelity", + "fido", + "film", + "final", + "finance", + "financial", + "fire", + "firestone", + "firmdale", + "fish", + "fishing", + "fit", + "fitness", + "fj", + "fk", + "flickr", + "flights", + "flir", + "florist", + "flowers", + "fly", + "fm", + "fo", + "foo", + "food", + "football", + "ford", + "forex", + "forsale", + "forum", + "foundation", + "fox", + "fr", + "free", + "fresenius", + "frl", + "frogans", + "frontier", + "ftr", + "fujitsu", + "fun", + "fund", + "furniture", + "futbol", + "fyi", + "ga", + "gal", + "gallery", + "gallo", + "gallup", + "game", + "games", + "gap", + "garden", + "gay", + "gb", + "gbiz", + "gd", + "gdn", + "ge", + "gea", + "gent", + "genting", + "george", + "gf", + "gg", + "ggee", + "gh", + "gi", + "gift", + "gifts", + "gives", + "giving", + "gl", + "glass", + "gle", + "global", + "globo", + "gm", + "gmail", + "gmbh", + "gmo", + "gmx", + "gn", + "godaddy", + "gold", + "goldpoint", + "golf", + "goo", + "goodyear", + "goog", + "google", + "gop", + "got", + "gov", + "gp", + "gq", + "gr", + "grainger", + "graphics", + "gratis", + "green", + "gripe", + "grocery", + "group", + "gs", + "gt", + "gu", + "gucci", + "guge", + "guide", + "guitars", + "guru", + "gw", + "gy", + "hair", + "hamburg", + "hangout", + "haus", + "hbo", + "hdfc", + "hdfcbank", + "health", + "healthcare", + "help", + "helsinki", + "here", + "hermes", + "hiphop", + "hisamitsu", + "hitachi", + "hiv", + "hk", + "hkt", + "hm", + "hn", + "hockey", + "holdings", + "holiday", + "homedepot", + "homegoods", + "homes", + "homesense", + "honda", + "horse", + "hospital", + "host", + "hosting", + "hot", + "hotels", + "hotmail", + "house", + "how", + "hr", + "hsbc", + "ht", + "hu", + "hughes", + "hyatt", + "hyundai", + "ibm", + "icbc", + "ice", + "icu", + "id", + "ie", + "ieee", + "ifm", + "ikano", + "il", + "im", + "imamat", + "imdb", + "immo", + "immobilien", + "in", + "inc", + "industries", + "infiniti", + "info", + "ing", + "ink", + "institute", + "insurance", + "insure", + "int", + "international", + "intuit", + "investments", + "io", + "ipiranga", + "iq", + "ir", + "irish", + "is", + "ismaili", + "ist", + "istanbul", + "it", + "itau", + "itv", + "jaguar", + "java", + "jcb", + "je", + "jeep", + "jetzt", + "jewelry", + "jio", + "jll", + "jm", + "jmp", + "jnj", + "jo", + "jobs", + "joburg", + "jot", + "joy", + "jp", + "jpmorgan", + "jprs", + "juegos", + "juniper", + "kaufen", + "kddi", + "ke", + "kerryhotels", + "kerryproperties", + "kfh", + "kg", + "kh", + "ki", + "kia", + "kids", + "kim", + "kindle", + "kitchen", + "kiwi", + "km", + "kn", + "koeln", + "komatsu", + "kosher", + "kp", + "kpmg", + "kpn", + "kr", + "krd", + "kred", + "kuokgroup", + "kw", + "ky", + "kyoto", + "kz", + "la", + "lacaixa", + "lamborghini", + "lamer", + "land", + "landrover", + "lanxess", + "lasalle", + "lat", + "latino", + "latrobe", + "law", + "lawyer", + "lb", + "lc", + "lds", + "lease", + "leclerc", + "lefrak", + "legal", + "lego", + "lexus", + "lgbt", + "li", + "lidl", + "life", + "lifeinsurance", + "lifestyle", + "lighting", + "like", + "lilly", + "limited", + "limo", + "lincoln", + "link", + "live", + "living", + "lk", + "llc", + "llp", + "loan", + "loans", + "locker", + "locus", + "lol", + "london", + "lotte", + "lotto", + "love", + "lpl", + "lplfinancial", + "lr", + "ls", + "lt", + "ltd", + "ltda", + "lu", + "lundbeck", + "luxe", + "luxury", + "lv", + "ly", + "ma", + "madrid", + "maif", + "maison", + "makeup", + "man", + "management", + "mango", + "map", + "market", + "marketing", + "markets", + "marriott", + "marshalls", + "mattel", + "mba", + "mc", + "mckinsey", + "md", + "me", + "med", + "media", + "meet", + "melbourne", + "meme", + "memorial", + "men", + "menu", + "merckmsd", + "mg", + "mh", + "miami", + "microsoft", + "mil", + "mini", + "mint", + "mit", + "mitsubishi", + "mk", + "ml", + "mlb", + "mls", + "mm", + "mma", + "mn", + "mo", + "mobi", + "mobile", + "moda", + "moe", + "moi", + "mom", + "monash", + "money", + "monster", + "mormon", + "mortgage", + "moscow", + "moto", + "motorcycles", + "mov", + "movie", + "mp", + "mq", + "mr", + "ms", + "msd", + "mt", + "mtn", + "mtr", + "mu", + "museum", + "music", + "mv", + "mw", + "mx", + "my", + "mz", + "na", + "nab", + "nagoya", + "name", + "navy", + "nba", + "nc", + "ne", + "nec", + "net", + "netbank", + "netflix", + "network", + "neustar", + "new", + "news", + "next", + "nextdirect", + "nexus", + "nf", + "nfl", + "ng", + "ngo", + "nhk", + "ni", + "nico", + "nike", + "nikon", + "ninja", + "nissan", + "nissay", + "nl", + "no", + "nokia", + "norton", + "now", + "nowruz", + "nowtv", + "np", + "nr", + "nra", + "nrw", + "ntt", + "nu", + "nyc", + "nz", + "obi", + "observer", + "office", + "okinawa", + "olayan", + "olayangroup", + "ollo", + "om", + "omega", + "one", + "ong", + "onl", + "online", + "ooo", + "open", + "oracle", + "orange", + "org", + "organic", + "origins", + "osaka", + "otsuka", + "ott", + "ovh", + "pa", + "page", + "panasonic", + "paris", + "pars", + "partners", + "parts", + "party", + "pay", + "pccw", + "pe", + "pet", + "pf", + "pfizer", + "pg", + "ph", + "pharmacy", + "phd", + "philips", + "phone", + "photo", + "photography", + "photos", + "physio", + "pics", + "pictet", + "pictures", + "pid", + "pin", + "ping", + "pink", + "pioneer", + "pizza", + "pk", + "pl", + "place", + "play", + "playstation", + "plumbing", + "plus", + "pm", + "pn", + "pnc", + "pohl", + "poker", + "politie", + "porn", + "post", + "pr", + "praxi", + "press", + "prime", + "pro", + "prod", + "productions", + "prof", + "progressive", + "promo", + "properties", + "property", + "protection", + "pru", + "prudential", + "ps", + "pt", + "pub", + "pw", + "pwc", + "py", + "qa", + "qpon", + "quebec", + "quest", + "racing", + "radio", + "re", + "read", + "realestate", + "realtor", + "realty", + "recipes", + "red", + "redumbrella", + "rehab", + "reise", + "reisen", + "reit", + "reliance", + "ren", + "rent", + "rentals", + "repair", + "report", + "republican", + "rest", + "restaurant", + "review", + "reviews", + "rexroth", + "rich", + "richardli", + "ricoh", + "ril", + "rio", + "rip", + "ro", + "rocks", + "rodeo", + "rogers", + "room", + "rs", + "rsvp", + "ru", + "rugby", + "ruhr", + "run", + "rw", + "rwe", + "ryukyu", + "sa", + "saarland", + "safe", + "safety", + "sakura", + "sale", + "salon", + "samsclub", + "samsung", + "sandvik", + "sandvikcoromant", + "sanofi", + "sap", + "sarl", + "sas", + "save", + "saxo", + "sb", + "sbi", + "sbs", + "sc", + "scb", + "schaeffler", + "schmidt", + "scholarships", + "school", + "schule", + "schwarz", + "science", + "scot", + "sd", + "se", + "search", + "seat", + "secure", + "security", + "seek", + "select", + "sener", + "services", + "seven", + "sew", + "sex", + "sexy", + "sfr", + "sg", + "sh", + "shangrila", + "sharp", + "shell", + "shia", + "shiksha", + "shoes", + "shop", + "shopping", + "shouji", + "show", + "si", + "silk", + "sina", + "singles", + "site", + "sj", + "sk", + "ski", + "skin", + "sky", + "skype", + "sl", + "sling", + "sm", + "smart", + "smile", + "sn", + "sncf", + "so", + "soccer", + "social", + "softbank", + "software", + "sohu", + "solar", + "solutions", + "song", + "sony", + "soy", + "spa", + "space", + "sport", + "spot", + "sr", + "srl", + "ss", + "st", + "stada", + "staples", + "star", + "statebank", + "statefarm", + "stc", + "stcgroup", + "stockholm", + "storage", + "store", + "stream", + "studio", + "study", + "style", + "su", + "sucks", + "supplies", + "supply", + "support", + "surf", + "surgery", + "suzuki", + "sv", + "swatch", + "swiss", + "sx", + "sy", + "sydney", + "systems", + "sz", + "tab", + "taipei", + "talk", + "taobao", + "target", + "tatamotors", + "tatar", + "tattoo", + "tax", + "taxi", + "tc", + "tci", + "td", + "tdk", + "team", + "tech", + "technology", + "tel", + "temasek", + "tennis", + "teva", + "tf", + "tg", + "th", + "thd", + "theater", + "theatre", + "tiaa", + "tickets", + "tienda", + "tips", + "tires", + "tirol", + "tj", + "tjmaxx", + "tjx", + "tk", + "tkmaxx", + "tl", + "tm", + "tmall", + "tn", + "to", + "today", + "tokyo", + "tools", + "top", + "toray", + "toshiba", + "total", + "tours", + "town", + "toyota", + "toys", + "tr", + "trade", + "trading", + "training", + "travel", + "travelers", + "travelersinsurance", + "trust", + "trv", + "tt", + "tube", + "tui", + "tunes", + "tushu", + "tv", + "tvs", + "tw", + "tz", + "ua", + "ubank", + "ubs", + "ug", + "uk", + "unicom", + "university", + "uno", + "uol", + "ups", + "us", + "uy", + "uz", + "va", + "vacations", + "vana", + "vanguard", + "vc", + "ve", + "vegas", + "ventures", + "verisign", + "vermögensberater", + "vermögensberatung", + "versicherung", + "vet", + "vg", + "vi", + "viajes", + "video", + "vig", + "viking", + "villas", + "vin", + "vip", + "virgin", + "visa", + "vision", + "viva", + "vivo", + "vlaanderen", + "vn", + "vodka", + "volvo", + "vote", + "voting", + "voto", + "voyage", + "vu", + "wales", + "walmart", + "walter", + "wang", + "wanggou", + "watch", + "watches", + "weather", + "weatherchannel", + "webcam", + "weber", + "website", + "wed", + "wedding", + "weibo", + "weir", + "wf", + "whoswho", + "wien", + "wiki", + "williamhill", + "win", + "windows", + "wine", + "winners", + "wme", + "wolterskluwer", + "woodside", + "work", + "works", + "world", + "wow", + "ws", + "wtc", + "wtf", + "xbox", + "xerox", + "xihuan", + "xin", + "xxx", + "xyz", + "yachts", + "yahoo", + "yamaxun", + "yandex", + "ye", + "yodobashi", + "yoga", + "yokohama", + "you", + "youtube", + "yt", + "yun", + "za", + "zappos", + "zara", + "zero", + "zip", + "zm", + "zone", + "zuerich", + "zw", + "ελ", + "ευ", + "бг", + "бел", + "дети", + "ею", + "католик", + "ком", + "мкд", + "мон", + "москва", + "онлайн", + "орг", + "рус", + "рф", + "сайт", + "срб", + "укр", + "қаз", + "հայ", + "ישראל", + "קום", + "ابوظبي", + "ارامكو", + "الاردن", + "البحرين", + "الجزائر", + "السعودية", + "العليان", + "المغرب", + "امارات", + "ایران", + "بارت", + "بازار", + "بيتك", + "بھارت", + "تونس", + "سودان", + "سورية", + "شبكة", + "عراق", + "عرب", + "عمان", + "فلسطين", + "قطر", + "كاثوليك", + "كوم", + "مصر", + "مليسيا", + "موريتانيا", + "موقع", + "همراه", + "پاکستان", + "ڀارت", + "कॉम", + "नेट", + "भारत", + "भारतम्", + "भारोत", + "संगठन", + "বাংলা", + "ভারত", + "ভাৰত", + "ਭਾਰਤ", + "ભારત", + "ଭାରତ", + "இந்தியா", + "இலங்கை", + "சிங்கப்பூர்", + "భారత్", + "ಭಾರತ", + "ഭാരതം", + "ලංකා", + "คอม", + "ไทย", + "ລາວ", + "გე", + "みんな", + "アマゾン", + "クラウド", + "グーグル", + "コム", + "ストア", + "セール", + "ファッション", + "ポイント", + "世界", + "中信", + "中国", + "中國", + "中文网", + "亚马逊", + "企业", + "佛山", + "信息", + "健康", + "八卦", + "公司", + "公益", + "台湾", + "台灣", + "商城", + "商店", + "商标", + "嘉里", + "嘉里大酒店", + "在线", + "大拿", + "天主教", + "娱乐", + "家電", + "广东", + "微博", + "慈善", + "我爱你", + "手机", + "招聘", + "政务", + "政府", + "新加坡", + "新闻", + "时尚", + "書籍", + "机构", + "淡马锡", + "游戏", + "澳門", + "点看", + "移动", + "组织机构", + "网址", + "网店", + "网站", + "网络", + "联通", + "谷歌", + "购物", + "通販", + "集团", + "電訊盈科", + "飞利浦", + "食品", + "餐厅", + "香格里拉", + "香港", + "닷넷", + "닷컴", + "삼성", + "한국", +]; diff --git a/packages/utils/src/url.ts b/packages/utils/src/url.ts index 0321cec4d2..fa16d3f17d 100644 --- a/packages/utils/src/url.ts +++ b/packages/utils/src/url.ts @@ -1,4 +1,4 @@ -import tlds from "tlds"; +import tlds from "./tlds"; const PROTOCOL_REGEX = /^[a-zA-Z]+:\/\//; const EMAIL_REGEX = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; diff --git a/packages/utils/tsconfig.json b/packages/utils/tsconfig.json index e8af9092ad..2256a0d8ff 100644 --- a/packages/utils/tsconfig.json +++ b/packages/utils/tsconfig.json @@ -1,9 +1,5 @@ { "extends": "@plane/typescript-config/react-library.json", - "compilerOptions": { - "jsx": "react", - "lib": ["esnext", "dom"] - }, "include": ["./src"], "exclude": ["dist", "build", "node_modules"] } diff --git a/packages/utils/tsdown.config.ts b/packages/utils/tsdown.config.ts index 2d3ec61b6d..d228174b27 100644 --- a/packages/utils/tsdown.config.ts +++ b/packages/utils/tsdown.config.ts @@ -4,4 +4,9 @@ export default defineConfig({ entry: ["src/index.ts"], outDir: "dist", format: ["esm", "cjs"], + exports: true, + dts: true, + clean: true, + sourcemap: true, + target: "esnext", }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4fa9f34b31..1ae1ef31cc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,6 +6,15 @@ settings: catalogs: default: + '@atlaskit/pragmatic-drag-and-drop': + specifier: 1.7.4 + version: 1.7.4 + '@atlaskit/pragmatic-drag-and-drop-auto-scroll': + specifier: 1.4.0 + version: 1.4.0 + '@atlaskit/pragmatic-drag-and-drop-hitbox': + specifier: 1.1.0 + version: 1.1.0 '@tiptap/core': specifier: ^3.5.3 version: 3.6.2 @@ -21,9 +30,6 @@ catalogs: '@types/react-dom': specifier: 18.3.1 version: 18.3.1 - '@types/uuid': - specifier: 9.0.8 - version: 9.0.8 axios: specifier: 1.12.0 version: 1.12.0 @@ -55,11 +61,11 @@ catalogs: specifier: 2.2.4 version: 2.2.4 tsdown: - specifier: 0.14.2 - version: 0.14.2 + specifier: 0.15.5 + version: 0.15.5 uuid: - specifier: 10.0.0 - version: 10.0.0 + specifier: 13.0.0 + version: 13.0.0 overrides: brace-expansion: 2.0.2 @@ -159,7 +165,7 @@ importers: version: 2.2.4(react@18.3.1) uuid: specifier: 'catalog:' - version: 10.0.0 + version: 13.0.0 devDependencies: '@plane/eslint-config': specifier: workspace:* @@ -182,9 +188,6 @@ importers: '@types/react-dom': specifier: 'catalog:' version: 18.3.1 - '@types/uuid': - specifier: ^9.0.8 - version: 9.0.8 typescript: specifier: 5.8.3 version: 5.8.3 @@ -196,16 +199,16 @@ importers: version: 1.49.0 '@hocuspocus/extension-database': specifier: ^3.0.0 - version: 3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + version: 3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) '@hocuspocus/extension-logger': specifier: ^3.0.0 - version: 3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + version: 3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) '@hocuspocus/extension-redis': specifier: ^3.0.0 - version: 3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + version: 3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) '@hocuspocus/server': specifier: ^3.0.0 - version: 3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + version: 3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) '@plane/decorators': specifier: workspace:* version: link:../../packages/decorators @@ -247,7 +250,7 @@ importers: version: 7.2.0 ioredis: specifier: ^5.4.1 - version: 5.6.1 + version: 5.7.0 morgan: specifier: 1.10.1 version: 1.10.1 @@ -259,7 +262,7 @@ importers: version: 11.3.0 uuid: specifier: 'catalog:' - version: 10.0.0 + version: 13.0.0 ws: specifier: ^8.18.3 version: 8.18.3 @@ -308,7 +311,7 @@ importers: version: 8.18.1 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -320,13 +323,13 @@ importers: version: 11.14.0(@types/react@18.3.11)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) + version: 11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) '@headlessui/react': specifier: ^1.7.13 version: 1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: ^5.14.1 - version: 5.17.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@plane/constants': specifier: workspace:* version: link:../../packages/constants @@ -422,7 +425,7 @@ importers: version: 2.6.0 uuid: specifier: 'catalog:' - version: 10.0.0 + version: 13.0.0 devDependencies: '@plane/eslint-config': specifier: workspace:* @@ -448,9 +451,6 @@ importers: '@types/react-dom': specifier: 'catalog:' version: 18.3.1 - '@types/uuid': - specifier: ^9.0.1 - version: 9.0.8 typescript: specifier: 5.8.3 version: 5.8.3 @@ -458,13 +458,13 @@ importers: apps/web: dependencies: '@atlaskit/pragmatic-drag-and-drop': - specifier: ^1.1.3 + specifier: 'catalog:' version: 1.7.4 '@atlaskit/pragmatic-drag-and-drop-auto-scroll': - specifier: ^1.3.0 + specifier: 'catalog:' version: 1.4.0 '@atlaskit/pragmatic-drag-and-drop-hitbox': - specifier: ^1.0.3 + specifier: 'catalog:' version: 1.1.0 '@bprogress/next': specifier: ^3.2.12 @@ -534,13 +534,13 @@ importers: version: 16.6.1 emoji-picker-react: specifier: ^4.5.16 - version: 4.12.2(react@18.3.1) + version: 4.13.2(react@18.3.1) export-to-csv: specifier: ^1.4.0 version: 1.4.0 isomorphic-dompurify: specifier: ^2.12.0 - version: 2.25.0 + version: 2.26.0 lodash-es: specifier: 'catalog:' version: 4.17.21 @@ -564,7 +564,7 @@ importers: version: 0.2.1(next@14.2.32(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) posthog-js: specifier: ^1.131.3 - version: 1.255.1 + version: 1.260.1 react: specifier: 'catalog:' version: 18.3.1 @@ -612,7 +612,7 @@ importers: version: 1.3.0(react@18.3.1) uuid: specifier: 'catalog:' - version: 10.0.0 + version: 13.0.0 devDependencies: '@plane/eslint-config': specifier: workspace:* @@ -638,9 +638,6 @@ importers: '@types/react-dom': specifier: 'catalog:' version: 18.3.1 - '@types/uuid': - specifier: ^8.3.4 - version: 8.3.4 prettier: specifier: ^3.2.5 version: 3.6.2 @@ -668,7 +665,7 @@ importers: version: 18.3.11 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -695,7 +692,7 @@ importers: version: 0.2.2 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -818,7 +815,7 @@ importers: version: 0.9.0(@tiptap/core@3.6.2(@tiptap/pm@3.6.2)) uuid: specifier: 'catalog:' - version: 10.0.0 + version: 13.0.0 y-indexeddb: specifier: ^9.0.12 version: 9.0.12(yjs@13.6.27) @@ -850,15 +847,12 @@ importers: '@types/react-dom': specifier: 'catalog:' version: 18.3.1 - '@types/uuid': - specifier: ^8.3.4 - version: 8.3.4 postcss: specifier: ^8.4.38 version: 8.5.6 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -867,7 +861,7 @@ importers: devDependencies: '@typescript-eslint/eslint-plugin': specifier: ^8.6.0 - version: 8.38.0(@typescript-eslint/parser@8.40.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3) + version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3) '@typescript-eslint/parser': specifier: ^8.6.0 version: 8.40.0(eslint@8.57.1)(typescript@5.8.3) @@ -876,7 +870,7 @@ importers: version: 8.57.1 eslint-config-next: specifier: ^14.1.0 - version: 14.2.31(eslint@8.57.1)(typescript@5.8.3) + version: 14.2.32(eslint@8.57.1)(typescript@5.8.3) eslint-config-prettier: specifier: ^9.1.0 version: 9.1.0(eslint@8.57.1) @@ -916,7 +910,7 @@ importers: version: 18.3.11 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -959,7 +953,7 @@ importers: version: 18.3.11 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -987,7 +981,7 @@ importers: version: 20.19.17 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -1054,13 +1048,13 @@ importers: version: link:../typescript-config '@storybook/addon-designs': specifier: 10.0.2 - version: 10.0.2(@storybook/addon-docs@9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) + version: 10.0.2(@storybook/addon-docs@9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) '@storybook/addon-docs': specifier: 9.1.10 - version: 9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) + version: 9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) '@storybook/react-vite': specifier: 9.1.10 - version: 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.52.0)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + version: 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.50.0)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) '@types/react': specifier: 'catalog:' version: 18.3.11 @@ -1069,13 +1063,13 @@ importers: version: 18.3.1 eslint-plugin-storybook: specifier: 9.1.10 - version: 9.1.10(eslint@8.57.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3) + version: 9.1.10(eslint@8.57.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3) storybook: specifier: 9.1.10 - version: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + version: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -1100,7 +1094,7 @@ importers: version: link:../typescript-config tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -1127,7 +1121,7 @@ importers: version: 6.0.8(mobx@6.12.0) uuid: specifier: 'catalog:' - version: 10.0.0 + version: 13.0.0 zod: specifier: ^3.22.2 version: 3.25.76 @@ -1144,9 +1138,6 @@ importers: '@types/node': specifier: ^22.5.4 version: 22.17.2 - '@types/uuid': - specifier: 'catalog:' - version: 9.0.8 typescript: specifier: 5.8.3 version: 5.8.3 @@ -1155,10 +1146,10 @@ importers: devDependencies: '@tailwindcss/container-queries': specifier: ^0.1.1 - version: 0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))) + version: 0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))) '@tailwindcss/typography': specifier: ^0.5.9 - version: 0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))) + version: 0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))) autoprefixer: specifier: ^10.4.14 version: 10.4.20(postcss@8.5.6) @@ -1167,10 +1158,10 @@ importers: version: 8.5.6 tailwindcss: specifier: ^3.4.17 - version: 3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) + version: 3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) tailwindcss-animate: specifier: ^1.0.6 - version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))) + version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))) packages/types: dependencies: @@ -1195,7 +1186,7 @@ importers: version: 18.3.1 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -1205,10 +1196,10 @@ importers: packages/ui: dependencies: '@atlaskit/pragmatic-drag-and-drop': - specifier: ^1.1.10 + specifier: 'catalog:' version: 1.7.4 '@atlaskit/pragmatic-drag-and-drop-hitbox': - specifier: ^1.0.3 + specifier: 'catalog:' version: 1.1.0 '@blueprintjs/core': specifier: ^4.16.3 @@ -1245,7 +1236,7 @@ importers: version: 2.1.1 emoji-picker-react: specifier: ^4.5.16 - version: 4.12.2(react@18.3.1) + version: 4.13.2(react@18.3.1) lodash-es: specifier: 'catalog:' version: 4.17.21 @@ -1303,10 +1294,10 @@ importers: version: 8.6.14(storybook@8.6.14(prettier@3.6.2)) '@storybook/addon-styling-webpack': specifier: ^1.0.0 - version: 1.0.1(storybook@8.6.14(prettier@3.6.2))(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + version: 1.0.1(storybook@8.6.14(prettier@3.6.2))(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) '@storybook/addon-webpack5-compiler-swc': specifier: ^1.0.2 - version: 1.0.6(@swc/helpers@0.5.17)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + version: 1.0.6(@swc/helpers@0.5.17)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) '@storybook/blocks': specifier: ^8.1.1 version: 8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2)) @@ -1315,7 +1306,7 @@ importers: version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) '@storybook/react-webpack5': specifier: ^8.1.1 - version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) + version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) '@storybook/test': specifier: ^8.1.1 version: 8.6.14(storybook@8.6.14(prettier@3.6.2)) @@ -1348,7 +1339,7 @@ importers: version: 8.6.14(prettier@3.6.2) tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -1369,7 +1360,7 @@ importers: version: 4.1.0 isomorphic-dompurify: specifier: ^2.16.0 - version: 2.25.0 + version: 2.26.0 lodash-es: specifier: 'catalog:' version: 4.17.21 @@ -1382,12 +1373,9 @@ importers: tailwind-merge: specifier: ^2.5.5 version: 2.6.0 - tlds: - specifier: 1.259.0 - version: 1.259.0 uuid: specifier: 'catalog:' - version: 10.0.0 + version: 13.0.0 devDependencies: '@plane/eslint-config': specifier: workspace:* @@ -1404,12 +1392,9 @@ importers: '@types/react': specifier: 'catalog:' version: 18.3.11 - '@types/uuid': - specifier: ^9.0.8 - version: 9.0.8 tsdown: specifier: 'catalog:' - version: 0.14.2(typescript@5.8.3) + version: 0.15.5(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -1489,8 +1474,8 @@ packages: resolution: {integrity: sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==} engines: {node: '>=6.9.0'} - '@babel/parser@7.28.3': - resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==} + '@babel/parser@7.28.4': + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} engines: {node: '>=6.0.0'} hasBin: true @@ -1506,8 +1491,8 @@ packages: resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.28.2': - resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} + '@babel/types@7.28.4': + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} engines: {node: '>=6.9.0'} '@base-ui-components/react@1.0.0-beta.2': @@ -1669,8 +1654,8 @@ packages: '@emotion/sheet@1.4.0': resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} - '@emotion/styled@11.14.0': - resolution: {integrity: sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==} + '@emotion/styled@11.14.1': + resolution: {integrity: sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 '@types/react': '*' @@ -1843,8 +1828,8 @@ packages: cpu: [x64] os: [win32] - '@eslint-community/eslint-utils@4.7.0': - resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} + '@eslint-community/eslint-utils@4.9.0': + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 @@ -1875,8 +1860,11 @@ packages: '@floating-ui/dom@1.7.3': resolution: {integrity: sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag==} - '@floating-ui/react-dom@2.1.5': - resolution: {integrity: sha512-HDO/1/1oH9fjj4eLgegrlH3dklZpHtUYYFiVwMUwfGvk9jWDRWqkklA2/NFScknrcNSspbV868WjXORvreDX+Q==} + '@floating-ui/dom@1.7.4': + resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==} + + '@floating-ui/react-dom@2.1.6': + resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -1918,16 +1906,16 @@ packages: '@hocuspocus/common@3.2.3': resolution: {integrity: sha512-P8COsx2HVXS7NbDEKe9KSt5Hd1A95hZhyTabiNPlU/Pi+7K1RJuHqIkIRr4oIxGzujvpLq/LSwBHP4NYUk+cGA==} - '@hocuspocus/extension-database@3.2.3': - resolution: {integrity: sha512-RenCXDy6Qy/wqA2PSBOS4AcQHZZohUXTa9Mv5Mucsi1qqKsGsSLstbWpiugg556AG2gWq0vl/zmBTsn4eoeVag==} + '@hocuspocus/extension-database@3.1.7': + resolution: {integrity: sha512-+BoRL2+LcN+fG0hM4EvFJBjV+xoTHTWHpMEoOwJL8xlSUfRCMT3ptQR/XQ4NG4sy0FSKIzpGii5Q/XnB7eSFrg==} peerDependencies: yjs: ^13.6.8 - '@hocuspocus/extension-logger@3.2.3': - resolution: {integrity: sha512-+iCmqJA6EApJntCKbc4P4DTNVIgB5Gdp9IiAdqtyF5jhx4a6266NYmShw+b4cL4pKgZxcfuc2ShsdZW0h6XqWA==} + '@hocuspocus/extension-logger@3.1.7': + resolution: {integrity: sha512-C3hqCUOtJSYFZ2ICrgG3W2r/duOA4CSHHLYVPbQBHSAl23z11z2eQ8vXW9jPtLlewPab2YO0ULy2bGDw/VbM3w==} - '@hocuspocus/extension-redis@3.2.3': - resolution: {integrity: sha512-keHKNPBiQBMSOS4ZuKnD15pfOUD5phr8mhW68P9IRIlJcrW8FJG2NBtW8oR38wKMzRtXKG3eKrs03B2KLteScA==} + '@hocuspocus/extension-redis@3.1.7': + resolution: {integrity: sha512-bst3tC4afXF3S2T7HrFfhKG4FWOgYyhd/19cDSXHzvIZ8yv1QaFpTQyDObII8nriP3d77//YBQGXZL410Kw3nQ==} peerDependencies: y-protocols: ^1.0.6 yjs: ^13.6.8 @@ -1938,8 +1926,8 @@ packages: y-protocols: ^1.0.6 yjs: ^13.6.8 - '@hocuspocus/server@3.2.3': - resolution: {integrity: sha512-JVidUfVWQJXC2ngDAMvrAK99V5NoGo/5/R/VvJU6bkOwHKfvl/UpFQjP9FwIiDQ/Uwj9P0mQr1gyWs2Tx4k7/w==} + '@hocuspocus/server@3.1.7': + resolution: {integrity: sha512-qommg8A6fnTpLw66cn7LnvdnQ39aNz4el/r4H/t20glhdGT3u3xgYpr/U4DoH0IwK/lQYT+4I4KDdB/vW0myPA==} peerDependencies: y-protocols: ^1.0.6 yjs: ^13.6.8 @@ -2135,8 +2123,8 @@ packages: '@mui/core-downloads-tracker@5.18.0': resolution: {integrity: sha512-jbhwoQ1AY200PSSOrNXmrFCaSDSJWP7qk6urkTmIirvRXDROkqe+QwcLlUiw/PrREwsIF/vm3/dAXvjlMHF0RA==} - '@mui/material@5.17.1': - resolution: {integrity: sha512-2B33kQf+GmPnrvXXweWAx+crbiUEsxCdCN979QDYnlH9ox4pd+0/IBriWLV+l6ORoBF60w39cWjFnJYGFdzXcw==} + '@mui/material@5.18.0': + resolution: {integrity: sha512-bbH/HaJZpFtXGvWg3TsBWG4eyt3gah3E7nCNU8GLyRjVoWcA91Vm/T+sjHfUcwgJSw9iLtucfHBoq+qW/T30aA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -2218,8 +2206,8 @@ packages: '@next/env@14.2.32': resolution: {integrity: sha512-n9mQdigI6iZ/DF6pCTwMKeWgF2e8lg7qgt5M7HXMLtyhZYMnf/u905M18sSpPmHL9MKp9JHo56C6jrD2EvWxng==} - '@next/eslint-plugin-next@14.2.31': - resolution: {integrity: sha512-ouaB+l8Cr/uzGxoGHUvd01OnfFTM8qM81Crw1AG0xoWDRN0DKLXyTWVe0FdAOHVBpGuXB87aufdRmrwzZDArIw==} + '@next/eslint-plugin-next@14.2.32': + resolution: {integrity: sha512-tyZMX8g4cWg/uPW4NxiJK13t62Pab47SKGJGVZJa6YtFwtfrXovH4j1n9tdpRdXW03PGQBugYEVGM7OhWfytdA==} '@next/swc-darwin-arm64@14.2.32': resolution: {integrity: sha512-osHXveM70zC+ilfuFa/2W6a1XQxJTvEhzEycnjUaVE8kpUS09lDpiDDX2YLdyFCzoUbvbo5r0X1Kp4MllIOShw==} @@ -2303,8 +2291,12 @@ packages: resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} engines: {node: '>=12.4.0'} - '@oxc-project/types@0.92.0': - resolution: {integrity: sha512-PDLfCbwgXjGdTBxzcuDOUxJYNBl6P8dOp3eDKWw54dYvqONan9rwGDRQU0zrkdEMiItfXQQUOI17uOcMX5Zm7A==} + '@oxc-project/runtime@0.82.3': + resolution: {integrity: sha512-LNh5GlJvYHAnMurO+EyA8jJwN1rki7l3PSHuosDh2I7h00T6/u9rCkUjg/SvPmT1CZzvhuW0y+gf7jcqUy/Usg==} + engines: {node: '>=6.9.0'} + + '@oxc-project/types@0.82.3': + resolution: {integrity: sha512-6nCUxBnGX0c6qfZW5MaF6/fmu5dHJDMiMPaioKHKs5mi5+8/FHQ7WGjgQIz1zxpmceMYfdIXkOaLYE+ejbuOtA==} '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} @@ -2571,91 +2563,78 @@ packages: '@remirror/core-constants@3.0.0': resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==} - '@rolldown/binding-android-arm64@1.0.0-beta.40': - resolution: {integrity: sha512-9Ii9phC7QU6Lb+ncMfG1Xlosq0NBB1N/4sw+EGZ3y0BBWGy02TOb5ghWZalphAKv9rn1goqo5WkBjyd2YvsLmA==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-android-arm64@1.0.0-beta.34': + resolution: {integrity: sha512-jf5GNe5jP3Sr1Tih0WKvg2bzvh5T/1TA0fn1u32xSH7ca/p5t+/QRr4VRFCV/na5vjwKEhwWrChsL2AWlY+eoA==} cpu: [arm64] os: [android] - '@rolldown/binding-darwin-arm64@1.0.0-beta.40': - resolution: {integrity: sha512-5O6d0y2tBQTL+ecQY3qXIwSnF1/Zik8q7LZMKeyF+VJ9l194d0IdMhl2zUF0cqWbYHuF4Pnxplk4OhurPQ/Z9Q==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-darwin-arm64@1.0.0-beta.34': + resolution: {integrity: sha512-2F/TqH4QuJQ34tgWxqBjFL3XV1gMzeQgUO8YRtCPGBSP0GhxtoFzsp7KqmQEothsxztlv+KhhT9Dbg3HHwHViQ==} cpu: [arm64] os: [darwin] - '@rolldown/binding-darwin-x64@1.0.0-beta.40': - resolution: {integrity: sha512-izB9jygt3miPQbOTZfSu5K51isUplqa8ysByOKQqcJHgrBWmbTU8TM9eouv6tRmBR0kjcEcID9xhmA1CeZ1VIg==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-darwin-x64@1.0.0-beta.34': + resolution: {integrity: sha512-E1QuFslgLWbHQ8Qli/AqUKdfg0pockQPwRxVbhNQ74SciZEZpzLaujkdmOLSccMlSXDfFCF8RPnMoRAzQ9JV8Q==} cpu: [x64] os: [darwin] - '@rolldown/binding-freebsd-x64@1.0.0-beta.40': - resolution: {integrity: sha512-2fdpEpKT+wwP0vig9dqxu+toTeWmVSjo3psJQVDeLJ51rO+GXcCJ1IkCXjhMKVEevNtZS7B8T8Z2vvmRV9MAdA==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-freebsd-x64@1.0.0-beta.34': + resolution: {integrity: sha512-VS8VInNCwnkpI9WeQaWu3kVBq9ty6g7KrHdLxYMzeqz24+w9hg712TcWdqzdY6sn+24lUoMD9jTZrZ/qfVpk0g==} cpu: [x64] os: [freebsd] - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.40': - resolution: {integrity: sha512-HP2lo78OWULN+8TewpLbS9PS00jh0CaF04tA2u8z2I+6QgVgrYOYKvX+T0hlO5smgso4+qb3YchzumWJl3yCPQ==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.34': + resolution: {integrity: sha512-4St4emjcnULnxJYb/5ZDrH/kK/j6PcUgc3eAqH5STmTrcF+I9m/X2xvSF2a2bWv1DOQhxBewThu0KkwGHdgu5w==} cpu: [arm] os: [linux] - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.40': - resolution: {integrity: sha512-ng00gfr9BhA2NPAOU5RWAlTiL+JcwAD+L+4yUD1sbBy6tgHdLiNBOvKtHISIF9RM9/eQeS0tAiWOYZGIH9JMew==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.34': + resolution: {integrity: sha512-a737FTqhFUoWfnebS2SnQ2BS50p0JdukdkUBwy2J06j4hZ6Eej0zEB8vTfAqoCjn8BQKkXBy+3Sx0IRkgwz1gA==} cpu: [arm64] os: [linux] - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.40': - resolution: {integrity: sha512-mF0R1l9kLcaag/9cLEiYYdNZ4v1uuX4jklSDZ1s6vJE4RB3LirUney0FavdVRwCJ5sDvfvsPgXgtBXWYr2M2tQ==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.34': + resolution: {integrity: sha512-NH+FeQWKyuw0k+PbXqpFWNfvD8RPvfJk766B/njdaWz4TmiEcSB0Nb6guNw1rBpM1FmltQYb3fFnTumtC6pRfA==} cpu: [arm64] os: [linux] - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.40': - resolution: {integrity: sha512-+wi08S7wT5iLPHRZb0USrS6n+T6m+yY++dePYedE5uvKIpWCJJioFTaRtWjpm0V6dVNLcq2OukrvfdlGtH9Wgg==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.34': + resolution: {integrity: sha512-Q3RSCivp8pNadYK8ke3hLnQk08BkpZX9BmMjgwae2FWzdxhxxUiUzd9By7kneUL0vRQ4uRnhD9VkFQ+Haeqdvw==} cpu: [x64] os: [linux] - '@rolldown/binding-linux-x64-musl@1.0.0-beta.40': - resolution: {integrity: sha512-W5qBGAemUocIBKCcOsDjlV9GUt28qhl/+M6etWBeLS5gQK0J6XDg0YVzfOQdvq57ZGjYNP0NvhYzqhOOnEx+4g==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-linux-x64-musl@1.0.0-beta.34': + resolution: {integrity: sha512-wDd/HrNcVoBhWWBUW3evJHoo7GJE/RofssBy3Dsiip05YUBmokQVrYAyrboOY4dzs/lJ7HYeBtWQ9hj8wlyF0A==} cpu: [x64] os: [linux] - '@rolldown/binding-openharmony-arm64@1.0.0-beta.40': - resolution: {integrity: sha512-vJwoDehtt+yqj2zacq1AqNc2uE/oh7mnRGqAUbuldV6pgvU01OSQUJ7Zu+35hTopnjFoDNN6mIezkYlGAv5RFA==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-openharmony-arm64@1.0.0-beta.34': + resolution: {integrity: sha512-dH3FTEV6KTNWpYSgjSXZzeX7vLty9oBYn6R3laEdhwZftQwq030LKL+5wyQdlbX5pnbh4h127hpv3Hl1+sj8dg==} cpu: [arm64] os: [openharmony] - '@rolldown/binding-wasm32-wasi@1.0.0-beta.40': - resolution: {integrity: sha512-Oj3YyqVUPurr1FlMpEE/bJmMC+VWAWPM/SGUfklO5KUX97bk5Q/733nPg4RykK8q8/TluJoQYvRc05vL/B74dw==} + '@rolldown/binding-wasm32-wasi@1.0.0-beta.34': + resolution: {integrity: sha512-y5BUf+QtO0JsIDKA51FcGwvhJmv89BYjUl8AmN7jqD6k/eU55mH6RJYnxwCsODq5m7KSSTigVb6O7/GqB8wbPw==} engines: {node: '>=14.0.0'} cpu: [wasm32] - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.40': - resolution: {integrity: sha512-0ZtO6yN8XjVoFfN4HDWQj4nDu3ndMybr7jIM00DJqOmc+yFhly7rdOy7fNR9Sky3leCpBtsXfepVqRmVpYKPVA==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.34': + resolution: {integrity: sha512-ga5hFhdTwpaNxEiuxZHWnD3ed0GBAzbgzS5tRHpe0ObptxM1a9Xrq6TVfNQirBLwb5Y7T/FJmJi3pmdLy95ljg==} cpu: [arm64] os: [win32] - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.40': - resolution: {integrity: sha512-BPl1inoJXPpIe38Ja46E4y11vXlJyuleo+9Rmu//pYL5fIDYJkXUj/oAXqjSuwLcssrcwnuPgzvzvlz9++cr3w==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.34': + resolution: {integrity: sha512-4/MBp9T9eRnZskxWr8EXD/xHvLhdjWaeX/qY9LPRG1JdCGV3DphkLTy5AWwIQ5jhAy2ZNJR5z2fYRlpWU0sIyQ==} cpu: [ia32] os: [win32] - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.40': - resolution: {integrity: sha512-UguA4ltbAk+nbwHRxqaUP/etpTbR0HjyNlsu4Zjbh/ytNbFsbw8CA4tEBkwDyjgI5NIPea6xY11zpl7R2/ddVA==} - engines: {node: ^20.19.0 || >=22.12.0} + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.34': + resolution: {integrity: sha512-7O5iUBX6HSBKlQU4WykpUoEmb0wQmonb6ziKFr3dJTHud2kzDnWMqk344T0qm3uGv9Ddq6Re/94pInxo1G2d4w==} cpu: [x64] os: [win32] - '@rolldown/pluginutils@1.0.0-beta.40': - resolution: {integrity: sha512-s3GeJKSQOwBlzdUrj4ISjJj5SfSh+aqn0wjOar4Bx95iV1ETI7F6S/5hLcfAxZ9kXDcyrAkxPlqmd1ZITttf+w==} + '@rolldown/pluginutils@1.0.0-beta.34': + resolution: {integrity: sha512-LyAREkZHP5pMom7c24meKmJCdhf2hEyvam2q0unr3or9ydwDL+DJ8chTF6Av/RFPb3rH8UFBdMzO5MxTZW97oA==} '@rollup/pluginutils@5.2.0': resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==} @@ -2666,127 +2645,116 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.52.0': - resolution: {integrity: sha512-VxDYCDqOaR7NXzAtvRx7G1u54d2kEHopb28YH/pKzY6y0qmogP3gG7CSiWsq9WvDFxOQMpNEyjVAHZFXfH3o/A==} + '@rollup/rollup-android-arm-eabi@4.50.0': + resolution: {integrity: sha512-lVgpeQyy4fWN5QYebtW4buT/4kn4p4IJ+kDNB4uYNT5b8c8DLJDg6titg20NIg7E8RWwdWZORW6vUFfrLyG3KQ==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.52.0': - resolution: {integrity: sha512-pqDirm8koABIKvzL59YI9W9DWbRlTX7RWhN+auR8HXJxo89m4mjqbah7nJZjeKNTNYopqL+yGg+0mhCpf3xZtQ==} + '@rollup/rollup-android-arm64@4.50.0': + resolution: {integrity: sha512-2O73dR4Dc9bp+wSYhviP6sDziurB5/HCym7xILKifWdE9UsOe2FtNcM+I4xZjKrfLJnq5UR8k9riB87gauiQtw==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.52.0': - resolution: {integrity: sha512-YCdWlY/8ltN6H78HnMsRHYlPiKvqKagBP1r+D7SSylxX+HnsgXGCmLiV3Y4nSyY9hW8qr8U9LDUx/Lo7M6MfmQ==} + '@rollup/rollup-darwin-arm64@4.50.0': + resolution: {integrity: sha512-vwSXQN8T4sKf1RHr1F0s98Pf8UPz7pS6P3LG9NSmuw0TVh7EmaE+5Ny7hJOZ0M2yuTctEsHHRTMi2wuHkdS6Hg==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.52.0': - resolution: {integrity: sha512-z4nw6y1j+OOSGzuVbSWdIp1IUks9qNw4dc7z7lWuWDKojY38VMWBlEN7F9jk5UXOkUcp97vA1N213DF+Lz8BRg==} + '@rollup/rollup-darwin-x64@4.50.0': + resolution: {integrity: sha512-cQp/WG8HE7BCGyFVuzUg0FNmupxC+EPZEwWu2FCGGw5WDT1o2/YlENbm5e9SMvfDFR6FRhVCBePLqj0o8MN7Vw==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.52.0': - resolution: {integrity: sha512-Q/dv9Yvyr5rKlK8WQJZVrp5g2SOYeZUs9u/t2f9cQ2E0gJjYB/BWoedXfUT0EcDJefi2zzVfhcOj8drWCzTviw==} + '@rollup/rollup-freebsd-arm64@4.50.0': + resolution: {integrity: sha512-UR1uTJFU/p801DvvBbtDD7z9mQL8J80xB0bR7DqW7UGQHRm/OaKzp4is7sQSdbt2pjjSS72eAtRh43hNduTnnQ==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.52.0': - resolution: {integrity: sha512-kdBsLs4Uile/fbjZVvCRcKB4q64R+1mUq0Yd7oU1CMm1Av336ajIFqNFovByipciuUQjBCPMxwJhCgfG2re3rg==} + '@rollup/rollup-freebsd-x64@4.50.0': + resolution: {integrity: sha512-G/DKyS6PK0dD0+VEzH/6n/hWDNPDZSMBmqsElWnCRGrYOb2jC0VSupp7UAHHQ4+QILwkxSMaYIbQ72dktp8pKA==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.52.0': - resolution: {integrity: sha512-aL6hRwu0k7MTUESgkg7QHY6CoqPgr6gdQXRJI1/VbFlUMwsSzPGSR7sG5d+MCbYnJmJwThc2ol3nixj1fvI/zQ==} + '@rollup/rollup-linux-arm-gnueabihf@4.50.0': + resolution: {integrity: sha512-u72Mzc6jyJwKjJbZZcIYmd9bumJu7KNmHYdue43vT1rXPm2rITwmPWF0mmPzLm9/vJWxIRbao/jrQmxTO0Sm9w==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.52.0': - resolution: {integrity: sha512-BTs0M5s1EJejgIBJhCeiFo7GZZ2IXWkFGcyZhxX4+8usnIo5Mti57108vjXFIQmmJaRyDwmV59Tw64Ap1dkwMw==} + '@rollup/rollup-linux-arm-musleabihf@4.50.0': + resolution: {integrity: sha512-S4UefYdV0tnynDJV1mdkNawp0E5Qm2MtSs330IyHgaccOFrwqsvgigUD29uT+B/70PDY1eQ3t40+xf6wIvXJyg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.52.0': - resolution: {integrity: sha512-uj672IVOU9m08DBGvoPKPi/J8jlVgjh12C9GmjjBxCTQc3XtVmRkRKyeHSmIKQpvJ7fIm1EJieBUcnGSzDVFyw==} + '@rollup/rollup-linux-arm64-gnu@4.50.0': + resolution: {integrity: sha512-1EhkSvUQXJsIhk4msxP5nNAUWoB4MFDHhtc4gAYvnqoHlaL9V3F37pNHabndawsfy/Tp7BPiy/aSa6XBYbaD1g==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.52.0': - resolution: {integrity: sha512-/+IVbeDMDCtB/HP/wiWsSzduD10SEGzIZX2945KSgZRNi4TSkjHqRJtNTVtVb8IRwhJ65ssI56krlLik+zFWkw==} + '@rollup/rollup-linux-arm64-musl@4.50.0': + resolution: {integrity: sha512-EtBDIZuDtVg75xIPIK1l5vCXNNCIRM0OBPUG+tbApDuJAy9mKago6QxX+tfMzbCI6tXEhMuZuN1+CU8iDW+0UQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loong64-gnu@4.52.0': - resolution: {integrity: sha512-U1vVzvSWtSMWKKrGoROPBXMh3Vwn93TA9V35PldokHGqiUbF6erSzox/5qrSMKp6SzakvyjcPiVF8yB1xKr9Pg==} + '@rollup/rollup-linux-loongarch64-gnu@4.50.0': + resolution: {integrity: sha512-BGYSwJdMP0hT5CCmljuSNx7+k+0upweM2M4YGfFBjnFSZMHOLYR0gEEj/dxyYJ6Zc6AiSeaBY8dWOa11GF/ppQ==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-ppc64-gnu@4.52.0': - resolution: {integrity: sha512-X/4WfuBAdQRH8cK3DYl8zC00XEE6aM472W+QCycpQJeLWVnHfkv7RyBFVaTqNUMsTgIX8ihMjCvFF9OUgeABzw==} + '@rollup/rollup-linux-ppc64-gnu@4.50.0': + resolution: {integrity: sha512-I1gSMzkVe1KzAxKAroCJL30hA4DqSi+wGc5gviD0y3IL/VkvcnAqwBf4RHXHyvH66YVHxpKO8ojrgc4SrWAnLg==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.52.0': - resolution: {integrity: sha512-xIRYc58HfWDBZoLmWfWXg2Sq8VCa2iJ32B7mqfWnkx5mekekl0tMe7FHpY8I72RXEcUkaWawRvl3qA55og+cwQ==} + '@rollup/rollup-linux-riscv64-gnu@4.50.0': + resolution: {integrity: sha512-bSbWlY3jZo7molh4tc5dKfeSxkqnf48UsLqYbUhnkdnfgZjgufLS/NTA8PcP/dnvct5CCdNkABJ56CbclMRYCA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.52.0': - resolution: {integrity: sha512-mbsoUey05WJIOz8U1WzNdf+6UMYGwE3fZZnQqsM22FZ3wh1N887HT6jAOjXs6CNEK3Ntu2OBsyQDXfIjouI4dw==} + '@rollup/rollup-linux-riscv64-musl@4.50.0': + resolution: {integrity: sha512-LSXSGumSURzEQLT2e4sFqFOv3LWZsEF8FK7AAv9zHZNDdMnUPYH3t8ZlaeYYZyTXnsob3htwTKeWtBIkPV27iQ==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.52.0': - resolution: {integrity: sha512-qP6aP970bucEi5KKKR4AuPFd8aTx9EF6BvutvYxmZuWLJHmnq4LvBfp0U+yFDMGwJ+AIJEH5sIP+SNypauMWzg==} + '@rollup/rollup-linux-s390x-gnu@4.50.0': + resolution: {integrity: sha512-CxRKyakfDrsLXiCyucVfVWVoaPA4oFSpPpDwlMcDFQvrv3XY6KEzMtMZrA+e/goC8xxp2WSOxHQubP8fPmmjOQ==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.52.0': - resolution: {integrity: sha512-nmSVN+F2i1yKZ7rJNKO3G7ZzmxJgoQBQZ/6c4MuS553Grmr7WqR7LLDcYG53Z2m9409z3JLt4sCOhLdbKQ3HmA==} + '@rollup/rollup-linux-x64-gnu@4.50.0': + resolution: {integrity: sha512-8PrJJA7/VU8ToHVEPu14FzuSAqVKyo5gg/J8xUerMbyNkWkO9j2ExBho/68RnJsMGNJq4zH114iAttgm7BZVkA==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.52.0': - resolution: {integrity: sha512-2d0qRo33G6TfQVjaMR71P+yJVGODrt5V6+T0BDYH4EMfGgdC/2HWDVjSSFw888GSzAZUwuska3+zxNUCDco6rQ==} + '@rollup/rollup-linux-x64-musl@4.50.0': + resolution: {integrity: sha512-SkE6YQp+CzpyOrbw7Oc4MgXFvTw2UIBElvAvLCo230pyxOLmYwRPwZ/L5lBe/VW/qT1ZgND9wJfOsdy0XptRvw==} cpu: [x64] os: [linux] - '@rollup/rollup-openharmony-arm64@4.52.0': - resolution: {integrity: sha512-A1JalX4MOaFAAyGgpO7XP5khquv/7xKzLIyLmhNrbiCxWpMlnsTYr8dnsWM7sEeotNmxvSOEL7F65j0HXFcFsw==} + '@rollup/rollup-openharmony-arm64@4.50.0': + resolution: {integrity: sha512-PZkNLPfvXeIOgJWA804zjSFH7fARBBCpCXxgkGDRjjAhRLOR8o0IGS01ykh5GYfod4c2yiiREuDM8iZ+pVsT+Q==} cpu: [arm64] os: [openharmony] - '@rollup/rollup-win32-arm64-msvc@4.52.0': - resolution: {integrity: sha512-YQugafP/rH0eOOHGjmNgDURrpYHrIX0yuojOI8bwCyXwxC9ZdTd3vYkmddPX0oHONLXu9Rb1dDmT0VNpjkzGGw==} + '@rollup/rollup-win32-arm64-msvc@4.50.0': + resolution: {integrity: sha512-q7cIIdFvWQoaCbLDUyUc8YfR3Jh2xx3unO8Dn6/TTogKjfwrax9SyfmGGK6cQhKtjePI7jRfd7iRYcxYs93esg==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.52.0': - resolution: {integrity: sha512-zYdUYhi3Qe2fndujBqL5FjAFzvNeLxtIqfzNEVKD1I7C37/chv1VxhscWSQHTNfjPCrBFQMnynwA3kpZpZ8w4A==} + '@rollup/rollup-win32-ia32-msvc@4.50.0': + resolution: {integrity: sha512-XzNOVg/YnDOmFdDKcxxK410PrcbcqZkBmz+0FicpW5jtjKQxcW1BZJEQOF0NJa6JO7CZhett8GEtRN/wYLYJuw==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-gnu@4.52.0': - resolution: {integrity: sha512-fGk03kQylNaCOQ96HDMeT7E2n91EqvCDd3RwvT5k+xNdFCeMGnj5b5hEgTGrQuyidqSsD3zJDQ21QIaxXqTBJw==} - cpu: [x64] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.52.0': - resolution: {integrity: sha512-6iKDCVSIUQ8jPMoIV0OytRKniaYyy5EbY/RRydmLW8ZR3cEBhxbWl5ro0rkUNe0ef6sScvhbY79HrjRm8i3vDQ==} + '@rollup/rollup-win32-x64-msvc@4.50.0': + resolution: {integrity: sha512-xMmiWRR8sp72Zqwjgtf3QbZfF1wdh8X2ABu3EaozvZcyHJeU0r+XAnXdKgs4cCAp6ORoYoCygipYP1mjmbjrsg==} cpu: [x64] os: [win32] '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - '@rushstack/eslint-patch@1.12.0': - resolution: {integrity: sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==} - - '@sesamecare-oss/redlock@1.4.0': - resolution: {integrity: sha512-2z589R+yxKLN4CgKxP1oN4dsg6Y548SE4bVYam/R0kHk7Q9VrQ9l66q+k1ehhSLLY4or9hcchuF9/MhuuZdjJg==} - engines: {node: '>=16'} - peerDependencies: - ioredis: '>=5' + '@rushstack/eslint-patch@1.10.4': + resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==} '@storybook/addon-actions@8.6.14': resolution: {integrity: sha512-mDQxylxGGCQSK7tJPkD144J8jWh9IU9ziJMHfB84PKpI/V5ZgqMDnpr2bssTrUaGDqU5e1/z8KcRF+Melhs9pQ==} @@ -3061,68 +3029,68 @@ packages: peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - '@swc/core-darwin-arm64@1.13.3': - resolution: {integrity: sha512-ux0Ws4pSpBTqbDS9GlVP354MekB1DwYlbxXU3VhnDr4GBcCOimpocx62x7cFJkSpEBF8bmX8+/TTCGKh4PbyXw==} + '@swc/core-darwin-arm64@1.13.5': + resolution: {integrity: sha512-lKNv7SujeXvKn16gvQqUQI5DdyY8v7xcoO3k06/FJbHJS90zEwZdQiMNRiqpYw/orU543tPaWgz7cIYWhbopiQ==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.13.3': - resolution: {integrity: sha512-p0X6yhxmNUOMZrbeZ3ZNsPige8lSlSe1llllXvpCLkKKxN/k5vZt1sULoq6Nj4eQ7KeHQVm81/+AwKZyf/e0TA==} + '@swc/core-darwin-x64@1.13.5': + resolution: {integrity: sha512-ILd38Fg/w23vHb0yVjlWvQBoE37ZJTdlLHa8LRCFDdX4WKfnVBiblsCU9ar4QTMNdeTBEX9iUF4IrbNWhaF1Ng==} engines: {node: '>=10'} cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.13.3': - resolution: {integrity: sha512-OmDoiexL2fVWvQTCtoh0xHMyEkZweQAlh4dRyvl8ugqIPEVARSYtaj55TBMUJIP44mSUOJ5tytjzhn2KFxFcBA==} + '@swc/core-linux-arm-gnueabihf@1.13.5': + resolution: {integrity: sha512-Q6eS3Pt8GLkXxqz9TAw+AUk9HpVJt8Uzm54MvPsqp2yuGmY0/sNaPPNVqctCX9fu/Nu8eaWUen0si6iEiCsazQ==} engines: {node: '>=10'} cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.13.3': - resolution: {integrity: sha512-STfKku3QfnuUj6k3g9ld4vwhtgCGYIFQmsGPPgT9MK/dI3Lwnpe5Gs5t1inoUIoGNP8sIOLlBB4HV4MmBjQuhw==} + '@swc/core-linux-arm64-gnu@1.13.5': + resolution: {integrity: sha512-aNDfeN+9af+y+M2MYfxCzCy/VDq7Z5YIbMqRI739o8Ganz6ST+27kjQFd8Y/57JN/hcnUEa9xqdS3XY7WaVtSw==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.13.3': - resolution: {integrity: sha512-bc+CXYlFc1t8pv9yZJGus372ldzOVscBl7encUBlU1m/Sig0+NDJLz6cXXRcFyl6ABNOApWeR4Yl7iUWx6C8og==} + '@swc/core-linux-arm64-musl@1.13.5': + resolution: {integrity: sha512-9+ZxFN5GJag4CnYnq6apKTnnezpfJhCumyz0504/JbHLo+Ue+ZtJnf3RhyA9W9TINtLE0bC4hKpWi8ZKoETyOQ==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.13.3': - resolution: {integrity: sha512-dFXoa0TEhohrKcxn/54YKs1iwNeW6tUkHJgXW33H381SvjKFUV53WR231jh1sWVJETjA3vsAwxKwR23s7UCmUA==} + '@swc/core-linux-x64-gnu@1.13.5': + resolution: {integrity: sha512-WD530qvHrki8Ywt/PloKUjaRKgstQqNGvmZl54g06kA+hqtSE2FTG9gngXr3UJxYu/cNAjJYiBifm7+w4nbHbA==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.13.3': - resolution: {integrity: sha512-ieyjisLB+ldexiE/yD8uomaZuZIbTc8tjquYln9Quh5ykOBY7LpJJYBWvWtm1g3pHv6AXlBI8Jay7Fffb6aLfA==} + '@swc/core-linux-x64-musl@1.13.5': + resolution: {integrity: sha512-Luj8y4OFYx4DHNQTWjdIuKTq2f5k6uSXICqx+FSabnXptaOBAbJHNbHT/06JZh6NRUouaf0mYXN0mcsqvkhd7Q==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.13.3': - resolution: {integrity: sha512-elTQpnaX5vESSbhCEgcwXjpMsnUbqqHfEpB7ewpkAsLzKEXZaK67ihSRYAuAx6ewRQTo7DS5iTT6X5aQD3MzMw==} + '@swc/core-win32-arm64-msvc@1.13.5': + resolution: {integrity: sha512-cZ6UpumhF9SDJvv4DA2fo9WIzlNFuKSkZpZmPG1c+4PFSEMy5DFOjBSllCvnqihCabzXzpn6ykCwBmHpy31vQw==} engines: {node: '>=10'} cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.13.3': - resolution: {integrity: sha512-nvehQVEOdI1BleJpuUgPLrclJ0TzbEMc+MarXDmmiRFwEUGqj+pnfkTSb7RZyS1puU74IXdK/YhTirHurtbI9w==} + '@swc/core-win32-ia32-msvc@1.13.5': + resolution: {integrity: sha512-C5Yi/xIikrFUzZcyGj9L3RpKljFvKiDMtyDzPKzlsDrKIw2EYY+bF88gB6oGY5RGmv4DAX8dbnpRAqgFD0FMEw==} engines: {node: '>=10'} cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.13.3': - resolution: {integrity: sha512-A+JSKGkRbPLVV2Kwx8TaDAV0yXIXm/gc8m98hSkVDGlPBBmydgzNdWy3X7HTUBM7IDk7YlWE7w2+RUGjdgpTmg==} + '@swc/core-win32-x64-msvc@1.13.5': + resolution: {integrity: sha512-YrKdMVxbYmlfybCSbRtrilc6UA8GF5aPmGKBdPvjrarvsmf4i7ZHGCEnLtfOMd3Lwbs2WUZq3WdMbozYeLU93Q==} engines: {node: '>=10'} cpu: [x64] os: [win32] - '@swc/core@1.13.3': - resolution: {integrity: sha512-ZaDETVWnm6FE0fc+c2UE8MHYVS3Fe91o5vkmGfgwGXFbxYvAjKSqxM/j4cRc9T7VZNSJjriXq58XkfCp3Y6f+w==} + '@swc/core@1.13.5': + resolution: {integrity: sha512-WezcBo8a0Dg2rnR82zhwoR6aRNxeTGfK5QCD6TQ+kg3xx/zNT02s/0o+81h/3zhvFSB24NtqEr8FTw88O5W/JQ==} engines: {node: '>=10'} peerDependencies: '@swc/helpers': '>=0.5.17' @@ -3180,8 +3148,8 @@ packages: resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - '@testing-library/jest-dom@6.6.3': - resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==} + '@testing-library/jest-dom@6.7.0': + resolution: {integrity: sha512-RI2e97YZ7MRa+vxP4UUnMuMFL2buSsf0ollxUbTgrbPLKhMn8KVTx7raS6DYjC7v1NDVrioOvaShxsguLNISCA==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} '@testing-library/user-event@14.5.2': @@ -3583,6 +3551,9 @@ packages: '@types/node@18.16.1': resolution: {integrity: sha512-DZxSZWXxFfOlx7k7Rv4LAyiMroaxa3Ly/7OOzZO8cBNho0YzAi4qlbrx8W27JGqG57IgR/6J7r+nOJWw6kcvZA==} + '@types/node@20.19.15': + resolution: {integrity: sha512-W3bqcbLsRdFDVcmAM5l6oLlcl67vjevn8j1FPZ4nx+K5jNoWCh+FC/btxFoBPnvQlrHHDwfjp1kjIEDfwJ0Mog==} + '@types/node@20.19.17': resolution: {integrity: sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==} @@ -3666,9 +3637,6 @@ packages: '@types/use-sync-external-store@0.0.6': resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==} - '@types/uuid@8.3.4': - resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} - '@types/uuid@9.0.8': resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} @@ -3678,11 +3646,11 @@ packages: '@types/ws@8.18.1': resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} - '@typescript-eslint/eslint-plugin@8.38.0': - resolution: {integrity: sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA==} + '@typescript-eslint/eslint-plugin@8.40.0': + resolution: {integrity: sha512-w/EboPlBwnmOBtRbiOvzjD+wdiZdgFeo17lkltrtn7X37vagKKWJABvyfsJXTlHe6XBzugmYgd4A4nW+k8Mixw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.38.0 + '@typescript-eslint/parser': ^8.40.0 eslint: ^8.57.0 || ^9.0.0 typescript: 5.8.3 @@ -3693,82 +3661,52 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: 5.8.3 - '@typescript-eslint/project-service@8.38.0': - resolution: {integrity: sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: 5.8.3 - '@typescript-eslint/project-service@8.40.0': resolution: {integrity: sha512-/A89vz7Wf5DEXsGVvcGdYKbVM9F7DyFXj52lNYUDS1L9yJfqjW/fIp5PgMuEJL/KeqVTe2QSbXAGUZljDUpArw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: 5.8.3 - '@typescript-eslint/scope-manager@8.38.0': - resolution: {integrity: sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/scope-manager@8.40.0': resolution: {integrity: sha512-y9ObStCcdCiZKzwqsE8CcpyuVMwRouJbbSrNuThDpv16dFAj429IkM6LNb1dZ2m7hK5fHyzNcErZf7CEeKXR4w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.38.0': - resolution: {integrity: sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: 5.8.3 - '@typescript-eslint/tsconfig-utils@8.40.0': resolution: {integrity: sha512-jtMytmUaG9d/9kqSl/W3E3xaWESo4hFDxAIHGVW/WKKtQhesnRIJSAJO6XckluuJ6KDB5woD1EiqknriCtAmcw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.38.0': - resolution: {integrity: sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg==} + '@typescript-eslint/type-utils@8.40.0': + resolution: {integrity: sha512-eE60cK4KzAc6ZrzlJnflXdrMqOBaugeukWICO2rB0KNvwdIMaEaYiywwHMzA1qFpTxrLhN9Lp4E/00EgWcD3Ow==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: 5.8.3 - '@typescript-eslint/types@8.38.0': - resolution: {integrity: sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/types@8.40.0': resolution: {integrity: sha512-ETdbFlgbAmXHyFPwqUIYrfc12ArvpBhEVgGAxVYSwli26dn8Ko+lIo4Su9vI9ykTZdJn+vJprs/0eZU0YMAEQg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.38.0': - resolution: {integrity: sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: 5.8.3 - '@typescript-eslint/typescript-estree@8.40.0': resolution: {integrity: sha512-k1z9+GJReVVOkc1WfVKs1vBrR5MIKKbdAjDTPvIK3L8De6KbFfPFt6BKpdkdk7rZS2GtC/m6yI5MYX+UsuvVYQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: 5.8.3 - '@typescript-eslint/utils@8.38.0': - resolution: {integrity: sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg==} + '@typescript-eslint/utils@8.40.0': + resolution: {integrity: sha512-Cgzi2MXSZyAUOY+BFwGs17s7ad/7L+gKt6Y8rAVVWS+7o6wrjeFN4nVfTpbE25MNcxyJ+iYUXflbs2xR9h4UBg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: 5.8.3 - '@typescript-eslint/visitor-keys@8.38.0': - resolution: {integrity: sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/visitor-keys@8.40.0': resolution: {integrity: sha512-8CZ47QwalyRjsypfwnbI3hKy5gJDPmrkLjkgMxhi0+DZZ2QNx2naS6/hWoVYUHU7LU2zleF68V9miaVZvhFfTA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@ungap/structured-clone@1.3.0': - resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + '@ungap/structured-clone@1.2.1': + resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} '@unrs/resolver-binding-android-arm-eabi@1.11.1': resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==} @@ -4214,8 +4152,11 @@ packages: bind-event-listener@3.0.0: resolution: {integrity: sha512-PJvH288AWQhKs2v9zyfYdPzlPqf5bXbGMmhmUIY9x4dAUGIWgomO771oBQNwJnMQSnUIXhKu6sgzpBRXTlvb8Q==} - birpc@2.5.0: - resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==} + birpc@2.6.1: + resolution: {integrity: sha512-LPnFhlDpdSH6FJhJyn4M0kFO7vtQ5iPw24FnG0y21q09xC7e8+1LeR31S1MAIrDAHp4m7aas4bEkTDTvMAtebQ==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} body-parser@1.20.3: resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} @@ -4240,8 +4181,8 @@ packages: browserify-zlib@0.2.0: resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} - browserslist@4.25.2: - resolution: {integrity: sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==} + browserslist@4.25.4: + resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -4286,8 +4227,8 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - caniuse-lite@1.0.30001735: - resolution: {integrity: sha512-EV/laoX7Wq2J9TQlyIXRxTJqIw4sxfXS4OYgudGxBYRuTv0q7AM6yMEpU/Vo1I94thg9U6EZ2NfZx9GJq83u7w==} + caniuse-lite@1.0.30001741: + resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -4634,8 +4575,8 @@ packages: supports-color: optional: true - debug@4.4.1: - resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -4830,14 +4771,14 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.204: - resolution: {integrity: sha512-s9VbBXWxfDrl67PlO4avwh0/GU2vcwx8Fph3wlR8LJl7ySGYId59EFE17VWVcuC3sLWNPENm6Z/uGqKbkPCcXA==} + electron-to-chromium@1.5.218: + resolution: {integrity: sha512-uwwdN0TUHs8u6iRgN8vKeWZMRll4gBkz+QMqdS7DDe49uiK68/UX92lFb61oiFPrpYZNeZIqa4bA7O6Aiasnzg==} element-resize-detector@1.2.4: resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} - emoji-picker-react@4.12.2: - resolution: {integrity: sha512-6PDYZGlhidt+Kc0ay890IU4HLNfIR7/OxPvcNxw+nJ4HQhMKd8pnGnPn4n2vqC/arRFCNWQhgJP8rpsYKsz0GQ==} + emoji-picker-react@4.13.2: + resolution: {integrity: sha512-azaJQLTshEOZVhksgU136izJWJyZ4Clx6xQ6Vctzk1gOdPPAUbTa/JYDwZJ8rh97QxnjpyeftXl99eRlYr3vNA==} engines: {node: '>=10'} peerDependencies: react: '>=16' @@ -4959,8 +4900,8 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - eslint-config-next@14.2.31: - resolution: {integrity: sha512-sT32j4678je7SWstBM6l0kE2L+LSgAARDAxw8iloNhI4/8xwkdDesbrGCPaGWzQv+dD6f6adhB+eRSThpGkBdg==} + eslint-config-next@14.2.32: + resolution: {integrity: sha512-mP/NmYtDBsKlKIOBnH+CW+pYeyR3wBhE+26DAqQ0/aRtEBeTEjgY2wAFUugUELkTLmrX6PpuMSSTpOhz7j9kdQ==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: 5.8.3 @@ -5622,6 +5563,10 @@ packages: resolution: {integrity: sha512-UxC0Yv1Y4WRJiGQxQkP0hfdL0/5/6YvdfOOClRgJ0qppSarkhneSa6UvkMkms0AkdGimSH3Ikqm+6mkMmX7vGA==} engines: {node: '>=12.22.0'} + ioredis@5.7.0: + resolution: {integrity: sha512-NUcA93i1lukyXU+riqEyPtSEkyFq8tX90uL659J+qpCZ3rEdViB/APC58oAhIh3+bJln2hzdlZbBZsGNrlsR8g==} + engines: {node: '>=12.22.0'} + ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -5791,8 +5736,8 @@ packages: resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} engines: {node: '>=16'} - isomorphic-dompurify@2.25.0: - resolution: {integrity: sha512-bcpJzu9DOjN21qaCVpcoCwUX1ytpvA6EFqCK5RNtPg5+F0Jz9PX50jl6jbEicBNeO87eDDfC7XtPs4zjDClZJg==} + isomorphic-dompurify@2.26.0: + resolution: {integrity: sha512-nZmoK4wKdzPs5USq4JHBiimjdKSVAOm2T1KyDoadtMPNXYHxiENd19ou4iU/V4juFM6LVgYQnpxCYmxqNP4Obw==} engines: {node: '>=18'} isomorphic.js@0.2.5: @@ -6013,8 +5958,8 @@ packages: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true - magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + magic-string@0.30.19: + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} @@ -6566,8 +6511,8 @@ packages: pino-std-serializers@7.0.0: resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} - pino@9.7.0: - resolution: {integrity: sha512-vnMCM6xZTb1WDmLvtG2lE/2p+t9hDEIvTWJsu6FejkE62vB7gDhvzrpFR4Cw2to+9JNQxVnkAKVPA1KPB98vWg==} + pino@9.9.0: + resolution: {integrity: sha512-zxsRIQG9HzG+jEljmvmZupOMDUQ0Jpj0yAgE28jQvvrdYTlEaiGwelJpdndMl/MBuRr70heIj83QyqJUWaU8mQ==} hasBin: true pirates@4.0.7: @@ -6695,8 +6640,8 @@ packages: resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} - posthog-js@1.255.1: - resolution: {integrity: sha512-KMh0o9MhORhEZVjXpktXB5rJ8PfDk+poqBoTSoLzWgNjhJf6D8jcyB9jUMA6vVPfn4YeepVX5NuclDRqOwr5Mw==} + posthog-js@1.260.1: + resolution: {integrity: sha512-DD8ZSRpdScacMqtqUIvMFme8lmOWkOvExG8VvjONE7Cm3xpRH5xXpfrwMJE4bayTGWKMx4ij6SfphK6dm/o2ug==} peerDependencies: '@rrweb/types': 2.0.0-alpha.17 rrweb-snapshot: 2.0.0-alpha.17 @@ -6950,8 +6895,8 @@ packages: resolution: {integrity: sha512-hlSJDQ2synMPKFZOsKo9Hi8WWZTC7POR8EmWvTSjow+VDgKzkmjQvFm2fk0tmRw+f0vTOIYKlarR0iL4996pdg==} engines: {node: '>=16.14.0'} - react-docgen@8.0.0: - resolution: {integrity: sha512-kmob/FOTwep7DUWf9KjuenKX0vyvChr3oTdvvPt09V60Iz75FJp+T/0ZeHMbAfJj2WaVWqAPP5Hmm3PYzSPPKg==} + react-docgen@8.0.1: + resolution: {integrity: sha512-kQKsqPLplY3Hx4jGnM3jpQcG3FQDt7ySz32uTHt3C9HAe45kNXG+3o16Eqn3Fw1GtMfHoN3b4J/z2e6cZJCmqQ==} engines: {node: ^20.9.0 || >=22} react-dom@18.3.1: @@ -7112,6 +7057,10 @@ packages: resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} engines: {node: '>=4'} + redlock@4.2.0: + resolution: {integrity: sha512-j+oQlG+dOwcetUt2WJWttu4CZVeRzUrcVcISFmEmfyuwCVSJ93rDT7YSgg7H7rnxwoRyk/jU46kycVka5tW7jA==} + engines: {node: '>=8.0.0'} + reflect-metadata@0.2.2: resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==} @@ -7178,15 +7127,18 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rolldown-plugin-dts@0.15.10: - resolution: {integrity: sha512-8cPVAVQUo9tYAoEpc3jFV9RxSil13hrRRg8cHC9gLXxRMNtWPc1LNMSDXzjyD+5Vny49sDZH77JlXp/vlc4I3g==} + rolldown-plugin-dts@0.16.11: + resolution: {integrity: sha512-9IQDaPvPqTx3RjG2eQCK5GYZITo203BxKunGI80AGYicu1ySFTUyugicAaTZWRzFWh9DSnzkgNeMNbDWBbSs0w==} engines: {node: '>=20.18.0'} peerDependencies: + '@ts-macro/tsc': ^0.3.6 '@typescript/native-preview': '>=7.0.0-dev.20250601.1' rolldown: ^1.0.0-beta.9 typescript: 5.8.3 - vue-tsc: ~3.0.3 + vue-tsc: ~3.1.0 peerDependenciesMeta: + '@ts-macro/tsc': + optional: true '@typescript/native-preview': optional: true typescript: @@ -7194,13 +7146,12 @@ packages: vue-tsc: optional: true - rolldown@1.0.0-beta.40: - resolution: {integrity: sha512-VqEHbKpOgTPmQrZ4fVn4eshDQS/6g/fRpNE7cFSJY+eQLDZn4B9X61J6L+hnlt1u2uRI+pF7r1USs6S5fuWCvw==} - engines: {node: ^20.19.0 || >=22.12.0} + rolldown@1.0.0-beta.34: + resolution: {integrity: sha512-Wwh7EwalMzzX3Yy3VN58VEajeR2Si8+HDNMf706jPLIqU7CxneRW+dQVfznf5O0TWTnJyu4npelwg2bzTXB1Nw==} hasBin: true - rollup@4.52.0: - resolution: {integrity: sha512-+IuescNkTJQgX7AkIDtITipZdIGcWF0pnVvZTWStiazUmcGA2ag8dfg0urest2XlXUi9kuhfQ+qmdc5Stc3z7g==} + rollup@4.50.0: + resolution: {integrity: sha512-/Zl4D8zPifNmyGzJS+3kVoyXeDeT/GrsJM94sACNg9RtUE0hrHa1bNPtRSrfHTMH5HjRzce6K7rlTh3Khiw+pw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -7569,8 +7520,8 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - tapable@2.2.2: - resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} + tapable@2.2.3: + resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==} engines: {node: '>=6'} terser-webpack-plugin@5.3.14: @@ -7653,10 +7604,6 @@ packages: peerDependencies: '@tiptap/core': ^3.0.1 - tlds@1.259.0: - resolution: {integrity: sha512-AldGGlDP0PNgwppe2quAvuBl18UcjuNtOnDuUkqhd6ipPqrYYBt3aTxK1QTsBVknk97lS2JcafWMghjGWFtunw==} - hasBin: true - tldts-core@6.1.86: resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} @@ -7731,8 +7678,8 @@ packages: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} - tsdown@0.14.2: - resolution: {integrity: sha512-6ThtxVZoTlR5YJov5rYvH8N1+/S/rD/pGfehdCLGznGgbxz+73EASV1tsIIZkLw2n+SXcERqHhcB/OkyxdKv3A==} + tsdown@0.15.5: + resolution: {integrity: sha512-2UP5hDBVYGHnnQSIYtDxMDjePmut7EDpvW5E2kVnjpZ17JgiPvRJPHwk5Dm045bC75+q8yxAlw/CMIELymTWaw==} engines: {node: '>=20.19.0'} hasBin: true peerDependencies: @@ -7953,14 +7900,14 @@ packages: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} - uuid@10.0.0: - resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} - hasBin: true - uuid@11.1.0: resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==} hasBin: true + uuid@13.0.0: + resolution: {integrity: sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==} + hasBin: true + uuid@9.0.1: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} hasBin: true @@ -7990,8 +7937,8 @@ packages: resolution: {integrity: sha512-t20zYkrSf868+j/p31cRIGN28Phrjm3nRSLR2fyc2tiWi4cZGVdv68yNlwnIINTkMTmPoMiSlc0OadaO7DXZaQ==} engines: {node: '>= 6'} - vite@7.0.0: - resolution: {integrity: sha512-ixXJB1YRgDIw2OszKQS9WxGHKwLdCsbQNkpJN171udl6szi/rIySHL6/Os3s2+oE4P/FLD4dxg4mD7Wust+u5g==} + vite@7.0.7: + resolution: {integrity: sha512-hc6LujN/EkJHmxeiDJMs0qBontZ1cdBvvoCbWhVjzUFTU329VRyOC46gHNSA8NcOC5yzCeXpwI40tieI3DEZqg==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -8301,12 +8248,12 @@ snapshots: '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3) '@babel/helpers': 7.26.10 - '@babel/parser': 7.28.3 + '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/traverse': 7.28.3 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 convert-source-map: 2.0.0 - debug: 4.4.1 + debug: 4.4.3 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -8315,8 +8262,8 @@ snapshots: '@babel/generator@7.28.3': dependencies: - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.30 jsesc: 3.1.0 @@ -8325,7 +8272,7 @@ snapshots: dependencies: '@babel/compat-data': 7.28.0 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.25.2 + browserslist: 4.25.4 lru-cache: 5.1.1 semver: 6.3.1 @@ -8334,7 +8281,7 @@ snapshots: '@babel/helper-module-imports@7.27.1': dependencies: '@babel/traverse': 7.28.3 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 transitivePeerDependencies: - supports-color @@ -8356,11 +8303,11 @@ snapshots: '@babel/helpers@7.26.10': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 - '@babel/parser@7.28.3': + '@babel/parser@7.28.4': dependencies: - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@babel/runtime@7.26.10': dependencies: @@ -8369,22 +8316,22 @@ snapshots: '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@babel/traverse@7.28.3': dependencies: '@babel/code-frame': 7.27.1 '@babel/generator': 7.28.3 '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.28.3 + '@babel/parser': 7.28.4 '@babel/template': 7.27.2 - '@babel/types': 7.28.2 - debug: 4.4.1 + '@babel/types': 7.28.4 + debug: 4.4.3 transitivePeerDependencies: - supports-color - '@babel/types@7.28.2': + '@babel/types@7.28.4': dependencies: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 @@ -8393,7 +8340,7 @@ snapshots: dependencies: '@babel/runtime': 7.26.10 '@base-ui-components/utils': 0.1.0(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@floating-ui/react-dom': 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react-dom': 2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@floating-ui/utils': 0.2.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -8609,7 +8556,7 @@ snapshots: '@emotion/sheet@1.4.0': {} - '@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1)': + '@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1)': dependencies: '@babel/runtime': 7.26.10 '@emotion/babel-plugin': 11.13.5 @@ -8709,7 +8656,7 @@ snapshots: '@esbuild/win32-x64@0.25.0': optional: true - '@eslint-community/eslint-utils@4.7.0(eslint@8.57.1)': + '@eslint-community/eslint-utils@4.9.0(eslint@8.57.1)': dependencies: eslint: 8.57.1 eslint-visitor-keys: 3.4.3 @@ -8719,7 +8666,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.4.1 + debug: 4.4.3 espree: 9.6.1 globals: 13.24.0 ignore: 5.3.2 @@ -8751,15 +8698,20 @@ snapshots: '@floating-ui/core': 1.7.3 '@floating-ui/utils': 0.2.10 - '@floating-ui/react-dom@2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@floating-ui/dom@1.7.4': dependencies: - '@floating-ui/dom': 1.7.3 + '@floating-ui/core': 1.7.3 + '@floating-ui/utils': 0.2.10 + + '@floating-ui/react-dom@2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@floating-ui/dom': 1.7.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) '@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@floating-ui/react-dom': 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react-dom': 2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@floating-ui/utils': 0.2.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -8808,31 +8760,31 @@ snapshots: dependencies: lib0: 0.2.114 - '@hocuspocus/extension-database@3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': + '@hocuspocus/extension-database@3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': dependencies: - '@hocuspocus/server': 3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + '@hocuspocus/server': 3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) yjs: 13.6.27 transitivePeerDependencies: - bufferutil - utf-8-validate - y-protocols - '@hocuspocus/extension-logger@3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': + '@hocuspocus/extension-logger@3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': dependencies: - '@hocuspocus/server': 3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + '@hocuspocus/server': 3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) transitivePeerDependencies: - bufferutil - utf-8-validate - y-protocols - yjs - '@hocuspocus/extension-redis@3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': + '@hocuspocus/extension-redis@3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': dependencies: - '@hocuspocus/server': 3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) - '@sesamecare-oss/redlock': 1.4.0(ioredis@5.6.1) + '@hocuspocus/server': 3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) ioredis: 5.6.1 kleur: 4.1.5 lodash.debounce: 4.0.8 + redlock: 4.2.0 uuid: 11.1.0 y-protocols: 1.0.6(yjs@13.6.27) yjs: 13.6.27 @@ -8853,7 +8805,7 @@ snapshots: - bufferutil - utf-8-validate - '@hocuspocus/server@3.2.3(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': + '@hocuspocus/server@3.1.7(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': dependencies: '@hocuspocus/common': 3.2.3 async-lock: 1.4.1 @@ -8870,7 +8822,7 @@ snapshots: '@humanwhocodes/config-array@0.13.0': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.4.1 + debug: 4.4.3 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -8978,12 +8930,12 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.8.3)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': + '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.8.3)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': dependencies: glob: 10.4.5 - magic-string: 0.30.17 + magic-string: 0.30.19 react-docgen-typescript: 2.4.0(typescript@5.8.3) - vite: 7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) + vite: 7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) optionalDependencies: typescript: 5.8.3 @@ -9032,11 +8984,11 @@ snapshots: '@mui/core-downloads-tracker@5.18.0': {} - '@mui/material@5.17.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/material@5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.26.10 '@mui/core-downloads-tracker': 5.18.0 - '@mui/system': 5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) + '@mui/system': 5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) '@mui/types': 7.2.24(@types/react@18.3.11) '@mui/utils': 5.17.1(@types/react@18.3.11)(react@18.3.1) '@popperjs/core': 2.11.8 @@ -9050,7 +9002,7 @@ snapshots: react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: '@emotion/react': 11.14.0(@types/react@18.3.11)(react@18.3.1) - '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) + '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) '@types/react': 18.3.11 '@mui/private-theming@5.17.1(@types/react@18.3.11)(react@18.3.1)': @@ -9062,7 +9014,7 @@ snapshots: optionalDependencies: '@types/react': 18.3.11 - '@mui/styled-engine@5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(react@18.3.1)': + '@mui/styled-engine@5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.26.10 '@emotion/cache': 11.14.0 @@ -9072,13 +9024,13 @@ snapshots: react: 18.3.1 optionalDependencies: '@emotion/react': 11.14.0(@types/react@18.3.11)(react@18.3.1) - '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) + '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) - '@mui/system@5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1)': + '@mui/system@5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1)': dependencies: '@babel/runtime': 7.26.10 '@mui/private-theming': 5.17.1(@types/react@18.3.11)(react@18.3.1) - '@mui/styled-engine': 5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(react@18.3.1) + '@mui/styled-engine': 5.18.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1))(react@18.3.1) '@mui/types': 7.2.24(@types/react@18.3.11) '@mui/utils': 5.17.1(@types/react@18.3.11)(react@18.3.1) clsx: 2.1.1 @@ -9087,7 +9039,7 @@ snapshots: react: 18.3.1 optionalDependencies: '@emotion/react': 11.14.0(@types/react@18.3.11)(react@18.3.1) - '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) + '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@18.3.11)(react@18.3.1))(@types/react@18.3.11)(react@18.3.1) '@types/react': 18.3.11 '@mui/types@7.2.24(@types/react@18.3.11)': @@ -9122,7 +9074,7 @@ snapshots: '@next/env@14.2.32': {} - '@next/eslint-plugin-next@14.2.31': + '@next/eslint-plugin-next@14.2.32': dependencies: glob: 10.3.10 @@ -9175,7 +9127,9 @@ snapshots: '@nolyfill/is-core-module@1.0.39': {} - '@oxc-project/types@0.92.0': {} + '@oxc-project/runtime@0.82.3': {} + + '@oxc-project/types@0.82.3': {} '@pkgjs/parseargs@0.11.0': optional: true @@ -9502,133 +9456,126 @@ snapshots: '@remirror/core-constants@3.0.0': {} - '@rolldown/binding-android-arm64@1.0.0-beta.40': + '@rolldown/binding-android-arm64@1.0.0-beta.34': optional: true - '@rolldown/binding-darwin-arm64@1.0.0-beta.40': + '@rolldown/binding-darwin-arm64@1.0.0-beta.34': optional: true - '@rolldown/binding-darwin-x64@1.0.0-beta.40': + '@rolldown/binding-darwin-x64@1.0.0-beta.34': optional: true - '@rolldown/binding-freebsd-x64@1.0.0-beta.40': + '@rolldown/binding-freebsd-x64@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.40': + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.40': + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.40': + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.40': + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-x64-musl@1.0.0-beta.40': + '@rolldown/binding-linux-x64-musl@1.0.0-beta.34': optional: true - '@rolldown/binding-openharmony-arm64@1.0.0-beta.40': + '@rolldown/binding-openharmony-arm64@1.0.0-beta.34': optional: true - '@rolldown/binding-wasm32-wasi@1.0.0-beta.40': + '@rolldown/binding-wasm32-wasi@1.0.0-beta.34': dependencies: '@napi-rs/wasm-runtime': 1.0.5 optional: true - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.40': + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.34': optional: true - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.40': + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.34': optional: true - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.40': + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.34': optional: true - '@rolldown/pluginutils@1.0.0-beta.40': {} + '@rolldown/pluginutils@1.0.0-beta.34': {} - '@rollup/pluginutils@5.2.0(rollup@4.52.0)': + '@rollup/pluginutils@5.2.0(rollup@4.50.0)': dependencies: '@types/estree': 1.0.8 estree-walker: 2.0.2 picomatch: 4.0.3 optionalDependencies: - rollup: 4.52.0 + rollup: 4.50.0 - '@rollup/rollup-android-arm-eabi@4.52.0': + '@rollup/rollup-android-arm-eabi@4.50.0': optional: true - '@rollup/rollup-android-arm64@4.52.0': + '@rollup/rollup-android-arm64@4.50.0': optional: true - '@rollup/rollup-darwin-arm64@4.52.0': + '@rollup/rollup-darwin-arm64@4.50.0': optional: true - '@rollup/rollup-darwin-x64@4.52.0': + '@rollup/rollup-darwin-x64@4.50.0': optional: true - '@rollup/rollup-freebsd-arm64@4.52.0': + '@rollup/rollup-freebsd-arm64@4.50.0': optional: true - '@rollup/rollup-freebsd-x64@4.52.0': + '@rollup/rollup-freebsd-x64@4.50.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.52.0': + '@rollup/rollup-linux-arm-gnueabihf@4.50.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.52.0': + '@rollup/rollup-linux-arm-musleabihf@4.50.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.52.0': + '@rollup/rollup-linux-arm64-gnu@4.50.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.52.0': + '@rollup/rollup-linux-arm64-musl@4.50.0': optional: true - '@rollup/rollup-linux-loong64-gnu@4.52.0': + '@rollup/rollup-linux-loongarch64-gnu@4.50.0': optional: true - '@rollup/rollup-linux-ppc64-gnu@4.52.0': + '@rollup/rollup-linux-ppc64-gnu@4.50.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.52.0': + '@rollup/rollup-linux-riscv64-gnu@4.50.0': optional: true - '@rollup/rollup-linux-riscv64-musl@4.52.0': + '@rollup/rollup-linux-riscv64-musl@4.50.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.52.0': + '@rollup/rollup-linux-s390x-gnu@4.50.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.52.0': + '@rollup/rollup-linux-x64-gnu@4.50.0': optional: true - '@rollup/rollup-linux-x64-musl@4.52.0': + '@rollup/rollup-linux-x64-musl@4.50.0': optional: true - '@rollup/rollup-openharmony-arm64@4.52.0': + '@rollup/rollup-openharmony-arm64@4.50.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.52.0': + '@rollup/rollup-win32-arm64-msvc@4.50.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.52.0': + '@rollup/rollup-win32-ia32-msvc@4.50.0': optional: true - '@rollup/rollup-win32-x64-gnu@4.52.0': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.52.0': + '@rollup/rollup-win32-x64-msvc@4.50.0': optional: true '@rtsao/scc@1.1.0': {} - '@rushstack/eslint-patch@1.12.0': {} - - '@sesamecare-oss/redlock@1.4.0(ioredis@5.6.1)': - dependencies: - ioredis: 5.6.1 + '@rushstack/eslint-patch@1.10.4': {} '@storybook/addon-actions@8.6.14(storybook@8.6.14(prettier@3.6.2))': dependencies: @@ -9653,12 +9600,12 @@ snapshots: storybook: 8.6.14(prettier@3.6.2) ts-dedent: 2.2.0 - '@storybook/addon-designs@10.0.2(@storybook/addon-docs@9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': + '@storybook/addon-designs@10.0.2(@storybook/addon-docs@9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': dependencies: '@figspec/react': 1.0.4(react@18.3.1) - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) optionalDependencies: - '@storybook/addon-docs': 9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) + '@storybook/addon-docs': 9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -9675,15 +9622,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@storybook/addon-docs@9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': + '@storybook/addon-docs@9.1.10(@types/react@18.3.11)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': dependencies: '@mdx-js/react': 3.1.0(@types/react@18.3.11)(react@18.3.1) - '@storybook/csf-plugin': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) + '@storybook/csf-plugin': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) '@storybook/icons': 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/react-dom-shim': 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) + '@storybook/react-dom-shim': 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -9742,10 +9689,10 @@ snapshots: storybook: 8.6.14(prettier@3.6.2) ts-dedent: 2.2.0 - '@storybook/addon-styling-webpack@1.0.1(storybook@8.6.14(prettier@3.6.2))(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0))': + '@storybook/addon-styling-webpack@1.0.1(storybook@8.6.14(prettier@3.6.2))(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0))': dependencies: '@storybook/node-logger': 8.6.14(storybook@8.6.14(prettier@3.6.2)) - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) transitivePeerDependencies: - storybook @@ -9758,10 +9705,10 @@ snapshots: memoizerific: 1.11.3 storybook: 8.6.14(prettier@3.6.2) - '@storybook/addon-webpack5-compiler-swc@1.0.6(@swc/helpers@0.5.17)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0))': + '@storybook/addon-webpack5-compiler-swc@1.0.6(@swc/helpers@0.5.17)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0))': dependencies: - '@swc/core': 1.13.3(@swc/helpers@0.5.17) - swc-loader: 0.2.6(@swc/core@1.13.3(@swc/helpers@0.5.17))(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + '@swc/core': 1.13.5(@swc/helpers@0.5.17) + swc-loader: 0.2.6(@swc/core@1.13.5(@swc/helpers@0.5.17))(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) transitivePeerDependencies: - '@swc/helpers' - webpack @@ -9775,14 +9722,14 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/builder-vite@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': + '@storybook/builder-vite@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': dependencies: - '@storybook/csf-plugin': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + '@storybook/csf-plugin': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) ts-dedent: 2.2.0 - vite: 7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) + vite: 7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) - '@storybook/builder-webpack5@8.6.14(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3)': + '@storybook/builder-webpack5@8.6.14(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3)': dependencies: '@storybook/core-webpack': 8.6.14(storybook@8.6.14(prettier@3.6.2)) '@types/semver': 7.7.0 @@ -9790,23 +9737,23 @@ snapshots: case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.4.3 constants-browserify: 1.0.0 - css-loader: 6.11.0(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + css-loader: 6.11.0(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) es-module-lexer: 1.7.0 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) - html-webpack-plugin: 5.6.4(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) - magic-string: 0.30.17 + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) + html-webpack-plugin: 5.6.4(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) + magic-string: 0.30.19 path-browserify: 1.0.1 process: 0.11.10 semver: 7.7.2 storybook: 8.6.14(prettier@3.6.2) - style-loader: 3.3.4(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) - terser-webpack-plugin: 5.3.14(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + style-loader: 3.3.4(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) + terser-webpack-plugin: 5.3.14(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) ts-dedent: 2.2.0 url: 0.11.4 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) - webpack-dev-middleware: 6.1.3(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack-dev-middleware: 6.1.3(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.6.2 optionalDependencies: @@ -9853,9 +9800,9 @@ snapshots: storybook: 8.6.14(prettier@3.6.2) unplugin: 1.16.1 - '@storybook/csf-plugin@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': + '@storybook/csf-plugin@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': dependencies: - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) unplugin: 1.16.1 '@storybook/global@5.0.0': {} @@ -9879,14 +9826,14 @@ snapshots: dependencies: storybook: 8.6.14(prettier@3.6.2) - '@storybook/preset-react-webpack@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3)': + '@storybook/preset-react-webpack@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3)': dependencies: '@storybook/core-webpack': 8.6.14(storybook@8.6.14(prettier@3.6.2)) '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) '@types/semver': 7.7.0 find-up: 5.0.0 - magic-string: 0.30.17 + magic-string: 0.30.19 react: 18.3.1 react-docgen: 7.1.1 react-dom: 18.3.1(react@18.3.1) @@ -9894,7 +9841,7 @@ snapshots: semver: 7.7.2 storybook: 8.6.14(prettier@3.6.2) tsconfig-paths: 4.2.0 - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) optionalDependencies: typescript: 5.8.3 transitivePeerDependencies: @@ -9909,9 +9856,9 @@ snapshots: dependencies: storybook: 8.6.14(prettier@3.6.2) - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0))': + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0))': dependencies: - debug: 4.4.1 + debug: 4.4.3 endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -9919,7 +9866,7 @@ snapshots: react-docgen-typescript: 2.4.0(typescript@5.8.3) tslib: 2.8.1 typescript: 5.8.3 - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) transitivePeerDependencies: - supports-color @@ -9929,36 +9876,36 @@ snapshots: react-dom: 18.3.1(react@18.3.1) storybook: 8.6.14(prettier@3.6.2) - '@storybook/react-dom-shim@9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': + '@storybook/react-dom-shim@9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))': dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) - '@storybook/react-vite@9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.52.0)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': + '@storybook/react-vite@9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.50.0)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.8.3)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) - '@rollup/pluginutils': 5.2.0(rollup@4.52.0) - '@storybook/builder-vite': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) - '@storybook/react': 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.8.3)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + '@rollup/pluginutils': 5.2.0(rollup@4.50.0) + '@storybook/builder-vite': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + '@storybook/react': 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3) find-up: 7.0.0 - magic-string: 0.30.17 + magic-string: 0.30.19 react: 18.3.1 - react-docgen: 8.0.0 + react-docgen: 8.0.1 react-dom: 18.3.1(react@18.3.1) resolve: 1.22.10 - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) tsconfig-paths: 4.2.0 - vite: 7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) + vite: 7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) transitivePeerDependencies: - rollup - supports-color - typescript - '@storybook/react-webpack5@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3)': + '@storybook/react-webpack5@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3)': dependencies: - '@storybook/builder-webpack5': 8.6.14(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) - '@storybook/preset-react-webpack': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) + '@storybook/builder-webpack5': 8.6.14(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) + '@storybook/preset-react-webpack': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.6.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@3.6.2))(typescript@5.8.3) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -9989,13 +9936,13 @@ snapshots: '@storybook/test': 8.6.14(storybook@8.6.14(prettier@3.6.2)) typescript: 5.8.3 - '@storybook/react@9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3)': + '@storybook/react@9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3)': dependencies: '@storybook/global': 5.0.0 - '@storybook/react-dom-shim': 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) + '@storybook/react-dom-shim': 9.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) optionalDependencies: typescript: 5.8.3 @@ -10014,51 +9961,51 @@ snapshots: dependencies: storybook: 8.6.14(prettier@3.6.2) - '@swc/core-darwin-arm64@1.13.3': + '@swc/core-darwin-arm64@1.13.5': optional: true - '@swc/core-darwin-x64@1.13.3': + '@swc/core-darwin-x64@1.13.5': optional: true - '@swc/core-linux-arm-gnueabihf@1.13.3': + '@swc/core-linux-arm-gnueabihf@1.13.5': optional: true - '@swc/core-linux-arm64-gnu@1.13.3': + '@swc/core-linux-arm64-gnu@1.13.5': optional: true - '@swc/core-linux-arm64-musl@1.13.3': + '@swc/core-linux-arm64-musl@1.13.5': optional: true - '@swc/core-linux-x64-gnu@1.13.3': + '@swc/core-linux-x64-gnu@1.13.5': optional: true - '@swc/core-linux-x64-musl@1.13.3': + '@swc/core-linux-x64-musl@1.13.5': optional: true - '@swc/core-win32-arm64-msvc@1.13.3': + '@swc/core-win32-arm64-msvc@1.13.5': optional: true - '@swc/core-win32-ia32-msvc@1.13.3': + '@swc/core-win32-ia32-msvc@1.13.5': optional: true - '@swc/core-win32-x64-msvc@1.13.3': + '@swc/core-win32-x64-msvc@1.13.5': optional: true - '@swc/core@1.13.3(@swc/helpers@0.5.17)': + '@swc/core@1.13.5(@swc/helpers@0.5.17)': dependencies: '@swc/counter': 0.1.3 '@swc/types': 0.1.24 optionalDependencies: - '@swc/core-darwin-arm64': 1.13.3 - '@swc/core-darwin-x64': 1.13.3 - '@swc/core-linux-arm-gnueabihf': 1.13.3 - '@swc/core-linux-arm64-gnu': 1.13.3 - '@swc/core-linux-arm64-musl': 1.13.3 - '@swc/core-linux-x64-gnu': 1.13.3 - '@swc/core-linux-x64-musl': 1.13.3 - '@swc/core-win32-arm64-msvc': 1.13.3 - '@swc/core-win32-ia32-msvc': 1.13.3 - '@swc/core-win32-x64-msvc': 1.13.3 + '@swc/core-darwin-arm64': 1.13.5 + '@swc/core-darwin-x64': 1.13.5 + '@swc/core-linux-arm-gnueabihf': 1.13.5 + '@swc/core-linux-arm64-gnu': 1.13.5 + '@swc/core-linux-arm64-musl': 1.13.5 + '@swc/core-linux-x64-gnu': 1.13.5 + '@swc/core-linux-x64-musl': 1.13.5 + '@swc/core-win32-arm64-msvc': 1.13.5 + '@swc/core-win32-ia32-msvc': 1.13.5 + '@swc/core-win32-x64-msvc': 1.13.5 '@swc/helpers': 0.5.17 '@swc/counter@0.1.3': {} @@ -10076,17 +10023,17 @@ snapshots: dependencies: '@swc/counter': 0.1.3 - '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)))': + '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)))': dependencies: - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) - '@tailwindcss/typography@0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)))': + '@tailwindcss/typography@0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)))': dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) '@tanstack/react-table@8.21.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -10125,14 +10072,13 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 - '@testing-library/jest-dom@6.6.3': + '@testing-library/jest-dom@6.7.0': dependencies: '@adobe/css-tools': 4.4.4 aria-query: 5.3.2 - chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - lodash: 4.17.21 + picocolors: 1.1.1 redent: 3.0.0 '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)': @@ -10405,29 +10351,29 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@types/babel__generator': 7.27.0 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.28.0 '@types/babel__generator@7.27.0': dependencies: - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@types/babel__traverse@7.28.0': dependencies: - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/chai@5.2.2': dependencies: @@ -10440,7 +10386,7 @@ snapshots: '@types/connect@3.4.38': dependencies: - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/cors@2.8.19': dependencies: @@ -10494,14 +10440,14 @@ snapshots: '@types/express-serve-static-core@4.19.6': dependencies: - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.5 '@types/express-serve-static-core@5.0.7': dependencies: - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.5 @@ -10575,6 +10521,10 @@ snapshots: '@types/node@18.16.1': {} + '@types/node@20.19.15': + dependencies: + undici-types: 6.21.0 + '@types/node@20.19.17': dependencies: undici-types: 6.21.0 @@ -10601,7 +10551,7 @@ snapshots: '@types/pino@6.3.12': dependencies: - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/pino-pretty': 5.0.0 '@types/pino-std-serializers': 4.0.0 sonic-boom: 2.8.0 @@ -10641,12 +10591,12 @@ snapshots: '@types/send@0.17.5': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/serve-static@1.15.8': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/send': 0.17.5 '@types/triple-beam@1.3.5': {} @@ -10659,8 +10609,6 @@ snapshots: '@types/use-sync-external-store@0.0.6': {} - '@types/uuid@8.3.4': {} - '@types/uuid@9.0.8': {} '@types/whatwg-mimetype@3.0.2': {} @@ -10669,14 +10617,14 @@ snapshots: dependencies: '@types/node': 20.19.17 - '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.40.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)': dependencies: '@eslint-community/regexpp': 4.12.1 '@typescript-eslint/parser': 8.40.0(eslint@8.57.1)(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.38.0 - '@typescript-eslint/type-utils': 8.38.0(eslint@8.57.1)(typescript@5.8.3) - '@typescript-eslint/utils': 8.38.0(eslint@8.57.1)(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.38.0 + '@typescript-eslint/scope-manager': 8.40.0 + '@typescript-eslint/type-utils': 8.40.0(eslint@8.57.1)(typescript@5.8.3) + '@typescript-eslint/utils': 8.40.0(eslint@8.57.1)(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.40.0 eslint: 8.57.1 graphemer: 1.4.0 ignore: 7.0.5 @@ -10692,87 +10640,51 @@ snapshots: '@typescript-eslint/types': 8.40.0 '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.8.3) '@typescript-eslint/visitor-keys': 8.40.0 - debug: 4.4.1 + debug: 4.4.3 eslint: 8.57.1 typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.38.0(typescript@5.8.3)': - dependencies: - '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.8.3) - '@typescript-eslint/types': 8.40.0 - debug: 4.4.1 - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/project-service@8.40.0(typescript@5.8.3)': dependencies: '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.8.3) '@typescript-eslint/types': 8.40.0 - debug: 4.4.1 + debug: 4.4.3 typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.38.0': - dependencies: - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/visitor-keys': 8.38.0 - '@typescript-eslint/scope-manager@8.40.0': dependencies: '@typescript-eslint/types': 8.40.0 '@typescript-eslint/visitor-keys': 8.40.0 - '@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - '@typescript-eslint/tsconfig-utils@8.40.0(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.38.0(eslint@8.57.1)(typescript@5.8.3)': + '@typescript-eslint/type-utils@8.40.0(eslint@8.57.1)(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.38.0(eslint@8.57.1)(typescript@5.8.3) - debug: 4.4.1 + '@typescript-eslint/types': 8.40.0 + '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.40.0(eslint@8.57.1)(typescript@5.8.3) + debug: 4.4.3 eslint: 8.57.1 ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.38.0': {} - '@typescript-eslint/types@8.40.0': {} - '@typescript-eslint/typescript-estree@8.38.0(typescript@5.8.3)': - dependencies: - '@typescript-eslint/project-service': 8.38.0(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3) - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/visitor-keys': 8.38.0 - debug: 4.4.1 - fast-glob: 3.3.3 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.7.2 - ts-api-utils: 2.1.0(typescript@5.8.3) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@8.40.0(typescript@5.8.3)': dependencies: '@typescript-eslint/project-service': 8.40.0(typescript@5.8.3) '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.8.3) '@typescript-eslint/types': 8.40.0 '@typescript-eslint/visitor-keys': 8.40.0 - debug: 4.4.1 + debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 @@ -10782,28 +10694,23 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.38.0(eslint@8.57.1)(typescript@5.8.3)': + '@typescript-eslint/utils@8.40.0(eslint@8.57.1)(typescript@5.8.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1) - '@typescript-eslint/scope-manager': 8.38.0 - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1) + '@typescript-eslint/scope-manager': 8.40.0 + '@typescript-eslint/types': 8.40.0 + '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.8.3) eslint: 8.57.1 typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.38.0': - dependencies: - '@typescript-eslint/types': 8.38.0 - eslint-visitor-keys: 4.2.1 - '@typescript-eslint/visitor-keys@8.40.0': dependencies: '@typescript-eslint/types': 8.40.0 eslint-visitor-keys: 4.2.1 - '@ungap/structured-clone@1.3.0': {} + '@ungap/structured-clone@1.2.1': {} '@unrs/resolver-binding-android-arm-eabi@1.11.1': optional: true @@ -10879,13 +10786,13 @@ snapshots: chai: 5.3.1 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 - magic-string: 0.30.17 + magic-string: 0.30.19 optionalDependencies: - vite: 7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) + vite: 7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1) '@vitest/pretty-format@2.0.5': dependencies: @@ -11178,7 +11085,7 @@ snapshots: ast-kit@2.1.2: dependencies: - '@babel/parser': 7.28.3 + '@babel/parser': 7.28.4 pathe: 2.0.3 ast-types-flow@0.0.8: {} @@ -11201,8 +11108,8 @@ snapshots: autoprefixer@10.4.14(postcss@8.5.6): dependencies: - browserslist: 4.25.2 - caniuse-lite: 1.0.30001735 + browserslist: 4.25.4 + caniuse-lite: 1.0.30001741 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -11211,8 +11118,8 @@ snapshots: autoprefixer@10.4.20(postcss@8.5.6): dependencies: - browserslist: 4.25.2 - caniuse-lite: 1.0.30001735 + browserslist: 4.25.4 + caniuse-lite: 1.0.30001741 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -11267,7 +11174,9 @@ snapshots: bind-event-listener@3.0.0: {} - birpc@2.5.0: {} + birpc@2.6.1: {} + + bluebird@3.7.2: {} body-parser@1.20.3: dependencies: @@ -11306,12 +11215,12 @@ snapshots: dependencies: pako: 1.0.11 - browserslist@4.25.2: + browserslist@4.25.4: dependencies: - caniuse-lite: 1.0.30001735 - electron-to-chromium: 1.5.204 + caniuse-lite: 1.0.30001741 + electron-to-chromium: 1.5.218 node-releases: 2.0.19 - update-browserslist-db: 1.1.3(browserslist@4.25.2) + update-browserslist-db: 1.1.3(browserslist@4.25.4) buffer-from@1.1.2: {} @@ -11354,7 +11263,7 @@ snapshots: camelcase-css@2.0.1: {} - caniuse-lite@1.0.30001735: {} + caniuse-lite@1.0.30001741: {} capital-case@1.0.4: dependencies: @@ -11592,7 +11501,7 @@ snapshots: crypto-js@4.2.0: {} - css-loader@6.11.0(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)): + css-loader@6.11.0(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)): dependencies: icss-utils: 5.1.0(postcss@8.5.6) postcss: 8.5.6 @@ -11603,7 +11512,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.7.2 optionalDependencies: - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) css-select@4.3.0: dependencies: @@ -11716,7 +11625,7 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.4.1: + debug@4.4.3: dependencies: ms: 2.1.3 @@ -11887,13 +11796,13 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.204: {} + electron-to-chromium@1.5.218: {} element-resize-detector@1.2.4: dependencies: batch-processor: 1.0.0 - emoji-picker-react@4.12.2(react@18.3.1): + emoji-picker-react@4.13.2(react@18.3.1): dependencies: flairup: 1.0.0 react: 18.3.1 @@ -11931,7 +11840,7 @@ snapshots: enhanced-resolve@5.18.3: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.2 + tapable: 2.2.3 entities@2.2.0: {} @@ -12048,7 +11957,7 @@ snapshots: esbuild-register@3.6.0(esbuild@0.25.0): dependencies: - debug: 4.4.1 + debug: 4.4.3 esbuild: 0.25.0 transitivePeerDependencies: - supports-color @@ -12089,11 +11998,11 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-config-next@14.2.31(eslint@8.57.1)(typescript@5.8.3): + eslint-config-next@14.2.32(eslint@8.57.1)(typescript@5.8.3): dependencies: - '@next/eslint-plugin-next': 14.2.31 - '@rushstack/eslint-patch': 1.12.0 - '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.40.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3) + '@next/eslint-plugin-next': 14.2.32 + '@rushstack/eslint-patch': 1.10.4 + '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3) '@typescript-eslint/parser': 8.40.0(eslint@8.57.1)(typescript@5.8.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 @@ -12129,7 +12038,7 @@ snapshots: eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@8.57.1): dependencies: '@nolyfill/is-core-module': 1.0.39 - debug: 4.4.1 + debug: 4.4.3 eslint: 8.57.1 get-tsconfig: 4.10.1 is-bun-module: 2.0.0 @@ -12230,11 +12139,11 @@ snapshots: string.prototype.matchall: 4.0.12 string.prototype.repeat: 1.0.0 - eslint-plugin-storybook@9.1.10(eslint@8.57.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3): + eslint-plugin-storybook@9.1.10(eslint@8.57.1)(storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)))(typescript@5.8.3): dependencies: - '@typescript-eslint/utils': 8.38.0(eslint@8.57.1)(typescript@5.8.3) + '@typescript-eslint/utils': 8.40.0(eslint@8.57.1)(typescript@5.8.3) eslint: 8.57.1 - storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + storybook: 9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) transitivePeerDependencies: - supports-color - typescript @@ -12260,18 +12169,18 @@ snapshots: eslint@8.57.1: dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1) + '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1) '@eslint-community/regexpp': 4.12.1 '@eslint/eslintrc': 2.1.4 '@eslint/js': 8.57.1 '@humanwhocodes/config-array': 0.13.0 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.3.0 + '@ungap/structured-clone': 1.2.1 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.1 + debug: 4.4.3 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -12538,7 +12447,7 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 - fork-ts-checker-webpack-plugin@8.0.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)): + fork-ts-checker-webpack-plugin@8.0.0(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)): dependencies: '@babel/code-frame': 7.27.1 chalk: 4.1.2 @@ -12551,9 +12460,9 @@ snapshots: node-abort-controller: 3.1.1 schema-utils: 3.3.0 semver: 7.7.2 - tapable: 2.2.2 + tapable: 2.2.3 typescript: 5.8.3 - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) form-data@4.0.4: dependencies: @@ -12702,7 +12611,7 @@ snapshots: happy-dom@18.0.1: dependencies: - '@types/node': 20.19.17 + '@types/node': 20.19.15 '@types/whatwg-mimetype': 3.0.2 whatwg-mimetype: 3.0.0 @@ -12775,15 +12684,15 @@ snapshots: relateurl: 0.2.7 terser: 5.43.1 - html-webpack-plugin@5.6.4(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)): + html-webpack-plugin@5.6.4(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 - tapable: 2.2.2 + tapable: 2.2.3 optionalDependencies: - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) htmlparser2@6.1.0: dependencies: @@ -12803,14 +12712,14 @@ snapshots: http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.4 - debug: 4.4.1 + debug: 4.4.3 transitivePeerDependencies: - supports-color https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.4 - debug: 4.4.1 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -12877,7 +12786,21 @@ snapshots: dependencies: '@ioredis/commands': 1.3.0 cluster-key-slot: 1.1.2 - debug: 4.4.1 + debug: 4.4.3 + denque: 2.1.0 + lodash.defaults: 4.2.0 + lodash.isarguments: 3.1.0 + redis-errors: 1.2.0 + redis-parser: 3.0.0 + standard-as-callback: 2.1.0 + transitivePeerDependencies: + - supports-color + + ioredis@5.7.0: + dependencies: + '@ioredis/commands': 1.3.0 + cluster-key-slot: 1.1.2 + debug: 4.4.3 denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -13041,7 +12964,7 @@ snapshots: isexe@3.1.1: {} - isomorphic-dompurify@2.25.0: + isomorphic-dompurify@2.26.0: dependencies: dompurify: 3.2.6 jsdom: 26.1.0 @@ -13080,7 +13003,7 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 20.19.17 + '@types/node': 20.19.15 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -13287,7 +13210,7 @@ snapshots: lz-string@1.5.0: {} - magic-string@0.30.17: + magic-string@0.30.19: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -13496,7 +13419,7 @@ snapshots: micromark@3.2.0: dependencies: '@types/debug': 4.1.12 - debug: 4.4.1 + debug: 4.4.3 decode-named-character-reference: 1.2.0 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -13613,7 +13536,7 @@ snapshots: '@next/env': 14.2.32 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001735 + caniuse-lite: 1.0.30001741 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 @@ -13885,7 +13808,7 @@ snapshots: pino-http@10.5.0: dependencies: get-caller-file: 2.0.5 - pino: 9.7.0 + pino: 9.9.0 pino-std-serializers: 7.0.0 process-warning: 5.0.0 @@ -13908,7 +13831,7 @@ snapshots: pino-std-serializers@7.0.0: {} - pino@9.7.0: + pino@9.9.0: dependencies: atomic-sleep: 1.0.0 fast-redact: 3.5.0 @@ -13966,13 +13889,13 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.5.6 - postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)): + postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)): dependencies: lilconfig: 3.1.3 yaml: 2.8.1 optionalDependencies: postcss: 8.5.6 - ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3) + ts-node: 10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3) postcss-load-config@5.1.0(jiti@2.5.1)(postcss@8.5.6): dependencies: @@ -14043,7 +13966,7 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - posthog-js@1.255.1: + posthog-js@1.260.1: dependencies: core-js: 3.45.0 fflate: 0.4.8 @@ -14277,7 +14200,7 @@ snapshots: dependencies: '@babel/core': 7.28.3 '@babel/traverse': 7.28.3 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.28.0 '@types/doctrine': 0.0.9 @@ -14288,11 +14211,11 @@ snapshots: transitivePeerDependencies: - supports-color - react-docgen@8.0.0: + react-docgen@8.0.1: dependencies: '@babel/core': 7.28.3 '@babel/traverse': 7.28.3 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.28.0 '@types/doctrine': 0.0.9 @@ -14501,6 +14424,10 @@ snapshots: dependencies: redis-errors: 1.2.0 + redlock@4.2.0: + dependencies: + bluebird: 3.7.2 + reflect-metadata@0.2.2: {} reflect.getprototypeof@1.0.10: @@ -14580,70 +14507,71 @@ snapshots: dependencies: glob: 7.2.3 - rolldown-plugin-dts@0.15.10(rolldown@1.0.0-beta.40)(typescript@5.8.3): + rolldown-plugin-dts@0.16.11(rolldown@1.0.0-beta.34)(typescript@5.8.3): dependencies: '@babel/generator': 7.28.3 - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 ast-kit: 2.1.2 - birpc: 2.5.0 - debug: 4.4.1 + birpc: 2.6.1 + debug: 4.4.3 dts-resolver: 2.1.2 get-tsconfig: 4.10.1 - rolldown: 1.0.0-beta.40 + magic-string: 0.30.19 + rolldown: 1.0.0-beta.34 optionalDependencies: typescript: 5.8.3 transitivePeerDependencies: - oxc-resolver - supports-color - rolldown@1.0.0-beta.40: + rolldown@1.0.0-beta.34: dependencies: - '@oxc-project/types': 0.92.0 - '@rolldown/pluginutils': 1.0.0-beta.40 + '@oxc-project/runtime': 0.82.3 + '@oxc-project/types': 0.82.3 + '@rolldown/pluginutils': 1.0.0-beta.34 ansis: 4.1.0 optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.0-beta.40 - '@rolldown/binding-darwin-arm64': 1.0.0-beta.40 - '@rolldown/binding-darwin-x64': 1.0.0-beta.40 - '@rolldown/binding-freebsd-x64': 1.0.0-beta.40 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.40 - '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.40 - '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.40 - '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.40 - '@rolldown/binding-linux-x64-musl': 1.0.0-beta.40 - '@rolldown/binding-openharmony-arm64': 1.0.0-beta.40 - '@rolldown/binding-wasm32-wasi': 1.0.0-beta.40 - '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.40 - '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.40 - '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.40 + '@rolldown/binding-android-arm64': 1.0.0-beta.34 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.34 + '@rolldown/binding-darwin-x64': 1.0.0-beta.34 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.34 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.34 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.34 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.34 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.34 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.34 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.34 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.34 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.34 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.34 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.34 - rollup@4.52.0: + rollup@4.50.0: dependencies: '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.52.0 - '@rollup/rollup-android-arm64': 4.52.0 - '@rollup/rollup-darwin-arm64': 4.52.0 - '@rollup/rollup-darwin-x64': 4.52.0 - '@rollup/rollup-freebsd-arm64': 4.52.0 - '@rollup/rollup-freebsd-x64': 4.52.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.52.0 - '@rollup/rollup-linux-arm-musleabihf': 4.52.0 - '@rollup/rollup-linux-arm64-gnu': 4.52.0 - '@rollup/rollup-linux-arm64-musl': 4.52.0 - '@rollup/rollup-linux-loong64-gnu': 4.52.0 - '@rollup/rollup-linux-ppc64-gnu': 4.52.0 - '@rollup/rollup-linux-riscv64-gnu': 4.52.0 - '@rollup/rollup-linux-riscv64-musl': 4.52.0 - '@rollup/rollup-linux-s390x-gnu': 4.52.0 - '@rollup/rollup-linux-x64-gnu': 4.52.0 - '@rollup/rollup-linux-x64-musl': 4.52.0 - '@rollup/rollup-openharmony-arm64': 4.52.0 - '@rollup/rollup-win32-arm64-msvc': 4.52.0 - '@rollup/rollup-win32-ia32-msvc': 4.52.0 - '@rollup/rollup-win32-x64-gnu': 4.52.0 - '@rollup/rollup-win32-x64-msvc': 4.52.0 + '@rollup/rollup-android-arm-eabi': 4.50.0 + '@rollup/rollup-android-arm64': 4.50.0 + '@rollup/rollup-darwin-arm64': 4.50.0 + '@rollup/rollup-darwin-x64': 4.50.0 + '@rollup/rollup-freebsd-arm64': 4.50.0 + '@rollup/rollup-freebsd-x64': 4.50.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.50.0 + '@rollup/rollup-linux-arm-musleabihf': 4.50.0 + '@rollup/rollup-linux-arm64-gnu': 4.50.0 + '@rollup/rollup-linux-arm64-musl': 4.50.0 + '@rollup/rollup-linux-loongarch64-gnu': 4.50.0 + '@rollup/rollup-linux-ppc64-gnu': 4.50.0 + '@rollup/rollup-linux-riscv64-gnu': 4.50.0 + '@rollup/rollup-linux-riscv64-musl': 4.50.0 + '@rollup/rollup-linux-s390x-gnu': 4.50.0 + '@rollup/rollup-linux-x64-gnu': 4.50.0 + '@rollup/rollup-linux-x64-musl': 4.50.0 + '@rollup/rollup-openharmony-arm64': 4.50.0 + '@rollup/rollup-win32-arm64-msvc': 4.50.0 + '@rollup/rollup-win32-ia32-msvc': 4.50.0 + '@rollup/rollup-win32-x64-msvc': 4.50.0 fsevents: 2.3.3 rope-sequence@1.3.4: {} @@ -14912,13 +14840,13 @@ snapshots: - supports-color - utf-8-validate - storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)): + storybook@9.1.10(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)): dependencies: '@storybook/global': 5.0.0 - '@testing-library/jest-dom': 6.6.3 + '@testing-library/jest-dom': 6.7.0 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0) '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1)) '@vitest/spy': 3.2.4 better-opn: 3.0.2 esbuild: 0.25.0 @@ -15026,9 +14954,9 @@ snapshots: strip-json-comments@3.1.1: {} - style-loader@3.3.4(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)): + style-loader@3.3.4(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)): dependencies: - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) style-to-object@0.4.4: dependencies: @@ -15067,11 +14995,11 @@ snapshots: svg-arc-to-cubic-bezier@3.2.0: {} - swc-loader@0.2.6(@swc/core@1.13.3(@swc/helpers@0.5.17))(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)): + swc-loader@0.2.6(@swc/core@1.13.5(@swc/helpers@0.5.17))(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)): dependencies: - '@swc/core': 1.13.3(@swc/helpers@0.5.17) + '@swc/core': 1.13.5(@swc/helpers@0.5.17) '@swc/counter': 0.1.3 - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) swr@2.2.4(react@18.3.1): dependencies: @@ -15087,11 +15015,11 @@ snapshots: tailwind-merge@3.3.1: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3))): dependencies: - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) - tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)): + tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -15110,7 +15038,7 @@ snapshots: postcss: 8.5.6 postcss-import: 15.1.0(postcss@8.5.6) postcss-js: 4.0.1(postcss@8.5.6) - postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) + postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3)) postcss-nested: 6.2.0(postcss@8.5.6) postcss-selector-parser: 6.1.2 resolve: 1.22.10 @@ -15118,18 +15046,18 @@ snapshots: transitivePeerDependencies: - ts-node - tapable@2.2.2: {} + tapable@2.2.3: {} - terser-webpack-plugin@5.3.14(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)): + terser-webpack-plugin@5.3.14(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)): dependencies: '@jridgewell/trace-mapping': 0.3.30 jest-worker: 27.5.1 schema-utils: 4.3.2 serialize-javascript: 6.0.2 terser: 5.43.1 - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) optionalDependencies: - '@swc/core': 1.13.3(@swc/helpers@0.5.17) + '@swc/core': 1.13.5(@swc/helpers@0.5.17) esbuild: 0.25.0 terser@5.43.1: @@ -15190,8 +15118,6 @@ snapshots: markdown-it-task-lists: 2.1.1 prosemirror-markdown: 1.13.2 - tlds@1.259.0: {} - tldts-core@6.1.86: {} tldts@6.1.86: @@ -15230,7 +15156,7 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3): + ts-node@10.9.2(@swc/core@1.13.5(@swc/helpers@0.5.17))(@types/node@22.17.2)(typescript@5.8.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -15248,7 +15174,7 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - '@swc/core': 1.13.3(@swc/helpers@0.5.17) + '@swc/core': 1.13.5(@swc/helpers@0.5.17) optional: true tsconfig-paths@3.15.0: @@ -15264,17 +15190,17 @@ snapshots: minimist: 1.2.8 strip-bom: 3.0.0 - tsdown@0.14.2(typescript@5.8.3): + tsdown@0.15.5(typescript@5.8.3): dependencies: ansis: 4.1.0 cac: 6.7.14 chokidar: 3.6.0 - debug: 4.4.1 + debug: 4.4.3 diff: 8.0.2 empathic: 2.0.0 hookable: 5.5.3 - rolldown: 1.0.0-beta.40 - rolldown-plugin-dts: 0.15.10(rolldown@1.0.0-beta.40)(typescript@5.8.3) + rolldown: 1.0.0-beta.34 + rolldown-plugin-dts: 0.16.11(rolldown@1.0.0-beta.34)(typescript@5.8.3) semver: 7.7.2 tinyexec: 1.0.1 tinyglobby: 0.2.15 @@ -15283,6 +15209,7 @@ snapshots: optionalDependencies: typescript: 5.8.3 transitivePeerDependencies: + - '@ts-macro/tsc' - '@typescript/native-preview' - oxc-resolver - supports-color @@ -15467,9 +15394,9 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1 '@unrs/resolver-binding-win32-x64-msvc': 1.11.1 - update-browserslist-db@1.1.3(browserslist@4.25.2): + update-browserslist-db@1.1.3(browserslist@4.25.4): dependencies: - browserslist: 4.25.2 + browserslist: 4.25.4 escalade: 3.2.0 picocolors: 1.1.1 @@ -15528,10 +15455,10 @@ snapshots: utils-merge@1.0.1: {} - uuid@10.0.0: {} - uuid@11.1.0: {} + uuid@13.0.0: {} + uuid@9.0.1: {} uvu@0.5.6: @@ -15581,13 +15508,13 @@ snapshots: string_decoder: 1.3.0 util-deprecate: 1.0.2 - vite@7.0.0(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1): + vite@7.0.7(@types/node@22.17.2)(jiti@2.5.1)(terser@5.43.1)(yaml@2.8.1): dependencies: esbuild: 0.25.0 fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.6 - rollup: 4.52.0 + rollup: 4.50.0 tinyglobby: 0.2.15 optionalDependencies: '@types/node': 22.17.2 @@ -15617,7 +15544,7 @@ snapshots: webidl-conversions@7.0.0: {} - webpack-dev-middleware@6.1.3(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)): + webpack-dev-middleware@6.1.3(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)): dependencies: colorette: 2.0.20 memfs: 3.5.3 @@ -15625,7 +15552,7 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.2 optionalDependencies: - webpack: 5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0) + webpack: 5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0) webpack-hot-middleware@2.26.1: dependencies: @@ -15637,7 +15564,7 @@ snapshots: webpack-virtual-modules@0.6.2: {} - webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0): + webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 @@ -15647,7 +15574,7 @@ snapshots: '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 acorn-import-phases: 1.0.4(acorn@8.15.0) - browserslist: 4.25.2 + browserslist: 4.25.4 chrome-trace-event: 1.0.4 enhanced-resolve: 5.18.3 es-module-lexer: 1.7.0 @@ -15660,8 +15587,8 @@ snapshots: mime-types: 2.1.35 neo-async: 2.6.2 schema-utils: 4.3.2 - tapable: 2.2.2 - terser-webpack-plugin: 5.3.14(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.13.3(@swc/helpers@0.5.17))(esbuild@0.25.0)) + tapable: 2.2.3 + terser-webpack-plugin: 5.3.14(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.13.5(@swc/helpers@0.5.17))(esbuild@0.25.0)) watchpack: 2.4.4 webpack-sources: 3.3.3 transitivePeerDependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 9ac9e7c3a6..2add3c6a74 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -5,6 +5,9 @@ packages: - "!apps/proxy" catalog: + "@atlaskit/pragmatic-drag-and-drop": 1.7.4 + "@atlaskit/pragmatic-drag-and-drop-auto-scroll": 1.4.0 + "@atlaskit/pragmatic-drag-and-drop-hitbox": 1.1.0 axios: 1.12.0 mobx: 6.12.0 mobx-react: 9.1.1 @@ -19,11 +22,10 @@ catalog: react-dom: 18.3.1 "@types/react": 18.3.11 "@types/react-dom": 18.3.1 - "@types/uuid": 9.0.8 typescript: 5.8.3 - tsdown: 0.14.2 + tsdown: 0.15.5 vite: 7.0.7 - uuid: 10.0.0 + uuid: 13.0.0 "@tiptap/core": ^3.5.3 "@tiptap/html": ^3.5.3