Compare commits

...

291 Commits

Author SHA1 Message Date
Corentin Thomasset
40b0557553 chore(release): update versions (#465)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-09 15:06:26 +02:00
Corentin Thomasset
b5a0317d24 refactor(documents): made the document creation usecase factory synchronous (#485) 2025-09-09 09:42:33 +00:00
Corentin Thomasset
9730a06468 refactor(documents): narrowed down the document storage config parameter (#484) 2025-09-09 09:32:49 +00:00
Corentin Thomasset
ec0a437d86 fix(ingestion-folders): ensure doneFolders and errorFolders are string arrays for proper exclusion pattern (#483) 2025-09-08 23:36:04 +02:00
Corentin Thomasset
1606310745 refactor(intake-emails): update email validation to use RFC 322 compliant email for intake email origins (#481) 2025-09-04 11:53:51 +02:00
Corentin Thomasset
0a03f42231 feat(documents): implement document encryption (#480) 2025-09-04 10:15:30 +02:00
Corentin Thomasset
a62d376772 fix(tags): retreive tags affected even when only affected to deleted documents (#477)
* fix(tags): retreive tags affected even when only affected to deleted documents

* Update apps/papra-server/src/modules/tags/tags.repository.test.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update .changeset/lazy-tables-cover.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-08-21 13:50:48 +02:00
Corentin Thomasset
ea9d90d6cf refactor(ingestion-folders): use file streaming instead of loading in ram (#475) 2025-08-20 23:01:56 +02:00
Corentin Thomasset
27a6b0b53d refactor(documents): made the creation of storage driver sync (#474) 2025-08-20 21:44:53 +02:00
Corentin Thomasset
94c4d76b86 refactor(driver): no longer use file instances in memory driver (#473) 2025-08-20 20:34:06 +02:00
Corentin Thomasset
b08241f20f refactor(server): use streaming for handling file upload (#472) 2025-08-20 20:15:57 +02:00
Corentin Thomasset
e77a42fbf1 refactor(documents): lazy load PdfViewer component for smaller main chunk (#471) 2025-08-12 22:52:00 +00:00
Corentin Thomasset
d488efe2cc refactor(i18n): simplified translation management and performance (#470) 2025-08-12 02:22:20 +02:00
Corentin Thomasset
14c3587de0 refactor(documents): improved UX of the document content update (#468) 2025-08-09 23:33:42 +02:00
Corentin Thomasset
7400a3a6ec chore(dependencies): removed unbuild (#467) 2025-08-09 20:05:48 +00:00
Corentin Thomasset
14bc2b8f8d chore(dependencies): replace unbuild with tsdown (#464) 2025-08-09 17:03:14 +02:00
Corentin Thomasset
e48745331f chore(ci): mutualized CI workflows (#463) 2025-08-09 16:43:43 +02:00
Corentin Thomasset
38dcc765f9 chore(release): update versions (#462)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-09 11:39:03 +02:00
Corentin Thomasset
c085b9d676 fix(documents): apply tagging rules after the content is extracted (#461) 2025-08-09 11:36:33 +02:00
Corentin Thomasset
a64a93544d chore(release): update versions (#460)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-09 02:11:20 +02:00
Corentin Thomasset
f20559e95d chore(migrations): update migration command for production environment (#459) 2025-08-09 00:07:40 +00:00
Corentin Thomasset
7d755d0981 chore(docker): add build dependencies for sharp/node-gyp in Dockerfile (#457) 2025-08-09 02:01:44 +02:00
Corentin Thomasset
5382019721 chore(release): update versions (#420)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-08 21:16:08 +02:00
Corentin Thomasset
b33fde35d3 feat(auth): improved feedback for invalid origin url (#455) 2025-08-08 18:10:54 +02:00
Corentin Thomasset
fd6f83f538 refactor(migrations): purged legacy migrations (#453) 2025-08-08 02:31:13 +02:00
Corentin Thomasset
7f7e5bffcb refactor(database): completely rewrote the db migration tooling (#452) 2025-08-08 02:18:22 +02:00
Corentin Thomasset
5868800bce fix(tags): fixed the impossibility to delete a tag that have been affected to a document (#448)
* fix(tags): fixed the impossibility to delete a tag that have been affected to a document

- Added user feedback for errors encountered during tag deletion in the client.
- Updated localization files to include new error messages for internal processing issues across multiple languages.
- Modified the document activity log migration to set foreign keys to null on delete for user and tag references.

* Update .changeset/green-teeth-fall.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update .changeset/cuddly-shoes-watch.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-08-02 00:41:43 +02:00
Corentin Thomasset
b5ccc135ba refactor(documents): document content extraction is now async (#447)
* refactor(documents): implement asynchronous document content extraction

- Updated dependencies for `@cadence-mq/core` and `@cadence-mq/driver-memory` to versions 0.2.1 and 0.2.0 respectively.
- Introduced a new task for extracting document file content asynchronously.
- Refactored document creation use case to schedule the extraction task.
- Added utility functions for stream conversion and text extraction from files.
- Updated relevant tests to accommodate the new asynchronous behavior and task services integration.

* Update .changeset/cyan-pots-begin.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-08-01 21:44:29 +00:00
Manuel Zavatta
5e46bb9e6a feat(i18n): added Italian translation
* Create it.yml

cloned from en.yml

* Update it.yml

italian translation

* Update i18n.constants.ts

* fix(i18n): lint and auto order

* chore(versioning): added changeset

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-07-31 21:15:43 +00:00
Corentin Thomasset
41a113334a refactor(tasks): integrated cadence task services (#436) 2025-07-28 18:30:11 +00:00
Corentin Thomasset
6723baf98a feat(webhooks): add document update and tag events (#432) 2025-07-25 16:46:05 +02:00
Corentin Thomasset
bbe5fe74e2 test(lecture): added fixture test timeout (#431) 2025-07-25 12:56:46 +00:00
Corentin Thomasset
a8cff8cedc refactor(webhooks): updated webhooks signatures and payload to match standard-webhook spec (#430) 2025-07-25 11:29:26 +02:00
Corentin Thomasset
67b3b14cdf feat(lecture): added ocr support for scanned pdf (#429) 2025-07-24 22:21:10 +02:00
Osaf Ali Sayed
ffdae8db56 feat(intake-emails): redesigned intake email list (#412)
* feat(intake-emails): redesigned intake email list

* fix(intake-emails): fix linting

* fix(intake-emails): set drop down menu trigger size same as icon

* chore(version): added changeset

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-07-14 13:28:48 +00:00
Edward205
7768840aa4 refactor(i18n): improved Romanian translation (#419)
* added diacritics and improved wording

* chore(version): added changeset

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-07-14 11:36:10 +00:00
Corentin Thomasset
dd3862e50c chore(release): update versions (#418)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-13 22:45:48 +02:00
Corentin Thomasset
a82ff3a755 chore(docker): add lecture package.json to Dockerfiles (#417) 2025-07-13 20:42:55 +00:00
Corentin Thomasset
d5b00307da chore(dependencies): put unbuild in pnpm catalog (#416) 2025-07-13 20:19:12 +00:00
Corentin Thomasset
5ce21981a9 chore(release): update versions (#370)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-13 21:53:55 +02:00
Corentin Thomasset
3401cfbfdc feat(config): introduce appBaseUrl for overriding client and server base URLs (#405)
- Added appBaseUrl configuration to allow users to set a base URL that overrides both client and server base URLs.
- Updated documentation to reflect the new configuration variable and its usage.
- Refactored relevant code to utilize appBaseUrl where applicable, ensuring consistent behavior across the application.
- Enhanced tests to verify the correct application of appBaseUrl in various scenarios.
2025-07-13 21:46:07 +02:00
Adrian Ortiz
26015666de feat(i18n): add Spanish language support (#411)
* feat(i18n): add Spanish language support to the app

- Add es.yml localization file with full Spanish translations
- Register 'es' language in the i18n locales constant

* Create shiny-dancers-count.md

* style(es.yml): fix formatting and spacing in es.yml

- Remove unnecessary quotes in 'organizations.create-first.user-name'
- Fix extra space in the '# API keys' comment

* Update .changeset/shiny-dancers-count.md

---------

Co-authored-by: Adrian Ortiz <desarrollador3@en-trega.com>
Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-07-09 21:41:04 +00:00
Corentin Thomasset
09e3bc5e15 feat(i18n): finalize Romanian translationsetup (#408)
* feat: Romanian translation

* chore(i18n): finalized Romanian translation

---------

Co-authored-by: Razvan M. <76774976+iRazvan2745@users.noreply.github.com>
2025-07-09 00:32:04 +02:00
Piotr Icikowski
1711ef866d chore(i18n): added Polish translations (#403)
* feat(i18n): add Polish translation

* chore(version): added changeset

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-07-08 00:01:18 +02:00
Corentin Thomasset
1d23f40894 fix(docs): update schema URL in configuration examples to use the correct domain (#402) 2025-07-07 12:00:35 +00:00
juoum
40a1f91b67 feat(i18n): Added European Portuguese (pt) translation (#391)
* Add European Portuguese (pt) translation

* chore: auto lint

* chore: added changeset

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-07-04 23:12:27 +02:00
Corentin Thomasset
47b69b15f4 fix(organization-settings): update back button link to use organization ID in URL (#399) 2025-07-04 23:03:19 +02:00
Corentin Thomasset
a188af1f88 chore(lint): enabled type-aware linting (#398) 2025-07-04 22:55:42 +02:00
Corentin Thomasset
f28d8245bf feat(auth): added configuration to disable auth by email (#394) 2025-07-02 13:36:19 +02:00
Corentin Thomasset
aad36f3252 fix(documents): corrected weird centering for long file names (#393) 2025-07-01 22:01:53 +00:00
Corentin Thomasset
21a5ccce6d fix(docker): set COREPACK_HOME for rootless image to avoid permission issues (#392) 2025-07-01 23:25:24 +02:00
Corentin Thomasset
42bc3c6698 feat(docs): added api endpoint doc page (#390) 2025-07-01 18:47:41 +02:00
Corentin Thomasset
a9f474dc2d Merge pull request #388 from papra-hq/lecture-integration
chore(setup): integrated lecture package in the monorepo
2025-06-30 21:20:13 +02:00
Corentin Thomasset
ed5a93cb47 chore: update repository URLs and clean up package configurations 2025-06-30 21:17:22 +02:00
Corentin Thomasset
52df988c02 Add 'packages/lecture/' from commit '9b2a4b2ae90de0cc5ba1c7a3f14b308185e9c705'
git-subtree-dir: packages/lecture
git-subtree-mainline: 73b8d08076
git-subtree-split: 9b2a4b2ae9
2025-06-30 21:03:28 +02:00
Corentin Thomasset
73b8d08076 feat(documents): added configuration for the ocr languages (#387) 2025-06-29 22:14:58 +02:00
Corentin Thomasset
9b2a4b2ae9 chore: release v0.0.7 2025-06-29 16:08:54 +02:00
Corentin Thomasset
2a8b88e48a refactor(extractors): added config in high-order extraction methods (#4) 2025-06-29 14:08:11 +00:00
Corentin Thomasset
be1b70a26a chore: release v0.0.6 2025-06-29 15:56:28 +02:00
Corentin Thomasset
1755849483 refactor(config): rename and export ocrLanguages (#3) 2025-06-29 15:54:22 +02:00
Corentin Thomasset
b3693fd9c9 chore: release v0.0.5 2025-06-29 15:01:14 +02:00
Corentin Thomasset
2149b50270 feat(config): added the possibility to configure tesseract ocr (#2) 2025-06-29 15:00:37 +02:00
Lucas Arantes
0b276ee0d5 feat(i18n): add Brazilian Portuguese (pt-BR) translation (#383)
* feat(i18n): add Portuguese (pt-BR) translation

* fix(i18n): remove trailing space in pt-BR.yml

* chore: added changeset

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-06-26 22:31:20 +00:00
Corentin Thomasset
56fb9ec2c4 docs(CONTRIBUTING): update dev instructions with package build step (#382) 2025-06-25 13:37:12 +02:00
Corentin Thomasset
6cedc30716 chore(deps): updated dependencies (#379) 2025-06-24 20:52:15 +02:00
Corentin Thomasset
f1e1b4037b feat(tags): add color picker and swatches for tag creation (#378) 2025-06-24 20:27:58 +02:00
Corentin Thomasset
205c6cfd46 feat(preview): improved document preview for text-like files (#377) 2025-06-24 00:11:40 +02:00
Alex
c54a71d2c5 fix(tags): allow for uppercase tag color code (#346)
* Update tags.page.tsx

* Fixes 400 error when submitting tags with uppercase hex colour codes.

Fixes 400 error when submitting tags with uppercase hex colour codes.

* Update .changeset/few-toes-ask.md

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-06-19 11:45:06 +02:00
Corentin Thomasset
62b7f0382c chore(release): update versions (#358)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-18 22:11:19 +02:00
Corentin Thomasset
57c6a26657 fix(demo): case insensitive dummy search in demo (#367) 2025-06-18 19:03:10 +00:00
Corentin Thomasset
b8c2bd70e3 feat(tags): allow for adding/removing tags to document using api keys (#366) 2025-06-18 20:58:03 +02:00
Marvin Deuschle
0c2cf698d1 feat(i18n): added German translation (#359)
* feat: Add german translation

* fix: Added changeset entry

* Update apps/papra-client/src/locales/de.yml

* Update apps/papra-client/src/locales/de.yml

* Update apps/papra-client/src/locales/de.yml

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-06-15 21:51:13 +02:00
Corentin Thomasset
585c53cd9d chore(changesets): added /llms.txt announcement changesets (#357) 2025-06-14 19:16:28 +02:00
Corentin Thomasset
f035458e16 feat(docs): added descriptions in docs-navigation.json (#354) 2025-06-14 00:37:47 +02:00
Corentin Thomasset
556fd8b167 feat(docs): added navigation json export (#341) 2025-06-10 21:30:56 +02:00
Corentin Thomasset
81e85295ba chore(release): update versions (#334)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-07 17:40:28 +02:00
Corentin Thomasset
1c574b8305 feat(script): ensure local database directory exists before running scripts (#337) 2025-06-07 17:26:28 +02:00
Corentin Thomasset
ff830c234a fix(client): corrected version release link (#333) 2025-06-07 15:09:08 +02:00
Corentin Thomasset
451564f354 docs(readme): updated features statuses (#328) 2025-06-07 14:58:21 +02:00
Corentin Thomasset
ecd6af45c8 docs(README): update project status and add sponsorship section (#327) 2025-06-06 22:04:49 +00:00
Corentin Thomasset
cb652c7166 chore(release): update versions (#323)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-04 21:32:34 +02:00
Corentin Thomasset
17ca8f8f81 fix(documents): update Content-Disposition header to support UTF-8 encoded filenames (#326) 2025-06-04 21:30:06 +02:00
Corentin Thomasset
f54b8e162a feat(docs): auto compute urls from port in dc generator (#322) 2025-06-04 13:47:52 +02:00
Corentin Thomasset
6b435bba79 chore(release): update versions (#305)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-04 00:09:45 +02:00
Corentin Thomasset
8ccdb74834 refactor(docker): added base url override in docker (#320) 2025-06-03 22:04:15 +00:00
Corentin Thomasset
60059c895c feat(invitations): add invitations management page (#319) 2025-06-03 22:13:21 +02:00
Corentin Thomasset
6e22a93dff feat(locales): add fr translations for document activity logging (#318) 2025-05-30 13:58:00 +02:00
Corentin Thomasset
79c1d3206b feat(documents): added document activity logging (#317) 2025-05-30 13:45:25 +02:00
Corentin Thomasset
48a953a584 refactor(client): migrated tanstack createQuery and createMutation to useQuery and useMutation (#316) 2025-05-28 21:51:30 +02:00
Corentin Thomasset
fdb90fa164 feat(tags): add error handling for existing tags (#315) 2025-05-27 21:09:46 +02:00
Corentin Thomasset
e9a205c0a3 feat(documents): added document renaming (#314) 2025-05-27 20:11:05 +02:00
Corentin Thomasset
278db63fc8 chore(deps): updated some dependencies version (#313) 2025-05-27 13:46:43 +02:00
Corentin Thomasset
e5ef40f36c chore(version): added missing changeset for password reset fix (#312) 2025-05-26 20:30:24 +00:00
Corentin Thomasset
27c9e39422 fix(auth): fix deprecated better-auth database id generation conf (#311) 2025-05-26 20:27:32 +00:00
Corentin Thomasset
91d2e236d0 fix(auth): corrected password reset navigation guard (#310) 2025-05-26 22:19:33 +02:00
Corentin Thomasset
d4f72e889a refactor(client): hide manage subscription section (#309) 2025-05-26 21:42:19 +02:00
Corentin Thomasset
759a3ff713 feat(i18n): extracted hard coded text for i18n (#308) 2025-05-26 01:14:43 +02:00
Corentin Thomasset
34862991fb chore(cf): added security headers in docs and papra-client (#307) 2025-05-25 12:05:38 +00:00
Corentin Thomasset
f0876fdc63 feat(server): added smtp client support for emailing (#306) 2025-05-25 11:47:12 +02:00
Corentin Thomasset
cb38d66485 refactor(emails): restructure emails service to support multiple drivers (#304) 2025-05-25 01:26:28 +02:00
Corentin Thomasset
c28af1407f chore(release): update versions (#303)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-05-24 19:58:09 +02:00
Corentin Thomasset
b62ddf2bc4 chore(docker): add EMAILS_DRY_RUN environment variable to Dockerfiles (#302) 2025-05-24 17:55:59 +00:00
Corentin Thomasset
fa7909c62d chore(release): add 'actions' permission to changeset workflow (#301) 2025-05-24 17:38:19 +00:00
Corentin Thomasset
1996b51b4d chore(release): update versions (#292)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-05-24 18:17:41 +02:00
Corentin Thomasset
734027f00c feat(docs): updated feature list statuses (#300) 2025-05-24 18:08:32 +02:00
Corentin Thomasset
557cde940c feat(organizations): added member role update functionality (#299) 2025-05-24 17:13:32 +02:00
Corentin Thomasset
26a83052bd fix(intake-emails): enhance disabled intake-email state (#298) 2025-05-24 12:27:09 +00:00
Corentin Thomasset
5aac3f7ba6 fix(demo): added missing routes in demo (#297) 2025-05-24 12:16:05 +00:00
Corentin Thomasset
0ddc2340f0 fix(locales): update registration page description (#296) 2025-05-24 11:24:44 +00:00
Corentin Thomasset
438a31171c feat(auth): added support for custom oauth2 providers (#295) 2025-05-24 03:12:39 +02:00
Corentin Thomasset
53bf93f128 feat(doc): added a papra docker compose generator (#293) 2025-05-23 21:24:08 +00:00
Corentin Thomasset
b400b3f18d feat(database): ensure local database directory en boot (#294) 2025-05-23 22:21:33 +02:00
Corentin Thomasset
0627ec25a4 feat(organizations): add permission check for invitation (#291) 2025-05-21 23:06:43 +02:00
Corentin Thomasset
72e5a9a4de feat(invitations): added organizations invitations and multi-user (#289) 2025-05-21 21:53:56 +02:00
Corentin Thomasset
268ac8e358 chore(release): update Docker release workflow to use version input parameter (#286) 2025-05-14 13:11:19 +02:00
Corentin Thomasset
249b3bcfd2 chore(release): update versions (#285)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-05-13 22:44:37 +02:00
Corentin Thomasset
d7838b5d57 chore(release): remove commitMode from release job configuration (#284) 2025-05-13 20:14:08 +00:00
Corentin Thomasset
f170ddd817 chore(release): use PAT for release PR creation (#283) 2025-05-13 20:05:57 +00:00
Corentin Thomasset
4f53c70854 chore(release): update permissions for release job (#281) 2025-05-13 16:44:47 +00:00
Corentin Thomasset
85fa5c4342 chore(version): added changeset for versioning (#280) 2025-05-13 13:48:55 +02:00
Corentin Thomasset
c5d984a3a0 refactor(docker): build transitive dependencies (#277) 2025-05-08 20:47:57 +02:00
Corentin Thomasset
565bd8d7fd feat(webhooks): added webhook management and logic (#276) 2025-05-08 18:52:11 +02:00
Corentin Thomasset
9b72aa886c feat(cli): added cli documentation (#275) 2025-05-02 23:30:33 +02:00
Corentin Thomasset
7410455093 feat(cli): setup base cli (#274) 2025-05-02 00:20:57 +02:00
riskpoint-per
dd8f194fd0 feat(server): add azure blob storage support (#261)
* add azure blob storage support

* set stream to nodejs.readable

* Update apps/papra-server/src/modules/documents/storage/drivers/az-blob/az-blob.storage-driver.ts

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>

* fix lock file

* bugfixes

* fix lint issues

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-04-28 09:34:28 +02:00
Corentin Thomasset
803c39cbc8 chore(packages): added api sdk package (#270) 2025-04-27 22:08:59 +02:00
Joshua Anderson
096331a4ee feat(server): add support for b2 object storage type (#232)
* feat(b2): add support for b2 object storage type

* feat(b2): fix order of tsconfig entries

* feat(b2): fix accidental responseType change

* fix(b2): remove unnecessary try-catches

* refactor(b2): use error factories
2025-04-27 21:35:29 +02:00
Corentin Thomasset
59ba9465f6 docs(features): marked tagging rules and folder ingestion as available features (#268) 2025-04-27 13:57:11 +00:00
Corentin Thomasset
a1056702af feat(docs): fixed broken links with auto check (#267) 2025-04-27 13:20:34 +00:00
Corentin Thomasset
fd44897bca fix(documents): hard delete file in storage driver (#266) 2025-04-27 14:52:05 +02:00
Corentin Thomasset
332d836d11 fix(ingestion-folders): added schema validation coercion in config (#265) 2025-04-27 12:11:05 +00:00
Corentin Thomasset
f613198cbd refactor(storage): replace generic error messages with specific file not found errors (#264) 2025-04-27 13:52:47 +02:00
Corentin Thomasset
80491a5a58 chore(deps): update eslint and and eslint config (#260) 2025-04-27 13:43:17 +02:00
Corentin Thomasset
605e21a410 chore(deps): updated pnpm to 10.9.0 in all package.json files (#258) 2025-04-25 13:15:32 +00:00
Corentin Thomasset
dec589b6ed fix(documents): remove incorrect default tab value (#259) 2025-04-25 13:08:39 +00:00
Corentin Thomasset
c0bd6e2ae4 refactor(i18n): flattened keys directly in yaml (#255)
* refactor(i18n): flattened keys directly in yaml

* Update apps/papra-client/src/locales/fr.yml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-24 21:17:37 +00:00
Corentin Thomasset
6287aaa973 feat(i18n): auto generate i18n type in dev mode (#254) 2025-04-24 20:03:21 +00:00
Corentin Thomasset
cc2edc59b0 feat(server): added api-keys (#248) 2025-04-24 21:13:56 +02:00
Corentin Thomasset
9cba84e38b refactor(client, services): updated API responses to use AsDto and date coercion (#250) 2025-04-22 22:35:48 +02:00
Corentin Thomasset
5fe401778d feat(documents): enhance document page with alert for content extraction details (#249) 2025-04-22 19:26:48 +00:00
Joshua Anderson
38aa1ea7f1 feat(documents): add document searchable content view and edit (#230)
* feat(documents): add tab for viewing content

* feat(documents): allow editing document content

* fix(demo): add content to demo document api

* refactor(documents): fix api structure for updating documents

* refactor(documents): return updated document after change

* refactor(documents): use correct api validation

* refactor(documents): move update to repository

* refactor(documents): limit height of content view

* refactor(documents): use new validation schemas
2025-04-22 21:14:57 +02:00
Corentin Thomasset
ab98c1b255 refactor(validation): mutualized resources ids for route validation (#241) 2025-04-19 16:27:51 +02:00
Corentin Thomasset
265f06f8b7 docs(CONTRIBUTING): updated guidelines for PRs (#240) 2025-04-18 21:47:59 +00:00
Corentin Thomasset
a787b7915c chore(github): added CODEOWNERS file (#239) 2025-04-18 21:40:37 +00:00
Joshua Anderson
0ba6a09923 fix(documents): fix padding when tags input wraps (#227)
* fix(documents): fix padding when tags input wraps

* fix(documents): use padding for y not just b
2025-04-18 22:58:50 +02:00
Joshua Anderson
6880bfd41c feat(documents): wrap txt document preview (#231)
* feat(documents): wrap txt document preview

* Update apps/papra-client/src/modules/documents/components/document-preview.component.tsx

---------

Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2025-04-18 22:43:48 +02:00
Corentin Thomasset
21a2c95e56 fix(tags): exclude deleted documents from tags docs count (#234) 2025-04-18 08:43:32 +00:00
Joshua Anderson
19e2083a71 feat(documents): add create tag button on document page (#220)
* feat(documents): fix tag selection input width

* feat(documents): add create tag button on document page

also added i18n just for the tag button, to be used for future localizing
2025-04-17 23:09:47 +02:00
Corentin Thomasset
e6b2d9fb2d refactor(documents): add functions to retrieve document name and extension (#217) 2025-04-16 23:07:54 +02:00
Corentin Thomasset
5140a64c40 chore: release v0.3.0 2025-04-16 20:00:09 +02:00
Corentin Thomasset
9ddb7d545d feat(ingestion): added folder ingestion support (#215) 2025-04-16 00:46:04 +02:00
Corentin Thomasset
2a73551ca4 feat(documents): restore document in trash when same file is uploaded (#213) 2025-04-11 22:08:55 +02:00
Corentin Thomasset
7be56455b0 feat(documents): implement document upload context with status (#212) 2025-04-11 18:41:38 +02:00
Corentin Thomasset
1085bf079c feat(documents): delete documents from the trash (#211) 2025-04-10 20:24:47 +00:00
Corentin Thomasset
b13986e1e3 refactor(config): remove support for wildcard '*' in trustedOrigins (#210) 2025-04-10 18:56:18 +00:00
Corentin Thomasset
d4462f942b refactor(auth, i18n): extracted hard coded text for i18n (#205)
* refactor(auth, i18n): extracted hard coded text for i18n

* Update apps/papra-client/src/modules/auth/pages/register.page.tsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-10 20:55:26 +02:00
Corentin Thomasset
2f2ad90fd3 feat(documents): made file upload limit disableable (#209) 2025-04-10 18:47:22 +00:00
Corentin Thomasset
2bbb68aa17 feat(tagging-rules): added documents auto tagging rules (#200) 2025-04-09 23:51:23 +02:00
Corentin Thomasset
2b2827cdb3 feat(demo): added Discord support link in demo popup (#203)
* feat(demo): added Discord support link in demo popup

* Update apps/papra-client/src/modules/demo/demo.provider.tsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-07 20:34:19 +00:00
Corentin Thomasset
4b4621e4d0 chore(issues): added issue template configuration with Discord community link (#202) 2025-04-06 20:57:23 +00:00
Corentin Thomasset
fd0f79feb0 docs(docker): improved docker and docker-compose instructions for Papra deployment (#201) 2025-04-06 19:25:02 +00:00
Corentin Thomasset
b9c2448805 feat(docs): implement text wrapping for documentation in .env configuration display (#199) 2025-04-06 07:37:50 +00:00
Corentin Thomasset
542225fabc feat(docs): add full .env configuration display in self-hosting guide (#198) 2025-04-06 09:19:07 +02:00
Corentin Thomasset
e4af2653ea chore: release v0.2.1 2025-04-05 19:31:39 +02:00
Corentin Thomasset
4dd15527c0 feat(config): add trustedOrigins configuration (#195) 2025-04-05 19:30:58 +02:00
Corentin Thomasset
ae0f69043d fix(docs): update Discord invitation links (#193) 2025-04-05 13:39:59 +02:00
Corentin Thomasset
79eafdb3ee feat(intake-emails): when deleting intake email in organization, delete in OwlRelay too (#192)
* feat(intake-emails): delete email in owlrelay too

* Update apps/papra-server/src/modules/intake-emails/drivers/random-username/random-username.intake-email-driver.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-04 16:23:55 +02:00
Corentin Thomasset
979df5dad8 docs(readme): updated Papra screenshot (#189) 2025-04-03 16:26:01 +00:00
Corentin Thomasset
76c50dce6c chore: release v0.2.0 2025-04-03 16:30:26 +02:00
Corentin Thomasset
8acd7de79e docs(readme): enhance self-hosting description (#188) 2025-04-03 13:42:59 +02:00
Corentin Thomasset
a3bd2024c6 docs(readme): correct typo and add project status section (#187) 2025-04-03 09:54:25 +00:00
Corentin Thomasset
25c26e8dc0 docs(readme): update i18n status and add document requests feature (#186) 2025-04-03 09:52:24 +00:00
Corentin Thomasset
07563dce5d feat(events): integrated posthog-node for user event (#184)
* feat(events): integrated posthog-node for user event

* Update apps/papra-server/src/modules/documents/documents.usecases.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* feat(events): integrated posthog-node for user event

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-03 00:35:49 +02:00
Corentin Thomasset
a0797beb14 refactor(config): introduce booleanishSchema for boolean coercion in config (#183) 2025-04-02 23:32:54 +02:00
Corentin Thomasset
0701a84973 refactor(config): replace async config loading with synchronous dry config loading (#182)
* refactor(config): replace async config loading with synchronous dry config loading

* Update apps/papra-server/src/modules/config/config.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-02 20:57:06 +00:00
Corentin Thomasset
0789ad3e9a docs(readme): remove self-hosting warning from README (#181) 2025-04-02 20:33:44 +00:00
Corentin Thomasset
cb3c9c3194 docs(index): added hero section on doc home page (#180) 2025-04-02 20:31:27 +00:00
Corentin Thomasset
f9b02c4439 style(docs): updated some dark theme colors (#179) 2025-04-02 19:16:06 +00:00
Corentin Thomasset
9afca3fd84 docs(readme): add self-hosting section to README (#178) 2025-04-02 18:34:52 +00:00
Corentin Thomasset
faca409604 feat(config): added support for file based configuration (#177) 2025-04-02 18:56:36 +02:00
Corentin Thomasset
fc973d20fe test(intake-emails): added e2e happy path test for email ingestion (#176) 2025-04-02 12:57:50 +02:00
Corentin Thomasset
400541f0ce refactor(intake-emails): remove unused legacy webhook secret validation code (#175) 2025-04-01 23:04:41 +00:00
Corentin Thomasset
f98b810bd4 feat(demo): add customer portal endpoint for demo mode (#174) 2025-04-01 22:29:11 +00:00
Corentin Thomasset
091bd26fbc fix(intake-emails): mutualized intake email ingestion endpoint path (#173) 2025-04-01 22:07:14 +00:00
Corentin Thomasset
6541a83e72 chore: release v0.1.2 2025-04-01 15:08:27 +02:00
Corentin Thomasset
77cf75a08b chore(package): remove logging formatter from migrate:up script (#171) 2025-04-01 15:03:32 +02:00
Corentin Thomasset
c0785e5e7a chore: release v0.1.1 2025-04-01 14:35:59 +02:00
Corentin Thomasset
14489457b2 feat(docker): release rootless as :latest (#170) 2025-04-01 12:32:36 +00:00
Corentin Thomasset
feb8378227 refactor(server): merged migrations (#169) 2025-04-01 14:03:23 +02:00
Corentin Thomasset
8622751c22 feat(organizations): add organization subscription management (#166) 2025-03-27 22:02:44 +01:00
Corentin Thomasset
b17f93b5e3 feat(server): implement organization subscription and limits base (#164) 2025-03-18 21:01:54 +01:00
Corentin Thomasset
51109c39f8 refactor(server): unify route handler dependencies management (#162) 2025-03-17 21:24:40 +01:00
Corentin Thomasset
3a1410f554 chore(dependencies): updated better-auth (#161) 2025-03-16 17:14:19 +01:00
Corentin Thomasset
180a9c234f chore(dependencies): remove unused deps (#160) 2025-03-16 16:15:32 +01:00
Corentin Thomasset
25379b5be5 refactor(organizations): rollback organization management to in-house API (#159) 2025-03-16 16:04:55 +01:00
Corentin Thomasset
300e8918d6 fix(documents): add endpoint and service for organization documents statistics (#158) 2025-03-16 11:17:43 +01:00
Corentin Thomasset
6f5ea9f9de feat(docs): update dark theme colors and refined docs (#157) 2025-03-16 01:05:50 +01:00
Corentin Thomasset
7b6c37fd4c feat(legals): add security policy (#156) 2025-03-15 16:06:25 +01:00
Corentin Thomasset
0f9f7831c9 fix(auth): update privacy policy link in legal links (#155) 2025-03-15 13:06:07 +00:00
Corentin Thomasset
51228dc157 refactor(client, config): update PostHog isEnabled flag to use dedicated env (#154) 2025-03-15 00:16:39 +01:00
Corentin Thomasset
0786b81e75 feat(client, tracking): prevent identify on demo mode (#153) 2025-03-15 00:00:45 +01:00
Corentin Thomasset
e92456bc6b fix(client, auth): explicitly return client methods instead of spreading proxy object (#152)
* fix(client, auth): explicitly return client methods instead of spreading proxy object

* Update apps/papra-client/src/modules/auth/auth.services.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-03-14 22:47:21 +00:00
Corentin Thomasset
3e7b4ea2db feat(client): added posthog analytics (#151) 2025-03-14 23:18:52 +01:00
Corentin Thomasset
2fd681b8a4 feat(analytics): integrate PostHog for analytics 2025-03-14 22:30:45 +01:00
Corentin Thomasset
73788ceb58 refactor(organizations): migrated to better-auth organization system (#150) 2025-03-14 20:57:55 +01:00
Corentin Thomasset
24b80eb785 feat(documents): add document filtering by tags (#146) 2025-03-06 22:31:40 +01:00
Corentin Thomasset
ae69eb2b33 feat(emails): add email service integration (#141) 2025-03-01 16:53:26 +01:00
Corentin Thomasset
f78d42ca25 feat(documents): prevent duplicate document uploads within an organization (#140)
* feat(documents): prevent duplicate document uploads within an organization

* Update apps/papra-server/src/modules/documents/documents.usecases.test.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-02-28 23:41:49 +01:00
Corentin Thomasset
4be13d0742 feat(intake-emails): added owlrelay driver integration (#138) 2025-02-28 13:21:36 +01:00
Corentin Thomasset
416b9d50b6 refactor(intake-email): mutualized intake-emails creation in drivers (#137) 2025-02-26 20:53:55 +01:00
Corentin Thomasset
84d2af5df5 refactor(organization): split home and documents pages (#136) 2025-02-26 00:24:53 +01:00
Corentin Thomasset
0d1be0d3a5 refactor(server,logger): migrate to crowlog logger ecosystem (#135) 2025-02-09 20:57:52 +01:00
Corentin Thomasset
c1f8507891 feat(organizations): added organization statistics (#134) 2025-02-06 08:41:43 +01:00
Corentin Thomasset
5422d3e2f6 chore(deps): update vitest to version 3.0.5 whole workspace 2025-02-05 22:19:14 +01:00
Corentin Thomasset
b16b557733 feat(documents): include organizationId in document repository crud operations 2025-02-04 23:48:33 +01:00
Corentin Thomasset
e981785a03 feat(auth): add indexes for auth_sessions and auth_verifications tables (#127) 2025-02-04 22:15:49 +00:00
Corentin Thomasset
9395df746e feat(logger): improved logger with transports interfaces 2025-02-04 21:44:19 +01:00
Corentin Thomasset
998dd2c667 test(errors): added test for standard error management 2025-02-04 21:44:19 +01:00
Corentin Thomasset
b99d72d23b refactor(static): mutualized static assets routes 2025-02-04 21:44:19 +01:00
Corentin Thomasset
b2d1848226 feat(docs): updates README files (#125) 2025-02-02 22:41:56 +00:00
Corentin Thomasset
d51f19d5e3 feat(dev): added proxy in client for default backend redirection (#121) 2025-02-02 21:57:50 +00:00
Corentin Thomasset
b0d9cfc67a refactor(ci): remove corepack config from setup-node workflows (#122) 2025-02-02 21:57:32 +00:00
Corentin Thomasset
e77b49832f refactor(ci): replace corepack with pnpm setup in workflow files (#124) 2025-02-02 22:56:00 +01:00
Corentin Thomasset
947c09eff9 feat(docs): added Discord community invitation (#120) 2025-02-01 23:12:21 +01:00
Corentin Thomasset
85cbd547f5 refactor(docs): updated dark theme colors (#119) 2025-02-01 21:17:25 +00:00
Corentin Thomasset
2484932f96 feat(docs): add guide for setting up email intake (#118) 2025-02-01 15:40:51 +00:00
Corentin Thomasset
97d835f240 refactor(i18n): add email validation and legal links translations (#117) 2025-01-31 23:46:35 +00:00
Corentin Thomasset
72414d8122 refactor(auth): added theme and language picker in auth layout (#115) 2025-01-31 22:17:00 +00:00
Corentin Thomasset
7f4fb3b0e7 chore: release v0.1.0 2025-01-31 21:45:26 +01:00
Corentin Thomasset
918ae55ebc refactor(config): improved default config for self hosting 2025-01-31 21:39:44 +01:00
Corentin Thomasset
6a0dd40e1e refactor(components): replace map with For for reactivity (#113) 2025-01-31 16:12:18 +01:00
Corentin Thomasset
e5d95e3ffe docs(contributing): clarify guidelines for submitting pull requests (#112) 2025-01-31 14:20:58 +00:00
Corentin Thomasset
08886fd754 fix(scripts): update dev and migrate:up scripts to use env-file-if-exists option (#111) 2025-01-31 14:15:01 +00:00
Corentin Thomasset
5a8d30a34f chore(deps): update pnpm version to 9.15.4 in package.json files (#110) 2025-01-31 14:57:32 +01:00
Corentin Thomasset
ee81d2e6c1 feat(database): added db encryption capability (#109) 2025-01-31 14:53:21 +01:00
Alexis Ablain
d84ad00e95 docs(readme): fix introduction demo link (#108) 2025-01-27 09:48:59 +01:00
Corentin THOMASSET
7c1aecd5fa feat(i18n): added internationalization support (#107) 2025-01-27 00:45:00 +01:00
Corentin THOMASSET
e412507f30 git c iudocs(readme): updated content extraction section feature (#106) 2025-01-26 17:06:40 +00:00
Corentin THOMASSET
5521d67a68 chore(github): added contribution guidelines (#105) 2025-01-26 17:39:44 +01:00
Corentin THOMASSET
4962215093 fix(documents): added missing Content-Length header (#104) 2025-01-26 16:41:25 +01:00
Corentin THOMASSET
274fb7d72e feat(intake-emails): added intake emails (#103) 2025-01-26 01:11:24 +01:00
Corentin THOMASSET
a491987c1b refactor(documents): externalized document text extraction (#102) 2025-01-22 14:38:52 +00:00
Corentin Thomasset
f37c7dd8f7 chore: release v0.0.4 2025-01-22 15:08:50 +01:00
Corentin Thomasset
a7fbf21a9f docs(readme): added images in supported file formats 2025-01-22 14:03:22 +01:00
Corentin Thomasset
f97e5f863e feat(extractors): add image extractor 2025-01-22 13:59:19 +01:00
Corentin Thomasset
8dcd6bc5ed feat(extractors): improved tests 2025-01-22 13:18:54 +01:00
Corentin Thomasset
87cb325369 fix(extractor): corrected name of text extractor 2025-01-22 13:11:39 +01:00
Corentin Thomasset
e1743954d2 chore: release v0.0.3 2025-01-22 11:40:18 +01:00
Corentin Thomasset
44b5b9fd5a refactor(interface): normalized api 2025-01-22 11:39:54 +01:00
Corentin Thomasset
68c5a3e2b7 refactor(npm): auto format package.json 2025-01-22 11:39:12 +01:00
Corentin Thomasset
684138c3fd chore(npm): added keywords in package.json 2025-01-22 04:30:55 +01:00
Corentin Thomasset
0aa3241712 chore: release v0.0.2 2025-01-22 04:29:02 +01:00
Corentin Thomasset
ad6358195e chore(cd): added actions for npm release 2025-01-22 04:27:44 +01:00
Corentin Thomasset
0e99669206 docs(readme): update README to include usage in Papra project 2025-01-22 04:18:34 +01:00
Corentin Thomasset
a91d98fb44 chore(setup): first commit 2025-01-22 04:16:54 +01:00
Corentin THOMASSET
f3466e4bfd feat(documents): integrated PDF text extraction (#101) 2025-01-22 01:45:57 +01:00
Corentin THOMASSET
c2dc8bfdfb feat(client): added unreachable server display (#100) 2025-01-21 23:57:34 +00:00
Corentin THOMASSET
510e8622b5 refactor(demo-api-mock): simplify document and tag retrieval using utility functions (#99) 2025-01-21 21:44:36 +01:00
Corentin THOMASSET
7860ea49a0 docs(README): update tags section to remove 'coming soon' phrasing (#98) 2025-01-21 19:37:00 +00:00
Corentin THOMASSET
b319a86934 feat(tags): added documents tags (#97) 2025-01-21 20:17:01 +01:00
Corentin THOMASSET
b15bc2a087 feat(documents): added document restoration and deletion hooks (#96) 2025-01-18 21:59:34 +00:00
Corentin THOMASSET
0c811e3fc4 fix(plausible): adjust url pattern for 404 routes (#95) 2025-01-18 15:13:24 +00:00
Corentin THOMASSET
8b3372a2bd feat(client): integrated plausible analytics (#94) 2025-01-18 14:39:47 +00:00
Corentin THOMASSET
753a07a008 fix(config): update Plausible analytics script to use 'node:process' env (#93) 2025-01-18 13:49:59 +01:00
Corentin THOMASSET
c4943f8de7 feat(docs): add Plausible analytics script configuration (#92) 2025-01-18 13:42:52 +01:00
Corentin THOMASSET
538b490583 fix(config): added Google SSO configuration in public (#91) 2025-01-18 10:37:09 +01:00
Corentin THOMASSET
79542bab7b refactor(config): remove unused configuration (#90) 2025-01-18 10:30:22 +01:00
Corentin THOMASSET
5cae1fdf7e chore(github): added funding configuration (#88) 2025-01-18 00:29:17 +01:00
Corentin THOMASSET
9452c4be92 feat(docs): configuration documentation (#86) 2025-01-18 00:21:31 +01:00
Corentin THOMASSET
cd5b609427 feat(auth): add Google as an SSO provider (#85) 2025-01-17 23:57:12 +01:00
Corentin THOMASSET
d0a9842e7d style(sidenav): enhance button icon with rotation effect on hover (#84) 2025-01-17 23:57:00 +01:00
Corentin THOMASSET
82ecba25e0 feat(auth): disable registration form when signup is disabled (#83) 2025-01-17 23:56:47 +01:00
Corentin THOMASSET
904f2c091a feat(tasks): added document deletion recuring task (#81) 2025-01-17 23:56:34 +01:00
Corentin THOMASSET
77eb6dc476 refactor(og): improved og image (#82) 2025-01-17 22:09:32 +01:00
Corentin THOMASSET
1fc6182a09 fix(demo): added mock endpoint for configuration retrieval (#80) 2025-01-17 11:51:13 +01:00
Corentin THOMASSET
3e1bae897e feat(config): implement runtime server-provided config (#79) 2025-01-17 11:33:39 +01:00
Corentin THOMASSET
a049479fb5 refactor(auth): use root auth instance (#78) 2025-01-15 22:18:43 +01:00
Corentin THOMASSET
c8cae4842e feat(auth): added email / password support (#77) 2025-01-15 22:06:51 +01:00
Corentin THOMASSET
181e59ac87 docs(readme): updated README to include self-hosting section and better auth library (#76) 2025-01-14 23:12:57 +01:00
Corentin Thomasset
f6960eafea chore: release v0.0.1 2025-01-14 23:03:13 +01:00
Corentin THOMASSET
e1ab9481e0 refactor(style): updated light mode primary color (#74) 2025-01-14 22:46:37 +01:00
Corentin THOMASSET
2a4731c0d7 feat(auth): enable demo mode authentication with createDemoAuthClient (#73) 2025-01-14 22:31:44 +01:00
Corentin THOMASSET
32564fe5ee refactor(auth): remove isPending state from protected page middleware (#70) 2025-01-14 21:24:41 +01:00
Corentin THOMASSET
02b7f70393 refactor(auth): integrated better-auth (#69) 2025-01-14 20:58:08 +01:00
Corentin THOMASSET
1ff8902bd0 feat(routes): add health check route to server (#68) 2025-01-13 20:09:23 +01:00
Corentin THOMASSET
912daeaea8 chore(dependencies): updated and cleaned some deps (#67) 2025-01-13 13:59:10 +01:00
Corentin THOMASSET
81b0cd74d4 feat(upload): added global drag-drop on organization (#66) 2025-01-12 23:54:42 +01:00
Corentin THOMASSET
36cb2b1829 refactor(documents): added confirmation modal on document deletion (#64) 2025-01-12 22:07:49 +01:00
Corentin THOMASSET
bba6cba60e refactor(documents): loading state for restore document button (#63) 2025-01-12 21:37:24 +01:00
Corentin THOMASSET
0f20b9fd16 feat(demo): added deletion/restoration demo routes (#62) 2025-01-12 20:55:01 +01:00
Corentin THOMASSET
cad6ff4e51 feat(documents): added delete documents restoration (#61) 2025-01-12 20:41:13 +01:00
679 changed files with 68641 additions and 7407 deletions

8
.changeset/README.md Normal file
View File

@@ -0,0 +1,8 @@
# Changesets
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

19
.changeset/config.json Normal file
View File

@@ -0,0 +1,19 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
"changelog": [
"@changesets/changelog-github",
{ "repo": "papra-hq/papra"}
],
"commit": false,
"fixed": [
["@papra/app-client", "@papra/app-server"]
],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": [],
"privatePackages": {
"tag": true,
"version": true
}
}

View File

@@ -4,7 +4,8 @@ node_modules
*.log
dist
*.local
.env
.git
db.sqlite
local-documents
local-documents
.env
**/.env

4
.github/FUNDING.yml vendored Normal file
View File

@@ -0,0 +1,4 @@
github:
- CorentinTh
buy_me_a_coffee: cthmsst

48
.github/ISSUE_TEMPLATE/bug-report.yml vendored Normal file
View File

@@ -0,0 +1,48 @@
name: 🐞 Bug Report
description: File a bug report.
labels: ['bug', 'triage']
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: bug-description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
placeholder: Bug description
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen? If you have a screenshot, you can paste it here.
placeholder: Tell us what you see!
value: 'A bug happened!'
validations:
required: true
- type: textarea
id: version
attributes:
label: System information
description: What is you environment? You can use the `npx envinfo --system --browsers` command to get this information.
validations:
required: true
- type: dropdown
id: app-type
attributes:
label: Where did you encounter the bug?
options:
- Demo app (demo.papra.app)
- Public app (dashboard.papra.app
- Documentation website (docs.papra.ap)
- A self hosted instance
- Other (installations, docker, etc.)
validations:
required: true

5
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: 💬 Discord Community
url: https://papra.app/discord
about: Join the Papra Discord community to get help, share your feedback, and stay updated on the project.

View File

@@ -0,0 +1,52 @@
name: 🚀 New feature proposal
description: Propose a new feature/enhancement
labels: ['enhancement', 'triage']
body:
- type: markdown
attributes:
value: |
Thanks for your interest in the project and taking the time to fill out this feature report!
- type: dropdown
id: request-type
attributes:
label: What type of request is this?
options:
- New feature idea
- Enhancement of an existing feature
- Deployment or CI/CD improvement
- Hosting or Self-hosting improvement
- Related to documentation
- Related to the community
- Other
validations:
required: true
- type: textarea
id: feature-description
attributes:
label: Clear and concise description of the feature you are proposing
description: A clear and concise description of what the feature is.
placeholder: 'Example: I would like to see...'
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Any other context or screenshots about the feature request here.
- type: checkboxes
id: checkboxes
attributes:
label: Validations
description: Before submitting the issue, please make sure you do the following
options:
- label: Check the feature is not already implemented in the project.
required: true
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
required: true
- label: Check that the feature is technically feasible and aligns with the project's goals.
required: true

BIN
.github/papra-screenshot.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -1,40 +0,0 @@
name: CI - Docs
on:
pull_request:
push:
branches:
- main
jobs:
ci-apps-docs:
name: CI - Docs
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/docs
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
corepack: true
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
working-directory: ./
- name: Run linters
run: pnpm lint
# - name: Type check
# run: pnpm typecheck
# - name: Run unit test
# run: pnpm test
- name: Build the app
run: pnpm build

View File

@@ -1,40 +0,0 @@
name: CI - App Client
on:
pull_request:
push:
branches:
- main
jobs:
ci-apps-papra-client:
name: CI - Papra Client
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/papra-client
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
corepack: true
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
working-directory: ./
- name: Run linters
run: pnpm lint
- name: Type check
run: pnpm typecheck
- name: Run unit test
run: pnpm test
- name: Build the app
run: pnpm build

View File

@@ -1,39 +0,0 @@
name: CI - App Server
on:
pull_request:
push:
branches:
- main
jobs:
ci-apps-papra-server:
name: CI - Papra Server
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/papra-server
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
corepack: true
cache: 'pnpm'
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Run linters
run: pnpm lint
- name: Type check
run: pnpm typecheck
- name: Run unit test
run: pnpm test
- name: Build the app
run: pnpm build

47
.github/workflows/ci.yaml vendored Normal file
View File

@@ -0,0 +1,47 @@
name: CI
on:
pull_request:
push:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
# Build only the packages first to properly run the lint and test first to get faster feedback
- name: Build packages
run: pnpm -r --parallel -F "./packages/*" build
- name: Run linters
run: pnpm -r --parallel lint
- name: Type check
# Exclude docs as their are some typing issues we are ok with for now
run: pnpm -r --parallel -F "!@papra/docs" typecheck
# Tests are run using vitest projects
- name: Run tests
run: pnpm test
# Now build the apps, the longer step, so we do it last as they are more unlikely to fail if the previous steps works
- name: Build the apps
run: pnpm -r --parallel -F "./apps/*" build
- name: Ensure no non-excluded files are changed for the whole repo
run: git diff --exit-code > /dev/null || (echo "After running the CI, some un-committed changes were detected. Please ensure cleanness before merging." && exit 1)

View File

@@ -1,9 +1,12 @@
name: Release new versions
name: Build and publish Docker images
on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:
inputs:
version:
description: 'Version to release (e.g. 0.8.2)'
required: true
type: string
permissions:
contents: read
@@ -11,17 +14,9 @@ permissions:
jobs:
docker-release:
name: Release Docker images
name: Build and publish Docker images
runs-on: ubuntu-latest
steps:
- name: Get release version from tag
if: ${{ github.event_name == 'push' }}
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
- name: Get release version from input
if: ${{ github.event_name == 'workflow_dispatch' }}
run: echo "RELEASE_VERSION=${{ github.event.inputs.release_version }}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -53,9 +48,9 @@ jobs:
push: true
tags: |
corentinth/papra:latest-root
corentinth/papra:${{ env.RELEASE_VERSION }}-root
corentinth/papra:${{ inputs.version }}-root
ghcr.io/papra-hq/papra:latest-root
ghcr.io/papra-hq/papra:${{ env.RELEASE_VERSION }}-root
ghcr.io/papra-hq/papra:${{ inputs.version }}-root
- name: Build and push rootless Docker image
uses: docker/build-push-action@v6
@@ -65,7 +60,9 @@ jobs:
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: |
corentinth/papra:latest
corentinth/papra:latest-rootless
corentinth/papra:${{ env.RELEASE_VERSION }}-rootless
corentinth/papra:${{ inputs.version }}-rootless
ghcr.io/papra-hq/papra:latest
ghcr.io/papra-hq/papra:latest-rootless
ghcr.io/papra-hq/papra:${{ env.RELEASE_VERSION }}-rootless
ghcr.io/papra-hq/papra:${{ inputs.version }}-rootless

53
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,53 @@
name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
actions: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Create Release Pull Request
id: changesets
uses: changesets/action@v1
with:
# Note: pnpm install after versioning is necessary to refresh lockfile
version: pnpm run version
publish: pnpm exec changeset publish
commit: "chore(release): update versions"
title: "chore(release): update versions"
env:
GITHUB_TOKEN: ${{ secrets.CHANGESET_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Trigger Docker build
if: steps.changesets.outputs.published == 'true' && contains(fromJson(steps.changesets.outputs.publishedPackages).*.name, '@papra/app-server')
run: |
VERSION=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[] | select(.name=="@papra/app-server") | .version')
echo "VERSION: $VERSION"
gh workflow run release-docker.yaml -f version="$VERSION"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

6
.gitignore vendored
View File

@@ -37,4 +37,8 @@ cache
*.sqlite
local-documents
.cursorrules
ingestion
.cursorrules
*.traineddata
.eslintcache

1
CODEOWNERS Normal file
View File

@@ -0,0 +1 @@
* @papra-hq/papra-maintainers

128
CODE_OF_CONDUCT.md Normal file
View File

@@ -0,0 +1,128 @@
# Contributor Covenant Code of Conduct
## Our Pledge
We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, religion, or sexual identity
and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.
## Our Standards
Examples of behavior that contributes to a positive environment for our
community include:
* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
overall community
Examples of unacceptable behavior include:
* The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities
Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.
Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.
## Scope
This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
<corentinth@proton.me>.
All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the
reporter of any incident.
## Enforcement Guidelines
Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:
### 1. Correction
**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.
**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.
### 2. Warning
**Community Impact**: A violation through a single incident or series
of actions.
**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or
permanent ban.
### 3. Temporary Ban
**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.
**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.
### 4. Permanent Ban
**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.
**Consequence**: A permanent ban from any sort of public interaction within
the community.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.0, available at
<https://www.contributor-covenant.org/version/2/0/code_of_conduct.html>.
Community Impact Guidelines were inspired by [Mozilla's code of conduct
enforcement ladder](https://github.com/mozilla/diversity).
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see the FAQ at
<https://www.contributor-covenant.org/faq>. Translations are available at
<https://www.contributor-covenant.org/translations>.

158
CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,158 @@
# Contributing to Papra
First off, thanks for taking the time to contribute to Papra! We welcome contributions of all types and encourage you to help make this project better for everyone.
## Code of Conduct
This project adheres to the [Contributor Covenant](https://www.contributor-covenant.org/). By participating, you are expected to uphold this code. Please report unacceptable behavior to <corentinth@proton.me>
## How Can I Contribute?
### Reporting Issues
If you find a bug, have a feature request, or need help, feel free to open an issue in the [GitHub Issue Tracker](https://github.com/papra-hq/papra/issues). You're also welcome to comment on existing issues.
### Submitting Pull Requests
Please refrain from submitting pull requests that implement new features or fix bugs without first opening an issue. This will help us avoid duplicate work and ensure that your contribution is in line with the project's goals and prevents wasted effort on your part.
We follow a **GitHub Flow** model where all PRs should target the `main` branch, which is continuously deployed to production.
**Guidelines for submitting PRs:**
- Each PR should be small and atomic. Please avoid solving multiple unrelated issues in a single PR.
- Ensure that the **CI is green** before submitting. Some of the following checks are automatically run for each package: linting, type checking, testing, and building.
- If your PR fixes an issue, please reference the issue number in the PR description.
- If your PR adds a new feature, please include tests and update the documentation if necessary.
- Be prepared to address feedback and iterate on your PR.
- Resolving merge conflicts is part of the PR author's responsibility.
- Draft PRs are welcome to get feedback early on your work but only when requested, they'll not be reviewed.
### Branching
- **Main branch**: This is the production branch. All pull requests must target this branch.
- **Feature branches**: Create a new branch for your feature (e.g., `my-new-feature`), make your changes, and then open a PR targeting `main`.
### Commit Guidelines
We use **[Conventional Commits](https://www.conventionalcommits.org/)** to keep commit messages consistent and meaningful. Please follow these guidelines when writing commit messages. While you can structure commits however you like, PRs will be squashed on merge.
## i18n
We welcome contributions to improve and expand the app's internationalization (i18n) support. Below are the guidelines for adding a new language or updating an existing translation.
### Adding a New Language
1. **Create a Language File**: To add a new language, create a TypeScript file named with the appropriate [ISO language code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) followed by `.dictionary.ts` (e.g., `fr.dictionary.ts` for French) in the [`apps/papra-client/src/locales`](./apps/papra-client/src/locales) directory.
2. **Use the Reference File**: Refer to the [`en.dictionary.ts`](./apps/papra-client/src/locales/en.dictionary.ts) file, which contains all keys used in the app. Use it as a base to ensure consistency when creating your new language file. The English translations act as a fallback if a key is missing in the new language file.
3. **Update the Locale List**: After adding the new language file, include the language code in the `locales` array found in the [`apps/papra-client/src/modules/i18n/i18n.constants.ts`](./apps/papra-client/src/modules/i18n/i18n.constants.ts) file.
4. **Submit a Pull Request**: Once you've added the file and updated `i18n.constants.ts`, create a pull request (PR) with your changes. Ensure that your PR is clearly titled with the language being added (e.g., "Add French translations").
### Updating an Existing Language
If you want to update an existing language file, you can do so directly in the corresponding TypeScript file in the [`apps/papra-client/src/locales`](./apps/papra-client/src/locales) directory. The translation keys are now fully type-safe with TypeScript, so you'll get immediate feedback if you add invalid keys or have syntax errors.
> [!TIP]
> You can use the command `pnpm script:sync-i18n-key-order` to sync the order of the keys in the TypeScript i18n files, it'll also add the missing keys as comments.
## Development Setup
### Local Environment Setup
We recommend running the app locally for development. Follow these steps:
1. Clone the repository and navigate inside the project directory.
```bash
git clone https://github.com/papra-hq/papra.git
cd papra
```
2. Install dependencies:
```bash
pnpm install
```
3. Build the monorepo packages:
As the apps rely on internal packages, you need to build them first.
```bash
pnpm build:packages
```
4. Start the development server for the backend:
```bash
cd apps/papra-server
# Run the migration script to create the database schema
pnpm migrate:up
# Start the server
pnpm dev
```
5. Start the frontend:
```bash
cd apps/papra-client
# Start the client
pnpm dev
```
6. Open your browser and navigate to `http://localhost:3000`.
### Testing
We use **Vitest** for testing. Each package comes with its own testing commands.
- To run the tests for any package:
```bash
pnpm test
```
- To run tests in watch mode:
```bash
pnpm test:watch
```
All new features must be covered by unit or integration tests. Be sure to use business-oriented test names (avoid vague descriptions like `it('should return true')`).
## Writing Documentation
If your code changes affect the documentation, you must update the docs. The documentation is powered by [**Astro Starlight**](https://starlight.astro.build/).
To start the documentation server for local development:
1. Navigate to the `packages/docs` directory:
```bash
cd apps/docs
```
2. Start the documentation server:
```bash
pnpm dev
```
3. Open your browser and navigate to `http://localhost:4321`.
## Coding Style
- Use functional programming where possible.
- Focus on clarity and maintainability over performance.
- Choose meaningful, relevant names for variables, functions, and components.
## Issue Labels
Look out for issues tagged as [**good first issue**](https://github.com/papra-hq/papra/issues?q=sort%3Aupdated-desc%20is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22) or [**PR welcome**](https://github.com/papra-hq/papra/issues?q=sort%3Aupdated-desc+is%3Aissue+state%3Aopen+label%3A%22PR+welcome%22) for tasks that are well-suited for new contributors. Feel free to comment on existing issues or create new ones.
## License
By contributing, you agree that your contributions will be licensed under the [AGPL3](./LICENSE), the same as the project itself.

View File

@@ -17,24 +17,31 @@
<a href="https://demo.papra.app">Demo</a>
<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="https://docs.papra.app">Docs</a>
<!-- <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="https://docs.papra.app/self-hosting/docker">Self-hosting</a> -->
<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="https://docs.papra.app/self-hosting/using-docker">Self-hosting</a>
<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="https://github.com/orgs/papra-hq/projects/2">Roadmap</a>
<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="https://dashboard.papra.app">Managed instance</a>
<a href="https://papra.app/discord">Discord</a>
<!-- <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="https://dashboard.papra.app">Managed instance</a> -->
</p>
## Introduction
> [!IMPORTANT]
> **Papra** is currently in active development and is not yet ready for production use or self-hosting.
**Papra** is a minimalistic document management and archiving platform. It is designed to be simple to use and accessible to everyone. Papra is a plateform for long-term document storage and management, like a digital archive for your documents.
**Papra** is a minimalistic document management and archiving platform. It is designed to be simple to use and accessible to everyone. Papra is a platform for long-term document storage and management, like a digital archive for your documents.
Forget about that receipt of that gift you bought for your friend last year, or that warranty for your new phone. With Papra, you can easily store, forget, and retrieve your documents whenever you need them.
A live demo of the platform is available at [demo.papra.cc](https://demo.papra.cc) (no backend, client-side local storage only).
A live demo of the platform is available at [demo.papra.app](https://demo.papra.app) (no backend, client-side local storage only).
[![Papra](./.github/papra-screenshot.png)](https://demo.papra.app)
## Project Status
Papra is under active development, the core functionalities are stable and usable. With lots of features and improvements added regularly.
Feedback and bug reports are highly appreciated to help us improve the platform.
## Features
@@ -45,28 +52,51 @@ A live demo of the platform is available at [demo.papra.cc](https://demo.papra.c
- **Dark Mode**: A dark theme for those late-night document management sessions.
- **Responsive Design**: Works on all devices, from desktops to mobile phones.
- **Open Source**: The project is open-source and free to use.
- *Coming soon:* **Self-hosting**: Host your own instance of Papra using Docker or other methods.
- *Coming soon:* **Tags**: Organize your documents with tags.
- *Coming soon:* **Tagging Rules**: Automatically tag documents based on custom rules.
- *Coming soon:* **OCR**: Automatically extract text from images or scanned documents for search.
- *Coming soon:* **i18n**: Support for multiple languages.
- *Coming soon:* **Email ingestion**: Forward emails to automatically import documents.
- *Coming soon:* **SDK and API**: Build your own applications on top of Papra.
- *Coming soon:* **CLI**: Manage your documents from the command line.
- **Self-hosting**: Host your own instance of Papra using Docker or other methods.
- **Tags**: Organize your documents with tags.
- **Email ingestion**: Send/forward emails to a generated address to automatically import documents.
- **Content extraction**: Automatically extract text from images or scanned documents for search.
- **Tagging Rules**: Automatically tag documents based on custom rules.
- **Folder ingestion**: Automatically import documents from a folder.
- **CLI**: Manage your documents from the command line.
- **API, SDK and webhooks**: Build your own applications on top of Papra.
- **i18n**: Support for multiple languages.
- *Coming soon:* **Document sharing**: Share documents with others.
- *Coming soon:* **Folder ingestion**: Automatically import documents from a folder.
- *Coming soon:* **Document requests**: Generate upload links for people to add documents.
- *Coming maybe one day:* **Mobile app**: Access and upload documents on the go.
- *Coming maybe one day:* **Desktop app**: Access and upload documents from your computer.
- *Coming maybe one day:* **Browser extension**: Upload documents from your browser.
- *Coming maybe one day:* **AI**: Use AI to help you manage or tag your documents.
## Sponsors
Papra is a free and open-source project, but it is not free to run and develop. If you want to support the project, you can become a sponsor on [GitHub Sponsors](https://github.com/sponsors/corentinth) or [Buy me a coffee](https://buymeacoffee.com/cthmsst). If you are a company, you can also contact me to discuss a sponsorship.
## Self-hosting
Papra is dedicated to providing a simple yet highly configurable self-hosting experience. Our lightweight Docker image (<200MB) is compatible with multiple architectures including x86, ARM64, and ARMv7.
For a quick start, simply run the following command:
```bash
docker run -d --name papra -p 1221:1221 ghcr.io/papra-hq/papra:latest
```
Please refer to the [self-hosting documentation](https://docs.papra.app/self-hosting/using-docker) for more information and configuration options.
## Contributing
*Coming soon*
Currently, the project is in heavy development and is not yet ready for contributions as changes are frequent and the architecture is not yet finalized. However, you can star the project to follow its progress.
Contributions are welcome! Please refer to the [`CONTRIBUTING.md`](./CONTRIBUTING.md) file for guidelines on how to get started, report issues, and submit pull requests.
You can find easy-to-pick-up tasks with the [`good first issue`](https://github.com/papra-hq/papra/issues?q=sort%3Aupdated-desc%20is%3Aissue%20is%3Aopen%20label%3A%22good%20first%20issue%22) or [`PR welcome`](https://github.com/papra-hq/papra/issues?q=sort%3Aupdated-desc%20is%3Aissue%20is%3Aopen%20label%3A%22good%20first%20issue%22) labels.
## License
This project is licensed under the AGPL-3.0 License - see the [LICENSE](./LICENSE) file for details.
## Community
Join the community on [Papra's Discord server](https://papra.app/discord) to discuss the project, ask questions, or get help.
## Credits
This project is crafted with ❤️ by [Corentin Thomasset](https://corentin.tech).
@@ -76,7 +106,7 @@ If you find this project helpful, please consider [supporting my work](https://b
### Stack
Enclosed would not have been possible without the following open-source projects:
Papra would not have been possible without the following open-source projects:
- **Frontend**
- **[SolidJS](https://www.solidjs.com)**: A declarative JavaScript library for building user interfaces.
@@ -87,7 +117,19 @@ Enclosed would not have been possible without the following open-source projects
- **Backend**
- **[HonoJS](https://hono.dev/)**: A small, fast, and lightweight web framework for building APIs.
- **[Drizzle](https://orm.drizzle.team/)**: A simple and lightweight ORM for Node.js.
- **[Better Auth](https://better-auth.com/)**: A simple and lightweight authentication library for Node.js.
- And other dependencies listed in the **[server package.json](./apps/papra-server/package.json)**
- **Documentation**
- **[Astro](https://astro.build)**: A great static site generator.
- **[Starlight](https://starlight.astro.build)**: A module for Astro that provides a starting point for building documentation websites.
- **[HiDeoo/starlight-theme-rapide](https://github.com/HiDeoo/starlight-theme-rapide)**: A theme for Starlight.
- **Project**
- **[PNPM Workspaces](https://pnpm.io/workspaces)**: A monorepo management tool.
- **[Github Actions](https://github.com/features/actions)**: For CI/CD.
- **Infrastructure**
- **[Cloudflare Pages](https://pages.cloudflare.com/)**: For static site hosting.
- **[Render](https://render.com/)**: For backend hosting.
- **[Turso](https://turso.tech/)**: For production database.
### Inspiration

35
SECURITY.md Normal file
View File

@@ -0,0 +1,35 @@
# Security Policy
Security is critically important to Papra. We actively welcome responsible disclosure of any vulnerabilities found in our platform.
## Reporting a Vulnerability
If you discover a security issue within Papra, please email us directly at **security@papra.app** with the following details:
- Clear description of the vulnerability.
- Steps or proof-of-concept to reproduce the vulnerability.
- Potential impact or implications of the vulnerability.
We ask you **not to publicly disclose the vulnerability** until we have had a reasonable opportunity to address it.
## Response and Communication
We will:
- Acknowledge receipt of your report within **48 hours**.
- Investigate and provide initial feedback within **5 business days**.
- Work diligently to fix validated vulnerabilities.
- Keep you updated throughout the process until the issue is resolved.
## Security Practices at Papra
Papra follows industry-standard security practices:
- Secure hosting infrastructure provided by trusted services (Render, Cloudflare, Turso).
- Regular security and dependency updates.
- Strict access controls to production environments.
- Encryption of data in transit and at rest.
## Acknowledgments
We greatly appreciate and acknowledge all researchers who responsibly report vulnerabilities, helping us keep Papra secure.

67
apps/docs/CHANGELOG.md Normal file
View File

@@ -0,0 +1,67 @@
# @papra/docs
## 0.6.0
### Minor Changes
- [#480](https://github.com/papra-hq/papra/pull/480) [`0a03f42`](https://github.com/papra-hq/papra/commit/0a03f42231f691d339c7ab5a5916c52385e31bd2) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added documents encryption layer
## 0.5.3
### Patch Changes
- [#455](https://github.com/papra-hq/papra/pull/455) [`b33fde3`](https://github.com/papra-hq/papra/commit/b33fde35d3e8622e31b51aadfe56875d8e48a2ef) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Improved feedback message in case of invalid origin configuration
## 0.5.2
### Patch Changes
- [#405](https://github.com/papra-hq/papra/pull/405) [`3401cfb`](https://github.com/papra-hq/papra/commit/3401cfbfdc7e280d2f0f3166ceddcbf55486f574) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Introduce APP_BASE_URL to mutualize server and client base url
- [#379](https://github.com/papra-hq/papra/pull/379) [`6cedc30`](https://github.com/papra-hq/papra/commit/6cedc30716e320946f79a0a9fd8d3b26e834f4db) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Updated dependencies
- [#390](https://github.com/papra-hq/papra/pull/390) [`42bc3c6`](https://github.com/papra-hq/papra/commit/42bc3c669840eb778d251dcfb0dd96b45bf6e277) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added API endpoints documentation
- [#402](https://github.com/papra-hq/papra/pull/402) [`1d23f40`](https://github.com/papra-hq/papra/commit/1d23f4089479387d5b87dbcf6d3819f5ee14d580) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Fix invalid domain in json schema urls
## 0.5.1
### Patch Changes
- [#357](https://github.com/papra-hq/papra/pull/357) [`585c53c`](https://github.com/papra-hq/papra/commit/585c53cd9d0d7dbd517dbb1adddfd9e7b70f9fe5) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added a /llms.txt on main website
## 0.5.0
### Minor Changes
- [#337](https://github.com/papra-hq/papra/pull/337) [`1c574b8`](https://github.com/papra-hq/papra/commit/1c574b8305eb7bde4f1b75ac38a610ca0120a613) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added troubleshooting page
### Patch Changes
- [#337](https://github.com/papra-hq/papra/pull/337) [`1c574b8`](https://github.com/papra-hq/papra/commit/1c574b8305eb7bde4f1b75ac38a610ca0120a613) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added `docker compose up` command in dc generator
## 0.4.2
### Patch Changes
- [#322](https://github.com/papra-hq/papra/pull/322) [`f54b8e1`](https://github.com/papra-hq/papra/commit/f54b8e162acd6cfe92241aaa649847fc03ca5852) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Auto computes urls from the provided port
## 0.4.1
### Patch Changes
- [#320](https://github.com/papra-hq/papra/pull/320) [`8ccdb74`](https://github.com/papra-hq/papra/commit/8ccdb748349a3cacf38f032fd4d3beebce202487) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added base url configuration in docker compose generator
## 0.4.0
### Minor Changes
- [#295](https://github.com/papra-hq/papra/pull/295) [`438a311`](https://github.com/papra-hq/papra/commit/438a31171c606138c4b7fa299fdd58dcbeaaf298) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added support for custom oauth2 providers
- [#293](https://github.com/papra-hq/papra/pull/293) [`53bf93f`](https://github.com/papra-hq/papra/commit/53bf93f128b54ad1d3553e18680c87ab23155f8d) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added a papra docker-compose.yml generator
## 0.3.1
### Patch Changes
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Fix broken lint and added auto link check

View File

@@ -1,54 +1,22 @@
# Starlight Starter Kit: Basics
# Papra - Docs website
[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build)
This is the documentation website for [Papra](https://papra.app).
```
npm create astro@latest -- --template starlight
This website is built using [Astro](https://astro.build), and based on the [Starlight](https://starlight.astro.build) module styled with [HiDeoo/starlight-theme-rapide](https://github.com/HiDeoo/starlight-theme-rapide) theme.
## Development
To start the development server, run:
```bash
# Navigate to the docs directory
cd apps/docs
# Install dependencies
pnpm install
# Start the development server
pnpm dev
```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/starlight/tree/main/examples/basics)
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/withastro/starlight&create_from_path=examples/basics)
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fwithastro%2Fstarlight%2Ftree%2Fmain%2Fexamples%2Fbasics&project-name=my-starlight-docs&repository-name=my-starlight-docs)
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
## 🚀 Project Structure
Inside of your Astro + Starlight project, you'll see the following folders and files:
```
.
├── public/
├── src/
│ ├── assets/
│ ├── content/
│ │ ├── docs/
│ └── content.config.ts
├── astro.config.mjs
├── package.json
└── tsconfig.json
```
Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name.
Images can be added to `src/assets/` and embedded in Markdown with a relative link.
Static assets, like favicons, can be placed in the `public/` directory.
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
## 👀 Want to learn more?
Check out [Starlights docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).
The development server will start at [http://localhost:4321](http://localhost:4321).

View File

@@ -1,50 +1,47 @@
import { env } from 'node:process';
import starlight from '@astrojs/starlight';
import { defineConfig } from 'astro/config';
import starlightLinksValidator from 'starlight-links-validator';
import starlightThemeRapide from 'starlight-theme-rapide';
import UnoCSS from 'unocss/astro';
import { sidebar } from './src/content/navigation';
import posthogRawScript from './src/scripts/posthog.script.js?raw';
const posthogApiKey = env.POSTHOG_API_KEY;
const posthogApiHost = env.POSTHOG_API_HOST ?? 'https://eu.i.posthog.com';
const isPosthogEnabled = Boolean(posthogApiKey);
const posthogScript = posthogRawScript.replace('[POSTHOG-API-KEY]', posthogApiKey ?? '').replace('[POSTHOG-API-HOST]', posthogApiHost);
// https://astro.build/config
export default defineConfig({
site: 'https://docs.papra.app',
integrations: [
UnoCSS(),
starlight({
plugins: [starlightThemeRapide()],
plugins: [starlightThemeRapide(), starlightLinksValidator({ exclude: ['http://localhost:1221'] })],
title: 'Papra Docs',
logo: {
dark: './src/assets/logo-dark.svg',
light: './src/assets/logo-light.svg',
alt: 'Papra Logo',
},
social: {
blueSky: 'https://bsky.app/profile/papra.app',
github: 'https://github.com/papra-hq/papra',
social: [
{ href: 'https://github.com/papra-hq/papra', icon: 'github', label: 'GitHub' },
{ href: 'https://bsky.app/profile/papra.app', icon: 'blueSky', label: 'BlueSky' },
{ href: 'https://papra.app/discord', icon: 'discord', label: 'Discord' },
],
expressiveCode: {
themes: ['vitesse-black', 'vitesse-light'],
},
editLink: {
baseUrl: 'https://github.com/papra-hq/papra/edit/main/apps/docs/',
},
sidebar: [
{
label: 'Getting Started',
items: [
{ label: 'Introduction', slug: '' },
],
},
{
label: 'Self Hosting',
items: [
{ label: 'Using Docker', slug: 'self-hosting/using-docker' },
{ label: 'Using Docker Compose', slug: 'self-hosting/using-docker-compose' },
],
},
{
label: 'Configuration',
items: [
{ label: 'Environment variables', slug: 'configuration/environment-variables' },
],
},
],
sidebar,
favicon: '/favicon.svg',
head: [
// Add ICO favicon fallback for Safari.
// Add ICO favicon fallback for Safari.
{
tag: 'link',
attrs: {
@@ -53,6 +50,14 @@ export default defineConfig({
sizes: '32x32',
},
},
...(isPosthogEnabled
? [
{
tag: 'script',
content: posthogScript,
} as const,
]
: []),
],
customCss: ['./src/assets/app.css'],
}),

View File

@@ -7,6 +7,10 @@ export default antfu({
semi: true,
},
ignores: [
'src/scripts/posthog.script.js',
],
rules: {
// To allow export on top of files
'ts/no-use-before-define': ['error', { allowNamedExports: true, functions: false }],

1382
apps/docs/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,12 @@
{
"name": "docs",
"name": "@papra/docs",
"type": "module",
"version": "0.0.1-beta.2",
"version": "0.6.0",
"private": true,
"packageManager": "pnpm@10.12.3",
"description": "Papra documentation website",
"author": "Corentin Thomasset <corentinth@proton.me> (https://corentin.tech)",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
@@ -13,17 +18,29 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@astrojs/starlight": "^0.30.5",
"astro": "^5.0.2",
"@astrojs/solid-js": "^5.1.0",
"@astrojs/starlight": "^0.34.3",
"astro": "^5.8.0",
"sharp": "^0.32.5",
"starlight-theme-rapide": "^0.3.0"
"shiki": "^3.4.2",
"starlight-links-validator": "^0.16.0",
"starlight-theme-rapide": "^0.5.0",
"tailwind-merge": "^2.6.0",
"unocss-preset-animations": "^1.2.1",
"yaml": "^2.8.0",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.13.0",
"@iconify-json/tabler": "^1.1.120",
"@types/lodash-es": "^4.17.12",
"@unocss/reset": "^0.64.0",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.1",
"typescript": "^5.7.3"
"figue": "^2.2.2",
"lodash-es": "^4.17.21",
"marked": "^15.0.6",
"typescript": "^5.7.3",
"unocss": "0.65.0-beta.2"
}
}

View File

@@ -0,0 +1,3 @@
/*
X-Frame-Options: DENY
X-Content-Type-Options: nosniff

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -1,8 +1,96 @@
:root[data-theme='dark'] {
--background: 240 4% 10%;
--foreground: 0 0% 98%;
--card: 240 4% 8%;
--card-foreground: 0 0% 98%;
--popover: 240 4% 8%;
--popover-foreground: 0 0% 98%;
--primary: 77 100% 74%;
--primary-foreground: 0 0% 9%;
--secondary: 0 0% 14.9%;
--secondary-foreground: 0 0% 98%;
--muted: 0 0% 14.9%;
--muted-foreground: 0 0% 63.9%;
--accent: 0 0% 14.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--warning: 31 98% 50%;
--warning-foreground: 0 0% 98%;
--border: 345 4% 17%;
--input: 0 0% 89.8%;
--ring: 0 0% 3.9%;
--radius: 0.5rem;
--background-color: #0c0d0f!important;
--accent-color: #fff!important;
--foreground-color: #9ea3a2!important;
--sl-color-white: #f3f7f6!important;
--surface: #0a0b0d!important;
--sl-color-text: var(--foreground-color)!important;
--sl-color-text-accent: var(--accent-color)!important;
--sl-color-accent-high: var(--accent-color)!important;
--sl-color-bg: var(--background-color)!important;
--sl-rapide-ui-header-bg-color: var(--background-color)!important;
--sl-color-bg-sidebar: var(--background-color)!important;
}
.sl-link-card {
background-color: var(--surface)!important;
}
.hero .sl-link-button {
background-color: var(--sl-color-text)!important;
border-color: transparent!important;
color: var(--sl-color-bg)!important;
border-radius: 0.8rem!important;
transition: opacity 0.2s ease-in-out!important;
font-weight: 500!important;
}
:root[data-theme='dark'] .hero .sl-link-button {
background-color: var(--accent-color)!important;
color: var(--background-color)!important;
}
.hero .sl-link-button:hover {
opacity: 0.8!important;
}
#_top {
padding-top: 10px!important;
padding-bottom: 30px!important;
}
.site-title {
color:inherit !important;
gap: 0.5rem !important;
}
:root[data-theme='dark'] .site-title {
color:#fff !important;
}
.site-title img {
width: 1.8rem !important;
}
pre.shiki {
border-radius: 0.5rem!important;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 460 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#c4bdbd" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M14 3v4a1 1 0 0 0 1 1h4"/><path d="M17 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v11a2 2 0 0 1-2 2zM9 9h1m-1 4h6m-6 4h6"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M14 3v4a1 1 0 0 0 1 1h4"/><path d="M17 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v11a2 2 0 0 1-2 2zM9 9h1m-1 4h6m-6 4h6"/></g></svg>

Before

Width:  |  Height:  |  Size: 318 B

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View File

@@ -0,0 +1,154 @@
---
const iconSize = '20';
const refreshIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="${iconSize}" height="${iconSize}" viewBox="0 0 24 24"><!-- Icon from Tabler Icons by Paweł Kuna - https://github.com/tabler/tabler-icons/blob/master/LICENSE --><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 11A8.1 8.1 0 0 0 4.5 9M4 5v4h4m-4 4a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"/></svg>`;
const copyIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="${iconSize}" height="${iconSize}" viewBox="0 0 24 24"><!-- Icon from Tabler Icons by Paweł Kuna - https://github.com/tabler/tabler-icons/blob/master/LICENSE --><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M7 9.667A2.667 2.667 0 0 1 9.667 7h8.666A2.667 2.667 0 0 1 21 9.667v8.666A2.667 2.667 0 0 1 18.333 21H9.667A2.667 2.667 0 0 1 7 18.333z"/><path d="M4.012 16.737A2 2 0 0 1 3 15V5c0-1.1.9-2 2-2h10c.75 0 1.158.385 1.5 1"/></g></svg>`;
const copiedIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="${iconSize}" height="${iconSize}" viewBox="0 0 24 24"><!-- Icon from Tabler Icons by Paweł Kuna - https://github.com/tabler/tabler-icons/blob/master/LICENSE --><path fill="currentColor" d="M18.333 6A3.667 3.667 0 0 1 22 9.667v8.666A3.667 3.667 0 0 1 18.333 22H9.667A3.667 3.667 0 0 1 6 18.333V9.667A3.667 3.667 0 0 1 9.667 6zM15 2c1.094 0 1.828.533 2.374 1.514a1 1 0 1 1-1.748.972C15.405 4.088 15.284 4 15 4H5c-.548 0-1 .452-1 1v9.998c0 .32.154.618.407.805l.1.065a1 1 0 1 1-.99 1.738A3 3 0 0 1 2 15V5c0-1.652 1.348-3 3-3zm1.293 9.293L13 14.585l-1.293-1.292a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414"/></svg>`;
---
<div class="key-generator">
<div class="key-row">
<input type="text" class="key-input" readonly />
<button class="cbtn btn-refresh" title="Generate new key">
<span set:html={refreshIcon} aria-label="Refresh" />
</button>
<button class="cbtn btn-copy" title="Copy to clipboard">
<span set:html={copyIcon} aria-label="Copy" class="icon-copy" />
<span set:html={copiedIcon} aria-label="Copied" class="icon-copied hidden" />
</button>
</div>
<div class="info-text">
Generated locally in your browser - no network or server involved
</div>
</div>
<script>
function generateKey({ keyInputElement }: { keyInputElement: HTMLInputElement }) {
// Generate a 32-byte (256-bit) encryption key
const array = new Uint8Array(32);
crypto.getRandomValues(array);
// Convert to hex format
const key = Array.from(array, byte => byte.toString(16).padStart(2, '0')).join('');
keyInputElement.value = key;
}
function copyToClipboard({ keyInputElement, copyButtonElement, iconCopyElement, iconCopiedElement }: { keyInputElement: HTMLInputElement; copyButtonElement: HTMLButtonElement; iconCopyElement: HTMLSpanElement; iconCopiedElement: HTMLSpanElement }) {
keyInputElement.select();
keyInputElement.setSelectionRange(0, 64); // For mobile devices
navigator.clipboard.writeText(keyInputElement.value).then(() => {
iconCopyElement.classList.add('hidden');
iconCopiedElement.classList.remove('hidden');
copyButtonElement.disabled = true;
setTimeout(() => {
iconCopyElement.classList.remove('hidden');
iconCopiedElement.classList.add('hidden');
copyButtonElement.disabled = false;
}, 1_000);
}).catch(() => {
// Fallback for older browsers
document.execCommand('copy');
});
}
const keyGenerators = document.querySelectorAll('.key-generator');
keyGenerators.forEach((keyGenerator) => {
const refreshButtonElement = keyGenerator.querySelector('.btn-refresh')!;
const copyButtonElement = keyGenerator.querySelector<HTMLButtonElement>('.btn-copy')!;
const keyInputElement = keyGenerator.querySelector<HTMLInputElement>('.key-input')!;
const iconCopyElement = keyGenerator.querySelector<HTMLSpanElement>('.icon-copy')!;
const iconCopiedElement = keyGenerator.querySelector<HTMLSpanElement>('.icon-copied')!;
generateKey({ keyInputElement });
refreshButtonElement.addEventListener('click', () => generateKey({ keyInputElement }));
copyButtonElement.addEventListener('click', () => copyToClipboard({ copyButtonElement, keyInputElement, iconCopyElement, iconCopiedElement }));
});
</script>
<style>
.key-generator {
/* background-color: var(--ec-frm-trmBg);
border-radius: var(--ec-brdRad);
border: 1px solid var(--ec-brdCol);
font-family: monospace;
max-width: 100%; */
}
.key-row {
display: flex;
align-items: center;
}
.key-input {
flex: 1;
background-color: var(--sl-color-black);
border: 1px solid var(--sl-color-gray-5);
border-radius: 4px 0 0 4px;
padding: 8px 12px;
font-family: var(--__sl-font-mono, monospace);
font-size: 14px;
color: var(--sl-color-gray-2);
min-width: 0; /* Allow input to shrink */
border-right: none;
}
.key-input:focus {
outline: none;
border-color: var(--ec-frm-inpBrd, #4a9eff);
box-shadow: 0 0 0 2px var(--ec-frm-inpBrd, #4a9eff)33;
}
.cbtn {
background-color: var(--ec-frm-btnBg);
border: 1px solid var(--ec-brdCol);
padding: 10px 12px;
cursor: pointer;
font-size: 16px;
transition: all 0.2s ease;
min-width: 44px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
}
.cbtn.btn-copy {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-left: none;
}
.cbtn.btn-refresh {
border-radius: 0;
}
.cbtn:hover {
background-color: var(--sl-color-gray-6)!important;
}
.cbtn:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none;
}
.btn-refresh:hover:not(:disabled) {
background-color: var(--ec-frm-btnBgHover, #3a3a3a);
}
.btn-copy:hover:not(:disabled) {
background-color: var(--ec-frm-btnBgHover, #3a3a3a);
}
.info-text {
color: var(--ec-frm-txtSecondary, #888888);
font-style: italic;
margin-top: 0;
}
</style>

View File

@@ -0,0 +1,104 @@
import type { ConfigDefinition, ConfigDefinitionElement } from 'figue';
import { isArray, isEmpty, isNil } from 'lodash-es';
import { marked } from 'marked';
import { configDefinition } from '../../papra-server/src/modules/config/config';
function walk(configDefinition: ConfigDefinition, path: string[] = []): (ConfigDefinitionElement & { path: string[] })[] {
return Object
.entries(configDefinition)
.flatMap(([key, value]) => {
if ('schema' in value) {
return [{ ...value, path: [...path, key] }] as (ConfigDefinitionElement & { path: string[] })[];
}
return walk(value, [...path, key]);
});
}
const configDetails = walk(configDefinition);
function formatDoc(doc: string | undefined): string {
const coerced = (doc ?? '').trim();
if (coerced.endsWith('.')) {
return coerced;
}
return `${coerced}.`;
}
const rows = configDetails
.filter(({ path }) => path[0] !== 'env')
.map(({ doc, default: defaultValue, env, path }) => {
const isEmptyDefaultValue = isNil(defaultValue) || (isArray(defaultValue) && isEmpty(defaultValue)) || defaultValue === '';
const rawDocumentation = formatDoc(doc);
// The client baseUrl default value is overridden in the Dockerfiles
const defaultOverride = path.join('.') === 'client.baseUrl' ? 'http://localhost:1221' : undefined;
return {
path,
env,
documentation: rawDocumentation,
defaultValue: defaultOverride ?? (isEmptyDefaultValue ? undefined : defaultValue),
};
});
const mdSections = rows.map(({ documentation, env, path, defaultValue }) => `
### ${env}
${documentation}
- Path: \`${path.join('.')}\`
- Environment variable: \`${env}\`
- Default value: \`${defaultValue}\`
`.trim()).join('\n\n---\n\n');
function wrapText(text: string, maxLength = 75) {
const words = text.split(' ');
const lines: string[] = [];
let currentLine = '';
words.forEach((word) => {
if ((currentLine + word).length + 1 <= maxLength) {
currentLine += (currentLine ? ' ' : '') + word;
} else {
lines.push(currentLine);
currentLine = word;
}
});
if (currentLine) {
lines.push(currentLine);
}
return lines.map(line => `# ${line}`);
}
const fullDotEnv = rows.map(({ env, defaultValue, documentation }) => {
const isEmptyDefaultValue = isNil(defaultValue) || (isArray(defaultValue) && isEmpty(defaultValue)) || defaultValue === '';
return [
...wrapText(documentation),
`# ${env}=${isEmptyDefaultValue ? '' : defaultValue}`,
].join('\n');
}).join('\n\n');
// Dirty hack to add the same anchors to the headings as the ones generated by Starlight
const renderer = new marked.Renderer();
renderer.heading = function ({ text, depth }) {
const slug = text.toLowerCase().replace(/\W+/g, '-');
return `
<div class="sl-heading-wrapper level-h${depth}">
<h${depth} id="${slug}">${text}</h${depth}>
<a class="sl-anchor-link" href="#${slug}"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24"><path fill="currentcolor" d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 0 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 1 0-1.42-1.42Zm8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 0 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 1 0 1.42 1.42l3.88-3.89a4.49 4.49 0 0 0 0-6.33ZM8.83 15.17a1 1 0 0 0 1.1.22 1 1 0 0 0 .32-.22l4.92-4.92a1 1 0 0 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42Z"></path></svg></span><span class="sr-only">Section titled “Configuration files”</span></a>
</div>
`.trim().replace(/\n/g, '');
};
const sectionsHtml = marked.parse(mdSections, { renderer });
export { fullDotEnv, mdSections, sectionsHtml };

View File

@@ -1,38 +0,0 @@
---
title: Installing Papra using Docker
description: Self-host Papra using Docker.
slug: self-hosting/using-docker
---
Papra can be easily installed and run using Docker. This method is recommended for users who want a quick and straightforward way to deploy their own instance of Papra with minimal setup.
## Prerequisites
Before you begin, ensure that you have Docker installed on your system. You can download and install Docker from the official Docker website.
## Root and Rootless installation
Papra can be installed in two different ways:
- **Root**: This is the default installation method. It requires root privileges to run. The images are suffixed with `-root` like `corentinth/papra:latest-root` or `corentinth/papra:1.0.0-root`.
- **Rootless**: This method does not require root privileges to run. The images are suffixed with `-rootless` like `corentinth/papra:latest-rootless` or `corentinth/papra:1.0.0-rootless`.
## Image Sources
Papra Docker images are available on both **Docker Hub** and **GitHub Container Registry** (GHCR). You can choose the source that best suits your needs.
```bash frame="none"
# Using Docker Hub
docker pull corentinth/papra:latest-root
docker pull corentinth/papra:latest-rootless
# Using GitHub Container Registry
docker pull ghcr.io/papra-hq/papra:latest-root
docker pull ghcr.io/papra-hq/papra:latest-rootless
```
## Basic Usage
```bash frame="none"
docker run -d --name papra --restart unless-stopped -p 1221:1221 ghcr.io/papra-hq/papra:latest-root
```

View File

@@ -0,0 +1,113 @@
---
title: Installing Papra using Docker
description: Self-host Papra using Docker.
slug: self-hosting/using-docker
---
import { Steps } from '@astrojs/starlight/components';
Papra provides optimized Docker images for streamlined deployment. This method is recommended for users seeking a production-ready setup with minimal maintenance overhead.
- **Simplified management**: Single container handles all components
- **Lightweight**: Optimized image sizes across architectures
- **Cross-platform support**: Compatible with `arm64`, `arm/v7`, and `x86_64` systems
- **Security options**: Supports both rootless (recommended) and rootful configurations
## Prerequisites
Ensure Docker is installed on your host system. Official installation guides are available at:
[docker.com/get-started](https://www.docker.com/get-started)
Verify Docker installation with:
```bash
docker --version
```
## Quick Deployment
Launch Papra with default configuration using:
```bash
docker run -d \
--name papra \
--restart unless-stopped \
--env APP_BASE_URL=http://localhost:1221 \
-p 1221:1221 \
ghcr.io/papra-hq/papra:latest
```
This command will:
1. Pull the latest rootless image from GitHub Container Registry
2. Expose the web interface on [http://localhost:1221](http://localhost:1221)
3. Configure automatic restarts for service continuity
## Image Variants
Choose between two security models based on your requirements:
- **Rootless**: Tagged as `latest`, `latest-rootless` or `<version>-rootless` (like `0.2.1-rootless`). Recommended for most users.
- **Root**: Tagged as `latest-root` or `<version>-root` (like `0.2.1-root`). Only use if you need to run Papra as the root user.
The `:latest` tag always references the latest rootless build.
## Persistent Data Configuration
For production deployments, mount host directories to preserve application data between container updates.
<Steps>
1. Create Storage Directories
Create a directory for Papra data `./papra-data`, with `./papra-data/db` and `./papra-data/documents` subdirectories:
```bash
mkdir -p ./papra-data/{db,documents}
```
2. Launch Container with Volume Binding
```bash
docker run -d \
--name papra \
--restart unless-stopped \
--env APP_BASE_URL=http://localhost:1221 \
-p 1221:1221 \
-v $(pwd)/papra-data:/app/app-data \
--user $(id -u):$(id -g) \
ghcr.io/papra-hq/papra:latest
```
This configuration:
- Maintains data integrity across container lifecycle events
- Enforces proper file ownership without manual permission adjustments
- Stores both database files and document assets persistently
</Steps>
## Image Registries
Papra images are distributed through multiple channels:
**Primary Source (GHCR):**
```bash
docker pull ghcr.io/papra-hq/papra:latest
docker pull ghcr.io/papra-hq/papra:latest-rootless
docker pull ghcr.io/papra-hq/papra:latest-root
```
**Community Mirror (Docker Hub):**
```bash
docker pull corentinth/papra:latest
docker pull corentinth/papra:latest-rootless
docker pull corentinth/papra:latest-root
```
## Updating Papra
Regularly pull updated images and recreate containers to receive security patches and feature updates.
```bash
docker pull ghcr.io/papra-hq/papra:latest
# Or
docker pull corentinth/papra:latest
```

View File

@@ -1,6 +0,0 @@
---
title: Using Docker Compose
slug: self-hosting/using-docker-compose
---
Coming soon.

View File

@@ -0,0 +1,104 @@
---
title: Using Docker Compose
slug: self-hosting/using-docker-compose
description: Self-host Papra using Docker Compose.
---
import { Steps } from '@astrojs/starlight/components';
This guide covers how to deploy Papra using Docker Compose, ideal for users who prefer declarative configurations or plan to integrate Papra into a broader service stack.
Using Docker Compose provides:
- A single, versioned configuration file
- Easy integration with volumes, networks, and service dependencies
- Simplified updates and re-deployments
This method supports both `rootless` and `rootful` Papra images, please refer to the [Docker](/self-hosting/using-docker) guide for more information about the difference between the two. The following example uses the recommended `rootless` setup.
## Prerequisites
Ensure Docker and Docker Compose are installed on your host system. Official installation guides are available at: [docker.com/get-started](https://www.docker.com/get-started)
Verify Docker installation with:
```bash
docker --version
docker compose version
```
<Steps>
1. Initialize Project Structure
Create working directory and persistent storage subdirectories:
```bash
mkdir -p papra/app-data/{db,documents} && cd papra
```
2. Create Docker Compose file
Create a file named `docker-compose.yml` with the following content:
```yaml
services:
papra:
container_name: papra
image: ghcr.io/papra-hq/papra:latest
restart: unless-stopped
ports:
- "1221:1221"
volumes:
- ./app-data:/app/app-data
user: "${UID}:${GID}"
```
3. Start Papra
From the directory containing your `docker-compose.yml` file, run:
```bash
UID=$(id -u) GID=$(id -g) docker compose up -d
```
This command downloads the latest Papra image, sets up the container, and starts the Papra service. The `UID` and `GID` variables are used to set the user and group for the container, ensuring proper file ownership. If you don't want to use the `UID` and `GID` variables, you can replace the image with the rootful variant.
4. Access Papra
Once your container is running, access Papra via your browser at:
```
http://localhost:1221
```
Your Papra instance is now ready for use!
5. To go further
Check the [configuration](/self-hosting/configuration) page for more information on how to configure your Papra instance.
</Steps>
## Maintenance
Check logs
```bash
docker compose logs -f
```
Stop the service
```bash
docker compose down
```
Update Papra
```bash
docker compose pull
docker compose up -d
```
You're all set! Enjoy managing your documents with Papra.

View File

@@ -0,0 +1,87 @@
---
title: Configuration
slug: self-hosting/configuration
description: Configure your self-hosted Papra instance.
---
import { sectionsHtml, fullDotEnv } from '../../../config.data.ts';
import { Tabs, TabItem } from '@astrojs/starlight/components';
import { Aside } from '@astrojs/starlight/components';
import { Code } from '@astrojs/starlight/components';
Configuring your self hosted Papra allows you to customize the application to better suit your environment and requirements. This guide covers the key environment variables you can set to control various aspects of the application, including port settings, security options, and storage configurations.
## Complete .env
Here is the full configuration file that you can use to configure Papra. The variables values are the default values.
<Code code={fullDotEnv} language="env" title=".env" />
## Configuration variables
Here is the complete list of configuration variables that you can use to configure Papra. You can set these variables in the `.env` file or pass them as environment variables when running the Docker container.
<Fragment set:html={sectionsHtml} />
## Configuration files
You can configure Papra using standard environment variables or use some configuration files.
Papra uses [c12](https://github.com/unjs/c12) to load configuration files and [figue](https://github.com/CorentinTh/figue) to validate and merge environment variables and configuration files.
The [c12](https://github.com/unjs/c12) allows you to use the file format you want. The configuration file should be named `papra.config.[ext]` and should be located in the root of the project or in `/app/app-data/` directory in docker container (it can be changed using `PAPRA_CONFIG_DIR` environment variable).
The supported formats are: `json`, `jsonc`, `json5`, `yaml`, `yml`, `toml`, `js`, `ts`, `cjs`, `mjs`.
Example of configuration files:
<Tabs>
<TabItem label="papra.config.yaml">
```yaml
server:
baseUrl: https://papra.example.com
corsOrigins: *
client:
baseUrl: https://papra.example.com
auth:
secret: your-secret-key
isRegistrationEnabled: true
# ...
```
</TabItem>
<TabItem label="papra.config.json">
```json
{
"$schema": "https://docs.papra.app/papra-config-schema.json",
"server": {
"baseUrl": "https://papra.example.com"
},
"client": {
"baseUrl": "https://papra.example.com"
},
"auth": {
"secret": "your-secret-key",
"isRegistrationEnabled": true
}
}
```
<Aside type="tip">
When using an IDE, you can use the [papra-config-schema.json](/papra-config-schema.json) file to get autocompletion for the configuration file. Just add a `$schema` property to your configuration file and point it to the schema file.
```json
{
"$schema": "https://docs.papra.app/papra-config-schema.json",
// ...
}
```
</Aside>
</TabItem>
</Tabs>
You'll find the complete list of configuration variables with their environment variables equivalents and path for files in the previous section.

View File

@@ -1,6 +0,0 @@
---
title: Environment variables
slug: configuration/environment-variables
---
Coming soon.

View File

@@ -0,0 +1,77 @@
---
title: Setup Intake Emails with OwlRelay
description: Step-by-step guide to setup OwlRelay to receive emails in your Papra instance.
slug: guides/intake-emails-with-owlrelay
---
import { Aside } from '@astrojs/starlight/components';
import { Steps } from '@astrojs/starlight/components';
This guide will show you how to setup Papra to receive emails using [OwlRelay](https://owlrelay.email).
[OwlRelay](https://owlrelay.email) is an open-source agnostic email-to-http service developed by the Papra team. It's a free service that allows you to receive emails and forward them to your self-hosted Papra instance.
## Prerequisites
In order to follow this guide, your Papra instance needs to be running and accessible from the internet.
## How it works
By integrating Papra with OwlRelay, your instance will generate email addresses on OwlRelay through it's API (specifying a webhook on your Papra instance). And OwlRelay will forward the emails to your Papra instance through a webhook.
![How it works](../../../assets/owlrelay-intake-email.png)
## Setup
<Steps>
1. **Create an account on OwlRelay**
Go to [owlrelay.email](https://owlrelay.email) and create an account.
2. **Create an OwlRelay API key**
Once you have created your account, you can create an API key by going to the [API keys page](https://app.owlrelay.email/api-keys).
![OwlRelay API keys page](../../../assets/owlrelay-api-keys.png)
3. **Configure your Papra instance**
Once you have created your API key, you can configure your Papra instance to receive emails by setting the `OWLRELAY_API_KEY` and `OWLRELAY_WEBHOOK_SECRET` environment variables.
```bash
# Enable intake emails
INTAKE_EMAILS_IS_ENABLED=true
# Tell your Papra instance to use OwlRelay
INTAKE_EMAILS_DRIVER=owlrelay
# This is your OwlRelay API key
OWLRELAY_API_KEY=owrl_*****
# Set a random key that will be transmitted to OwlRelay to sign the requests,
# this is to authenticate that the emails are coming from OwlRelay
INTAKE_EMAILS_WEBHOOK_SECRET=a-random-key
# [Optional]
# This is the URL that OwlRelay will send the emails to,
# if not provided, the webhook will be inferred from the server URL.
# Can be relevant if you have multiple urls pointing to your Papra instance
# or when using tunnel services
OWLRELAY_WEBHOOK_URL=https://your-instance.com/api/intake-emails/ingest
```
4. **That's it!**
You can now generate intake emails in your Papra instance and send emails with attachments to the email address generated.
</Steps>
## Troubleshooting
If you encounter any issues, you can:
- Check the logs of your Papra instance to see if there are any errors.
- Connect to your OwlRelay account to see if the emails address are generated and emails are received.

View File

@@ -0,0 +1,132 @@
---
title: Setup Intake Emails with CF Email Workers
description: Step-by-step guide to setup a Cloudflare Email worker to receive emails in your Papra instance.
slug: guides/intake-emails-with-cloudflare-email-workers
---
import { Aside } from '@astrojs/starlight/components';
import { Steps } from '@astrojs/starlight/components';
This guide will show you how to setup a Cloudflare Email worker to receive emails in your Papra instance.
<Aside type="note">
Setting up a Papra Intake Emails with a Cloudflare Email worker requires bit of knowledge about how to setup a CF Email worker and how to configure your Papra instance to receive emails.
For a simpler solution, you can use the official [OwlRelay integration](/guides/intake-emails-with-owlrelay) guide.
</Aside>
## Prerequisites
In order to follow this guide, you need:
- a [Cloudflare](https://www.cloudflare.com/) account
- a custom domain name available on Cloudflare
- a publicly accessible Papra instance
- basic development skills (git and node.js to setup the Email Worker)
If you prefer a simpler solution, you can use the official [OwlRelay integration](/guides/intake-emails-with-owlrelay) guide.
## How it works
In order to receive emails in your Papra instance, we need to convert the email to an HTTP request. This is currently done by setting up a Cloudflare Email Worker that will forward the email to your Papra instance, basically acting as a bridge between the email and your Papra instance.
The code for the Email Worker proxy is available in the [papra-hq/email-proxy](https://github.com/papra-hq/email-proxy) repository.
![diagram](../../../assets/cf-intake-email.light.png)
## Setup
<Steps>
1. **Create the Email Worker**
There are two ways to create an Email Worker, either from the Cloudflare dashboard or by cloning and deploying the code from the [papra-hq/email-proxy](https://github.com/papra-hq/email-proxy) repository.
- **Option 1**: From the Cloudflare dashboard (easier).
- Go to the [Cloudflare dashboard](https://dash.cloudflare.com/).
- Select your domain.
- Go to the `Compute (Workers)` tab.
- Click on the `Create Worker` button.
- Name your worker (e.g. `email-proxy`).
- Copy the code from the [index.js](https://github.com/papra-hq/email-proxy/releases/latest/download/index.js) file (from the [papra-hq/email-proxy](https://github.com/papra-hq/email-proxy) repository) and paste it in the editor.
- **Option 2**: Build and deploy the Email Worker
Clone the [papra-hq/email-proxy](https://github.com/papra-hq/email-proxy) repository and deploy the worker using Wrangler cli. You will need to have Node.js v22 and pnpm installed.
```bash
# Clone the repository
git clone https://github.com/papra-hq/email-proxy.git
# Change directory
cd email-proxy
# Install dependencies
pnpm install
# Build the worker
pnpm build
# Deploy the worker (you will be prompted to login to Cloudflare through wrangler)
pnpm deploy
```
2. **Configure the Email Worker**
Add the following environment variables to the worker:
- `WEBHOOK_URL`: The email intake endpoint in your Papra instance (basically. `https://<your-papra-instance.com>/api/intake-emails/ingest`).
- `WEBHOOK_SECRET`: The secret key to authenticate the webhook requests, set the same as the `INTAKE_EMAILS_WEBHOOK_SECRET` environment variable in your Papra instance.
3. **Configure your Papra instance**
In your Papra instance, add the following environment variables:
```bash
# Enable intake emails
INTAKE_EMAILS_IS_ENABLED=true
# Tell your Papra instance that it can generate any email address from the
# domain you setup in the Email Worker as it's a wildcard redirection
INTAKE_EMAILS_DRIVER=random-username
# This is the domain from which the intake email will be generated
# eg. `domain.com`
INTAKE_EMAILS_EMAIL_GENERATION_DOMAIN=papra.email
# This is the secret key to authenticate the webhook requests
# set the same as the `WEBHOOK_SECRET` variable in the Email Worker
INTAKE_EMAILS_WEBHOOK_SECRET=a-random-key
```
4. **Configure the Email Routing**
- Go to the `Email Routing` tab in the Cloudflare dashboard.
- Follow the email onboarding process.
- Add a catch-all rule to forward all emails to the Email Worker you created.
![email-routing](../../../assets/cf-catchall-config.png)
5. **Test the setup**
In your Papra instance, go to the `Integrations` page in your organization and generates an intake email URL, setup an allowed sender (basically your email address), and copy the generated email address. Send an email to the generated address with a file attached, and check if the file is uploaded to your Papra instance.
</Steps>
## Troubleshooting
### Email Worker not receiving emails
If the Email Worker is not receiving emails, make sure that the email routing is correctly configured in the Cloudflare dashboard.
Also, check the [logs in the Email Worker dashboard](https://developers.cloudflare.com/workers/observability/logs/real-time-logs/) for any errors.
### Papra instance returning 403 Forbidden
If your Papra instance is returning a `403 Forbidden` error, make sure that the `INTAKE_EMAILS_IS_ENABLED` environment variable is set to `true` in your Papra instance.
### Papra instance is returning 401 Unauthorized
If your Papra instance is returning a `401 Unauthorized` error, make sure that the `INTAKE_EMAILS_WEBHOOK_SECRET` environment variable is correctly set in your Papra instance.
### The worker is not forwarding the email to the Papra instance
Make sure that the `WEBHOOK_URL` and `WEBHOOK_SECRET` environment variables are correctly set in the Email Worker, and the `INTAKE_EMAILS_WEBHOOK_SECRET` environment variable is correctly set in your Papra instance.
Also, check the [logs in the Email Worker dashboard](https://developers.cloudflare.com/workers/observability/logs/real-time-logs/) or the logs in your Papra instance for any errors.

View File

@@ -0,0 +1,105 @@
---
title: Setup Ingestion Folder
description: Step-by-step guide to setup an ingestion folder to automatically ingest documents into your Papra instance.
slug: guides/setup-ingestion-folder
---
import { Steps } from '@astrojs/starlight/components';
import { Aside } from '@astrojs/starlight/components';
import { FileTree } from '@astrojs/starlight/components';
The ingestion folder is a special folder that is watched by Papra for new files. When a new file is added to the ingestion folder, Papra will automatically import it.
## Multi-Organization Structure
Papra supports multiple organizations within a single instance, each requiring a dedicated ingestion folder. The ingestion system uses a hierarchical structure where:
<FileTree>
- ingestion-folder
- org_abc123
- document.pdf
- report.docx
- org_def456
- file.txt
- foo.txt # Ignored as it's not in an organization
</FileTree>
This allows you to have a single instance of Papra watching multiple organizations' ingestion folders.
<Aside>
Files and folders that are within the `ingestion-root-folder` but not within an organization folder are ignored.
</Aside>
## Setup
Add the following to your `docker-compose.yml` file:
```yaml title="docker-compose.yml" ins={9,12}
services:
papra:
container_name: papra
image: ghcr.io/papra-hq/papra:latest
restart: unless-stopped
ports:
- "1221:1221"
environment:
- INGESTION_FOLDER_IS_ENABLED=true
volumes:
- ./app-data:/app/app-data
- <your-ingestion-folder>:/app/ingestion
user: "${UID}:${GID}"
```
Then add files to a folder named with the organization id (available in Papra URL, e.g. `https://papra.example.com/organizations/<organization-id>`, the format is `org_<random>`).
```bash
mkdir -p <your-ingestion-folder>/<org_id>
touch <your-ingestion-folder>/<org_id>/hello.txt
```
## Post-processing
Once a file has been ingested in your Papra organization, you can configure what happens to it by setting the `INGESTION_FOLDER_POST_PROCESSING_STRATEGY` environment variable. There are two strategies:
- `delete`: The file is deleted from the ingestion folder (default strategy)
- `move`: The file is moved to the `INGESTION_FOLDER_POST_PROCESSING_MOVE_FOLDER_PATH` folder (default: `./ingestion-done`)
Note that the `INGESTION_FOLDER_POST_PROCESSING_MOVE_FOLDER_PATH` path is relative to the organization ingestion folder.
So with `INGESTION_FOLDER_POST_PROCESSING_MOVE_FOLDER_PATH=ingestion-done`, the file `<ingestion-folder>/<org_id>/file.pdf` will be moved to `<ingestion-folder>/<org_id>/ingestion-done/file.pdf` once ingested.
## Safeguards
To avoid accidental data loss, if for some reason the ingestion fails, the file is moved to the `INGESTION_FOLDER_ERROR_FOLDER_PATH` folder (default: `./ingestion-error`).
<Aside>
As for the `INGESTION_FOLDER_POST_PROCESSING_MOVE_FOLDER_PATH`, the `INGESTION_FOLDER_ERROR_FOLDER_PATH` path is relative to the organization ingestion folder.
</Aside>
## Polling
By default, Papra uses native file watchers to detect changes in the ingestion folder. On some OS (like Windows), this can be flaky with Docker. To avoid this issue, you can enable polling by setting the `INGESTION_FOLDER_WATCHER_USE_POLLING` environment variable to `true`.
The default polling interval is 2 seconds, you can change it by setting the `INGESTION_FOLDER_WATCHER_POLLING_INTERVAL_MS` environment variable.
```yaml title="docker-compose.yml" ins={2-3}
environment:
- INGESTION_FOLDER_WATCHER_USE_POLLING=true
- INGESTION_FOLDER_WATCHER_POLLING_INTERVAL_MS=2000
```
## Configuration
You can find the list of all configuration options in the [configuration reference](/self-hosting/configuration), the related variables are prefixed with `INGESTION_FOLDER_`.
## Edge cases and behaviors
- The ingestion folder is watched recursively.
- Files in the ingestion folder `done` and `error` folders are ignored.
- When a file from the ingestion folder is already present (and not in the trash) in the organization, no ingestion is done, but the file is post-processed (deleted or moved) as successfully ingested.
- When a file is moved to "done" or "error" folder
- If a file with the same name and same content is present in the destination folder, the original file is deleted
- If a file with the same name but different content is present in the destination folder, the original file is moved and a timestamp is added to the filename
- Some files are ignored by default (`.DS_Store`, `Thumbs.db`, `desktop.ini`, etc.) see [ingestion-folders.constants.ts](https://github.com/papra-hq/papra/blob/main/apps/papra-server/src/modules/ingestion-folders/ingestion-folders.constants.ts) for the list of ignored files and patterns. You can change this by setting the `INGESTION_FOLDER_IGNORED_PATTERNS` environment variable.

View File

@@ -0,0 +1,181 @@
---
title: Setup Custom OAuth2 Providers
description: Step-by-step guide to setup custom OAuth2 providers for authentication in your Papra instance.
slug: guides/setup-custom-oauth2-providers
---
import { Aside } from '@astrojs/starlight/components';
import { Steps } from '@astrojs/starlight/components';
This guide will show you how to configure custom OAuth2 providers for authentication in your Papra instance.
<Aside type="note">
Papra's OAuth2 implementation is based on the [Better Auth Generic OAuth plugin](https://www.better-auth.com/docs/plugins/generic-oauth). For more detailed information about the configuration options and advanced usage, please refer to their documentation.
</Aside>
## Prerequisites
In order to follow this guide, you need:
- A custom OAuth2 provider
- An accessible Papra instance
- Basic understanding of OAuth2 flows
## Configuration
To set up custom OAuth2 providers, you'll need to configure the `AUTH_PROVIDERS_CUSTOMS` environment variable with an array of provider configurations. Here's an example:
```bash
AUTH_PROVIDERS_CUSTOMS='[
{
"providerId": "custom-oauth2",
"providerName": "Custom OAuth2",
"providerIconUrl": "https://api.iconify.design/tabler:login-2.svg",
"clientId": "your-client-id",
"clientSecret": "your-client-secret",
"type": "oidc",
"discoveryUrl": "https://your-provider.tld/.well-known/openid-configuration",
"scopes": ["openid", "profile", "email"]
}
]'
```
Each provider configuration supports the following fields:
- `providerId`: A unique identifier for the OAuth provider
- `providerName`: The display name of the provider
- `providerIconUrl`: URL of the icon to display (optional) you can use a base64 encoded image or an url to a remote image.
- `clientId`: OAuth client ID
- `clientSecret`: OAuth client secret
- `type`: Type of OAuth flow ("oauth2" or "oidc")
- `discoveryUrl`: URL to fetch OAuth 2.0 configuration (recommended for OIDC providers)
- `authorizationUrl`: URL for the authorization endpoint (required for OAuth2 if not using discoveryUrl)
- `tokenUrl`: URL for the token endpoint (required for OAuth2 if not using discoveryUrl)
- `userInfoUrl`: URL for the user info endpoint (required for OAuth2 if not using discoveryUrl)
- `scopes`: Array of OAuth scopes to request
- `redirectURI`: Custom redirect URI (optional)
- `responseType`: OAuth response type (defaults to "code")
- `prompt`: Controls the authentication experience ("select_account", "consent", "login", "none")
- `pkce`: Whether to use PKCE (Proof Key for Code Exchange)
- `accessType`: Access type for the authorization request
## Setup
<Steps>
1. **Configure your OAuth2 Provider**
First, you'll need to register your application with your OAuth2 provider. This typically involves:
- Creating a new application in your provider's dashboard
- Setting up the redirect URI (usually `https://<your-papra-instance>/api/auth/oauth2/callback/:providerId`)
- Obtaining the client ID and client secret
- Configuring the required scopes
2. **Configure Papra**
Add the `AUTH_PROVIDERS_CUSTOMS` environment variable to your Papra instance. Here are some examples:
For OIDC providers:
```json
[
{
"providerId": "custom-oauth2",
"providerName": "Custom OAuth2",
"providerIconUrl": "https://api.iconify.design/tabler:login-2.svg",
"clientId": "your-client-id",
"clientSecret": "your-client-secret",
"type": "oidc",
"discoveryUrl": "https://your-provider.tld/.well-known/openid-configuration",
"scopes": ["openid", "profile", "email"]
}
]
```
For standard OAuth2 providers:
```json
[
{
"providerId": "custom-oauth2",
"providerName": "Custom OAuth2",
"providerIconUrl": "https://api.iconify.design/tabler:login-2.svg",
"clientId": "your-client-id",
"clientSecret": "your-client-secret",
"type": "oauth2",
"authorizationUrl": "https://your-provider.tld/oauth2/authorize",
"tokenUrl": "https://your-provider.tld/oauth2/token",
"userInfoUrl": "https://your-provider.tld/oauth2/userinfo",
"scopes": ["profile", "email"]
}
]
```
<Aside type="note">
The `discoveryUrl` is recommended for OIDC providers as it automatically configures all the necessary endpoints.
For standard OAuth2 providers, you'll need to specify the endpoints manually.
</Aside>
3. **Test the Configuration**
- Restart your Papra instance to apply the changes
- Go to the login page
- You should see your custom OAuth2 providers as login options
- Try logging in with a test account
</Steps>
## Troubleshooting
### Providers Not Showing Up
If your OAuth2 providers are not showing up on the login page:
- Check that the JSON configuration in `AUTH_PROVIDERS_CUSTOMS` is valid
- Ensure all required fields are provided
- Verify that the provider IDs are unique
### Authentication Fails
If authentication fails:
- Verify that the redirect URI is correctly configured in your OAuth2 provider
- Check that the client ID and client secret are correct
- Ensure the required scopes are properly configured
- Check the Papra logs for any error messages
### OIDC Discovery Issues
If you're using OIDC and experiencing issues:
- Verify that the `discoveryUrl` is accessible
- Check that the provider supports OIDC discovery
- Ensure the provider's configuration is properly exposed through the discovery endpoint
## Security Considerations
<Aside type="caution">
Always use HTTPS for your OAuth2 endpoints and ensure your client secret is kept secure.
Consider using PKCE (Proof Key for Code Exchange) for additional security by setting `pkce: true` in your configuration.
</Aside>
## Multiple Providers
You can configure multiple custom OAuth2 providers by adding them to the array:
```json
[
{
"providerId": "custom-oauth2-1",
"providerName": "Custom OAuth2 Provider 1",
"type": "oidc",
"discoveryUrl": "https://provider1.tld/.well-known/openid-configuration",
"clientId": "client-id-1",
"clientSecret": "client-secret-1",
"scopes": ["openid", "profile", "email"]
},
{
"providerId": "custom-oauth2-2",
"providerName": "Custom OAuth2 Provider 2",
"type": "oidc",
"discoveryUrl": "https://provider2.tld/.well-known/openid-configuration",
"clientId": "client-id-2",
"clientSecret": "client-secret-2",
"scopes": ["openid", "profile", "email"]
}
]
```

View File

@@ -0,0 +1,448 @@
---
title: Setup Document Encryption
description: Step-by-step guide to enable and configure document encryption in Papra for enhanced data security.
slug: guides/document-encryption
---
import { Steps } from '@astrojs/starlight/components';
import { Aside } from '@astrojs/starlight/components';
import { Code } from '@astrojs/starlight/components';
import { Tabs, TabItem } from '@astrojs/starlight/components';
import EncryptionKeyGenerator from '../../../components/encryption-key-generator.astro';
<Aside type="note">
Document encryption is available in Papra v0.9.0 and above.
</Aside>
Document encryption in Papra provides end-to-end protection for your stored documents using industry-standard AES-256-GCM encryption. This guide will walk you through enabling encryption, understanding how it works, and managing encryption keys.
## How Encryption Works
Papra uses a two-layer encryption approach that provides both security and flexibility:
### Key Encryption Architecture
1. **Key Encryption Key (KEK)**: A master key that you provide, used to encrypt document-specific keys
2. **Document Encryption Key (DEK)**: Unique per-document keys that actually encrypt your files
3. **File Encryption**: Each document gets its own random 256-bit encryption key for maximum security
<div class="dark:block hidden">
![Key Encryption Architecture](../../../assets/docs/encryption-schema-light.png)
</div>
<div class="dark:hidden block">
![Key Encryption Architecture](../../../assets/docs/encryption-schema-dark.png)
</div>
### Encryption Flow
<Steps>
1. **Document Upload**: When you upload a document, Papra generates a unique 256-bit encryption key (DEK)
2. **File Encryption**: The document is encrypted using AES-256-GCM with the DEK
3. **Key Wrapping**: The DEK is encrypted (wrapped) using your Key Encryption Key (KEK)
4. **Storage**: The encrypted document and wrapped DEK are stored separately - the file in your storage backend, the wrapped key in the database along with the document metadata
5. **Retrieval**: When accessing a document, Papra unwraps the DEK using your KEK, then decrypts the file stream
</Steps>
<Aside type="note">
This architecture means that even if someone gains access to your file storage, they cannot decrypt documents without access to both your document records and your KEK, in other words, without your database and your environment variables.
</Aside>
## Quick Setup
<Steps>
1. **Generate an encryption key**
Generate a secure random 256-bit key in hex format, using this generator or OpenSSL command.
<Tabs>
<TabItem label="Key generator">
<EncryptionKeyGenerator />
</TabItem>
<TabItem label="OpenSSL command">
```bash
openssl rand -hex 32
```
This will output something like: `0deba5534bd70548de92d1fd4ae37cf901cca3dc20589b7e022ddb680c98e50c`
</TabItem>
</Tabs>
2. **Enable encryption in your configuration**
Add the following environment variables to your `.env` file or Docker configuration:
```bash
DOCUMENT_STORAGE_ENCRYPTION_IS_ENABLED=true
DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS=<your-encryption-key>
```
3. **Restart Papra**
Restart your Papra instance to apply the encryption settings.
</Steps>
## Configuration Options
### Environment Variables
| Variable | Description | Required |
|----------|-------------|----------|
| `DOCUMENT_STORAGE_ENCRYPTION_IS_ENABLED` | Enable/disable document encryption | No |
| `DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS` | Key encryption keys for document encryption | Yes (if encryption enabled) |
### Key Formats
<Tabs>
<TabItem label="Single Key">
For simple setups, provide a single 32-byte hex string:
```bash
DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS=<your-encryption-key>
```
This key will automatically be assigned version `1`.
</TabItem>
<TabItem label="Multiple Keys">
For key rotation and advanced setups, provide versioned keys:
```bash
DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS=1:<your-encryption-key-1>,2:<your-encryption-key-2>
```
- The highest version key encrypts new documents
- All keys can decrypt existing documents
- Versions can be any alphabetically sortable string
- Order in the list doesn't matter
</TabItem>
</Tabs>
## Docker Compose Setup
Add encryption configuration to your Docker Compose file:
<Tabs>
<TabItem label="Environment Variables">
```yaml title="docker-compose.yml" ins={8-9}
services:
papra:
container_name: papra
image: ghcr.io/papra-hq/papra:latest
restart: unless-stopped
environment:
# ... other environment variables ...
- DOCUMENT_STORAGE_ENCRYPTION_IS_ENABLED=true
- DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS=<your-encryption-key>
volumes:
- ./app-data:/app/app-data
ports:
- "1221:1221"
```
</TabItem>
<TabItem label="Config File">
```yaml title="docker-compose.yml"
services:
papra:
container_name: papra
image: ghcr.io/papra-hq/papra:latest
restart: unless-stopped
volumes:
- ./app-data:/app/app-data
- ./papra.config.yaml:/app/app-data/papra.config.yaml
ports:
- "1221:1221"
```
```yaml title="./papra.config.yaml"
documentsStorage:
encryption:
isEncryptionEnabled: true
documentKeyEncryptionKeys: "<your-encryption-key>"
```
</TabItem>
</Tabs>
## Key Management
### Key Rotation
Key rotation allows you to replace encryption keys without losing access to existing documents:
<Steps>
1. **Generate a new key**
```bash
openssl rand -hex 32
```
2. **Add the new key with a higher version**
```bash
DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS=1:old_key_here,2:new_key_here
```
3. **Restart Papra**
New documents will use the highest version key (version 2), while existing documents remain accessible with the old key.
4. **Optional: Remove old keys**
Once you're confident all documents are using the new key, you can remove old keys. However, this will make any documents encrypted with old keys inaccessible.
</Steps>
<Aside type="caution">
Never remove a key version if there are still documents encrypted with that key, unless you're certain you no longer need access to those documents.
</Aside>
### Key Security Best Practices
1. **Store keys securely**: Use a secrets management system in production
2. **Use different keys per environment**: Development, staging, and production should have separate keys
3. **Backup your keys**: Loss of encryption keys means permanent loss of document access
4. **Rotate keys periodically**: Consider rotating keys annually or after security incidents
5. **Limit key access**: Only authorized personnel should have access to encryption keys
### Docker Secrets Example
For production environments, store your encryption keys securely using external secret management systems or secure file systems, and reference them via environment variables.
## Compatibility and Migration
### Enabling Encryption on Existing Instances
When you enable encryption on a Papra instance that already has documents:
- **Existing documents**: Remain unencrypted but accessible
- **New documents**: Are encrypted using the current KEK
- **Mixed storage**: Papra automatically handles both encrypted and unencrypted documents
### Migrating Existing Documents to Encrypted Format
If you want to encrypt all existing unencrypted documents after enabling encryption, Papra provides a maintenance command to handle this migration automatically.
<Aside type="caution">
It's advised to make a backup of your documents and database before running the migration.
</Aside>
<Steps>
1. **Verify encryption is properly configured**
Ensure encryption is enabled and working for new documents before migrating existing ones:
```bash
# Check that your configuration includes:
DOCUMENT_STORAGE_ENCRYPTION_IS_ENABLED=true
DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS=<your-key>
```
2. **Run dry-run to preview changes**
<Tabs>
<TabItem label="Docker Compose">
```bash
# Run dry-run inside the Docker container
docker compose exec papra pnpm maintenance:encrypt-all-documents --dry-run
```
</TabItem>
<TabItem label="Docker">
```bash
# Run dry-run inside the Docker container
docker exec -it papra pnpm maintenance:encrypt-all-documents --dry-run
```
</TabItem>
<TabItem label="Source Installation">
```bash
# From your Papra server directory
pnpm maintenance:encrypt-all-documents --dry-run
```
</TabItem>
</Tabs>
This will show you:
- How many documents will be encrypted
- Which documents will be affected
- No actual encryption will be performed
4. **Run the migration**
<Tabs>
<TabItem label="Docker Compose">
```bash
# Run migration inside the Docker container
docker compose exec papra pnpm maintenance:encrypt-all-documents
```
</TabItem>
<TabItem label="Docker">
```bash
# Run migration inside the Docker container
docker exec -it papra pnpm maintenance:encrypt-all-documents
```
</TabItem>
<TabItem label="Source Installation">
```bash
# From your Papra server directory
pnpm maintenance:encrypt-all-documents
```
</TabItem>
</Tabs>
The command will:
- Find all unencrypted documents
- Encrypt each document using your configured KEK
- Update database records with encryption metadata
- Remove original unencrypted files from storage
- Provide progress logging throughout the process
5. **Verify migration success**
After migration:
- Test document access through the Papra interface
- Check that storage files are now encrypted (should start with `PP01`)
- Verify all documents are accessible and downloadable
</Steps>
<Aside type="tip">
**Migration Performance**
- The migration processes documents sequentially to ensure reliability
- Large document collections may take considerable time
- Monitor disk space during migration (temporary storage overhead)
- Consider running during maintenance windows for production systems
</Aside>
#### Troubleshooting Migration Issues
**Migration fails with "Document encryption is not enabled"**
- Verify `DOCUMENT_STORAGE_ENCRYPTION_IS_ENABLED=true` is set
- Restart Papra after configuration changes
**Migration fails with "Document encryption keys are not set"**
- Ensure `DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS` contains valid keys
- Verify key format is correct (64-character hex string)
**Migration stops or fails partway**
- Check available disk space
- Review Papra logs for specific error messages
- Restore from backup and retry after fixing the issue
**Documents inaccessible after migration**
- Verify encryption keys are still properly configured
- Check that Papra can access your storage backend
- Restore from backup if necessary
### Disabling Encryption
If you disable encryption:
- **Encrypted documents**: Remain encrypted but are automatically decrypted when accessed (if KEK is still available)
- **New documents**: Are stored unencrypted
- **Data loss risk**: If you remove the KEK while encrypted documents exist, those documents become inaccessible
<Aside type="caution">
Disabling encryption doesn't automatically decrypt existing documents in storage. They remain encrypted and require the KEK for access.
</Aside>
### Storage Driver Compatibility
The encryption layer sits between Papra and your chosen storage driver, providing consistent encryption regardless of where files are stored (S3, Azure Blob Storage, File System, etc.).
## Technical Details
### Encryption Algorithm
- **Algorithm**: AES-256-GCM (Authenticated Encryption)
- **Key size**: 256 bits (32 bytes)
- **IV size**: 96 bits (12 bytes)
- **Authentication tag**: 128 bits (16 bytes)
### File Format
Encrypted files use a custom format with a magic number for identification:
```
| Magic (4 bytes) | IV (12 bytes) | Encrypted Data | Auth Tag (16 bytes) |
```
- **Magic number**: `PP01` - identifies Papra encrypted files
- **IV**: Initialization vector for GCM mode
- **Encrypted Data**: The actual encrypted document content
- **Auth Tag**: Authentication tag for integrity verification
### Performance Considerations
- **Streaming encryption**: Files are encrypted/decrypted in streams, minimizing memory usage
- **No size overhead**: Minimal storage overhead (32 bytes per file for headers)
- **CPU impact**: Modern processors handle AES encryption efficiently
## Troubleshooting
### Common Issues
**"Document KEK required" error**
- Ensure `DOCUMENT_STORAGE_DOCUMENT_KEY_ENCRYPTION_KEYS` is set
- Verify the key format is correct (64 character hex string)
**"Document KEK not found" error**
- The document was encrypted with a key version that's no longer available
- Add the missing key version back to your configuration
**"Unsupported encryption algorithm" error**
- The document uses an encryption algorithm not supported by this Papra version
- This shouldn't occur in normal operation
**Performance issues**
- Consider your storage driver's performance characteristics
- Encryption adds minimal overhead, but network/disk I/O remains the bottleneck
### Verification
To verify encryption is working:
1. Upload a document after enabling encryption
2. Check your storage backend - the file should not be readable as plain text
3. The file should start with the magic number `PP01` if you examine it directly
<Aside>
You can find complete configuration options in the [configuration reference](/self-hosting/configuration). Look for variables prefixed with `DOCUMENT_STORAGE_ENCRYPTION_`.
</Aside>
## Security Considerations
### Threat Model
Document encryption in Papra protects against:
- **Storage compromise**: If your file storage is breached, documents remain encrypted
- **Database-only breach**: Without the KEK, wrapped DEKs cannot be unwrapped
- **Configuration exposure**: If the KEK is exposed, the files remain encrypted as long as the DEK are not exposed
### Limitations
Encryption does not protect against:
- **Application-level access**: Users with document access can view decrypted content
- **Memory dumps**: Decrypted content exists temporarily in application memory
- **Key and database compromise**: If KEKs are stolen, all DEKs can be decrypted if the database is compromised
- **Full system compromise**: If the entire Papra instance is compromised, documents can be accessed

View File

@@ -0,0 +1,40 @@
---
title: Troubleshooting
description: Troubleshooting guide for Papra
slug: resources/troubleshooting
---
You can find here some common issues and how to fix them. If you encounter an issue that is not listed here, please [open an issue](https://github.com/papra-hq/papra/issues/new/choose) or [join our Discord](https://papra.app/discord).
## Failed to ensure that the database directory exists
Upon starting the server or a script, you may encounter this error
```
Failed to ensure that the database directory exists, error while creating the directory
Error: EACCES: permission denied, mkdir './app-data/db'
```
Before accessing the DB sqlite file, the server will try to ensure that the database directory exists, and if it doesn't, it try will create it. But in case of insufficient permissions, it will fail.
To fix this, you can either:
- Create the directory manually `mkdir -p <your-app-data-dir>/db`
- Ensure that the directory is owned by the user running the container
- Run the server as root (not recommended)
## Invalid application origin
Papra ensures [CSRF](https://en.wikipedia.org/wiki/Cross-site_request_forgery) protection by validating the Origin header in requests. This check ensures that requests originate from the application or a trusted source. Any request that does not originate from a trusted origin will be rejected.
If you are self-hosting Papra, you may encounter an error stating that the application origin is invalid while trying to login or register.
To fix this, you can either:
- Update the `APP_BASE_URL` environment variable to match the url of your application (e.g. `https://papra.my-homelab.tld`)
- Add the current url to the `TRUSTED_ORIGINS` environment variable if you need to allow multiple origins, comma separated. By default the `TRUSTED_ORIGINS` is set to the `APP_BASE_URL`
- If you are using a reverse proxy, you may need to add the url to the `TRUSTED_ORIGINS` environment variable

View File

@@ -0,0 +1,89 @@
---
title: CLI Documentation
description: Learn how to use the Papra CLI to interact with your Papra instance from the command line.
slug: resources/cli
---
The Papra CLI is a command-line interface tool that helps you interact with the Papra platform from your terminal.
## Installation
For the moment, the CLI is only available as an NPM package.
```bash
# using pnpm
pnpm i -g @papra/cli
# or using npm
npm i -g @papra/cli
# or using yarn
yarn add -g @papra/cli
```
The CLI will be installed globally, so you can use it from anywhere in your system with the `papra` command.
## Configuration
Before using the CLI, you need to configure it with your API credentials.
### Initial Setup
To initialize the configuration, run:
```bash
papra config init
```
This command will prompt you for:
- **Instance URL**: Your Papra instance URL (e.g., `https://api.papra.app`)
- **API Key**: Your personal API key (can be created in your User Settings)
### Managing Configuration
You can manage your configuration using the following commands:
- `papra config list`: View your current configuration
- `papra config set api-key`: Set or update your API key
- `papra config set api-url`: Set or update your instance URL
- `papra config set default-org-id`: Set a default organization ID
### Organization IDs
Since Papra supports multiple organizations, you may need to specify the organization ID when importing documents for example. If want, you can set a default organization ID in your configuration.
```bash
papra config set default-org-id <organization-id>
papra documents import <file-path>
# or
papra documents import -o <organization-id> <file-path>
```
## Available Commands
### Importing documents
The `import` command allows you to import a document into your Papra organization.
```bash
papra documents import -o <organization-id> <file-path>
```
## Getting Help
For more information about any command, you can use the `--help` flag:
```bash
papra --help
papra config --help
papra documents --help
```
## About the CLI
The CLI is built using the [citty](https://github.com/unjs/citty) framework and the [Papra TS SDK](https://github.com/papra-hq/papra/tree/main/packages/api-sdk).

View File

@@ -0,0 +1,210 @@
---
title: API Endpoints
description: The list and details of all the API endpoints available in Papra.
slug: resources/api-endpoints
---
## Authentication
The public API uses a bearer token for authentication. You can get a token by logging to your Papra account and creating an API token.
<details>
<summary>How to create an API token</summary>
![API Token](../../../assets/api-key-creation-1.png)
![API Token](../../../assets/api-key-creation-2.png)
</details>
## Endpoints
### Create a document
**POST** `/api/organizations/:organizationId/documents`
Create a new document in the organization.
- Required API key permissions: `documents:create`
- Body (form-data)
- `file`: The file to upload.
- `ocrLanguages`: (optional) The languages to use for OCR.
- Response (JSON)
- `document`: The created document.
### List documents
**GET** `/api/organizations/:organizationId/documents`
List all documents in the organization.
- Required API key permissions: `documents:read`
- Query parameters
- `pageIndex`: (optional, default: 0) The page index to start from.
- `pageSize`: (optional, default: 100) The number of documents to return.
- `tags`: (optional) The tags IDs to filter by.
- Response (JSON)
- `documents`: The list of documents.
- `documentsCount`: The total number of documents.
### List deleted documents (trash)
**GET** `/api/organizations/:organizationId/documents/deleted`
List all deleted documents (in trash) in the organization.
- Required API key permissions: `documents:read`
- Query parameters
- `pageIndex`: (optional, default: 0) The page index to start from.
- `pageSize`: (optional, default: 100) The number of documents to return.
- Response (JSON)
- `documents`: The list of deleted documents.
- `documentsCount`: The total number of deleted documents.
### Get a document
**GET** `/api/organizations/:organizationId/documents/:documentId`
Get a document by its ID.
- Required API key permissions: `documents:read`
- Response (JSON)
- `document`: The document.
### Delete a document
**DELETE** `/api/organizations/:organizationId/documents/:documentId`
Delete a document by its ID.
- Required API key permissions: `documents:delete`
- Response: empty (204 status code)
### Get a document file
**GET** `/api/organizations/:organizationId/documents/:documentId/file`
Get a document file content by its ID.
- Required API key permissions: `documents:read`
- Response: The document file stream.
### Search documents
**GET** `/api/organizations/:organizationId/documents/search`
Search documents in the organization by name or content.
- Required API key permissions: `documents:read`
- Query parameters
- `searchQuery`: The search query.
- `pageIndex`: (optional, default: 0) The page index to start from.
- `pageSize`: (optional, default: 100) The number of documents to return.
- Response (JSON)
- `documents`: The list of documents.
### Get organization documents statistics
**GET** `/api/organizations/:organizationId/documents/statistics`
Get the statistics (number of documents and total size) of the documents in the organization.
- Required API key permissions: `documents:read`
- Response (JSON)
- `organizationStats`: The organization documents statistics.
- `documentsCount`: The total number of documents.
- `documentsSize`: The total size of the documents.
### Update a document
**PATCH** `/api/organizations/:organizationId/documents/:documentId`
Change the name or content (for search purposes) of a document.
- Required API key permissions: `documents:update`
- Body (form-data)
- `name`: (optional) The document name.
- `content`: (optional) The document content.
- Response (JSON)
- `document`: The updated document.
### Get document activity
**GET** `/api/organizations/:organizationId/documents/:documentId/activity`
Get the activity log of a document.
- Required API key permissions: `documents:read`
- Query parameters
- `pageIndex`: (optional, default: 0) The page index to start from.
- `pageSize`: (optional, default: 100) The number of documents to return.
- Response (JSON)
- `activities`: The list of activities.
### Create a tag
**POST** `/api/organizations/:organizationId/tags`
Create a new tag in the organization.
- Required API key permissions: `tags:create`
- Body (form-data)
- `name`: The tag name.
- `color`: The tag color in hex format (e.g. `#000000`).
- `description`: (optional) The tag description.
- Response (JSON)
- `tag`: The created tag.
### List tags
**GET** `/api/organizations/:organizationId/tags`
List all tags in the organization.
- Required API key permissions: `tags:read`
- Response (JSON)
- `tags`: The list of tags.
### Update a tag
**PUT** `/api/organizations/:organizationId/tags/:tagId`
Change the name, color or description of a tag.
- Required API key permissions: `tags:update`
- Body
- `name`: (optional) The tag name.
- `color`: (optional) The tag color in hex format (e.g. `#000000`).
- `description`: (optional) The tag description.
- Response (JSON)
- `tag`: The updated tag.
### Delete a tag
**DELETE** `/api/organizations/:organizationId/tags/:tagId`
Delete a tag by its ID.
- Required API key permissions: `tags:delete`
- Response: empty (204 status code)
### Add a tag to a document
**POST** `/api/organizations/:organizationId/documents/:documentId/tags`
Associate a tag to a document.
- Required API key permissions: `tags:read` and `documents:update`
- Body
- `tagId`: The tag ID.
- Response: empty (204 status code)
### Remove a tag from a document
**DELETE** `/api/organizations/:organizationId/documents/:documentId/tags/:tagId`
Remove a tag from a document.
- Required API key permissions: `tags:read` and `documents:update`
- Response: empty (204 status code)

View File

@@ -1,8 +0,0 @@
---
title: Papra docs
description: Papra documentation.
---
**WIP**: This is still a work in progress. The documentation is not yet complete.
Papra is a minimalistic document management and archiving platform. It is designed to be simple to use and accessible to everyone. Papra is a plateform for long-term document storage and management, like a digital archive for your documents.

View File

@@ -0,0 +1,74 @@
---
title: Papra documentation
description: Documentation for Papra, the minimalistic document archiving platform.
hero:
title: Papra Docs
tagline: Documentation for Papra, the minimalistic document archiving platform.
image:
alt: A glittering, brightly colored logo
dark: ../../assets/logo-dark.svg
light: ../../assets/logo-light.svg
actions:
- text: Self-hosting guide
link: /self-hosting/using-docker
icon: right-arrow
variant: primary
---
import { LinkCard } from '@astrojs/starlight/components';
Welcome to the official documentation of Papra, an intuitive open-source document management and archiving platform. It is designed to be simple to use and accessible to everyone. Papra is a plateform for long-term document storage and management, like a digital archive for your documents.
Papra can be used in two different ways:
- As a **self-hosted solution**, using the fully packaged lightweight [Docker image](/self-hosting/using-docker).
- As a **fully managed solution**, using our cloud service available on [papra.app](https://papra.app).
<div style="margin-top: 40px">
<LinkCard
title="Get started"
description="Learn how to self-host Papra using Docker."
href="/self-hosting/using-docker"
/>
</div>
## Why Papra?
In today's digital world, managing countless important documents efficiently and securely has become crucial. Papra helps you effortlessly keep track of everything from personal files to critical business records, providing peace of mind and enhancing productivity through a robust yet user-friendly system.
## Features
- **Document management**: Upload, store, and manage your documents in one place.
- **Organizations**: Create organizations to manage documents with family, friends, or colleagues.
- **Search**: Quickly search for documents with full-text search.
- **Authentication**: User accounts and authentication.
- **Dark Mode**: A dark theme for those late-night document management sessions.
- **Responsive Design**: Works on all devices, from desktops to mobile phones.
- **Open Source**: The project is open-source and free to use.
- **Self-hosting**: Host your own instance of Papra using Docker or other methods.
- **Tags**: Organize your documents with tags.
- **Email ingestion**: Send/forward emails to a generated address to automatically import documents.
- **Content extraction**: Automatically extract text from images or scanned documents for search.
- **Tagging Rules**: Automatically tag documents based on custom rules.
- **Folder ingestion**: Automatically import documents from a folder.
- **API, SDK and webhooks**: Build your own applications on top of Papra.
- **CLI**: Manage your documents from the command line.
- **i18n**: Support for multiple languages.
- *Coming soon:* **Document sharing**: Share documents with others.
- *Coming soon:* **Document requests**: Generate upload links for people to add documents.
## Community & Open Source
Papra is proudly open-source under the [AGPL3](https://github.com/papra-hq/papra/blob/main/LICENSE) license. You can contribute to the project by reporting issues, suggesting features, or even contributing code.
<div style="margin-top: 40px">
<LinkCard
title="Get started"
description="Learn how to self-host Papra using Docker."
href="/self-hosting/using-docker"
/>
</div>

View File

@@ -0,0 +1,68 @@
import type { StarlightUserConfig } from '@astrojs/starlight/types';
export const sidebar = [
{
label: 'Getting Started',
items: [
{ label: 'Introduction', slug: '' },
],
},
{
label: 'Self Hosting',
items: [
{ label: 'Using Docker', slug: 'self-hosting/using-docker' },
{ label: 'Using Docker Compose', slug: 'self-hosting/using-docker-compose' },
{ label: 'Docker Compose Generator', link: '/docker-compose-generator', badge: { text: 'new', variant: 'note' } },
{ label: 'Configuration', slug: 'self-hosting/configuration' },
],
},
{
label: 'Guides',
items: [
{
label: 'Setup intake emails with OwlRelay',
slug: 'guides/intake-emails-with-owlrelay',
},
{
label: 'Setup intake emails with CF Email Workers',
slug: 'guides/intake-emails-with-cloudflare-email-workers',
},
{
label: 'Setup Ingestion Folder',
slug: 'guides/setup-ingestion-folder',
},
{
label: 'Setup Custom OAuth2 Providers',
slug: 'guides/setup-custom-oauth2-providers',
},
{
label: 'Document Encryption',
slug: 'guides/document-encryption',
},
],
},
{
label: 'Resources',
items: [
{
label: 'Troubleshooting',
slug: 'resources/troubleshooting',
},
{
label: 'CLI Documentation',
slug: 'resources/cli',
},
{
label: 'Security Policy',
link: 'https://github.com/papra-hq/papra/blob/main/SECURITY.md',
attrs: {
target: '_blank',
},
},
{
label: 'API Endpoints',
slug: 'resources/api-endpoints',
},
],
},
] satisfies StarlightUserConfig['sidebar'];

View File

@@ -0,0 +1,487 @@
---
import { codeToHtml } from 'shiki';
const images = {
GitHub: 'ghcr.io/papra-hq/papra',
DockerHub: 'corentinth/papra',
};
const defaultDockerCompose = `
services:
papra:
image: ghcr.io/papra-hq/papra:latest
container_name: papra
restart: unless-stopped
ports:
- 1221:1221
environment:
- AUTH_SECRET=change-me
- APP_BASE_URL=http://localhost:1221
volumes:
- ./app-data:/app/app-data
user: 1000:1000
`.trim();
const dcHtml = await codeToHtml(defaultDockerCompose, { theme: 'vitesse-black', lang: 'yaml' });
const defaultCommand = `mkdir -p ./app-data/{db,documents} && docker compose up -d`;
---
<h2 class="mt-8 mb-2">General settings</h2>
<div class="flex items-center gap-2 mt-1">
<label for="port" class="min-w-32">External port</label>
<input id="port" class="input-field" value="1221" type="number" min="1024" max="65535" placeholder="eg: 1221" />
</div>
<div class="flex items-center gap-2 mt-1">
<label for="app-base-url" class="min-w-32">App base URL</label>
<input id="app-base-url" class="input-field" type="text" placeholder="eg: https://papra.example.com" value="http://localhost:1221" />
</div>
<div class="flex items-center gap-2 mt-1">
<label for="source" class="min-w-32">Image source</label>
<select class="input-field mt-0" id="source">
{Object.entries(images).map(([registry, imageName]) => <option class="bg-background" value={imageName}>{`${registry} - ${imageName}`}</option>)}
</select>
</div>
<div class="flex items-center gap-2 mt-1">
<label for="service-name" class="min-w-32">Service Name</label>
<input id="service-name" class="input-field" value="papra" type="text" placeholder="eg: papra" />
</div>
<div class="flex items-center gap-2 mt-1">
<label
for="auth-secret"
class="min-w-32"
>
Auth secret
</label>
<div class="flex items-center gap-2 mt-0 w-full">
<input class="input-field font-mono" id="auth-secret" type="text" placeholder="eg: 1234567890" />
<button class="btn bg-muted" id="refresh-secret"> Refresh </button>
</div>
</div>
<div class="flex items-center gap-2 mt-1">
<label for="volume-path" class="min-w-32">Volume path</label>
<input id="volume-path" class="input-field" value="./app-data" type="text" placeholder="eg: ./app-data" />
</div>
<div class="flex items-center gap-2 mt-1">
<label for="privileged-mode" class="min-w-32">Privileged mode</label>
<div class="flex items-center gap-2 mt-0 w-full">
<select class="input-field mt-0" id="privileged-mode">
<option value="false" class="bg-background">Rootless</option>
<option value="true" class="bg-background">Root</option>
</select>
</div>
</div>
<h2 class="mt-8 mb-2">Ingestion folder</h2>
<div class="flex items-center gap-2 mt-1">
<label for="ingestion-enabled" class="min-w-32">Enable ingestion</label>
<div class="flex items-center gap-2 mt-0 w-full">
<select class="input-field mt-0" id="ingestion-enabled">
<option value="false" class="bg-background">Disabled</option>
<option value="true" class="bg-background">Enabled</option>
</select>
</div>
</div>
<div class="flex items-center gap-2 mt-1" id="ingestion-path-container" style="display: none;">
<label for="ingestion-path" class="min-w-32">Ingestion path</label>
<input id="ingestion-path" class="input-field" value="./ingestion" type="text" placeholder="eg: ./ingestion" />
</div>
<h2 class="mt-8 mb-2">Intake emails</h2>
<div class="flex items-center gap-2 mt-1">
<label for="intake-email-enabled" class="min-w-32">Enabled</label>
<div class="flex items-center gap-2 mt-0 w-full">
<select class="input-field mt-0" id="intake-email-enabled">
<option value="false" class="bg-background">Disabled</option>
<option value="true" class="bg-background">Enabled</option>
</select>
</div>
</div>
<div class="flex items-center gap-2 mt-1" id="intake-email-driver-container" style="display: none;">
<label for="intake-email-driver" class="min-w-32">Driver</label>
<div class="flex items-center gap-2 mt-0 w-full">
<select class="input-field mt-0" id="intake-email-driver">
<option value="owlrelay" class="bg-background">OwlRelay</option>
<option value="random-username" class="bg-background">Cloudflare Email Worker</option>
</select>
</div>
</div>
<div id="intake-email-owlrelay-config" style="display: none;" class="mt-1">
<div class="flex items-center gap-2 mt-1">
<label for="intake-email-owlrelay-api-key" class="min-w-32">API Key</label>
<input id="intake-email-owlrelay-api-key" class="input-field" type="text" placeholder="owrl_*****" />
</div>
<div class="flex items-center gap-2 mt-1">
<label for="intake-email-owlrelay-webhook-url" class="min-w-32">Webhook URL</label>
<input id="intake-email-owlrelay-webhook-url" class="input-field" type="text" placeholder="https://your-instance.com/api/intake-emails/ingest" value="https://localhost:1221/api/intake-emails/ingest" />
</div>
</div>
<div id="intake-email-cf-worker-config" style="display: none;" class="mt-1">
<div class="flex items-center gap-2 mt-1">
<label for="intake-email-cf-email-domain" class="min-w-32">Email domain</label>
<input id="intake-email-cf-email-domain" class="input-field" type="text" placeholder="papra.email" />
</div>
</div>
<div class="flex items-center gap-2 mt-1" id="intake-email-webhook-secret-container" style="display: none;">
<label for="intake-email-webhook-secret" class="min-w-32">Webhook secret</label>
<div class="flex items-center gap-2 mt-0 w-full">
<input class="input-field font-mono" id="intake-email-webhook-secret" type="text" placeholder="a-random-key" />
<button class="btn bg-muted" id="refresh-webhook-secret">Refresh</button>
</div>
</div>
<div id="docker-compose-output" class="mt-12" set:html={dcHtml} />
<pre id="command-output" class="bg-card p-4 rounded-md text-muted-foreground text-sm font-mono overflow-x-auto">{defaultCommand}</pre>
<div class="flex items-center gap-2 mt-4">
<button class="btn bg-muted mt-0" id="download-button">Download docker-compose.yml</button>
<button class="btn bg-muted mt-0" id="copy-button">Copy docker compose to clipboard</button>
<button class="btn bg-muted mt-0" id="copy-command-button">Copy command</button>
</div>
<script>
import { codeToHtml } from 'shiki';
import { stringify } from 'yaml';
const portInput = document.getElementById('port') as HTMLInputElement;
const sourceSelect = document.getElementById('source') as HTMLSelectElement;
const serviceNameInput = document.getElementById('service-name') as HTMLInputElement;
const authSecretInput = document.getElementById('auth-secret') as HTMLInputElement;
const appBaseUrlInput = document.getElementById('app-base-url') as HTMLInputElement;
const refreshSecretButton = document.getElementById('refresh-secret');
const copyButton = document.getElementById('copy-button');
const dockerComposeOutput = document.getElementById('docker-compose-output');
const downloadButton = document.getElementById('download-button');
const volumePathInput = document.getElementById('volume-path') as HTMLInputElement;
const privilegedModeSelect = document.getElementById('privileged-mode') as HTMLSelectElement;
const ingestionEnabledSelect = document.getElementById('ingestion-enabled') as HTMLSelectElement;
const ingestionPathInput = document.getElementById('ingestion-path') as HTMLInputElement;
const ingestionPathContainer = document.getElementById('ingestion-path-container') as HTMLDivElement;
const intakeEmailEnabledSelect = document.getElementById('intake-email-enabled') as HTMLSelectElement;
const intakeDriverSelect = document.getElementById('intake-email-driver') as HTMLSelectElement;
const owlrelayConfig = document.getElementById('intake-email-owlrelay-config') as HTMLDivElement;
const cfWorkerConfig = document.getElementById('intake-email-cf-worker-config') as HTMLDivElement;
const owlrelayApiKeyInput = document.getElementById('intake-email-owlrelay-api-key') as HTMLInputElement;
const owlrelayWebhookUrlInput = document.getElementById('intake-email-owlrelay-webhook-url') as HTMLInputElement;
const cfEmailDomainInput = document.getElementById('intake-email-cf-email-domain') as HTMLInputElement;
const webhookSecretInput = document.getElementById('intake-email-webhook-secret') as HTMLInputElement;
const refreshWebhookSecretButton = document.getElementById('refresh-webhook-secret');
const commandOutput = document.getElementById('command-output');
const copyCommandButton = document.getElementById('copy-command-button');
// Track whether the app base URL has been customized by the user
let isAppBaseUrlCustomized = false;
// Track whether the webhook URL has been customized by the user
let isWebhookUrlCustomized = false;
function getRandomString() {
const alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
return Array.from({ length: 48 }, () => alphabet[Math.floor(Math.random() * alphabet.length)]).join('');
}
function copyToClipboard(text: string) {
navigator.clipboard.writeText(text);
}
function isDefaultAppBaseUrl(url: string, port: string): boolean {
return url === `http://localhost:${port}`;
}
function generateDefaultWebhookUrl(baseUrl: string): string {
// Remove trailing slash if present
const cleanBaseUrl = baseUrl.replace(/\/$/, '');
return `${cleanBaseUrl}/api/intake-emails/ingest`;
}
function isDefaultWebhookUrl(webhookUrl: string, baseUrl: string): boolean {
return webhookUrl === generateDefaultWebhookUrl(baseUrl);
}
function refreshIsWebhookUrlCustomized() {
const currentBaseUrl = appBaseUrlInput.value.trim();
const currentWebhookUrl = owlrelayWebhookUrlInput.value.trim();
if (isDefaultWebhookUrl(currentWebhookUrl, currentBaseUrl)) {
isWebhookUrlCustomized = false;
} else {
isWebhookUrlCustomized = true;
}
}
function refreshIsAppBaseUrlCustomized() {
const currentPort = portInput.value;
const currentUrl = appBaseUrlInput.value.trim();
if (isDefaultAppBaseUrl(currentUrl, currentPort)) {
isAppBaseUrlCustomized = false;
} else {
isAppBaseUrlCustomized = true;
}
}
function updateWebhookUrlFromBaseUrl() {
if (!isWebhookUrlCustomized) {
const baseUrl = appBaseUrlInput.value.trim();
if (baseUrl) {
owlrelayWebhookUrlInput.value = generateDefaultWebhookUrl(baseUrl);
}
}
}
function updateAppBaseUrlFromPort() {
if (!isAppBaseUrlCustomized) {
const port = portInput.value;
appBaseUrlInput.value = `http://localhost:${port}`;
// Also update webhook URL when app base URL changes
updateWebhookUrlFromBaseUrl();
}
}
function handlePortChange() {
updateAppBaseUrlFromPort();
updateDockerCompose();
}
function handleAppBaseUrlChange() {
refreshIsAppBaseUrlCustomized();
updateWebhookUrlFromBaseUrl();
updateDockerCompose();
}
function handleWebhookUrlChange() {
refreshIsWebhookUrlCustomized();
updateDockerCompose();
}
function getDockerComposeYml() {
const serviceName = serviceNameInput.value;
const isRootless = privilegedModeSelect.value === 'false';
const image = sourceSelect.value;
const port = portInput.value;
const authSecret = authSecretInput.value;
const volumePath = volumePathInput.value;
const isIngestionEnabled = ingestionEnabledSelect.value === 'true';
const ingestionPath = ingestionPathInput.value;
const intakeEmailEnabled = intakeEmailEnabledSelect.value === 'true';
const intakeDriver = intakeDriverSelect.value;
const webhookSecret = webhookSecretInput.value;
const appBaseUrl = appBaseUrlInput.value.trim() || `http://localhost:${port}`;
const version = isRootless ? 'latest' : 'latest-root';
const fullImage = `${image}:${version}`;
const environment = [
`AUTH_SECRET=${authSecret}`,
`APP_BASE_URL=${appBaseUrl}`,
isIngestionEnabled && 'INGESTION_FOLDER_IS_ENABLED=true',
intakeEmailEnabled && 'INTAKE_EMAILS_IS_ENABLED=true',
intakeEmailEnabled && `INTAKE_EMAILS_DRIVER=${intakeDriver}`,
intakeEmailEnabled && `INTAKE_EMAILS_WEBHOOK_SECRET=${webhookSecret}`,
intakeEmailEnabled && intakeDriver === 'owlrelay' && owlrelayApiKeyInput.value && `OWLRELAY_API_KEY=${owlrelayApiKeyInput.value}`,
intakeEmailEnabled && intakeDriver === 'owlrelay' && owlrelayWebhookUrlInput.value && `OWLRELAY_WEBHOOK_URL=${owlrelayWebhookUrlInput.value}`,
intakeEmailEnabled && intakeDriver === 'random-username' && cfEmailDomainInput.value && `INTAKE_EMAILS_EMAIL_GENERATION_DOMAIN=${cfEmailDomainInput.value}`,
].flat().filter(Boolean);
const volumes = [
`${volumePath}:/app/app-data`,
isIngestionEnabled && `${ingestionPath}:/app/ingestion`,
].filter(Boolean);
const dc = {
services: {
[serviceName]: {
image: fullImage,
container_name: serviceName,
restart: 'unless-stopped',
ports: [`${port}:1221`],
environment,
volumes,
...(isRootless && {
user: '1000:1000',
}),
},
},
};
return stringify(dc);
}
function getStartCommand() {
const volumePath = volumePathInput.value;
const volumePathNormalized = volumePath.replace(/\/$/, '');
const volumeWithSubdirs = `${volumePathNormalized}/{db,documents}`;
const mkdirCommand = `mkdir -p ${volumeWithSubdirs}`;
const dockerCommand = 'docker compose up -d';
return `${mkdirCommand} && ${dockerCommand}`;
}
async function updateDockerCompose() {
const dockerCompose = getDockerComposeYml();
const command = getStartCommand();
const html = await codeToHtml(dockerCompose, { theme: 'vitesse-black', lang: 'yaml' });
if (dockerComposeOutput) {
dockerComposeOutput.innerHTML = html;
}
if (commandOutput) {
commandOutput.textContent = command;
}
}
function handleCopy() {
const dockerCompose = getDockerComposeYml();
copyToClipboard(dockerCompose);
if (copyButton) {
copyButton.textContent = 'Copied!';
}
setTimeout(() => {
if (copyButton) {
copyButton.textContent = 'Copy to clipboard';
}
}, 1000);
}
function handleRefreshSecret() {
authSecretInput.value = getRandomString();
updateDockerCompose();
}
function handleDownload() {
const dockerCompose = getDockerComposeYml();
const blob = new Blob([dockerCompose], { type: 'text/yaml' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'docker-compose.yml';
a.click();
}
function handleIngestionEnabledChange() {
const isEnabled = ingestionEnabledSelect.value === 'true';
ingestionPathContainer.style.display = isEnabled ? 'flex' : 'none';
updateDockerCompose();
}
function handleIntakeEmailEnabledChange() {
const isEnabled = intakeEmailEnabledSelect.value === 'true';
const driverContainer = document.getElementById('intake-email-driver-container');
const webhookSecretContainer = document.getElementById('intake-email-webhook-secret-container');
if (driverContainer) {
driverContainer.style.display = isEnabled ? 'flex' : 'none';
}
if (webhookSecretContainer) {
webhookSecretContainer.style.display = isEnabled ? 'flex' : 'none';
}
if (!isEnabled) {
// Reset driver-specific configs when disabled
if (owlrelayConfig) {
owlrelayConfig.style.display = 'none';
}
if (cfWorkerConfig) {
cfWorkerConfig.style.display = 'none';
}
} else {
// Show the appropriate driver config
handleIntakeDriverChange();
}
updateDockerCompose();
}
function handleIntakeDriverChange() {
const driver = intakeDriverSelect.value;
const isEnabled = intakeEmailEnabledSelect.value === 'true';
if (!isEnabled) {
return;
}
if (owlrelayConfig) {
owlrelayConfig.style.display = driver === 'owlrelay' ? 'block' : 'none';
}
if (cfWorkerConfig) {
cfWorkerConfig.style.display = driver === 'random-username' ? 'block' : 'none';
}
updateDockerCompose();
}
function handleRefreshWebhookSecret() {
webhookSecretInput.value = getRandomString();
updateDockerCompose();
}
function handleCopyCommand() {
const command = getStartCommand();
copyToClipboard(command);
if (copyCommandButton) {
copyCommandButton.textContent = 'Copied!';
}
setTimeout(() => {
if (copyCommandButton) {
copyCommandButton.textContent = 'Copy command';
}
}, 1000);
}
// Add event listeners
portInput.addEventListener('input', handlePortChange);
sourceSelect.addEventListener('change', updateDockerCompose);
serviceNameInput.addEventListener('input', updateDockerCompose);
authSecretInput.addEventListener('input', updateDockerCompose);
appBaseUrlInput.addEventListener('input', handleAppBaseUrlChange);
refreshSecretButton?.addEventListener('click', handleRefreshSecret);
copyButton?.addEventListener('click', handleCopy);
downloadButton?.addEventListener('click', handleDownload);
volumePathInput.addEventListener('input', updateDockerCompose);
privilegedModeSelect.addEventListener('change', updateDockerCompose);
ingestionEnabledSelect.addEventListener('change', handleIngestionEnabledChange);
ingestionPathInput.addEventListener('input', updateDockerCompose);
intakeEmailEnabledSelect.addEventListener('change', handleIntakeEmailEnabledChange);
intakeDriverSelect.addEventListener('change', handleIntakeDriverChange);
owlrelayApiKeyInput.addEventListener('input', updateDockerCompose);
owlrelayWebhookUrlInput.addEventListener('input', handleWebhookUrlChange);
cfEmailDomainInput.addEventListener('input', updateDockerCompose);
webhookSecretInput.addEventListener('input', updateDockerCompose);
refreshWebhookSecretButton?.addEventListener('click', handleRefreshWebhookSecret);
copyCommandButton?.addEventListener('click', handleCopyCommand);
authSecretInput.value = getRandomString();
// Initial render
updateDockerCompose();
// Initial setup
handleIngestionEnabledChange();
handleIntakeEmailEnabledChange();
webhookSecretInput.value = getRandomString();
</script>

View File

@@ -0,0 +1,16 @@
---
import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';
import DockerComposeGeneratorComp from '../docker-compose-generator/dc-generator.astro';
---
<StarlightPage
frontmatter={{
title: 'Papra docker-compose.yml generator',
description: 'Generate a custom docker-compose.yml file for Papra, tailored to your needs.',
tableOfContents: false,
}}
>
<p>This tool will help you generate a custom docker-compose.yml file for Papra, tailored to your needs. You can personalize the service name, the port, the auth secret, and the source image.</p>
<p>For more configuration options, you can use the <a href="/self-hosting/configuration">configuration reference</a>.</p>
<DockerComposeGeneratorComp />
</StarlightPage>

View File

@@ -0,0 +1,28 @@
import type { APIRoute } from 'astro';
import { getCollection } from 'astro:content';
import { sidebar } from '../content/navigation';
export const GET: APIRoute = async ({ site }) => {
const docs = await getCollection('docs');
const sections = sidebar.map((section) => {
return {
label: section.label,
items: section
.items
.filter(item => item.slug !== undefined || (item.link && !item.link.startsWith('http')))
.map((item) => {
const slug = item.slug ?? item.link?.replace(/^\//, '');
return {
label: item.label,
slug,
url: new URL(slug, site).toString(),
description: docs.find(doc => (doc.id === slug || (slug === '' && doc.id === 'index')))?.data.description,
};
}),
};
});
return new Response(JSON.stringify(sections));
};

View File

@@ -0,0 +1,49 @@
import type { APIRoute } from 'astro';
import type { ConfigDefinition } from 'figue';
import { z } from 'astro:content';
import { mapValues } from 'lodash-es';
import { zodToJsonSchema } from 'zod-to-json-schema';
import { configDefinition } from '../../../papra-server/src/modules/config/config';
function buildConfigSchema({ configDefinition }: { configDefinition: ConfigDefinition }) {
const schema: any = mapValues(configDefinition, (config) => {
if (typeof config === 'object' && config !== null && 'schema' in config && 'doc' in config) {
return config.schema;
} else {
return buildConfigSchema({
configDefinition: config as ConfigDefinition,
});
}
});
return z.object(schema);
}
function stripRequired(schema: any) {
if (schema.type === 'object') {
schema.required = [];
for (const key in schema.properties) {
stripRequired(schema.properties[key]);
}
}
}
function addSchema(schema: any) {
schema.properties.$schema = {
type: 'string',
description: 'The schema of the configuration file, to be used by IDEs to provide autocompletion and validation',
};
}
function getConfigSchema() {
const schema = buildConfigSchema({ configDefinition });
const jsonSchema = zodToJsonSchema(schema, { pipeStrategy: 'output' });
stripRequired(jsonSchema);
addSchema(jsonSchema);
return jsonSchema;
}
export const GET: APIRoute = () => {
return new Response(JSON.stringify(getConfigSchema()));
};

View File

@@ -0,0 +1,15 @@
import type { APIRoute } from 'astro';
function getRobotsTxt(sitemapURL: URL) {
return `
User-agent: *
Allow: /
Sitemap: ${sitemapURL.href}
`.trim();
}
export const GET: APIRoute = ({ site }) => {
const sitemapURL = new URL('sitemap-index.xml', site);
return new Response(getRobotsTxt(sitemapURL));
};

View File

@@ -0,0 +1,5 @@
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.crossOrigin="anonymous",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug getPageViewId captureTraceFeedback captureTraceMetric".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('[POSTHOG-API-KEY]', {
api_host: '[POSTHOG-API-HOST]',
person_profiles: 'identified_only', // or 'always' to create profiles for anonymous users as well
})

View File

@@ -1,5 +1,10 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
]
}

97
apps/docs/uno.config.ts Normal file
View File

@@ -0,0 +1,97 @@
import {
defineConfig,
presetUno,
transformerDirectives,
transformerVariantGroup,
} from 'unocss';
import presetAnimations from 'unocss-preset-animations';
export default defineConfig({
presets: [
presetUno({
dark: {
dark: '[data-theme="dark"]',
light: '[data-theme="light"]',
},
prefix: '',
}),
presetAnimations(),
],
transformers: [transformerVariantGroup(), transformerDirectives()],
theme: {
colors: {
border: 'hsl(var(--border))',
input: 'hsl(var(--input))',
ring: 'hsl(var(--ring))',
background: 'hsl(var(--background))',
foreground: 'hsl(var(--foreground))',
primary: {
DEFAULT: 'hsl(var(--primary))',
foreground: 'hsl(var(--primary-foreground))',
},
secondary: {
DEFAULT: 'hsl(var(--secondary))',
foreground: 'hsl(var(--secondary-foreground))',
},
destructive: {
DEFAULT: 'hsl(var(--destructive))',
foreground: 'hsl(var(--destructive-foreground))',
},
muted: {
DEFAULT: 'hsl(var(--muted))',
foreground: 'hsl(var(--muted-foreground))',
},
accent: {
DEFAULT: 'hsl(var(--accent))',
foreground: 'hsl(var(--accent-foreground))',
},
popover: {
DEFAULT: 'hsl(var(--popover))',
foreground: 'hsl(var(--popover-foreground))',
},
card: {
DEFAULT: 'hsl(var(--card))',
foreground: 'hsl(var(--card-foreground))',
},
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
animation: {
keyframes: {
'accordion-down':
'{ from { height: 0 } to { height: var(--kb-accordion-content-height) } }',
'accordion-up':
'{ from { height: var(--kb-accordion-content-height) } to { height: 0 } }',
'collapsible-down':
'{ from { height: 0 } to { height: var(--kb-collapsible-content-height) } }',
'collapsible-up':
'{ from { height: var(--kb-collapsible-content-height) } to { height: 0 } }',
'caret-blink': '{ 0%,70%,100% { opacity: 1 } 20%,50% { opacity: 0 } }',
},
timingFns: {
'accordion-down': 'ease-out',
'accordion-up': 'ease-out',
'collapsible-down': 'ease-out',
'collapsible-up': 'ease-out',
'caret-blink': 'ease-out',
},
durations: {
'accordion-down': '0.2s',
'accordion-up': '0.2s',
'collapsible-down': '0.2s',
'collapsible-up': '0.2s',
'caret-blink': '1.25s',
},
counts: {
'caret-blink': 'infinite',
},
},
},
shortcuts: {
'input-field': 'flex h-9 w-full bg-none outline-none rounded-lg border border-border border-solid bg-inherit px-3 py-1 text-sm shadow-none placeholder:text-muted-foreground focus-visible:(outline-none ring-1.5 ring-ring) disabled:(cursor-not-allowed opacity-50) transition-shadow',
'btn': 'text-sm font-medium hover:opacity-80 rounded-lg transition-all px-4 py-2 bg-none outline-none border-none cursor-pointer',
},
});

View File

@@ -1 +0,0 @@
VITE_BASE_API_URL=http://localhost:1221

View File

@@ -0,0 +1,145 @@
# @papra/app-client
## 0.9.0
### Patch Changes
- [#471](https://github.com/papra-hq/papra/pull/471) [`e77a42f`](https://github.com/papra-hq/papra/commit/e77a42fbf14da011cd396426aa0bbea56c889740) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Lazy load the PDF viewer to reduce the main chunk size
- [#481](https://github.com/papra-hq/papra/pull/481) [`1606310`](https://github.com/papra-hq/papra/commit/1606310745e8edf405b527127078143481419e8c) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Allow for more complex intake-email origin adresses
- [#470](https://github.com/papra-hq/papra/pull/470) [`d488efe`](https://github.com/papra-hq/papra/commit/d488efe2cc4aa4f433cec4e9b8cc909b091eccc4) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Simplified i18n tooling + improved performances
- [#468](https://github.com/papra-hq/papra/pull/468) [`14c3587`](https://github.com/papra-hq/papra/commit/14c3587de07a605ec586bdc428d9e76956bf1c67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Prevent infinit loading in search modal when an error occure
- [#468](https://github.com/papra-hq/papra/pull/468) [`14c3587`](https://github.com/papra-hq/papra/commit/14c3587de07a605ec586bdc428d9e76956bf1c67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Improved the UX of the document content edition panel
- [#468](https://github.com/papra-hq/papra/pull/468) [`14c3587`](https://github.com/papra-hq/papra/commit/14c3587de07a605ec586bdc428d9e76956bf1c67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added content edition support in demo mode
## 0.8.2
## 0.8.1
## 0.8.0
### Minor Changes
- [#432](https://github.com/papra-hq/papra/pull/432) [`6723baf`](https://github.com/papra-hq/papra/commit/6723baf98ad46f989fe1e1e19ad0dd25622cca77) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added new webhook events: document:updated, document:tag:added, document:tag:removed
- [#432](https://github.com/papra-hq/papra/pull/432) [`6723baf`](https://github.com/papra-hq/papra/commit/6723baf98ad46f989fe1e1e19ad0dd25622cca77) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Webhooks invocation is now defered
### Patch Changes
- [#419](https://github.com/papra-hq/papra/pull/419) [`7768840`](https://github.com/papra-hq/papra/commit/7768840aa4425a03cb96dc1c17605bfa8e6a0de4) Thanks [@Edward205](https://github.com/Edward205)! - Added diacritics and improved wording for Romanian translation
- [#448](https://github.com/papra-hq/papra/pull/448) [`5868800`](https://github.com/papra-hq/papra/commit/5868800bcec6ed69b5441b50e4445fae5cdb5bfb) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added feedback when an error occurs while deleting a tag
- [#412](https://github.com/papra-hq/papra/pull/412) [`ffdae8d`](https://github.com/papra-hq/papra/commit/ffdae8db56c6ecfe63eb263ee606e9469eef8874) Thanks [@OsafAliSayed](https://github.com/OsafAliSayed)! - Simplified the organization intake email list
- [#441](https://github.com/papra-hq/papra/pull/441) [`5e46bb9`](https://github.com/papra-hq/papra/commit/5e46bb9e6a39cd16a83636018370607a27db042a) Thanks [@Zavy86](https://github.com/Zavy86)! - Added Italian (it) language support
- [#455](https://github.com/papra-hq/papra/pull/455) [`b33fde3`](https://github.com/papra-hq/papra/commit/b33fde35d3e8622e31b51aadfe56875d8e48a2ef) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Improved feedback message in case of invalid origin configuration
## 0.7.0
### Minor Changes
- [#417](https://github.com/papra-hq/papra/pull/417) [`a82ff3a`](https://github.com/papra-hq/papra/commit/a82ff3a755fa1164b4d8ff09b591ed6482af0ccc) Thanks [@CorentinTh](https://github.com/CorentinTh)! - v0.7 release
## 0.6.4
### Patch Changes
- [#377](https://github.com/papra-hq/papra/pull/377) [`205c6cf`](https://github.com/papra-hq/papra/commit/205c6cfd461fa0020a93753571f886726ddfdb57) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Improve file preview for text-like files (.env, yaml, extension-less text files,...)
- [#393](https://github.com/papra-hq/papra/pull/393) [`aad36f3`](https://github.com/papra-hq/papra/commit/aad36f325296548019148bc4e32782fe562fd95b) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Fix weird centering in document page for long filenames
- [#394](https://github.com/papra-hq/papra/pull/394) [`f28d824`](https://github.com/papra-hq/papra/commit/f28d8245bf385d7be3b3b8ee449c3fdc88fa375c) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added the possibility to disable login via email, to support sso-only auth
- [#405](https://github.com/papra-hq/papra/pull/405) [`3401cfb`](https://github.com/papra-hq/papra/commit/3401cfbfdc7e280d2f0f3166ceddcbf55486f574) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Introduce APP_BASE_URL to mutualize server and client base url
- [#346](https://github.com/papra-hq/papra/pull/346) [`c54a71d`](https://github.com/papra-hq/papra/commit/c54a71d2c5998abde8ec78741b8c2e561203a045) Thanks [@blstmo](https://github.com/blstmo)! - Fixes 400 error when submitting tags with uppercase hex colour codes.
- [#408](https://github.com/papra-hq/papra/pull/408) [`09e3bc5`](https://github.com/papra-hq/papra/commit/09e3bc5e151594bdbcb1f9df1b869a78e583af3f) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added Romanian (ro) translation
- [#383](https://github.com/papra-hq/papra/pull/383) [`0b276ee`](https://github.com/papra-hq/papra/commit/0b276ee0d5e936fffc1f8284c654a8ada0efbafb) Thanks [@LMArantes](https://github.com/LMArantes)! - Added Brazilian Portuguese (pt-BR) language support
- [#399](https://github.com/papra-hq/papra/pull/399) [`47b69b1`](https://github.com/papra-hq/papra/commit/47b69b15f4f711e47421fc21a3ac447824d67642) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Fix back to organization link in organization settings
- [#403](https://github.com/papra-hq/papra/pull/403) [`1711ef8`](https://github.com/papra-hq/papra/commit/1711ef866d0071a804484b3e163a5e2ccbcec8fd) Thanks [@Icikowski](https://github.com/Icikowski)! - Added Polish (pl) language support
- [#379](https://github.com/papra-hq/papra/pull/379) [`6cedc30`](https://github.com/papra-hq/papra/commit/6cedc30716e320946f79a0a9fd8d3b26e834f4db) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Updated dependencies
- [#411](https://github.com/papra-hq/papra/pull/411) [`2601566`](https://github.com/papra-hq/papra/commit/26015666de197827a65a5bebf376921bbfcc3ab8) Thanks [@4DRIAN0RTIZ](https://github.com/4DRIAN0RTIZ)! - Added Spanish (es) translation
- [#391](https://github.com/papra-hq/papra/pull/391) [`40a1f91`](https://github.com/papra-hq/papra/commit/40a1f91b67d92e135d13dfcd41e5fd3532c30ca5) Thanks [@itsjuoum](https://github.com/itsjuoum)! - Added European Portuguese (pt) translation
- [#378](https://github.com/papra-hq/papra/pull/378) [`f1e1b40`](https://github.com/papra-hq/papra/commit/f1e1b4037b31ff5de1fd228b8390dd4d97a8bda8) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added tag color swatches and picker
## 0.6.3
### Patch Changes
- [#357](https://github.com/papra-hq/papra/pull/357) [`585c53c`](https://github.com/papra-hq/papra/commit/585c53cd9d0d7dbd517dbb1adddfd9e7b70f9fe5) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added a /llms.txt on main website
- [#359](https://github.com/papra-hq/papra/pull/359) [`0c2cf69`](https://github.com/papra-hq/papra/commit/0c2cf698d1a9e9a3cea023920b10cfcd5d83be14) Thanks [@Mavv3006](https://github.com/Mavv3006)! - Add German translation
## 0.6.2
### Patch Changes
- [#333](https://github.com/papra-hq/papra/pull/333) [`ff830c2`](https://github.com/papra-hq/papra/commit/ff830c234a02ddb4cbc480cf77ef49b8de35fbae) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Fixed version release link
## 0.6.1
## 0.6.0
### Minor Changes
- [#317](https://github.com/papra-hq/papra/pull/317) [`79c1d32`](https://github.com/papra-hq/papra/commit/79c1d3206b140cf8b3d33ef8bda6098dcf4c9c9c) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added document activity log
- [#319](https://github.com/papra-hq/papra/pull/319) [`60059c8`](https://github.com/papra-hq/papra/commit/60059c895c4860cbfda69d3c989ad00542def65b) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added pending invitation management page
### Patch Changes
- [#309](https://github.com/papra-hq/papra/pull/309) [`d4f72e8`](https://github.com/papra-hq/papra/commit/d4f72e889a4d39214de998942bc0eb88cd5cee3d) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Disable "Manage subscription" from organization setting by default
- [#308](https://github.com/papra-hq/papra/pull/308) [`759a3ff`](https://github.com/papra-hq/papra/commit/759a3ff713db8337061418b9c9b122b957479343) Thanks [@CorentinTh](https://github.com/CorentinTh)! - I18n: full support for French language
- [#312](https://github.com/papra-hq/papra/pull/312) [`e5ef40f`](https://github.com/papra-hq/papra/commit/e5ef40f36c27ea25dc8a79ef2805d673761eec2a) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Fixed an issue with the reset-password page navigation guard that prevented reset
## 0.5.1
## 0.5.0
### Minor Changes
- [#295](https://github.com/papra-hq/papra/pull/295) [`438a311`](https://github.com/papra-hq/papra/commit/438a31171c606138c4b7fa299fdd58dcbeaaf298) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added support for custom oauth2 providers
- [#291](https://github.com/papra-hq/papra/pull/291) [`0627ec2`](https://github.com/papra-hq/papra/commit/0627ec25a422b7b820b08740cfc2905f9c55c00e) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added invitation system to add users to an organization
### Patch Changes
- [#296](https://github.com/papra-hq/papra/pull/296) [`0ddc234`](https://github.com/papra-hq/papra/commit/0ddc2340f092cf6fe5bf2175b55fb46db7681c36) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Fix register page description
## 0.4.0
### Minor Changes
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added webhook management
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added API keys support
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added document searchable content edit
### Patch Changes
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Added tag creation button in document page
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Improved tag selector input wrapping
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Properly handle file names without extensions
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Wrap text in document preview
- [#280](https://github.com/papra-hq/papra/pull/280) [`85fa5c4`](https://github.com/papra-hq/papra/commit/85fa5c43424d139f5c2752a3ad644082e61d3d67) Thanks [@CorentinTh](https://github.com/CorentinTh)! - Excluded deleted documents from doc count

View File

@@ -1,3 +1,23 @@
# Papra app client
# Papra - App Client
This is the client app for Papra. It is a SolidJS SPA.
This is the server for [Papra](https://papra.app).
## Development
> [!IMPORTANT]
> Unless you are developing for the demo mode (`VITE_IS_DEMO_MODE=true` in adjacent `.env` file), you will need to have the server running locally. See the [server README](../papra-server/README.md) for instructions on how to start the server.
To start the development server, run:
```bash
# Navigate to the docs directory
cd apps/papra-client
# Install dependencies
pnpm install
# Start the development server
pnpm dev
```
The development server will be available at [http://localhost:3000](http://localhost:3000).

View File

@@ -5,6 +5,11 @@ export default antfu({
semi: true,
},
ignores: [
// Generated file
'src/modules/i18n/locales.types.ts',
],
rules: {
// To allow export on top of files
'ts/no-use-before-define': ['error', { allowNamedExports: true, functions: false }],

View File

@@ -1,8 +1,9 @@
{
"name": "@papra/papra-app-client",
"name": "@papra/app-client",
"type": "module",
"version": "0.0.1-beta.2",
"packageManager": "pnpm@9.12.3",
"version": "0.9.0",
"private": true,
"packageManager": "pnpm@10.12.3",
"description": "Papra frontend client",
"author": "Corentin Thomasset <corentinth@proton.me> (https://corentin.tech)",
"license": "AGPL-3.0-or-later",
@@ -20,54 +21,56 @@
"serve": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"test": "pnpm check-i18n-types-outdated && vitest run",
"test:watch": "vitest watch",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit",
"script:get-missing-i18n-keys": "tsx src/scripts/get-missing-i18n-keys.script.ts"
"check-i18n-types-outdated": "pnpm script:generate-i18n-types && git diff --exit-code -- src/modules/i18n/locales.types.ts > /dev/null || (echo \"Locales types are outdated, please run 'pnpm script:generate-i18n-types' and commit the changes.\" && exit 1)",
"script:get-missing-i18n-keys": "tsx src/scripts/get-missing-i18n-keys.script.ts",
"script:sync-i18n-key-order": "tsx src/scripts/sync-i18n-key-order.script.ts"
},
"dependencies": {
"@corentinth/chisels": "^1.0.2",
"@kobalte/core": "^0.13.4",
"@modular-forms/solid": "^0.25.0",
"@pdfslick/solid": "^2.0.0",
"@solid-primitives/i18n": "^2.1.1",
"@solid-primitives/storage": "^4.2.1",
"@solidjs/router": "^0.14.3",
"@tanstack/solid-query": "^5.61.5",
"@tanstack/solid-table": "^8.20.5",
"@unocss/reset": "^0.64.0",
"class-variance-authority": "^0.7.0",
"@corentinth/chisels": "^1.3.1",
"@kobalte/core": "^0.13.10",
"@kobalte/utils": "^0.9.1",
"@modular-forms/solid": "^0.25.1",
"@pdfslick/solid": "^2.3.0",
"@solid-primitives/storage": "^4.3.2",
"@solidjs/router": "^0.14.10",
"@tanstack/solid-query": "^5.81.2",
"@tanstack/solid-table": "^8.21.3",
"@unocss/reset": "^0.64.1",
"better-auth": "catalog:",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk-solid": "^1.1.0",
"cmdk-solid": "^1.1.2",
"date-fns": "^4.1.0",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"ofetch": "^1.4.1",
"posthog-js": "^1.255.1",
"radix3": "^1.1.2",
"solid-js": "^1.8.11",
"solid-js": "^1.9.7",
"solid-sonner": "^0.2.8",
"tailwind-merge": "^2.6.0",
"ts-pattern": "^5.5.0",
"unocss-preset-animations": "^1.1.0",
"unstorage": "^1.14.4",
"uqr": "^0.1.2",
"ts-pattern": "^5.7.1",
"unocss-preset-animations": "^1.2.1",
"unstorage": "^1.16.0",
"valibot": "1.0.0-beta.10"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@iconify-json/tabler": "^1.1.120",
"@playwright/test": "^1.46.1",
"@iconify-json/tabler": "^1.2.19",
"@playwright/test": "^1.53.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "catalog:",
"eslint": "catalog:",
"jsdom": "^25.0.0",
"tsx": "^4.19.1",
"jsdom": "^25.0.1",
"tinyglobby": "^0.2.14",
"tsx": "^4.20.3",
"typescript": "catalog:",
"unocss": "0.65.0-beta.2",
"vite": "^5.0.11",
"vite-plugin-solid": "^2.8.2",
"vite": "^5.4.19",
"vite-plugin-solid": "^2.11.7",
"vitest": "catalog:"
}
}

View File

@@ -0,0 +1,3 @@
/*
X-Frame-Options: DENY
X-Content-Type-Options: nosniff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 592 KiB

View File

@@ -8,8 +8,8 @@
--popover: 0 0% 100%;
--popover-foreground: 0 0% 3.9%;
--primary: 252 94% 69%;
--primary-foreground: 0 0% 98%;
--primary: 16 99% 65%;
--primary-foreground: 0 0% 3.9%;
--secondary: 0 0% 96.1%;
--secondary-foreground: 0 0% 9%;
@@ -43,9 +43,7 @@
--popover: 240 4% 8%;
--popover-foreground: 0 0% 98%;
--primary: 256 100% 73%;
--primary: 77 100% 74%;
--primary-foreground: 0 0% 9%;
--secondary: 0 0% 14.9%;

View File

@@ -7,9 +7,14 @@ import { QueryClientProvider } from '@tanstack/solid-query';
import { render, Suspense } from 'solid-js/web';
import { CommandPaletteProvider } from './modules/command-palette/command-palette.provider';
import { ConfigProvider } from './modules/config/config.provider';
import { DemoIndicator } from './modules/demo/demo.provider';
import { RenameDocumentDialogProvider } from './modules/documents/components/rename-document-button.component';
import { I18nProvider } from './modules/i18n/i18n.provider';
import { ConfirmModalProvider } from './modules/shared/confirm';
import { queryClient } from './modules/shared/query/query-client';
import { IdentifyUser } from './modules/tracking/components/identify-user.component';
import { PageViewTracker } from './modules/tracking/components/pageview-tracker.component';
import { Toaster } from './modules/ui/components/sonner';
import { routes } from './routes';
import '@unocss/reset/tailwind.css';
@@ -27,22 +32,33 @@ render(
children={routes}
root={props => (
<QueryClientProvider client={queryClient}>
<PageViewTracker />
<IdentifyUser />
<Suspense>
<ConfirmModalProvider>
<ColorModeScript storageType={localStorageManager.type} storageKey={colorModeStorageKey} initialColorMode={initialColorMode} />
<ColorModeProvider
initialColorMode={initialColorMode}
storageManager={localStorageManager}
>
<CommandPaletteProvider>
<div class="min-h-screen font-sans text-sm font-400">{props.children}</div>
<I18nProvider>
<ConfirmModalProvider>
<ColorModeScript storageType={localStorageManager.type} storageKey={colorModeStorageKey} initialColorMode={initialColorMode} />
<ColorModeProvider
initialColorMode={initialColorMode}
storageManager={localStorageManager}
>
<CommandPaletteProvider>
<ConfigProvider>
<RenameDocumentDialogProvider>
<div class="min-h-screen font-sans text-sm font-400">
{props.children}
</div>
</RenameDocumentDialogProvider>
<DemoIndicator />
</ConfigProvider>
<Toaster />
<DemoIndicator />
</CommandPaletteProvider>
</ColorModeProvider>
<Toaster />
</CommandPaletteProvider>
</ColorModeProvider>
</ConfirmModalProvider>
</ConfirmModalProvider>
</I18nProvider>
</Suspense>
</QueryClientProvider>
)}

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Passwort zurücksetzen',
'auth.request-password-reset.description': 'Geben Sie Ihre E-Mail-Adresse ein, um Ihr Passwort zurückzusetzen.',
'auth.request-password-reset.requested': 'Wenn ein Konto mit dieser E-Mail-Adresse existiert, haben wir Ihnen eine E-Mail zum Zurücksetzen Ihres Passworts gesendet.',
'auth.request-password-reset.back-to-login': 'Zurück zum Login',
'auth.request-password-reset.form.email.label': 'E-Mail',
'auth.request-password-reset.form.email.placeholder': 'Beispiel: ada@papra.app',
'auth.request-password-reset.form.email.required': 'Bitte geben Sie Ihre E-Mail-Adresse ein',
'auth.request-password-reset.form.email.invalid': 'Diese E-Mail-Adresse ist ungültig',
'auth.request-password-reset.form.submit': 'Passwort zurücksetzen anfordern',
'auth.reset-password.title': 'Passwort zurücksetzen',
'auth.reset-password.description': 'Geben Sie Ihr neues Passwort ein, um Ihr Passwort zurückzusetzen.',
'auth.reset-password.reset': 'Ihr Passwort wurde zurückgesetzt.',
'auth.reset-password.back-to-login': 'Zurück zum Login',
'auth.reset-password.form.new-password.label': 'Neues Passwort',
'auth.reset-password.form.new-password.placeholder': 'Beispiel: **********',
'auth.reset-password.form.new-password.required': 'Bitte geben Sie Ihr neues Passwort ein',
'auth.reset-password.form.new-password.min-length': 'Das Passwort muss mindestens {{ minLength }} Zeichen lang sein',
'auth.reset-password.form.new-password.max-length': 'Das Passwort muss weniger als {{ maxLength }} Zeichen lang sein',
'auth.reset-password.form.submit': 'Passwort zurücksetzen',
'auth.email-provider.open': '{{ provider }} öffnen',
'auth.login.title': 'Bei Papra anmelden',
'auth.login.description': 'Geben Sie Ihre E-Mail-Adresse ein oder verwenden Sie die soziale Anmeldung, um auf Ihr Papra-Konto zuzugreifen.',
'auth.login.login-with-provider': 'Mit {{ provider }} anmelden',
'auth.login.no-account': 'Sie haben noch kein Konto?',
'auth.login.register': 'Registrieren',
'auth.login.form.email.label': 'E-Mail',
'auth.login.form.email.placeholder': 'Beispiel: ada@papra.app',
'auth.login.form.email.required': 'Bitte geben Sie Ihre E-Mail-Adresse ein',
'auth.login.form.email.invalid': 'Diese E-Mail-Adresse ist ungültig',
'auth.login.form.password.label': 'Passwort',
'auth.login.form.password.placeholder': 'Passwort festlegen',
'auth.login.form.password.required': 'Bitte geben Sie Ihr Passwort ein',
'auth.login.form.remember-me.label': 'Angemeldet bleiben',
'auth.login.form.forgot-password.label': 'Passwort vergessen?',
'auth.login.form.submit': 'Anmelden',
'auth.register.title': 'Bei Papra registrieren',
'auth.register.description': 'Erstellen Sie ein Konto, um Papra zu nutzen.',
'auth.register.register-with-email': 'Mit E-Mail registrieren',
'auth.register.register-with-provider': 'Mit {{ provider }} registrieren',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Sie haben bereits ein Konto?',
'auth.register.login': 'Anmelden',
'auth.register.registration-disabled.title': 'Registrierung ist deaktiviert',
'auth.register.registration-disabled.description': 'Die Erstellung neuer Konten ist auf dieser Papra-Instanz derzeit deaktiviert. Nur Benutzer mit bestehenden Konten können sich anmelden. Wenn Sie dies für einen Fehler halten, wenden Sie sich bitte an den Administrator dieser Instanz.',
'auth.register.form.email.label': 'E-Mail',
'auth.register.form.email.placeholder': 'Beispiel: ada@papra.app',
'auth.register.form.email.required': 'Bitte geben Sie Ihre E-Mail-Adresse ein',
'auth.register.form.email.invalid': 'Diese E-Mail-Adresse ist ungültig',
'auth.register.form.password.label': 'Passwort',
'auth.register.form.password.placeholder': 'Passwort festlegen',
'auth.register.form.password.required': 'Bitte geben Sie Ihr Passwort ein',
'auth.register.form.password.min-length': 'Das Passwort muss mindestens {{ minLength }} Zeichen lang sein',
'auth.register.form.password.max-length': 'Das Passwort muss weniger als {{ maxLength }} Zeichen lang sein',
'auth.register.form.name.label': 'Name',
'auth.register.form.name.placeholder': 'Beispiel: Ada Lovelace',
'auth.register.form.name.required': 'Bitte geben Sie Ihren Namen ein',
'auth.register.form.name.max-length': 'Der Name muss weniger als {{ maxLength }} Zeichen lang sein',
'auth.register.form.submit': 'Registrieren',
'auth.email-validation-required.title': 'E-Mail verifizieren',
'auth.email-validation-required.description': 'Eine Verifizierungs-E-Mail wurde an Ihre E-Mail-Adresse gesendet. Bitte verifizieren Sie Ihre E-Mail-Adresse, indem Sie auf den Link in der E-Mail klicken.',
'auth.legal-links.description': 'Indem Sie fortfahren, bestätigen Sie, dass Sie die {{ terms }} und die {{ privacy }} verstanden haben und ihnen zustimmen.',
'auth.legal-links.terms': 'Nutzungsbedingungen',
'auth.legal-links.privacy': 'Datenschutzrichtlinie',
'auth.no-auth-provider.title': 'Kein Authentifizierungsanbieter',
'auth.no-auth-provider.description': 'Es gibt keine Authentifizierungsanbieter auf dieser Papra-Instanz. Bitte kontaktieren Sie den Administrator dieser Instanz, um sie zu aktivieren.',
// User settings
'user.settings.title': 'Benutzereinstellungen',
'user.settings.description': 'Verwalten Sie hier Ihre Kontoeinstellungen.',
'user.settings.email.title': 'E-Mail-Adresse',
'user.settings.email.description': 'Ihre E-Mail-Adresse kann nicht geändert werden.',
'user.settings.email.label': 'E-Mail-Adresse',
'user.settings.name.title': 'Vollständiger Name',
'user.settings.name.description': 'Ihr vollständiger Name wird anderen Organisationsmitgliedern angezeigt.',
'user.settings.name.label': 'Vollständiger Name',
'user.settings.name.placeholder': 'Z.B. Max Mustermann',
'user.settings.name.update': 'Namen aktualisieren',
'user.settings.name.updated': 'Ihr vollständiger Name wurde aktualisiert',
'user.settings.logout.title': 'Abmelden',
'user.settings.logout.description': 'Melden Sie sich von Ihrem Konto ab. Sie können sich später wieder anmelden.',
'user.settings.logout.button': 'Abmelden',
// Organizations
'organizations.list.title': 'Ihre Organisationen',
'organizations.list.description': 'Organisationen sind eine Möglichkeit, Ihre Dokumente zu gruppieren und den Zugriff darauf zu verwalten. Sie können mehrere Organisationen erstellen und Ihre Teammitglieder zur Zusammenarbeit einladen.',
'organizations.list.create-new': 'Neue Organisation erstellen',
'organizations.details.no-documents.title': 'Keine Dokumente',
'organizations.details.no-documents.description': 'Es sind noch keine Dokumente in dieser Organisation vorhanden. Beginnen Sie mit dem Hochladen von Dokumenten.',
'organizations.details.upload-documents': 'Dokumente hochladen',
'organizations.details.documents-count': 'Dokumente insgesamt',
'organizations.details.total-size': 'Gesamtgröße',
'organizations.details.latest-documents': 'Neueste importierte Dokumente',
'organizations.create.title': 'Eine neue Organisation erstellen',
'organizations.create.description': 'Ihre Dokumente werden nach Organisation gruppiert. Sie können mehrere Organisationen erstellen, um Ihre Dokumente zu trennen, z.B. für persönliche und geschäftliche Dokumente.',
'organizations.create.back': 'Zurück',
'organizations.create.error.max-count-reached': 'Sie haben die maximale Anzahl an Organisationen erreicht, die Sie erstellen können. Wenn Sie weitere erstellen möchten, kontaktieren Sie bitte den Support.',
'organizations.create.form.name.label': 'Name der Organisation',
'organizations.create.form.name.placeholder': 'Z.B. Acme Inc.',
'organizations.create.form.name.required': 'Bitte geben Sie einen Organisationsnamen ein',
'organizations.create.form.submit': 'Organisation erstellen',
'organizations.create.success': 'Organisation erfolgreich erstellt',
'organizations.create-first.title': 'Erstellen Sie Ihre Organisation',
'organizations.create-first.description': 'Ihre Dokumente werden nach Organisation gruppiert. Sie können mehrere Organisationen erstellen, um Ihre Dokumente zu trennen, z.B. für persönliche und geschäftliche Dokumente.',
'organizations.create-first.default-name': 'Meine Organisation',
'organizations.create-first.user-name': 'Organisation von "{{ name }}"',
'organization.settings.title': 'Organisationseinstellungen',
'organization.settings.page.title': 'Organisationseinstellungen',
'organization.settings.page.description': 'Verwalten Sie hier Ihre Organisationseinstellungen.',
'organization.settings.name.title': 'Name der Organisation',
'organization.settings.name.update': 'Namen aktualisieren',
'organization.settings.name.placeholder': 'Z.B. Acme Inc.',
'organization.settings.name.updated': 'Organisationsname aktualisiert',
'organization.settings.subscription.title': 'Abonnement',
'organization.settings.subscription.description': 'Verwalten Sie Ihre Abrechnung, Rechnungen und Zahlungsmethoden.',
'organization.settings.subscription.manage': 'Abonnement verwalten',
'organization.settings.subscription.error': 'Kundenportal-URL konnte nicht abgerufen werden',
'organization.settings.delete.title': 'Organisation löschen',
'organization.settings.delete.description': 'Das Löschen dieser Organisation entfernt dauerhaft alle damit verbundenen Daten.',
'organization.settings.delete.confirm.title': 'Organisation löschen',
'organization.settings.delete.confirm.message': 'Sind Sie sicher, dass Sie diese Organisation löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden und alle mit dieser Organisation verbundenen Daten werden dauerhaft entfernt.',
'organization.settings.delete.confirm.confirm-button': 'Organisation löschen',
'organization.settings.delete.confirm.cancel-button': 'Abbrechen',
'organization.settings.delete.success': 'Organisation gelöscht',
'organizations.members.title': 'Mitglieder',
'organizations.members.description': 'Verwalten Sie Ihre Organisationsmitglieder',
'organizations.members.invite-member': 'Mitglied einladen',
'organizations.members.invite-member-disabled-tooltip': 'Nur Administratoren oder Eigentümer können Mitglieder in die Organisation einladen',
'organizations.members.remove-from-organization': 'Aus Organisation entfernen',
'organizations.members.role': 'Rolle',
'organizations.members.roles.owner': 'Eigentümer',
'organizations.members.roles.admin': 'Administrator',
'organizations.members.roles.member': 'Mitglied',
'organizations.members.delete.confirm.title': 'Mitglied entfernen',
'organizations.members.delete.confirm.message': 'Sind Sie sicher, dass Sie dieses Mitglied aus der Organisation entfernen möchten?',
'organizations.members.delete.confirm.confirm-button': 'Entfernen',
'organizations.members.delete.confirm.cancel-button': 'Abbrechen',
'organizations.members.delete.success': 'Mitglied aus Organisation entfernt',
'organizations.members.update-role.success': 'Mitgliederrolle aktualisiert',
'organizations.members.table.headers.name': 'Name',
'organizations.members.table.headers.email': 'E-Mail',
'organizations.members.table.headers.role': 'Rolle',
'organizations.members.table.headers.created': 'Erstellt',
'organizations.members.table.headers.actions': 'Aktionen',
'organizations.invite-member.title': 'Mitglied einladen',
'organizations.invite-member.description': 'Laden Sie ein Mitglied in Ihre Organisation ein',
'organizations.invite-member.form.email.label': 'E-Mail',
'organizations.invite-member.form.email.placeholder': 'Beispiel: ada@papra.app',
'organizations.invite-member.form.email.required': 'Bitte geben Sie eine gültige E-Mail-Adresse ein',
'organizations.invite-member.form.role.label': 'Rolle',
'organizations.invite-member.form.submit': 'In Organisation einladen',
'organizations.invite-member.success.message': 'Mitglied eingeladen',
'organizations.invite-member.success.description': 'Die E-Mail wurde in die Organisation eingeladen.',
'organizations.invite-member.error.message': 'Mitglied konnte nicht eingeladen werden',
'organizations.invitations.title': 'Einladungen',
'organizations.invitations.description': 'Verwalten Sie Ihre Organisationseinladungen',
'organizations.invitations.list.cta': 'Mitglied einladen',
'organizations.invitations.list.empty.title': 'Keine ausstehenden Einladungen',
'organizations.invitations.list.empty.description': 'Sie wurden noch nicht zu Organisationen eingeladen.',
'organizations.invitations.status.pending': 'Ausstehend',
'organizations.invitations.status.accepted': 'Angenommen',
'organizations.invitations.status.rejected': 'Abgelehnt',
'organizations.invitations.status.expired': 'Abgelaufen',
'organizations.invitations.status.cancelled': 'Abgebrochen',
'organizations.invitations.resend': 'Einladung erneut senden',
'organizations.invitations.cancel.title': 'Einladung abbrechen',
'organizations.invitations.cancel.description': 'Sind Sie sicher, dass Sie diese Einladung abbrechen möchten?',
'organizations.invitations.cancel.confirm': 'Einladung abbrechen',
'organizations.invitations.cancel.cancel': 'Abbrechen',
'organizations.invitations.resend.title': 'Einladung erneut senden',
'organizations.invitations.resend.description': 'Sind Sie sicher, dass Sie diese Einladung erneut senden möchten? Dadurch wird eine neue E-Mail an den Empfänger gesendet.',
'organizations.invitations.resend.confirm': 'Einladung erneut senden',
'organizations.invitations.resend.cancel': 'Abbrechen',
'invitations.list.title': 'Einladungen',
'invitations.list.description': 'Verwalten Sie Ihre Organisationseinladungen',
'invitations.list.empty.title': 'Keine ausstehenden Einladungen',
'invitations.list.empty.description': 'Sie wurden noch nicht zu Organisationen eingeladen.',
'invitations.list.headers.organization': 'Organisation',
'invitations.list.headers.status': 'Status',
'invitations.list.headers.created': 'Erstellt',
'invitations.list.headers.actions': 'Aktionen',
'invitations.list.actions.accept': 'Annehmen',
'invitations.list.actions.reject': 'Ablehnen',
'invitations.list.actions.accept.success.message': 'Einladung angenommen',
'invitations.list.actions.accept.success.description': 'Die Einladung wurde angenommen.',
'invitations.list.actions.reject.success.message': 'Einladung abgelehnt',
'invitations.list.actions.reject.success.description': 'Die Einladung wurde abgelehnt.',
// Documents
'documents.list.title': 'Dokumente',
'documents.list.no-documents.title': 'Keine Dokumente',
'documents.list.no-documents.description': 'Es sind noch keine Dokumente in dieser Organisation vorhanden. Beginnen Sie mit dem Hochladen von Dokumenten.',
'documents.list.no-results': 'Keine Dokumente gefunden',
'documents.tabs.info': 'Info',
'documents.tabs.content': 'Inhalt',
'documents.tabs.activity': 'Aktivität',
'documents.deleted.message': 'Dieses Dokument wurde gelöscht und wird in {{ days }} Tagen dauerhaft entfernt.',
'documents.actions.download': 'Herunterladen',
'documents.actions.open-in-new-tab': 'In neuem Tab öffnen',
'documents.actions.restore': 'Wiederherstellen',
'documents.actions.delete': 'Löschen',
'documents.actions.edit': 'Bearbeiten',
'documents.actions.cancel': 'Abbrechen',
'documents.actions.save': 'Speichern',
'documents.actions.saving': 'Speichern...',
'documents.content.alert': 'Der Inhalt des Dokuments wird beim Hochladen automatisch aus dem Dokument extrahiert. Er wird nur für Such- und Indexierungszwecke verwendet.',
'documents.content.empty-placeholder': 'Dieses Dokument hat keinen extrahierten Inhalt, Sie können ihn manuell hier eintragen.',
'documents.info.id': 'ID',
'documents.info.name': 'Name',
'documents.info.type': 'Typ',
'documents.info.size': 'Größe',
'documents.info.created-at': 'Erstellt am',
'documents.info.updated-at': 'Aktualisiert am',
'documents.info.never': 'Nie',
'documents.rename.title': 'Dokument umbenennen',
'documents.rename.form.name.label': 'Name',
'documents.rename.form.name.placeholder': 'Beispiel: Rechnung 2024',
'documents.rename.form.name.required': 'Bitte geben Sie einen Namen für das Dokument ein',
'documents.rename.form.name.max-length': 'Der Name muss weniger als 255 Zeichen lang sein',
'documents.rename.form.submit': 'Dokument umbenennen',
'documents.rename.success': 'Dokument erfolgreich umbenannt',
'documents.rename.cancel': 'Abbrechen',
'import-documents.title.error': '{{ count }} Dokumente fehlgeschlagen',
'import-documents.title.success': '{{ count }} Dokumente importiert',
'import-documents.title.pending': '{{ count }} / {{ total }} Dokumente importiert',
'import-documents.title.none': 'Dokumente importieren',
'import-documents.no-import-in-progress': 'Kein Dokumentimport im Gange',
'documents.deleted.title': 'Gelöschte Dokumente',
'documents.deleted.empty.title': 'Keine gelöschten Dokumente',
'documents.deleted.empty.description': 'Sie haben keine gelöschten Dokumente. Gelöschte Dokumente werden für {{ days }} Tage in den Papierkorb verschoben.',
'documents.deleted.retention-notice': 'Alle gelöschten Dokumente werden für {{ days }} Tage im Papierkorb gespeichert. Nach Ablauf dieser Frist werden die Dokumente dauerhaft gelöscht und Sie können sie nicht wiederherstellen.',
'documents.deleted.deleted-at': 'Gelöscht',
'documents.deleted.restoring': 'Wiederherstellen...',
'documents.deleted.deleting': 'Löschen...',
'documents.preview.unknown-file-type': 'Kein Vorschau verfügbar für diesen Dateityp',
'documents.preview.binary-file': 'Dies scheint eine Binärdatei zu sein und kann nicht als Text angezeigt werden',
'trash.delete-all.button': 'Alles löschen',
'trash.delete-all.confirm.title': 'Alle Dokumente dauerhaft löschen?',
'trash.delete-all.confirm.description': 'Sind Sie sicher, dass Sie alle Dokumente aus dem Papierkorb dauerhaft löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.',
'trash.delete-all.confirm.label': 'Löschen',
'trash.delete-all.confirm.cancel': 'Abbrechen',
'trash.delete.button': 'Löschen',
'trash.delete.confirm.title': 'Dokument dauerhaft löschen?',
'trash.delete.confirm.description': 'Sind Sie sicher, dass Sie dieses Dokument dauerhaft aus dem Papierkorb löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.',
'trash.delete.confirm.label': 'Löschen',
'trash.delete.confirm.cancel': 'Abbrechen',
'trash.deleted.success.title': 'Dokument gelöscht',
'trash.deleted.success.description': 'Das Dokument wurde dauerhaft gelöscht.',
'activity.document.created': 'Das Dokument wurde erstellt',
'activity.document.updated.single': 'Das Feld {{ field }} wurde aktualisiert',
'activity.document.updated.multiple': 'Die Felder {{ fields }} wurden aktualisiert',
'activity.document.updated': 'Das Dokument wurde aktualisiert',
'activity.document.deleted': 'Das Dokument wurde gelöscht',
'activity.document.restored': 'Das Dokument wurde wiederhergestellt',
'activity.document.tagged': 'Tag {{ tag }} wurde hinzugefügt',
'activity.document.untagged': 'Tag {{ tag }} wurde entfernt',
'activity.document.user.name': 'von {{ name }}',
'activity.load-more': 'Mehr laden',
'activity.no-more-activities': 'Keine weiteren Aktivitäten für dieses Dokument',
// Tags
'tags.no-tags.title': 'Noch keine Tags',
'tags.no-tags.description': 'Diese Organisation hat noch keine Tags. Tags werden zur Kategorisierung von Dokumenten verwendet. Sie können Ihren Dokumenten Tags hinzufügen, um sie leichter zu finden und zu organisieren.',
'tags.no-tags.create-tag': 'Tag erstellen',
'tags.title': 'Dokumenten-Tags',
'tags.description': 'Tags werden zur Kategorisierung von Dokumenten verwendet. Sie können Ihren Dokumenten Tags hinzufügen, um sie leichter zu finden und zu organisieren.',
'tags.create': 'Tag erstellen',
'tags.update': 'Tag aktualisieren',
'tags.delete': 'Tag löschen',
'tags.delete.confirm.title': 'Tag löschen',
'tags.delete.confirm.message': 'Sind Sie sicher, dass Sie diesen Tag löschen möchten? Das Löschen eines Tags entfernt ihn von allen Dokumenten.',
'tags.delete.confirm.confirm-button': 'Löschen',
'tags.delete.confirm.cancel-button': 'Abbrechen',
'tags.delete.success': 'Tag erfolgreich gelöscht',
'tags.create.success': 'Tag "{{ name }}" erfolgreich erstellt.',
'tags.update.success': 'Tag "{{ name }}" erfolgreich aktualisiert.',
'tags.form.name.label': 'Name',
'tags.form.name.placeholder': 'Z.B. Verträge',
'tags.form.name.required': 'Bitte geben Sie einen Tag-Namen ein',
'tags.form.name.max-length': 'Tag-Name muss weniger als 64 Zeichen lang sein',
'tags.form.color.label': 'Farbe',
'tags.form.color.required': 'Bitte geben Sie eine Farbe ein',
'tags.form.color.invalid': 'Die Hex-Farbe ist falsch formatiert.',
'tags.form.description.label': 'Beschreibung',
'tags.form.description.optional': '(optional)',
'tags.form.description.placeholder': 'Z.B. Alle von der Firma unterzeichneten Verträge',
'tags.form.description.max-length': 'Beschreibung muss weniger als 256 Zeichen lang sein',
'tags.form.no-description': 'Keine Beschreibung',
'tags.table.headers.tag': 'Tag',
'tags.table.headers.description': 'Beschreibung',
'tags.table.headers.documents': 'Dokumente',
'tags.table.headers.created': 'Erstellt',
'tags.table.headers.actions': 'Aktionen',
// Tagging rules
'tagging-rules.field.name': 'Dokumentenname',
'tagging-rules.field.content': 'Dokumenteninhalt',
'tagging-rules.operator.equals': 'ist gleich',
'tagging-rules.operator.not-equals': 'ist nicht gleich',
'tagging-rules.operator.contains': 'enthält',
'tagging-rules.operator.not-contains': 'enthält nicht',
'tagging-rules.operator.starts-with': 'beginnt mit',
'tagging-rules.operator.ends-with': 'endet mit',
'tagging-rules.list.title': 'Tagging-Regeln',
'tagging-rules.list.description': 'Verwalten Sie die Tagging-Regeln Ihrer Organisation, um Dokumente automatisch basierend auf von Ihnen definierten Bedingungen zu taggen.',
'tagging-rules.list.demo-warning': 'Hinweis: Da dies eine Demo-Umgebung (ohne Server) ist, werden Tagging-Regeln nicht auf neu hinzugefügte Dokumente angewendet.',
'tagging-rules.list.no-tagging-rules.title': 'Keine Tagging-Regeln',
'tagging-rules.list.no-tagging-rules.description': 'Erstellen Sie eine Tagging-Regel, um Ihre hinzugefügten Dokumente automatisch basierend auf von Ihnen definierten Bedingungen zu taggen.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Tagging-Regel erstellen',
'tagging-rules.list.card.no-conditions': 'Keine Bedingungen',
'tagging-rules.list.card.one-condition': '1 Bedingung',
'tagging-rules.list.card.conditions': '{{ count }} Bedingungen',
'tagging-rules.list.card.delete': 'Regel löschen',
'tagging-rules.list.card.edit': 'Regel bearbeiten',
'tagging-rules.create.title': 'Tagging-Regel erstellen',
'tagging-rules.create.success': 'Tagging-Regel erfolgreich erstellt',
'tagging-rules.create.error': 'Tagging-Regel konnte nicht erstellt werden',
'tagging-rules.create.submit': 'Regel erstellen',
'tagging-rules.form.name.label': 'Name',
'tagging-rules.form.name.placeholder': 'Beispiel: Rechnungen taggen',
'tagging-rules.form.name.min-length': 'Bitte geben Sie einen Namen für die Regel ein',
'tagging-rules.form.name.max-length': 'Der Name muss weniger als 64 Zeichen lang sein',
'tagging-rules.form.description.label': 'Beschreibung',
'tagging-rules.form.description.placeholder': 'Beispiel: Dokumente mit \'Rechnung\' im Namen taggen',
'tagging-rules.form.description.max-length': 'Die Beschreibung muss weniger als 256 Zeichen lang sein',
'tagging-rules.form.conditions.label': 'Bedingungen',
'tagging-rules.form.conditions.description': 'Definieren Sie die Bedingungen, die erfüllt sein müssen, damit die Regel angewendet wird. Alle Bedingungen müssen erfüllt sein, damit die Regel angewendet wird.',
'tagging-rules.form.conditions.add-condition': 'Bedingung hinzufügen',
'tagging-rules.form.conditions.no-conditions.title': 'Keine Bedingungen',
'tagging-rules.form.conditions.no-conditions.description': 'Sie haben dieser Regel keine Bedingungen hinzugefügt. Diese Regel wendet ihre Tags auf alle Dokumente an.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Regel ohne Bedingungen anwenden',
'tagging-rules.form.conditions.no-conditions.cancel': 'Abbrechen',
'tagging-rules.form.conditions.value.placeholder': 'Beispiel: Rechnung',
'tagging-rules.form.conditions.value.min-length': 'Bitte geben Sie einen Wert für die Bedingung ein',
'tagging-rules.form.tags.label': 'Tags',
'tagging-rules.form.tags.description': 'Wählen Sie die Tags aus, die auf die hinzugefügten Dokumente angewendet werden sollen, die den Bedingungen entsprechen',
'tagging-rules.form.tags.min-length': 'Es ist mindestens ein anzuwendender Tag erforderlich',
'tagging-rules.form.tags.add-tag': 'Tag erstellen',
'tagging-rules.form.submit': 'Regel erstellen',
'tagging-rules.update.title': 'Tagging-Regel aktualisieren',
'tagging-rules.update.error': 'Tagging-Regel konnte nicht aktualisiert werden',
'tagging-rules.update.submit': 'Regel aktualisieren',
'tagging-rules.update.cancel': 'Abbrechen',
// Intake emails
'intake-emails.title': 'E-Mail-Eingang',
'intake-emails.description': 'E-Mail-Eingangsadressen werden verwendet, um E-Mails automatisch in Papra aufzunehmen. Leiten Sie einfach E-Mails an die Eingangsadresse weiter und deren Anhänge werden zu den Dokumenten Ihrer Organisation hinzugefügt.',
'intake-emails.disabled.title': 'E-Mail-Eingang ist deaktiviert',
'intake-emails.disabled.description': 'E-Mail-Eingang ist auf dieser Instanz deaktiviert. Bitte kontaktieren Sie Ihren Administrator, um ihn zu aktivieren. Weitere Informationen finden Sie in der {{ documentation }}.',
'intake-emails.disabled.documentation': 'Dokumentation',
'intake-emails.info': 'Es werden nur aktivierte E-Mails aus zulässigen Ursprüngen verarbeitet. Sie können eine E-Mail-Eingangsadresse jederzeit aktivieren oder deaktivieren.',
'intake-emails.empty.title': 'Keine E-Mail-Eingänge',
'intake-emails.empty.description': 'Generieren Sie eine Eingangsadresse, um E-Mail-Anhänge einfach aufzunehmen.',
'intake-emails.empty.generate': 'E-Mail-Eingang generieren',
'intake-emails.count': '{{ count }} Eingangse-Mail{{ plural }} für diese Organisation',
'intake-emails.new': 'Neue Eingangse-Mail',
'intake-emails.disabled-label': '(Deaktiviert)',
'intake-emails.no-origins': 'Keine zulässigen E-Mail-Ursprünge',
'intake-emails.allowed-origins': 'Zulässig von {{ count }} Adresse{{ plural }}',
'intake-emails.actions.enable': 'Aktivieren',
'intake-emails.actions.disable': 'Deaktivieren',
'intake-emails.actions.manage-origins': 'Ursprungsadressen verwalten',
'intake-emails.actions.delete': 'Löschen',
'intake-emails.delete.confirm.title': 'Eingangse-Mail löschen?',
'intake-emails.delete.confirm.message': 'Sind Sie sicher, dass Sie diese Eingangse-Mail löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.',
'intake-emails.delete.confirm.confirm-button': 'Eingangse-Mail löschen',
'intake-emails.delete.confirm.cancel-button': 'Abbrechen',
'intake-emails.delete.success': 'Eingangse-Mail gelöscht',
'intake-emails.create.success': 'Eingangse-Mail erstellt',
'intake-emails.update.success.enabled': 'Eingangse-Mail aktiviert',
'intake-emails.update.success.disabled': 'Eingangse-Mail deaktiviert',
'intake-emails.allowed-origins.title': 'Zulässige Ursprünge',
'intake-emails.allowed-origins.description': 'Es werden nur E-Mails, die an {{ email }} von diesen Ursprüngen gesendet werden, verarbeitet. Wenn keine Ursprünge angegeben sind, werden alle E-Mails verworfen.',
'intake-emails.allowed-origins.add.label': 'Zulässige Ursprungs-E-Mail hinzufügen',
'intake-emails.allowed-origins.add.placeholder': 'Z.B. ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Hinzufügen',
'intake-emails.allowed-origins.add.error.exists': 'Diese E-Mail ist bereits in den zulässigen Ursprüngen für diese Eingangse-Mail vorhanden',
// API keys
'api-keys.permissions.documents.title': 'Dokumente',
'api-keys.permissions.documents.documents:create': 'Dokumente erstellen',
'api-keys.permissions.documents.documents:read': 'Dokumente lesen',
'api-keys.permissions.documents.documents:update': 'Dokumente aktualisieren',
'api-keys.permissions.documents.documents:delete': 'Dokumente löschen',
'api-keys.permissions.tags.title': 'Tags',
'api-keys.permissions.tags.tags:create': 'Tags erstellen',
'api-keys.permissions.tags.tags:read': 'Tags lesen',
'api-keys.permissions.tags.tags:update': 'Tags aktualisieren',
'api-keys.permissions.tags.tags:delete': 'Tags löschen',
'api-keys.create.title': 'API-Schlüssel erstellen',
'api-keys.create.description': 'Erstellen Sie einen neuen API-Schlüssel, um auf die Papra API zuzugreifen.',
'api-keys.create.success': 'Der API-Schlüssel wurde erfolgreich erstellt.',
'api-keys.create.back': 'Zurück zu den API-Schlüsseln',
'api-keys.create.form.name.label': 'Name',
'api-keys.create.form.name.placeholder': 'Beispiel: Mein API-Schlüssel',
'api-keys.create.form.name.required': 'Bitte geben Sie einen Namen für den API-Schlüssel ein',
'api-keys.create.form.permissions.label': 'Berechtigungen',
'api-keys.create.form.permissions.required': 'Bitte wählen Sie mindestens eine Berechtigung aus',
'api-keys.create.form.submit': 'API-Schlüssel erstellen',
'api-keys.create.created.title': 'API-Schlüssel erstellt',
'api-keys.create.created.description': 'Der API-Schlüssel wurde erfolgreich erstellt. Speichern Sie ihn an einem sicheren Ort, da er nicht erneut angezeigt wird.',
'api-keys.list.title': 'API-Schlüssel',
'api-keys.list.description': 'Verwalten Sie hier Ihre API-Schlüssel.',
'api-keys.list.create': 'API-Schlüssel erstellen',
'api-keys.list.empty.title': 'Keine API-Schlüssel',
'api-keys.list.empty.description': 'Erstellen Sie einen API-Schlüssel, um auf die Papra API zuzugreifen.',
'api-keys.list.card.last-used': 'Zuletzt verwendet',
'api-keys.list.card.never': 'Nie',
'api-keys.list.card.created': 'Erstellt',
'api-keys.delete.success': 'Der API-Schlüssel wurde erfolgreich gelöscht',
'api-keys.delete.confirm.title': 'API-Schlüssel löschen',
'api-keys.delete.confirm.message': 'Sind Sie sicher, dass Sie diesen API-Schlüssel löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.',
'api-keys.delete.confirm.confirm-button': 'Löschen',
'api-keys.delete.confirm.cancel-button': 'Abbrechen',
// Webhooks
'webhooks.list.title': 'Webhooks',
'webhooks.list.description': 'Verwalten Sie Ihre Organisations-Webhooks',
'webhooks.list.empty.title': 'Keine Webhooks',
'webhooks.list.empty.description': 'Erstellen Sie Ihren ersten Webhook, um Ereignisse zu empfangen',
'webhooks.list.create': 'Webhook erstellen',
'webhooks.list.card.last-triggered': 'Zuletzt ausgelöst',
'webhooks.list.card.never': 'Nie',
'webhooks.list.card.created': 'Erstellt',
'webhooks.create.title': 'Webhook erstellen',
'webhooks.create.description': 'Erstellen Sie einen neuen Webhook, um Ereignisse zu empfangen',
'webhooks.create.success': 'Webhook erfolgreich erstellt',
'webhooks.create.back': 'Zurück',
'webhooks.create.form.submit': 'Webhook erstellen',
'webhooks.create.form.name.label': 'Webhook-Name',
'webhooks.create.form.name.placeholder': 'Webhook-Namen eingeben',
'webhooks.create.form.name.required': 'Name ist erforderlich',
'webhooks.create.form.url.label': 'Webhook-URL',
'webhooks.create.form.url.placeholder': 'Webhook-URL eingeben',
'webhooks.create.form.url.required': 'URL ist erforderlich',
'webhooks.create.form.url.invalid': 'URL ist ungültig',
'webhooks.create.form.secret.label': 'Geheimnis',
'webhooks.create.form.secret.placeholder': 'Webhook-Geheimnis eingeben',
'webhooks.create.form.events.label': 'Ereignisse',
'webhooks.create.form.events.required': 'Mindestens ein Ereignis ist erforderlich',
'webhooks.update.title': 'Webhook bearbeiten',
'webhooks.update.description': 'Aktualisieren Sie Ihre Webhook-Details',
'webhooks.update.success': 'Webhook erfolgreich aktualisiert',
'webhooks.update.submit': 'Webhook aktualisieren',
'webhooks.update.cancel': 'Abbrechen',
'webhooks.update.form.secret.placeholder': 'Neues Geheimnis eingeben',
'webhooks.update.form.secret.placeholder-redacted': '[Geheimnis geschwärzt]',
'webhooks.update.form.rotate-secret.button': 'Geheimnis rotieren',
'webhooks.delete.success': 'Webhook erfolgreich gelöscht',
'webhooks.delete.confirm.title': 'Webhook löschen',
'webhooks.delete.confirm.message': 'Sind Sie sicher, dass Sie diesen Webhook löschen möchten?',
'webhooks.delete.confirm.confirm-button': 'Löschen',
'webhooks.delete.confirm.cancel-button': 'Abbrechen',
'webhooks.events.documents.title': 'Dokumente Ereignisse',
'webhooks.events.documents.document:created.description': 'Dokument erstellt',
'webhooks.events.documents.document:deleted.description': 'Dokument gelöscht',
'webhooks.events.documents.document:updated.description': 'Dokument aktualisiert',
'webhooks.events.documents.document:tag:added.description': 'Ein Tag wurde zu einem Dokument hinzugefügt',
'webhooks.events.documents.document:tag:removed.description': 'Ein Tag wurde von einem Dokument entfernt',
// Navigation
'layout.menu.home': 'Startseite',
'layout.menu.documents': 'Dokumente',
'layout.menu.tags': 'Tags',
'layout.menu.tagging-rules': 'Tagging-Regeln',
'layout.menu.deleted-documents': 'Gelöschte Dokumente',
'layout.menu.organization-settings': 'Einstellungen',
'layout.menu.api-keys': 'API-Schlüssel',
'layout.menu.settings': 'Einstellungen',
'layout.menu.account': 'Konto',
'layout.menu.general-settings': 'Allgemeine Einstellungen',
'layout.menu.intake-emails': 'E-Mail-Eingang',
'layout.menu.webhooks': 'Webhooks',
'layout.menu.members': 'Mitglieder',
'layout.menu.invitations': 'Einladungen',
'layout.theme.light': 'Heller Modus',
'layout.theme.dark': 'Dunkler Modus',
'layout.theme.system': 'Systemmodus',
'layout.search.placeholder': 'Suchen...',
'layout.menu.import-document': 'Dokument importieren',
'user-menu.account-settings': 'Kontoeinstellungen',
'user-menu.api-keys': 'API-Schlüssel',
'user-menu.invitations': 'Einladungen',
'user-menu.language': 'Sprache',
'user-menu.logout': 'Abmelden',
// Command palette
'command-palette.search.placeholder': 'Befehle oder Dokumente suchen',
'command-palette.no-results': 'Keine Ergebnisse gefunden',
'command-palette.sections.documents': 'Dokumente',
'command-palette.sections.theme': 'Thema',
// API errors
'api-errors.document.already_exists': 'Das Dokument existiert bereits',
'api-errors.document.file_too_big': 'Die Dokumentdatei ist zu groß',
'api-errors.intake_email.limit_reached': 'Die maximale Anzahl an Eingangse-Mails für diese Organisation wurde erreicht. Bitte aktualisieren Sie Ihren Plan, um weitere Eingangse-Mails zu erstellen.',
'api-errors.user.max_organization_count_reached': 'Sie haben die maximale Anzahl an Organisationen erreicht, die Sie erstellen können. Wenn Sie weitere erstellen möchten, kontaktieren Sie bitte den Support.',
'api-errors.default': 'Beim Verarbeiten Ihrer Anfrage ist ein Fehler aufgetreten.',
'api-errors.organization.invitation_already_exists': 'Eine Einladung für diese E-Mail existiert bereits in dieser Organisation.',
'api-errors.user.already_in_organization': 'Dieser Benutzer ist bereits in dieser Organisation.',
'api-errors.user.organization_invitation_limit_reached': 'Die maximale Anzahl an Einladungen für heute wurde erreicht. Bitte versuchen Sie es morgen erneut.',
'api-errors.demo.not_available': 'Diese Funktion ist in der Demo nicht verfügbar',
'api-errors.tags.already_exists': 'Ein Tag mit diesem Namen existiert bereits für diese Organisation',
'api-errors.internal.error': 'Beim Verarbeiten Ihrer Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.',
'api-errors.auth.invalid_origin': 'Ungültige Anwendungs-Ursprung. Wenn Sie Papra selbst hosten, stellen Sie sicher, dass Ihre APP_BASE_URL-Umgebungsvariable mit Ihrer aktuellen URL übereinstimmt. Weitere Details finden Sie unter https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Seite nicht gefunden',
'not-found.description': 'Entschuldigung, die gesuchte Seite scheint nicht zu existieren. Bitte überprüfen Sie die URL und versuchen Sie es erneut.',
'not-found.back-to-home': 'Zurück zur Startseite',
// Demo
'demo.popup.description': 'Dies ist eine Demo-Umgebung, alle Daten werden im lokalen Speicher Ihres Browsers gespeichert.',
'demo.popup.discord': 'Treten Sie dem {{ discordLink }} bei, um Support zu erhalten, Funktionen vorzuschlagen oder einfach nur zu chatten.',
'demo.popup.discord-link-label': 'Discord-Server',
'demo.popup.reset': 'Demo-Daten zurücksetzen',
'demo.popup.hide': 'Ausblenden',
// Color picker
'color-picker.hue': 'Farbton',
'color-picker.saturation': 'Sättigung',
'color-picker.lightness': 'Helligkeit',
'color-picker.select-color': 'Farbe auswählen',
'color-picker.select-a-color': 'Eine Farbe auswählen',
};

View File

@@ -0,0 +1,575 @@
export const translations = {
// Authentication
'auth.request-password-reset.title': 'Reset your password',
'auth.request-password-reset.description': 'Enter your email to reset your password.',
'auth.request-password-reset.requested': 'If an account exists for this email, we\'ve sent you an email to reset your password.',
'auth.request-password-reset.back-to-login': 'Back to login',
'auth.request-password-reset.form.email.label': 'Email',
'auth.request-password-reset.form.email.placeholder': 'Example: ada@papra.app',
'auth.request-password-reset.form.email.required': 'Please enter your email address',
'auth.request-password-reset.form.email.invalid': 'This email address is invalid',
'auth.request-password-reset.form.submit': 'Request password reset',
'auth.reset-password.title': 'Reset your password',
'auth.reset-password.description': 'Enter your new password to reset your password.',
'auth.reset-password.reset': 'Your password has been reset.',
'auth.reset-password.back-to-login': 'Back to login',
'auth.reset-password.form.new-password.label': 'New password',
'auth.reset-password.form.new-password.placeholder': 'Example: **********',
'auth.reset-password.form.new-password.required': 'Please enter your new password',
'auth.reset-password.form.new-password.min-length': 'Password must be at least {{ minLength }} characters',
'auth.reset-password.form.new-password.max-length': 'Password must be less than {{ maxLength }} characters',
'auth.reset-password.form.submit': 'Reset password',
'auth.email-provider.open': 'Open {{ provider }}',
'auth.login.title': 'Login to Papra',
'auth.login.description': 'Enter your email or use social login to access your Papra account.',
'auth.login.login-with-provider': 'Login with {{ provider }}',
'auth.login.no-account': 'Don\'t have an account?',
'auth.login.register': 'Register',
'auth.login.form.email.label': 'Email',
'auth.login.form.email.placeholder': 'Example: ada@papra.app',
'auth.login.form.email.required': 'Please enter your email address',
'auth.login.form.email.invalid': 'This email address is invalid',
'auth.login.form.password.label': 'Password',
'auth.login.form.password.placeholder': 'Set a password',
'auth.login.form.password.required': 'Please enter your password',
'auth.login.form.remember-me.label': 'Remember me',
'auth.login.form.forgot-password.label': 'Forgot password?',
'auth.login.form.submit': 'Login',
'auth.register.title': 'Register to Papra',
'auth.register.description': 'Create an account to start using Papra.',
'auth.register.register-with-email': 'Register with email',
'auth.register.register-with-provider': 'Register with {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Already have an account?',
'auth.register.login': 'Login',
'auth.register.registration-disabled.title': 'Registration is disabled',
'auth.register.registration-disabled.description': 'The creation of new accounts is currently disabled on this instance of Papra. Only users with existing accounts can log in. If you think this is a mistake, please contact the administrator of this instance.',
'auth.register.form.email.label': 'Email',
'auth.register.form.email.placeholder': 'Example: ada@papra.app',
'auth.register.form.email.required': 'Please enter your email address',
'auth.register.form.email.invalid': 'This email address is invalid',
'auth.register.form.password.label': 'Password',
'auth.register.form.password.placeholder': 'Set a password',
'auth.register.form.password.required': 'Please enter your password',
'auth.register.form.password.min-length': 'Password must be at least {{ minLength }} characters',
'auth.register.form.password.max-length': 'Password must be less than {{ maxLength }} characters',
'auth.register.form.name.label': 'Name',
'auth.register.form.name.placeholder': 'Example: Ada Lovelace',
'auth.register.form.name.required': 'Please enter your name',
'auth.register.form.name.max-length': 'Name must be less than {{ maxLength }} characters',
'auth.register.form.submit': 'Register',
'auth.email-validation-required.title': 'Verify your email',
'auth.email-validation-required.description': 'A verification email has been sent to your email address. Please verify your email address by clicking the link in the email.',
'auth.legal-links.description': 'By continuing, you acknowledge that you understand and agree to the {{ terms }} and {{ privacy }}.',
'auth.legal-links.terms': 'Terms of Service',
'auth.legal-links.privacy': 'Privacy Policy',
'auth.no-auth-provider.title': 'No authentication provider',
'auth.no-auth-provider.description': 'There are no authentication providers enabled on this instance of Papra. Please contact the administrator of this instance to enable them.',
// User settings
'user.settings.title': 'User settings',
'user.settings.description': 'Manage your account settings here.',
'user.settings.email.title': 'Email address',
'user.settings.email.description': 'Your email address cannot be changed.',
'user.settings.email.label': 'Email address',
'user.settings.name.title': 'Full name',
'user.settings.name.description': 'Your full name is displayed to other organization members.',
'user.settings.name.label': 'Full name',
'user.settings.name.placeholder': 'Eg. John Doe',
'user.settings.name.update': 'Update name',
'user.settings.name.updated': 'Your full name has been updated',
'user.settings.logout.title': 'Logout',
'user.settings.logout.description': 'Logout from your account. You can login again later.',
'user.settings.logout.button': 'Logout',
// Organizations
'organizations.list.title': 'Your organizations',
'organizations.list.description': 'Organizations are a way to group your documents and manage access to them. You can create multiple organizations and invite your team members to collaborate.',
'organizations.list.create-new': 'Create new organization',
'organizations.details.no-documents.title': 'No documents',
'organizations.details.no-documents.description': 'There are no documents in this organization yet. Start by uploading some documents.',
'organizations.details.upload-documents': 'Upload documents',
'organizations.details.documents-count': 'documents in total',
'organizations.details.total-size': 'total size',
'organizations.details.latest-documents': 'Latest imported documents',
'organizations.create.title': 'Create a new organization',
'organizations.create.description': 'Your documents will be grouped by organization. You can create multiple organizations to separate your documents, for example, for personal and work documents.',
'organizations.create.back': 'Back',
'organizations.create.error.max-count-reached': 'You have reached the maximum number of organizations you can create, if you need to create more, please contact support.',
'organizations.create.form.name.label': 'Organization name',
'organizations.create.form.name.placeholder': 'Eg. Acme Inc.',
'organizations.create.form.name.required': 'Please enter an organization name',
'organizations.create.form.submit': 'Create organization',
'organizations.create.success': 'Organization created successfully',
'organizations.create-first.title': 'Create your organization',
'organizations.create-first.description': 'Your documents will be grouped by organization. You can create multiple organizations to separate your documents, for example, for personal and work documents.',
'organizations.create-first.default-name': 'My organization',
'organizations.create-first.user-name': '{{ name }}\'s organization',
'organization.settings.title': 'Organization Settings',
'organization.settings.page.title': 'Organization settings',
'organization.settings.page.description': 'Manage your organization settings here.',
'organization.settings.name.title': 'Organization name',
'organization.settings.name.update': 'Update name',
'organization.settings.name.placeholder': 'Eg. Acme Inc.',
'organization.settings.name.updated': 'Organization name updated',
'organization.settings.subscription.title': 'Subscription',
'organization.settings.subscription.description': 'Manage your billing, invoices and payment methods.',
'organization.settings.subscription.manage': 'Manage subscription',
'organization.settings.subscription.error': 'Failed to get customer portal URL',
'organization.settings.delete.title': 'Delete organization',
'organization.settings.delete.description': 'Deleting this organization will permanently remove all data associated with it.',
'organization.settings.delete.confirm.title': 'Delete organization',
'organization.settings.delete.confirm.message': 'Are you sure you want to delete this organization? This action cannot be undone, and all data associated with this organization will be permanently removed.',
'organization.settings.delete.confirm.confirm-button': 'Delete organization',
'organization.settings.delete.confirm.cancel-button': 'Cancel',
'organization.settings.delete.success': 'Organization deleted',
'organizations.members.title': 'Members',
'organizations.members.description': 'Manage your organization members',
'organizations.members.invite-member': 'Invite member',
'organizations.members.invite-member-disabled-tooltip': 'Only admins or owners can invite members to the organization',
'organizations.members.remove-from-organization': 'Remove from organization',
'organizations.members.role': 'Role',
'organizations.members.roles.owner': 'Owner',
'organizations.members.roles.admin': 'Admin',
'organizations.members.roles.member': 'Member',
'organizations.members.delete.confirm.title': 'Remove member',
'organizations.members.delete.confirm.message': 'Are you sure you want to remove this member from the organization?',
'organizations.members.delete.confirm.confirm-button': 'Remove',
'organizations.members.delete.confirm.cancel-button': 'Cancel',
'organizations.members.delete.success': 'Member removed from organization',
'organizations.members.update-role.success': 'Member role updated',
'organizations.members.table.headers.name': 'Name',
'organizations.members.table.headers.email': 'Email',
'organizations.members.table.headers.role': 'Role',
'organizations.members.table.headers.created': 'Created',
'organizations.members.table.headers.actions': 'Actions',
'organizations.invite-member.title': 'Invite member',
'organizations.invite-member.description': 'Invite a member to your organization',
'organizations.invite-member.form.email.label': 'Email',
'organizations.invite-member.form.email.placeholder': 'Example: ada@papra.app',
'organizations.invite-member.form.email.required': 'Please enter a valid email address',
'organizations.invite-member.form.role.label': 'Role',
'organizations.invite-member.form.submit': 'Invite to organization',
'organizations.invite-member.success.message': 'Member invited',
'organizations.invite-member.success.description': 'The email has been invited to the organization.',
'organizations.invite-member.error.message': 'Failed to invite member',
'organizations.invitations.title': 'Invitations',
'organizations.invitations.description': 'Manage your organization invitations',
'organizations.invitations.list.cta': 'Invite member',
'organizations.invitations.list.empty.title': 'No pending invitations',
'organizations.invitations.list.empty.description': 'You haven\'t been invited to any organizations yet.',
'organizations.invitations.status.pending': 'Pending',
'organizations.invitations.status.accepted': 'Accepted',
'organizations.invitations.status.rejected': 'Rejected',
'organizations.invitations.status.expired': 'Expired',
'organizations.invitations.status.cancelled': 'Cancelled',
'organizations.invitations.resend': 'Resend invitation',
'organizations.invitations.cancel.title': 'Cancel invitation',
'organizations.invitations.cancel.description': 'Are you sure you want to cancel this invitation?',
'organizations.invitations.cancel.confirm': 'Cancel invitation',
'organizations.invitations.cancel.cancel': 'Cancel',
'organizations.invitations.resend.title': 'Resend invitation',
'organizations.invitations.resend.description': 'Are you sure you want to resend this invitation? This will send a new email to the recipient.',
'organizations.invitations.resend.confirm': 'Resend invitation',
'organizations.invitations.resend.cancel': 'Cancel',
'invitations.list.title': 'Invitations',
'invitations.list.description': 'Manage your organization invitations',
'invitations.list.empty.title': 'No pending invitations',
'invitations.list.empty.description': 'You haven\'t been invited to any organizations yet.',
'invitations.list.headers.organization': 'Organization',
'invitations.list.headers.status': 'Status',
'invitations.list.headers.created': 'Created',
'invitations.list.headers.actions': 'Actions',
'invitations.list.actions.accept': 'Accept',
'invitations.list.actions.reject': 'Reject',
'invitations.list.actions.accept.success.message': 'Invitation accepted',
'invitations.list.actions.accept.success.description': 'The invitation has been accepted.',
'invitations.list.actions.reject.success.message': 'Invitation rejected',
'invitations.list.actions.reject.success.description': 'The invitation has been rejected.',
// Documents
'documents.list.title': 'Documents',
'documents.list.no-documents.title': 'No documents',
'documents.list.no-documents.description': 'There are no documents in this organization yet. Start by uploading some documents.',
'documents.list.no-results': 'No documents found',
'documents.tabs.info': 'Info',
'documents.tabs.content': 'Content',
'documents.tabs.activity': 'Activity',
'documents.deleted.message': 'This document has been deleted and will be permanently removed in {{ days }} days.',
'documents.actions.download': 'Download',
'documents.actions.open-in-new-tab': 'Open in new tab',
'documents.actions.restore': 'Restore',
'documents.actions.delete': 'Delete',
'documents.actions.edit': 'Edit',
'documents.actions.cancel': 'Cancel',
'documents.actions.save': 'Save',
'documents.actions.saving': 'Saving...',
'documents.content.alert': 'The content of the document is automatically extracted from the document on upload. It is only used for search and indexing purposes.',
'documents.content.empty-placeholder': 'This document has no extracted content, you can set it manually here.',
'documents.info.id': 'ID',
'documents.info.name': 'Name',
'documents.info.type': 'Type',
'documents.info.size': 'Size',
'documents.info.created-at': 'Created At',
'documents.info.updated-at': 'Updated At',
'documents.info.never': 'Never',
'documents.rename.title': 'Rename document',
'documents.rename.form.name.label': 'Name',
'documents.rename.form.name.placeholder': 'Example: Invoice 2024',
'documents.rename.form.name.required': 'Please enter a name for the document',
'documents.rename.form.name.max-length': 'The name must be less than 255 characters',
'documents.rename.form.submit': 'Rename document',
'documents.rename.success': 'Document renamed successfully',
'documents.rename.cancel': 'Cancel',
'import-documents.title.error': '{{ count }} documents failed',
'import-documents.title.success': '{{ count }} documents imported',
'import-documents.title.pending': '{{ count }} / {{ total }} documents imported',
'import-documents.title.none': 'Import documents',
'import-documents.no-import-in-progress': 'No document import in progress',
'documents.deleted.title': 'Deleted documents',
'documents.deleted.empty.title': 'No deleted documents',
'documents.deleted.empty.description': 'You have no deleted documents. Documents that are deleted will be moved to the trash bin for {{ days }} days.',
'documents.deleted.retention-notice': 'All deleted documents are stored in the trash bin for {{ days }} days. Passing this delay, the documents will be permanently deleted, and you will not be able to restore them.',
'documents.deleted.deleted-at': 'Deleted',
'documents.deleted.restoring': 'Restoring...',
'documents.deleted.deleting': 'Deleting...',
'documents.preview.unknown-file-type': 'No preview available for this file type',
'documents.preview.binary-file': 'This appears to be a binary file and cannot be displayed as text',
'trash.delete-all.button': 'Delete all',
'trash.delete-all.confirm.title': 'Permanently delete all documents?',
'trash.delete-all.confirm.description': 'Are you sure you want to permanently delete all documents from the trash? This action cannot be undone.',
'trash.delete-all.confirm.label': 'Delete',
'trash.delete-all.confirm.cancel': 'Cancel',
'trash.delete.button': 'Delete',
'trash.delete.confirm.title': 'Permanently delete document?',
'trash.delete.confirm.description': 'Are you sure you want to permanently delete this document from the trash? This action cannot be undone.',
'trash.delete.confirm.label': 'Delete',
'trash.delete.confirm.cancel': 'Cancel',
'trash.deleted.success.title': 'Document deleted',
'trash.deleted.success.description': 'The document has been permanently deleted.',
'activity.document.created': 'The document has been created',
'activity.document.updated.single': 'The {{ field }} has been updated',
'activity.document.updated.multiple': 'The {{ fields }} have been updated',
'activity.document.updated': 'The document has been updated',
'activity.document.deleted': 'The document has been deleted',
'activity.document.restored': 'The document has been restored',
'activity.document.tagged': 'Tag {{ tag }} has been added',
'activity.document.untagged': 'Tag {{ tag }} has been removed',
'activity.document.user.name': 'by {{ name }}',
'activity.load-more': 'Load more',
'activity.no-more-activities': 'No more activities for this document',
// Tags
'tags.no-tags.title': 'No tags yet',
'tags.no-tags.description': 'This organization has no tags yet. Tags are used to categorize documents. You can add tags to your documents to make them easier to find and organize.',
'tags.no-tags.create-tag': 'Create tag',
'tags.title': 'Documents Tags',
'tags.description': 'Tags are used to categorize documents. You can add tags to your documents to make them easier to find and organize.',
'tags.create': 'Create tag',
'tags.update': 'Update tag',
'tags.delete': 'Delete tag',
'tags.delete.confirm.title': 'Delete tag',
'tags.delete.confirm.message': 'Are you sure you want to delete this tag? Deleting a tag will remove it from all documents.',
'tags.delete.confirm.confirm-button': 'Delete',
'tags.delete.confirm.cancel-button': 'Cancel',
'tags.delete.success': 'Tag deleted successfully',
'tags.create.success': 'Tag "{{ name }}" created successfully.',
'tags.update.success': 'Tag "{{ name }}" updated successfully.',
'tags.form.name.label': 'Name',
'tags.form.name.placeholder': 'Eg. Contracts',
'tags.form.name.required': 'Please enter a tag name',
'tags.form.name.max-length': 'Tag name must be less than 64 characters',
'tags.form.color.label': 'Color',
'tags.form.color.required': 'Please enter a color',
'tags.form.color.invalid': 'The hex color is badly formatted.',
'tags.form.description.label': 'Description',
'tags.form.description.optional': '(optional)',
'tags.form.description.placeholder': 'Eg. All the contracts signed by the company',
'tags.form.description.max-length': 'Description must be less than 256 characters',
'tags.form.no-description': 'No description',
'tags.table.headers.tag': 'Tag',
'tags.table.headers.description': 'Description',
'tags.table.headers.documents': 'Documents',
'tags.table.headers.created': 'Created',
'tags.table.headers.actions': 'Actions',
// Tagging rules
'tagging-rules.field.name': 'document name',
'tagging-rules.field.content': 'document content',
'tagging-rules.operator.equals': 'equals',
'tagging-rules.operator.not-equals': 'not equals',
'tagging-rules.operator.contains': 'contains',
'tagging-rules.operator.not-contains': 'not contains',
'tagging-rules.operator.starts-with': 'starts with',
'tagging-rules.operator.ends-with': 'ends with',
'tagging-rules.list.title': 'Tagging rules',
'tagging-rules.list.description': 'Manage your organization\'s tagging rules, to automatically tag documents based on conditions you define.',
'tagging-rules.list.demo-warning': 'Note: As this is a demo environment (with no server), tagging rules will not be applied to newly added documents.',
'tagging-rules.list.no-tagging-rules.title': 'No tagging rules',
'tagging-rules.list.no-tagging-rules.description': 'Create a tagging rule to automatically tag your added documents based on conditions you define.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Create tagging rule',
'tagging-rules.list.card.no-conditions': 'No conditions',
'tagging-rules.list.card.one-condition': '1 condition',
'tagging-rules.list.card.conditions': '{{ count }} conditions',
'tagging-rules.list.card.delete': 'Delete rule',
'tagging-rules.list.card.edit': 'Edit rule',
'tagging-rules.create.title': 'Create tagging rule',
'tagging-rules.create.success': 'Tagging rule created successfully',
'tagging-rules.create.error': 'Failed to create tagging rule',
'tagging-rules.create.submit': 'Create rule',
'tagging-rules.form.name.label': 'Name',
'tagging-rules.form.name.placeholder': 'Example: Tag invoices',
'tagging-rules.form.name.min-length': 'Please enter a name for the rule',
'tagging-rules.form.name.max-length': 'The name must be less than 64 characters',
'tagging-rules.form.description.label': 'Description',
'tagging-rules.form.description.placeholder': 'Example: Tag documents with \'invoice\' in the name',
'tagging-rules.form.description.max-length': 'The description must be less than 256 characters',
'tagging-rules.form.conditions.label': 'Conditions',
'tagging-rules.form.conditions.description': 'Define the conditions that must be met for the rule to apply. All conditions must be met for the rule to apply.',
'tagging-rules.form.conditions.add-condition': 'Add condition',
'tagging-rules.form.conditions.no-conditions.title': 'No conditions',
'tagging-rules.form.conditions.no-conditions.description': 'You didn\'t add any conditions to this rule. This rule will apply its tags to all documents.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Apply rule without conditions',
'tagging-rules.form.conditions.no-conditions.cancel': 'Cancel',
'tagging-rules.form.conditions.value.placeholder': 'Example: invoice',
'tagging-rules.form.conditions.value.min-length': 'Please enter a value for the condition',
'tagging-rules.form.tags.label': 'Tags',
'tagging-rules.form.tags.description': 'Select the tags to apply to the added documents that match the conditions',
'tagging-rules.form.tags.min-length': 'At least one tag to apply is required',
'tagging-rules.form.tags.add-tag': 'Create tag',
'tagging-rules.form.submit': 'Create rule',
'tagging-rules.update.title': 'Update tagging rule',
'tagging-rules.update.error': 'Failed to update tagging rule',
'tagging-rules.update.submit': 'Update rule',
'tagging-rules.update.cancel': 'Cancel',
// Intake emails
'intake-emails.title': 'Intake Emails',
'intake-emails.description': 'Intake emails address are used to automatically ingest emails into Papra. Just forward emails to the intake email address and their attachments will be added to your organization\'s documents.',
'intake-emails.disabled.title': 'Intake Emails are disabled',
'intake-emails.disabled.description': 'Intake emails are disabled on this instance. Please contact your administrator to enable them. See the {{ documentation }} for more information.',
'intake-emails.disabled.documentation': 'documentation',
'intake-emails.info': 'Only enabled intake emails from allowed origins will be processed. You can enable or disable an intake email at any time.',
'intake-emails.empty.title': 'No intake emails',
'intake-emails.empty.description': 'Generate an intake address to easily ingest emails attachments.',
'intake-emails.empty.generate': 'Generate intake email',
'intake-emails.count': '{{ count }} intake email{{ plural }} for this organization',
'intake-emails.new': 'New intake email',
'intake-emails.disabled-label': '(Disabled)',
'intake-emails.no-origins': 'No allowed email origins',
'intake-emails.allowed-origins': 'Allowed from {{ count }} address{{ plural }}',
'intake-emails.actions.enable': 'Enable',
'intake-emails.actions.disable': 'Disable',
'intake-emails.actions.manage-origins': 'Manage origins addresses',
'intake-emails.actions.delete': 'Delete',
'intake-emails.delete.confirm.title': 'Delete intake email?',
'intake-emails.delete.confirm.message': 'Are you sure you want to delete this intake email? This action cannot be undone.',
'intake-emails.delete.confirm.confirm-button': 'Delete intake email',
'intake-emails.delete.confirm.cancel-button': 'Cancel',
'intake-emails.delete.success': 'Intake email deleted',
'intake-emails.create.success': 'Intake email created',
'intake-emails.update.success.enabled': 'Intake email enabled',
'intake-emails.update.success.disabled': 'Intake email disabled',
'intake-emails.allowed-origins.title': 'Allowed origins',
'intake-emails.allowed-origins.description': 'Only emails sent to {{ email }} from these origins will be processed. If no origins are specified, all emails will be discarded.',
'intake-emails.allowed-origins.add.label': 'Add allowed origin email',
'intake-emails.allowed-origins.add.placeholder': 'Eg. ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Add',
'intake-emails.allowed-origins.add.error.exists': 'This email is already in the allowed origins for this intake email',
// API keys
'api-keys.permissions.documents.title': 'Documents',
'api-keys.permissions.documents.documents:create': 'Create documents',
'api-keys.permissions.documents.documents:read': 'Read documents',
'api-keys.permissions.documents.documents:update': 'Update documents',
'api-keys.permissions.documents.documents:delete': 'Delete documents',
'api-keys.permissions.tags.title': 'Tags',
'api-keys.permissions.tags.tags:create': 'Create tags',
'api-keys.permissions.tags.tags:read': 'Read tags',
'api-keys.permissions.tags.tags:update': 'Update tags',
'api-keys.permissions.tags.tags:delete': 'Delete tags',
'api-keys.create.title': 'Create API key',
'api-keys.create.description': 'Create a new API key to access the Papra API.',
'api-keys.create.success': 'The API key has been created successfully.',
'api-keys.create.back': 'Back to API keys',
'api-keys.create.form.name.label': 'Name',
'api-keys.create.form.name.placeholder': 'Example: My API key',
'api-keys.create.form.name.required': 'Please enter a name for the API key',
'api-keys.create.form.permissions.label': 'Permissions',
'api-keys.create.form.permissions.required': 'Please select at least one permission',
'api-keys.create.form.submit': 'Create API key',
'api-keys.create.created.title': 'API key created',
'api-keys.create.created.description': 'The API key has been created successfully. Save it in a secure location as it will not be displayed again.',
'api-keys.list.title': 'API keys',
'api-keys.list.description': 'Manage your API keys here.',
'api-keys.list.create': 'Create API key',
'api-keys.list.empty.title': 'No API keys',
'api-keys.list.empty.description': 'Create an API key to access the Papra API.',
'api-keys.list.card.last-used': 'Last used',
'api-keys.list.card.never': 'Never',
'api-keys.list.card.created': 'Created',
'api-keys.delete.success': 'The API key has been deleted successfully',
'api-keys.delete.confirm.title': 'Delete API key',
'api-keys.delete.confirm.message': 'Are you sure you want to delete this API key? This action cannot be undone.',
'api-keys.delete.confirm.confirm-button': 'Delete',
'api-keys.delete.confirm.cancel-button': 'Cancel',
// Webhooks
'webhooks.list.title': 'Webhooks',
'webhooks.list.description': 'Manage your organization webhooks',
'webhooks.list.empty.title': 'No webhooks',
'webhooks.list.empty.description': 'Create your first webhook to start receiving events',
'webhooks.list.create': 'Create webhook',
'webhooks.list.card.last-triggered': 'Last triggered',
'webhooks.list.card.never': 'Never',
'webhooks.list.card.created': 'Created',
'webhooks.create.title': 'Create webhook',
'webhooks.create.description': 'Create a new webhook to receive events',
'webhooks.create.success': 'Webhook created successfully',
'webhooks.create.back': 'Back',
'webhooks.create.form.submit': 'Create webhook',
'webhooks.create.form.name.label': 'Webhook name',
'webhooks.create.form.name.placeholder': 'Enter webhook name',
'webhooks.create.form.name.required': 'Name is required',
'webhooks.create.form.url.label': 'Webhook URL',
'webhooks.create.form.url.placeholder': 'Enter webhook URL',
'webhooks.create.form.url.required': 'URL is required',
'webhooks.create.form.url.invalid': 'URL is invalid',
'webhooks.create.form.secret.label': 'Secret',
'webhooks.create.form.secret.placeholder': 'Enter webhook secret',
'webhooks.create.form.events.label': 'Events',
'webhooks.create.form.events.required': 'At least one event is required',
'webhooks.update.title': 'Edit webhook',
'webhooks.update.description': 'Update your webhook details',
'webhooks.update.success': 'Webhook updated successfully',
'webhooks.update.submit': 'Update webhook',
'webhooks.update.cancel': 'Cancel',
'webhooks.update.form.secret.placeholder': 'Enter new secret',
'webhooks.update.form.secret.placeholder-redacted': '[Redacted secret]',
'webhooks.update.form.rotate-secret.button': 'Rotate secret',
'webhooks.delete.success': 'Webhook deleted successfully',
'webhooks.delete.confirm.title': 'Delete webhook',
'webhooks.delete.confirm.message': 'Are you sure you want to delete this webhook?',
'webhooks.delete.confirm.confirm-button': 'Delete',
'webhooks.delete.confirm.cancel-button': 'Cancel',
'webhooks.events.documents.title': 'Documents events',
'webhooks.events.documents.document:created.description': 'Document created',
'webhooks.events.documents.document:deleted.description': 'Document deleted',
'webhooks.events.documents.document:updated.description': 'Document updated',
'webhooks.events.documents.document:tag:added.description': 'A tag is added to a document',
'webhooks.events.documents.document:tag:removed.description': 'A tag is removed from a document',
// Navigation
'layout.menu.home': 'Home',
'layout.menu.documents': 'Documents',
'layout.menu.tags': 'Tags',
'layout.menu.tagging-rules': 'Tagging rules',
'layout.menu.deleted-documents': 'Deleted documents',
'layout.menu.organization-settings': 'Settings',
'layout.menu.api-keys': 'API keys',
'layout.menu.settings': 'Settings',
'layout.menu.account': 'Account',
'layout.menu.general-settings': 'General settings',
'layout.menu.intake-emails': 'Intake emails',
'layout.menu.webhooks': 'Webhooks',
'layout.menu.members': 'Members',
'layout.menu.invitations': 'Invitations',
'layout.theme.light': 'Light mode',
'layout.theme.dark': 'Dark mode',
'layout.theme.system': 'System mode',
'layout.search.placeholder': 'Search...',
'layout.menu.import-document': 'Import a document',
'user-menu.account-settings': 'Account settings',
'user-menu.api-keys': 'API keys',
'user-menu.invitations': 'Invitations',
'user-menu.language': 'Language',
'user-menu.logout': 'Logout',
// Command palette
'command-palette.search.placeholder': 'Search commands or documents',
'command-palette.no-results': 'No results found',
'command-palette.sections.documents': 'Documents',
'command-palette.sections.theme': 'Theme',
// API errors
'api-errors.document.already_exists': 'The document already exists',
'api-errors.document.file_too_big': 'The document file is too big',
'api-errors.intake_email.limit_reached': 'The maximum number of intake emails for this organization has been reached. Please upgrade your plan to create more intake emails.',
'api-errors.user.max_organization_count_reached': 'You have reached the maximum number of organizations you can create, if you need to create more, please contact support.',
'api-errors.default': 'An error occurred while processing your request.',
'api-errors.organization.invitation_already_exists': 'An invitation for this email already exists in this organization.',
'api-errors.user.already_in_organization': 'This user is already in this organization.',
'api-errors.user.organization_invitation_limit_reached': 'The maximum number of invitations has been reached for today. Please try again tomorrow.',
'api-errors.demo.not_available': 'This feature is not available in demo',
'api-errors.tags.already_exists': 'A tag with this name already exists for this organization',
'api-errors.internal.error': 'An error occurred while processing your request. Please try again later.',
'api-errors.auth.invalid_origin': 'Invalid application origin. If you are self-hosting Papra, ensure your APP_BASE_URL environment variable matches your current url. For more details see https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Not Found',
'not-found.description': 'Sorry, the page you are looking for does not seem to exist. Please check the URL and try again.',
'not-found.back-to-home': 'Go back to home',
// Demo
'demo.popup.description': 'This is a demo environment, all data is save to your browser local storage.',
'demo.popup.discord': 'Join the {{ discordLink }} to get support, propose features or just chat.',
'demo.popup.discord-link-label': 'Discord server',
'demo.popup.reset': 'Reset demo data',
'demo.popup.hide': 'Hide',
// Color picker
'color-picker.hue': 'Hue',
'color-picker.saturation': 'Saturation',
'color-picker.lightness': 'Lightness',
'color-picker.select-color': 'Select color',
'color-picker.select-a-color': 'Select a color',
} as const;

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Restablece tu contraseña',
'auth.request-password-reset.description': 'Ingresa tu correo electrónico para restablecer tu contraseña.',
'auth.request-password-reset.requested': 'Si existe una cuenta para este correo electrónico, te enviaremos un correo para restablecer tu contraseña.',
'auth.request-password-reset.back-to-login': 'Volver al inicio de sesión',
'auth.request-password-reset.form.email.label': 'Correo electrónico',
'auth.request-password-reset.form.email.placeholder': 'Ejemplo: ada@papra.app',
'auth.request-password-reset.form.email.required': 'Por favor, ingresa tu correo electrónico',
'auth.request-password-reset.form.email.invalid': 'Esta dirección de correo electrónico no es válida',
'auth.request-password-reset.form.submit': 'Solicitar restablecimiento de contraseña',
'auth.reset-password.title': 'Restablece tu contraseña',
'auth.reset-password.description': 'Ingresa tu nueva contraseña para restablecerla.',
'auth.reset-password.reset': 'Tu contraseña ha sido restablecida.',
'auth.reset-password.back-to-login': 'Volver al inicio de sesión',
'auth.reset-password.form.new-password.label': 'Nueva contraseña',
'auth.reset-password.form.new-password.placeholder': 'Ejemplo: **********',
'auth.reset-password.form.new-password.required': 'Por favor, ingresa tu nueva contraseña',
'auth.reset-password.form.new-password.min-length': 'La contraseña debe tener al menos {{ minLength }} caracteres',
'auth.reset-password.form.new-password.max-length': 'La contraseña debe tener menos de {{ maxLength }} caracteres',
'auth.reset-password.form.submit': 'Restablecer contraseña',
'auth.email-provider.open': 'Abrir {{ provider }}',
'auth.login.title': 'Inicia sesión en Papra',
'auth.login.description': 'Ingresa tu correo electrónico o usa un inicio de sesión social para acceder a tu cuenta de Papra.',
'auth.login.login-with-provider': 'Iniciar sesión con {{ provider }}',
'auth.login.no-account': '¿No tienes una cuenta?',
'auth.login.register': 'Registrarse',
'auth.login.form.email.label': 'Correo electrónico',
'auth.login.form.email.placeholder': 'Ejemplo: ada@papra.app',
'auth.login.form.email.required': 'Por favor, ingresa tu correo electrónico',
'auth.login.form.email.invalid': 'Esta dirección de correo electrónico no es válida',
'auth.login.form.password.label': 'Contraseña',
'auth.login.form.password.placeholder': 'Establece una contraseña',
'auth.login.form.password.required': 'Por favor, ingresa tu contraseña',
'auth.login.form.remember-me.label': 'Recordarme',
'auth.login.form.forgot-password.label': '¿Olvidaste tu contraseña?',
'auth.login.form.submit': 'Iniciar sesión',
'auth.register.title': 'Regístrate en Papra',
'auth.register.description': 'Crea una cuenta para comenzar a usar Papra.',
'auth.register.register-with-email': 'Registrarse con correo electrónico',
'auth.register.register-with-provider': 'Registrarse con {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': '¿Ya tienes una cuenta?',
'auth.register.login': 'Iniciar sesión',
'auth.register.registration-disabled.title': 'El registro está deshabilitado',
'auth.register.registration-disabled.description': 'La creación de nuevas cuentas está deshabilitada actualmente en esta instancia de Papra. Solo los usuarios con cuentas existentes pueden iniciar sesión. Si crees que esto es un error, contacta al administrador de esta instancia.',
'auth.register.form.email.label': 'Correo electrónico',
'auth.register.form.email.placeholder': 'Ejemplo: ada@papra.app',
'auth.register.form.email.required': 'Por favor, ingresa tu correo electrónico',
'auth.register.form.email.invalid': 'Esta dirección de correo electrónico no es válida',
'auth.register.form.password.label': 'Contraseña',
'auth.register.form.password.placeholder': 'Establece una contraseña',
'auth.register.form.password.required': 'Por favor, ingresa tu contraseña',
'auth.register.form.password.min-length': 'La contraseña debe tener al menos {{ minLength }} caracteres',
'auth.register.form.password.max-length': 'La contraseña debe tener menos de {{ maxLength }} caracteres',
'auth.register.form.name.label': 'Nombre',
'auth.register.form.name.placeholder': 'Ejemplo: Ada Lovelace',
'auth.register.form.name.required': 'Por favor, ingresa tu nombre',
'auth.register.form.name.max-length': 'El nombre debe tener menos de {{ maxLength }} caracteres',
'auth.register.form.submit': 'Registrarse',
'auth.email-validation-required.title': 'Verifica tu correo electrónico',
'auth.email-validation-required.description': 'Se ha enviado un correo de verificación a tu dirección de correo electrónico. Por favor, verifica tu correo haciendo clic en el enlace del correo.',
'auth.legal-links.description': 'Al continuar, reconoces que entiendes y aceptas los {{ terms }} y la {{ privacy }}.',
'auth.legal-links.terms': 'Términos de servicio',
'auth.legal-links.privacy': 'Política de privacidad',
'auth.no-auth-provider.title': 'No hay proveedor de autenticación',
'auth.no-auth-provider.description': 'No hay proveedores de autenticación habilitados en esta instancia de Papra. Por favor, contacta al administrador de esta instancia para habilitarlos.',
// User settings
'user.settings.title': 'Configuración de usuario',
'user.settings.description': 'Administra aquí la configuración de tu cuenta.',
'user.settings.email.title': 'Dirección de correo electrónico',
'user.settings.email.description': 'Tu dirección de correo electrónico no puede ser cambiada.',
'user.settings.email.label': 'Correo electrónico',
'user.settings.name.title': 'Nombre completo',
'user.settings.name.description': 'Tu nombre completo se muestra a otros miembros de la organización.',
'user.settings.name.label': 'Nombre completo',
'user.settings.name.placeholder': 'Ej. John Doe',
'user.settings.name.update': 'Actualizar nombre',
'user.settings.name.updated': 'Tu nombre completo ha sido actualizado',
'user.settings.logout.title': 'Cerrar sesión',
'user.settings.logout.description': 'Cierra la sesión de tu cuenta. Puedes iniciar sesión nuevamente más tarde.',
'user.settings.logout.button': 'Cerrar sesión',
// Organizations
'organizations.list.title': 'Tus organizaciones',
'organizations.list.description': 'Las organizaciones son una manera de agrupar tus documentos y gestionar el acceso a ellos. Puedes crear varias organizaciones e invitar a tus compañeros para colaborar.',
'organizations.list.create-new': 'Crear nueva organización',
'organizations.details.no-documents.title': 'Sin documentos',
'organizations.details.no-documents.description': 'Aún no hay documentos en esta organización. Comienza subiendo algunos documentos.',
'organizations.details.upload-documents': 'Subir documentos',
'organizations.details.documents-count': 'documentos en total',
'organizations.details.total-size': 'tamaño total',
'organizations.details.latest-documents': 'Últimos documentos importados',
'organizations.create.title': 'Crear una nueva organización',
'organizations.create.description': 'Tus documentos se agruparán por organización. Puedes crear varias organizaciones para separar tus documentos, por ejemplo, para documentos personales y de trabajo.',
'organizations.create.back': 'Volver',
'organizations.create.error.max-count-reached': 'Has alcanzado el número máximo de organizaciones que puedes crear, si necesitas crear más, contacta al soporte.',
'organizations.create.form.name.label': 'Nombre de la organización',
'organizations.create.form.name.placeholder': 'Ej. Acme Inc.',
'organizations.create.form.name.required': 'Por favor, ingresa un nombre para la organización',
'organizations.create.form.submit': 'Crear organización',
'organizations.create.success': 'Organización creada exitosamente',
'organizations.create-first.title': 'Crea tu organización',
'organizations.create-first.description': 'Tus documentos se agruparán por organización. Puedes crear varias organizaciones para separar tus documentos, por ejemplo, para documentos personales y de trabajo.',
'organizations.create-first.default-name': 'Mi organización',
'organizations.create-first.user-name': 'Organización de {{ name }}',
'organization.settings.title': 'Configuración de la organización',
'organization.settings.page.title': 'Configuración de la organización',
'organization.settings.page.description': 'Administra la configuración de tu organización aquí.',
'organization.settings.name.title': 'Nombre de la organización',
'organization.settings.name.update': 'Actualizar nombre',
'organization.settings.name.placeholder': 'Ej. Acme Inc.',
'organization.settings.name.updated': 'Nombre de la organización actualizado',
'organization.settings.subscription.title': 'Suscripción',
'organization.settings.subscription.description': 'Administra tu facturación, facturas y métodos de pago.',
'organization.settings.subscription.manage': 'Gestionar suscripción',
'organization.settings.subscription.error': 'Error al obtener la URL del portal del cliente',
'organization.settings.delete.title': 'Eliminar organización',
'organization.settings.delete.description': 'Eliminar esta organización eliminará permanentemente todos los datos asociados a ella.',
'organization.settings.delete.confirm.title': 'Eliminar organización',
'organization.settings.delete.confirm.message': '¿Estás seguro de que deseas eliminar esta organización? Esta acción no se puede deshacer, y todos los datos asociados se eliminarán permanentemente.',
'organization.settings.delete.confirm.confirm-button': 'Eliminar organización',
'organization.settings.delete.confirm.cancel-button': 'Cancelar',
'organization.settings.delete.success': 'Organización eliminada',
'organizations.members.title': 'Miembros',
'organizations.members.description': 'Administra los miembros de tu organización',
'organizations.members.invite-member': 'Invitar miembro',
'organizations.members.invite-member-disabled-tooltip': 'Solo los administradores o propietarios pueden invitar miembros a la organización',
'organizations.members.remove-from-organization': 'Eliminar de la organización',
'organizations.members.role': 'Rol',
'organizations.members.roles.owner': 'Propietario',
'organizations.members.roles.admin': 'Administrador',
'organizations.members.roles.member': 'Miembro',
'organizations.members.delete.confirm.title': 'Eliminar miembro',
'organizations.members.delete.confirm.message': '¿Estás seguro de que deseas eliminar a este miembro de la organización?',
'organizations.members.delete.confirm.confirm-button': 'Eliminar',
'organizations.members.delete.confirm.cancel-button': 'Cancelar',
'organizations.members.delete.success': 'Miembro eliminado de la organización',
'organizations.members.update-role.success': 'Rol del miembro actualizado',
'organizations.members.table.headers.name': 'Nombre',
'organizations.members.table.headers.email': 'Correo electrónico',
'organizations.members.table.headers.role': 'Rol',
'organizations.members.table.headers.created': 'Creado',
'organizations.members.table.headers.actions': 'Acciones',
'organizations.invite-member.title': 'Invitar miembro',
'organizations.invite-member.description': 'Invita a un miembro a tu organización',
'organizations.invite-member.form.email.label': 'Correo electrónico',
'organizations.invite-member.form.email.placeholder': 'Ejemplo: ada@papra.app',
'organizations.invite-member.form.email.required': 'Por favor, ingresa un correo electrónico válido',
'organizations.invite-member.form.role.label': 'Rol',
'organizations.invite-member.form.submit': 'Invitar a la organización',
'organizations.invite-member.success.message': 'Miembro invitado',
'organizations.invite-member.success.description': 'El correo ha sido invitado a la organización.',
'organizations.invite-member.error.message': 'Error al invitar al miembro',
'organizations.invitations.title': 'Invitaciones',
'organizations.invitations.description': 'Administra las invitaciones de tu organización',
'organizations.invitations.list.cta': 'Invitar miembro',
'organizations.invitations.list.empty.title': 'No hay invitaciones pendientes',
'organizations.invitations.list.empty.description': 'Aún no te han invitado a ninguna organización.',
'organizations.invitations.status.pending': 'Pendiente',
'organizations.invitations.status.accepted': 'Aceptada',
'organizations.invitations.status.rejected': 'Rechazada',
'organizations.invitations.status.expired': 'Expirada',
'organizations.invitations.status.cancelled': 'Cancelada',
'organizations.invitations.resend': 'Reenviar invitación',
'organizations.invitations.cancel.title': 'Cancelar invitación',
'organizations.invitations.cancel.description': '¿Estás seguro de que deseas cancelar esta invitación?',
'organizations.invitations.cancel.confirm': 'Cancelar invitación',
'organizations.invitations.cancel.cancel': 'Cancelar',
'organizations.invitations.resend.title': 'Reenviar invitación',
'organizations.invitations.resend.description': '¿Estás seguro de que deseas reenviar esta invitación? Esto enviará un nuevo correo al destinatario.',
'organizations.invitations.resend.confirm': 'Reenviar invitación',
'organizations.invitations.resend.cancel': 'Cancelar',
'invitations.list.title': 'Invitaciones',
'invitations.list.description': 'Administra las invitaciones de tu organización',
'invitations.list.empty.title': 'No hay invitaciones pendientes',
'invitations.list.empty.description': 'Aún no te han invitado a ninguna organización.',
'invitations.list.headers.organization': 'Organización',
'invitations.list.headers.status': 'Estado',
'invitations.list.headers.created': 'Creado',
'invitations.list.headers.actions': 'Acciones',
'invitations.list.actions.accept': 'Aceptar',
'invitations.list.actions.reject': 'Rechazar',
'invitations.list.actions.accept.success.message': 'Invitación aceptada',
'invitations.list.actions.accept.success.description': 'La invitación ha sido aceptada.',
'invitations.list.actions.reject.success.message': 'Invitación rechazada',
'invitations.list.actions.reject.success.description': 'La invitación ha sido rechazada.',
// Documents
'documents.list.title': 'Documentos',
'documents.list.no-documents.title': 'Sin documentos',
'documents.list.no-documents.description': 'Aún no hay documentos en esta organización. Comienza subiendo algunos documentos.',
'documents.list.no-results': 'No se encontraron documentos',
'documents.tabs.info': 'Información',
'documents.tabs.content': 'Contenido',
'documents.tabs.activity': 'Actividad',
'documents.deleted.message': 'Este documento ha sido eliminado y será borrado permanentemente en {{ days }} días.',
'documents.actions.download': 'Descargar',
'documents.actions.open-in-new-tab': 'Abrir en una nueva pestaña',
'documents.actions.restore': 'Restaurar',
'documents.actions.delete': 'Eliminar',
'documents.actions.edit': 'Editar',
'documents.actions.cancel': 'Cancelar',
'documents.actions.save': 'Guardar',
'documents.actions.saving': 'Guardando...',
'documents.content.alert': 'El contenido del documento se extrae automáticamente al subirlo. Solo se utiliza para búsqueda e indexación.',
'documents.content.empty-placeholder': 'Este documento no tiene contenido extraído, puedes introducirlo manualmente aquí.',
'documents.info.id': 'ID',
'documents.info.name': 'Nombre',
'documents.info.type': 'Tipo',
'documents.info.size': 'Tamaño',
'documents.info.created-at': 'Creado el',
'documents.info.updated-at': 'Actualizado el',
'documents.info.never': 'Nunca',
'documents.rename.title': 'Renombrar documento',
'documents.rename.form.name.label': 'Nombre',
'documents.rename.form.name.placeholder': 'Ejemplo: Factura 2024',
'documents.rename.form.name.required': 'Por favor, ingresa un nombre para el documento',
'documents.rename.form.name.max-length': 'El nombre debe tener menos de 255 caracteres',
'documents.rename.form.submit': 'Renombrar documento',
'documents.rename.success': 'Documento renombrado exitosamente',
'documents.rename.cancel': 'Cancelar',
'import-documents.title.error': '{{ count }} documentos fallidos',
'import-documents.title.success': '{{ count }} documentos importados',
'import-documents.title.pending': '{{ count }} / {{ total }} documentos importados',
'import-documents.title.none': 'Importar documentos',
'import-documents.no-import-in-progress': 'No hay importación de documentos en curso',
'documents.deleted.title': 'Documentos eliminados',
'documents.deleted.empty.title': 'No hay documentos eliminados',
'documents.deleted.empty.description': 'No tienes documentos eliminados. Los documentos eliminados se moverán a la papelera durante {{ days }} días.',
'documents.deleted.retention-notice': 'Todos los documentos eliminados se almacenan en la papelera durante {{ days }} días. Pasado este tiempo, los documentos serán eliminados permanentemente y no podrás restaurarlos.',
'documents.deleted.deleted-at': 'Eliminado',
'documents.deleted.restoring': 'Restaurando...',
'documents.deleted.deleting': 'Eliminando...',
'documents.preview.unknown-file-type': 'No hay vista previa disponible para este tipo de archivo',
'documents.preview.binary-file': 'Este parece ser un archivo binario y no puede mostrarse como texto',
'trash.delete-all.button': 'Eliminar todo',
'trash.delete-all.confirm.title': '¿Eliminar permanentemente todos los documentos?',
'trash.delete-all.confirm.description': '¿Estás seguro de que deseas eliminar permanentemente todos los documentos de la papelera? Esta acción no se puede deshacer.',
'trash.delete-all.confirm.label': 'Eliminar',
'trash.delete-all.confirm.cancel': 'Cancelar',
'trash.delete.button': 'Eliminar',
'trash.delete.confirm.title': '¿Eliminar permanentemente el documento?',
'trash.delete.confirm.description': '¿Estás seguro de que deseas eliminar permanentemente este documento de la papelera? Esta acción no se puede deshacer.',
'trash.delete.confirm.label': 'Eliminar',
'trash.delete.confirm.cancel': 'Cancelar',
'trash.deleted.success.title': 'Documento eliminado',
'trash.deleted.success.description': 'El documento ha sido eliminado permanentemente.',
'activity.document.created': 'El documento ha sido creado',
'activity.document.updated.single': 'El campo {{ field }} ha sido actualizado',
'activity.document.updated.multiple': 'Los campos {{ fields }} han sido actualizados',
'activity.document.updated': 'El documento ha sido actualizado',
'activity.document.deleted': 'El documento ha sido eliminado',
'activity.document.restored': 'El documento ha sido restaurado',
'activity.document.tagged': 'La etiqueta {{ tag }} ha sido añadida',
'activity.document.untagged': 'La etiqueta {{ tag }} ha sido eliminada',
'activity.document.user.name': 'por {{ name }}',
'activity.load-more': 'Cargar más',
'activity.no-more-activities': 'No hay más actividades para este documento',
// Tags
'tags.no-tags.title': 'Aún no hay etiquetas',
'tags.no-tags.description': 'Esta organización no tiene etiquetas aún. Las etiquetas se utilizan para categorizar documentos. Puedes añadir etiquetas a tus documentos para que sean más fáciles de encontrar y organizar.',
'tags.no-tags.create-tag': 'Crear etiqueta',
'tags.title': 'Etiquetas de documentos',
'tags.description': 'Las etiquetas se utilizan para categorizar documentos. Puedes añadir etiquetas a tus documentos para que sean más fáciles de encontrar y organizar.',
'tags.create': 'Crear etiqueta',
'tags.update': 'Actualizar etiqueta',
'tags.delete': 'Eliminar etiqueta',
'tags.delete.confirm.title': 'Eliminar etiqueta',
'tags.delete.confirm.message': '¿Estás seguro de que deseas eliminar esta etiqueta? Eliminar una etiqueta la quitará de todos los documentos.',
'tags.delete.confirm.confirm-button': 'Eliminar',
'tags.delete.confirm.cancel-button': 'Cancelar',
'tags.delete.success': 'Etiqueta eliminada exitosamente',
'tags.create.success': 'Etiqueta "{{ name }}" creada exitosamente.',
'tags.update.success': 'Etiqueta "{{ name }}" actualizada exitosamente.',
'tags.form.name.label': 'Nombre',
'tags.form.name.placeholder': 'Ej. Contratos',
'tags.form.name.required': 'Por favor, ingresa un nombre para la etiqueta',
'tags.form.name.max-length': 'El nombre de la etiqueta debe tener menos de 64 caracteres',
'tags.form.color.label': 'Color',
'tags.form.color.required': 'Por favor, ingresa un color',
'tags.form.color.invalid': 'El color hexadecimal tiene un formato incorrecto.',
'tags.form.description.label': 'Descripción',
'tags.form.description.optional': '(opcional)',
'tags.form.description.placeholder': 'Ej. Todos los contratos firmados por la empresa',
'tags.form.description.max-length': 'La descripción debe tener menos de 256 caracteres',
'tags.form.no-description': 'Sin descripción',
'tags.table.headers.tag': 'Etiqueta',
'tags.table.headers.description': 'Descripción',
'tags.table.headers.documents': 'Documentos',
'tags.table.headers.created': 'Creado',
'tags.table.headers.actions': 'Acciones',
// Tagging rules
'tagging-rules.field.name': 'nombre del documento',
'tagging-rules.field.content': 'contenido del documento',
'tagging-rules.operator.equals': 'es igual a',
'tagging-rules.operator.not-equals': 'no es igual a',
'tagging-rules.operator.contains': 'contiene',
'tagging-rules.operator.not-contains': 'no contiene',
'tagging-rules.operator.starts-with': 'comienza con',
'tagging-rules.operator.ends-with': 'termina con',
'tagging-rules.list.title': 'Reglas de etiquetado',
'tagging-rules.list.description': 'Administra las reglas de etiquetado de tu organización, para etiquetar documentos automáticamente según las condiciones que definas.',
'tagging-rules.list.demo-warning': 'Nota: Como este es un entorno de demostración (sin servidor), las reglas de etiquetado no se aplicarán a los nuevos documentos añadidos.',
'tagging-rules.list.no-tagging-rules.title': 'No hay reglas de etiquetado',
'tagging-rules.list.no-tagging-rules.description': 'Crea una regla de etiquetado para etiquetar automáticamente tus documentos añadidos según las condiciones que definas.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Crear regla de etiquetado',
'tagging-rules.list.card.no-conditions': 'Sin condiciones',
'tagging-rules.list.card.one-condition': '1 condición',
'tagging-rules.list.card.conditions': '{{ count }} condiciones',
'tagging-rules.list.card.delete': 'Eliminar regla',
'tagging-rules.list.card.edit': 'Editar regla',
'tagging-rules.create.title': 'Crear regla de etiquetado',
'tagging-rules.create.success': 'Regla de etiquetado creada exitosamente',
'tagging-rules.create.error': 'Error al crear la regla de etiquetado',
'tagging-rules.create.submit': 'Crear regla',
'tagging-rules.form.name.label': 'Nombre',
'tagging-rules.form.name.placeholder': 'Ejemplo: Etiquetar facturas',
'tagging-rules.form.name.min-length': 'Por favor, ingresa un nombre para la regla',
'tagging-rules.form.name.max-length': 'El nombre debe tener menos de 64 caracteres',
'tagging-rules.form.description.label': 'Descripción',
'tagging-rules.form.description.placeholder': 'Ejemplo: Etiquetar documentos con \'factura\' en el nombre',
'tagging-rules.form.description.max-length': 'La descripción debe tener menos de 256 caracteres',
'tagging-rules.form.conditions.label': 'Condiciones',
'tagging-rules.form.conditions.description': 'Define las condiciones que deben cumplirse para que la regla se aplique. Todas las condiciones deben cumplirse.',
'tagging-rules.form.conditions.add-condition': 'Añadir condición',
'tagging-rules.form.conditions.no-conditions.title': 'Sin condiciones',
'tagging-rules.form.conditions.no-conditions.description': 'No añadiste ninguna condición a esta regla. Esta regla aplicará sus etiquetas a todos los documentos.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Aplicar regla sin condiciones',
'tagging-rules.form.conditions.no-conditions.cancel': 'Cancelar',
'tagging-rules.form.conditions.value.placeholder': 'Ejemplo: factura',
'tagging-rules.form.conditions.value.min-length': 'Por favor, ingresa un valor para la condición',
'tagging-rules.form.tags.label': 'Etiquetas',
'tagging-rules.form.tags.description': 'Selecciona las etiquetas a aplicar a los documentos añadidos que cumplan las condiciones',
'tagging-rules.form.tags.min-length': 'Se requiere al menos una etiqueta para aplicar',
'tagging-rules.form.tags.add-tag': 'Crear etiqueta',
'tagging-rules.form.submit': 'Crear regla',
'tagging-rules.update.title': 'Actualizar regla de etiquetado',
'tagging-rules.update.error': 'Error al actualizar la regla de etiquetado',
'tagging-rules.update.submit': 'Actualizar regla',
'tagging-rules.update.cancel': 'Cancelar',
// Intake emails
'intake-emails.title': 'Correos de ingreso',
'intake-emails.description': 'Las direcciones de correo de ingreso se usan para ingresar automáticamente correos en Papra. Solo reenvía correos a la dirección de ingreso y sus archivos adjuntos se agregarán a los documentos de tu organización.',
'intake-emails.disabled.title': 'Correos de ingreso deshabilitados',
'intake-emails.disabled.description': 'Los correos de ingreso están deshabilitados en esta instancia. Contacta a tu administrador para habilitarlos. Consulta la {{ documentation }} para más información.',
'intake-emails.disabled.documentation': 'documentación',
'intake-emails.info': 'Solo los correos de ingreso habilitados desde orígenes permitidos serán procesados. Puedes habilitar o deshabilitar un correo de ingreso en cualquier momento.',
'intake-emails.empty.title': 'Sin correos de ingreso',
'intake-emails.empty.description': 'Genera una dirección de ingreso para añadir fácilmente archivos adjuntos de correos.',
'intake-emails.empty.generate': 'Generar correo de ingreso',
'intake-emails.count': '{{ count }} correo{{ plural }} de ingreso para esta organización',
'intake-emails.new': 'Nuevo correo de ingreso',
'intake-emails.disabled-label': '(Deshabilitado)',
'intake-emails.no-origins': 'Sin orígenes de correo permitidos',
'intake-emails.allowed-origins': 'Permitido desde {{ count }} dirección{{ plural }}',
'intake-emails.actions.enable': 'Habilitar',
'intake-emails.actions.disable': 'Deshabilitar',
'intake-emails.actions.manage-origins': 'Gestionar direcciones de origen',
'intake-emails.actions.delete': 'Eliminar',
'intake-emails.delete.confirm.title': '¿Eliminar correo de ingreso?',
'intake-emails.delete.confirm.message': '¿Estás seguro de que deseas eliminar este correo de ingreso? Esta acción no se puede deshacer.',
'intake-emails.delete.confirm.confirm-button': 'Eliminar correo de ingreso',
'intake-emails.delete.confirm.cancel-button': 'Cancelar',
'intake-emails.delete.success': 'Correo de ingreso eliminado',
'intake-emails.create.success': 'Correo de ingreso creado',
'intake-emails.update.success.enabled': 'Correo de ingreso habilitado',
'intake-emails.update.success.disabled': 'Correo de ingreso deshabilitado',
'intake-emails.allowed-origins.title': 'Orígenes permitidos',
'intake-emails.allowed-origins.description': 'Solo los correos enviados a {{ email }} desde estos orígenes serán procesados. Si no se especifican orígenes, todos los correos serán descartados.',
'intake-emails.allowed-origins.add.label': 'Añadir dirección de correo permitida',
'intake-emails.allowed-origins.add.placeholder': 'Ej. ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Añadir',
'intake-emails.allowed-origins.add.error.exists': 'Este correo ya está en los orígenes permitidos para este correo de ingreso',
// API keys
'api-keys.permissions.documents.title': 'Documentos',
'api-keys.permissions.documents.documents:create': 'Crear documentos',
'api-keys.permissions.documents.documents:read': 'Leer documentos',
'api-keys.permissions.documents.documents:update': 'Actualizar documentos',
'api-keys.permissions.documents.documents:delete': 'Eliminar documentos',
'api-keys.permissions.tags.title': 'Etiquetas',
'api-keys.permissions.tags.tags:create': 'Crear etiquetas',
'api-keys.permissions.tags.tags:read': 'Leer etiquetas',
'api-keys.permissions.tags.tags:update': 'Actualizar etiquetas',
'api-keys.permissions.tags.tags:delete': 'Eliminar etiquetas',
'api-keys.create.title': 'Crear clave API',
'api-keys.create.description': 'Crea una nueva clave API para acceder a la API de Papra.',
'api-keys.create.success': 'La clave API ha sido creada exitosamente.',
'api-keys.create.back': 'Volver a claves API',
'api-keys.create.form.name.label': 'Nombre',
'api-keys.create.form.name.placeholder': 'Ejemplo: Mi clave API',
'api-keys.create.form.name.required': 'Por favor, ingresa un nombre para la clave API',
'api-keys.create.form.permissions.label': 'Permisos',
'api-keys.create.form.permissions.required': 'Por favor, selecciona al menos un permiso',
'api-keys.create.form.submit': 'Crear clave API',
'api-keys.create.created.title': 'Clave API creada',
'api-keys.create.created.description': 'La clave API ha sido creada exitosamente. Guárdala en un lugar seguro ya que no se mostrará nuevamente.',
'api-keys.list.title': 'Claves API',
'api-keys.list.description': 'Administra tus claves API aquí.',
'api-keys.list.create': 'Crear clave API',
'api-keys.list.empty.title': 'Sin claves API',
'api-keys.list.empty.description': 'Crea una clave API para acceder a la API de Papra.',
'api-keys.list.card.last-used': 'Último uso',
'api-keys.list.card.never': 'Nunca',
'api-keys.list.card.created': 'Creado',
'api-keys.delete.success': 'La clave API ha sido eliminada exitosamente',
'api-keys.delete.confirm.title': 'Eliminar clave API',
'api-keys.delete.confirm.message': '¿Estás seguro de que deseas eliminar esta clave API? Esta acción no se puede deshacer.',
'api-keys.delete.confirm.confirm-button': 'Eliminar',
'api-keys.delete.confirm.cancel-button': 'Cancelar',
// Webhooks
'webhooks.list.title': 'Webhooks',
'webhooks.list.description': 'Administra los webhooks de tu organización',
'webhooks.list.empty.title': 'Sin webhooks',
'webhooks.list.empty.description': 'Crea tu primer webhook para empezar a recibir eventos',
'webhooks.list.create': 'Crear webhook',
'webhooks.list.card.last-triggered': 'Última activación',
'webhooks.list.card.never': 'Nunca',
'webhooks.list.card.created': 'Creado',
'webhooks.create.title': 'Crear webhook',
'webhooks.create.description': 'Crea un nuevo webhook para recibir eventos',
'webhooks.create.success': 'Webhook creado exitosamente',
'webhooks.create.back': 'Volver',
'webhooks.create.form.submit': 'Crear webhook',
'webhooks.create.form.name.label': 'Nombre del webhook',
'webhooks.create.form.name.placeholder': 'Ingresa el nombre del webhook',
'webhooks.create.form.name.required': 'El nombre es obligatorio',
'webhooks.create.form.url.label': 'URL del webhook',
'webhooks.create.form.url.placeholder': 'Ingresa la URL del webhook',
'webhooks.create.form.url.required': 'La URL es obligatoria',
'webhooks.create.form.url.invalid': 'La URL no es válida',
'webhooks.create.form.secret.label': 'Secreto',
'webhooks.create.form.secret.placeholder': 'Ingresa el secreto del webhook',
'webhooks.create.form.events.label': 'Eventos',
'webhooks.create.form.events.required': 'Se requiere al menos un evento',
'webhooks.update.title': 'Editar webhook',
'webhooks.update.description': 'Actualiza los detalles de tu webhook',
'webhooks.update.success': 'Webhook actualizado exitosamente',
'webhooks.update.submit': 'Actualizar webhook',
'webhooks.update.cancel': 'Cancelar',
'webhooks.update.form.secret.placeholder': 'Ingresa un nuevo secreto',
'webhooks.update.form.secret.placeholder-redacted': '[Secreto oculto]',
'webhooks.update.form.rotate-secret.button': 'Rotar secreto',
'webhooks.delete.success': 'Webhook eliminado exitosamente',
'webhooks.delete.confirm.title': 'Eliminar webhook',
'webhooks.delete.confirm.message': '¿Estás seguro de que deseas eliminar este webhook?',
'webhooks.delete.confirm.confirm-button': 'Eliminar',
'webhooks.delete.confirm.cancel-button': 'Cancelar',
'webhooks.events.documents.title': 'Eventos de documentos',
'webhooks.events.documents.document:created.description': 'Documento creado',
'webhooks.events.documents.document:deleted.description': 'Documento eliminado',
'webhooks.events.documents.document:updated.description': 'Documento actualizado',
'webhooks.events.documents.document:tag:added.description': 'Una etiqueta se ha añadido a un documento',
'webhooks.events.documents.document:tag:removed.description': 'Una etiqueta se ha eliminado de un documento',
// Navigation
'layout.menu.home': 'Inicio',
'layout.menu.documents': 'Documentos',
'layout.menu.tags': 'Etiquetas',
'layout.menu.tagging-rules': 'Reglas de etiquetado',
'layout.menu.deleted-documents': 'Documentos eliminados',
'layout.menu.organization-settings': 'Configuración',
'layout.menu.api-keys': 'Claves API',
'layout.menu.settings': 'Ajustes',
'layout.menu.account': 'Cuenta',
'layout.menu.general-settings': 'Ajustes generales',
'layout.menu.intake-emails': 'Correos de ingreso',
'layout.menu.webhooks': 'Webhooks',
'layout.menu.members': 'Miembros',
'layout.menu.invitations': 'Invitaciones',
'layout.theme.light': 'Modo claro',
'layout.theme.dark': 'Modo oscuro',
'layout.theme.system': 'Modo del sistema',
'layout.search.placeholder': 'Buscar...',
'layout.menu.import-document': 'Importar un documento',
'user-menu.account-settings': 'Ajustes de cuenta',
'user-menu.api-keys': 'Claves API',
'user-menu.invitations': 'Invitaciones',
'user-menu.language': 'Idioma',
'user-menu.logout': 'Cerrar sesión',
// Command palette
'command-palette.search.placeholder': 'Buscar comandos o documentos',
'command-palette.no-results': 'No se encontraron resultados',
'command-palette.sections.documents': 'Documentos',
'command-palette.sections.theme': 'Tema',
// API errors
'api-errors.document.already_exists': 'El documento ya existe',
'api-errors.document.file_too_big': 'El archivo del documento es demasiado grande',
'api-errors.intake_email.limit_reached': 'Se ha alcanzado el número máximo de correos de ingreso para esta organización. Por favor, mejora tu plan para crear más correos de ingreso.',
'api-errors.user.max_organization_count_reached': 'Has alcanzado el número máximo de organizaciones que puedes crear, si necesitas crear más, contacta al soporte.',
'api-errors.default': 'Ocurrió un error al procesar tu solicitud.',
'api-errors.organization.invitation_already_exists': 'Ya existe una invitación para este correo electrónico en esta organización.',
'api-errors.user.already_in_organization': 'Este usuario ya está en esta organización.',
'api-errors.user.organization_invitation_limit_reached': 'Se ha alcanzado el número máximo de invitaciones para hoy. Por favor, inténtalo de nuevo mañana.',
'api-errors.demo.not_available': 'Esta función no está disponible en la demostración',
'api-errors.tags.already_exists': 'Ya existe una etiqueta con este nombre en esta organización',
'api-errors.internal.error': 'Ocurrió un error al procesar tu solicitud. Por favor, inténtalo de nuevo.',
'api-errors.auth.invalid_origin': 'Origen de la aplicación inválido. Si estás alojando Papra, asegúrate de que la variable de entorno APP_BASE_URL coincida con tu URL actual. Para más detalles, consulta https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - No encontrado',
'not-found.description': 'Lo sentimos, la página que buscas no parece existir. Por favor, verifica la URL e inténtalo de nuevo.',
'not-found.back-to-home': 'Volver al inicio',
// Demo
'demo.popup.description': 'Este es un entorno de demostración, todos los datos se guardan en el almacenamiento local de tu navegador.',
'demo.popup.discord': 'Únete a {{ discordLink }} para obtener soporte, proponer funciones o simplemente chatear.',
'demo.popup.discord-link-label': 'Servidor de Discord',
'demo.popup.reset': 'Restablecer datos de la demo',
'demo.popup.hide': 'Ocultar',
// Color picker
'color-picker.hue': 'Matiz',
'color-picker.saturation': 'Saturación',
'color-picker.lightness': 'Luminosidad',
'color-picker.select-color': 'Seleccionar color',
'color-picker.select-a-color': 'Selecciona un color',
};

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Réinitialiser votre mot de passe',
'auth.request-password-reset.description': 'Entrez votre email pour réinitialiser votre mot de passe.',
'auth.request-password-reset.requested': 'Si un compte existe pour cet email, nous vous avons envoyé un email pour réinitialiser votre mot de passe.',
'auth.request-password-reset.back-to-login': 'Retour à la connexion',
'auth.request-password-reset.form.email.label': 'Email',
'auth.request-password-reset.form.email.placeholder': 'Exemple: ada@papra.app',
'auth.request-password-reset.form.email.required': 'Veuillez entrer votre adresse email',
'auth.request-password-reset.form.email.invalid': 'Cette adresse email est invalide',
'auth.request-password-reset.form.submit': 'Réinitialiser le mot de passe',
'auth.reset-password.title': 'Réinitialiser votre mot de passe',
'auth.reset-password.description': 'Entrez votre nouveau mot de passe pour réinitialiser votre mot de passe.',
'auth.reset-password.reset': 'Votre mot de passe a été réinitialisé.',
'auth.reset-password.back-to-login': 'Retour à la connexion',
'auth.reset-password.form.new-password.label': 'Nouveau mot de passe',
'auth.reset-password.form.new-password.placeholder': 'Exemple: **********',
'auth.reset-password.form.new-password.required': 'Veuillez entrer votre nouveau mot de passe',
'auth.reset-password.form.new-password.min-length': 'Le mot de passe doit contenir au moins {{ minLength }} caractères',
'auth.reset-password.form.new-password.max-length': 'Le mot de passe doit contenir moins de {{ maxLength }} caractères',
'auth.reset-password.form.submit': 'Réinitialiser le mot de passe',
'auth.email-provider.open': 'Ouvrir {{ provider }}',
'auth.login.title': 'Connexion à Papra',
'auth.login.description': 'Entrez votre email ou utilisez une connexion sociale pour accéder à votre compte Papra.',
'auth.login.login-with-provider': 'Connexion avec {{ provider }}',
'auth.login.no-account': 'Je n\'ai pas de compte',
'auth.login.register': 'S\'inscrire',
'auth.login.form.email.label': 'Email',
'auth.login.form.email.placeholder': 'Exemple: ada@papra.app',
'auth.login.form.email.required': 'Veuillez entrer votre adresse email',
'auth.login.form.email.invalid': 'Cette adresse email est invalide',
'auth.login.form.password.label': 'Mot de passe',
'auth.login.form.password.placeholder': 'Définir un mot de passe',
'auth.login.form.password.required': 'Veuillez entrer votre mot de passe',
'auth.login.form.remember-me.label': 'Se souvenir de moi',
'auth.login.form.forgot-password.label': 'Mot de passe oublié ?',
'auth.login.form.submit': 'Connexion',
'auth.register.title': 'S\'inscrire à Papra',
'auth.register.description': 'Créez un compte pour commencer à utiliser Papra.',
'auth.register.register-with-email': 'S\'inscrire avec email',
'auth.register.register-with-provider': 'S\'inscrire avec {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Je possède déjà un compte',
'auth.register.login': 'Connexion',
'auth.register.registration-disabled.title': 'Inscription désactivée',
'auth.register.registration-disabled.description': 'La création de nouveaux comptes est actuellement désactivée sur cette instance de Papra. Seuls les utilisateurs avec un compte existant peuvent se connecter. Si vous pensez que c\'est une erreur, veuillez contacter l\'administrateur de cette instance.',
'auth.register.form.email.label': 'Email',
'auth.register.form.email.placeholder': 'Exemple: ada@papra.app',
'auth.register.form.email.required': 'Veuillez entrer votre adresse email',
'auth.register.form.email.invalid': 'Cette adresse email est invalide',
'auth.register.form.password.label': 'Mot de passe',
'auth.register.form.password.placeholder': 'Définir un mot de passe',
'auth.register.form.password.required': 'Veuillez entrer votre mot de passe',
'auth.register.form.password.min-length': 'Le mot de passe doit contenir au moins {{ minLength }} caractères',
'auth.register.form.password.max-length': 'Le mot de passe doit contenir moins de {{ maxLength }} caractères',
'auth.register.form.name.label': 'Nom',
'auth.register.form.name.placeholder': 'Exemple: Ada Lovelace',
'auth.register.form.name.required': 'Veuillez entrer votre nom',
'auth.register.form.name.max-length': 'Le nom doit contenir moins de {{ maxLength }} caractères',
'auth.register.form.submit': 'S\'inscrire',
'auth.email-validation-required.title': 'Vérifier votre email',
'auth.email-validation-required.description': 'Un email de vérification a été envoyé à votre adresse email. Veuillez vérifier votre adresse email en cliquant sur le lien dans l\'email.',
'auth.legal-links.description': 'En continuant, vous reconnaissez que vous comprenez et acceptez les {{ terms }} et {{ privacy }}.',
'auth.legal-links.terms': 'Conditions d\'utilisation',
'auth.legal-links.privacy': 'Politique de confidentialité',
'auth.no-auth-provider.title': 'Aucun fournisseur d\'authentification',
'auth.no-auth-provider.description': 'Il n\'y a pas de fournisseurs d\'authentification activés sur cette instance de Papra. Veuillez contacter l\'administrateur de cette instance pour les activer.',
// User settings
'user.settings.title': 'Paramètres de l\'utilisateur',
'user.settings.description': 'Gérez vos paramètres de compte ici.',
'user.settings.email.title': 'Adresse email',
'user.settings.email.description': 'Votre adresse email ne peut pas être modifiée.',
'user.settings.email.label': 'Adresse email',
'user.settings.name.title': 'Nom complet',
'user.settings.name.description': 'Votre nom complet est affiché aux autres membres de l\'organisation.',
'user.settings.name.label': 'Nom complet',
'user.settings.name.placeholder': 'Exemple: John Doe',
'user.settings.name.update': 'Mettre à jour le nom',
'user.settings.name.updated': 'Votre nom complet a été mis à jour',
'user.settings.logout.title': 'Déconnexion',
'user.settings.logout.description': 'Déconnectez-vous de votre compte. Vous pouvez vous reconnecter plus tard.',
'user.settings.logout.button': 'Déconnexion',
// Organizations
'organizations.list.title': 'Vos organisations',
'organizations.list.description': 'Les organisations sont un moyen de grouper vos documents et de gérer l\'accès à eux. Vous pouvez créer plusieurs organisations et inviter vos membres de l\'équipe à collaborer.',
'organizations.list.create-new': 'Créer une nouvelle organisation',
'organizations.details.no-documents.title': 'Aucun document',
'organizations.details.no-documents.description': 'Il n\'y a pas de documents dans cette organisation. Commencez par télécharger des documents.',
'organizations.details.upload-documents': 'Télécharger des documents',
'organizations.details.documents-count': 'documents en total',
'organizations.details.total-size': 'taille totale',
'organizations.details.latest-documents': 'Derniers documents importés',
'organizations.create.title': 'Créer une nouvelle organisation',
'organizations.create.description': 'Vos documents seront regroupés par organisation. Vous pouvez créer plusieurs organisations pour séparer vos documents, par exemple, pour les documents personnels et professionnels.',
'organizations.create.back': 'Retour',
'organizations.create.error.max-count-reached': 'Vous avez atteint le nombre maximum d\'organisations que vous pouvez créer, si vous avez besoin de créer plus, veuillez contacter le support.',
'organizations.create.form.name.label': 'Nom de l\'organisation',
'organizations.create.form.name.placeholder': 'Exemple: Acme Inc.',
'organizations.create.form.name.required': 'Veuillez entrer un nom pour l\'organisation',
'organizations.create.form.submit': 'Créer l\'organisation',
'organizations.create.success': 'Organisation créée avec succès',
'organizations.create-first.title': 'Créer votre organisation',
'organizations.create-first.description': 'Vos documents seront regroupés par organisation. Vous pouvez créer plusieurs organisations pour séparer vos documents, par exemple, pour les documents personnels et professionnels.',
'organizations.create-first.default-name': 'Mon organisation',
'organizations.create-first.user-name': '{{ name }}\'s organisation',
'organization.settings.title': 'Paramètres de l\'organisation',
'organization.settings.page.title': 'Paramètres de l\'organisation',
'organization.settings.page.description': 'Gérez les paramètres de votre organisation ici.',
'organization.settings.name.title': 'Nom de l\'organisation',
'organization.settings.name.update': 'Modifier le nom',
'organization.settings.name.placeholder': 'Exemple: Acme Inc.',
'organization.settings.name.updated': 'Nom de l\'organisation mis à jour',
'organization.settings.subscription.title': 'Subscription',
'organization.settings.subscription.description': 'Gérez votre facturation, vos factures et vos méthodes de paiement.',
'organization.settings.subscription.manage': 'Gérer la souscription',
'organization.settings.subscription.error': 'Échec de la récupération de l\'URL du portail client',
'organization.settings.delete.title': 'Supprimer l\'organisation',
'organization.settings.delete.description': 'Supprimer cette organisation supprimera définitivement toutes les données associées à elle.',
'organization.settings.delete.confirm.title': 'Supprimer l\'organisation',
'organization.settings.delete.confirm.message': 'Êtes-vous sûr de vouloir supprimer cette organisation ? Cette action est irréversible, et toutes les données associées à cette organisation seront supprimées définitivement.',
'organization.settings.delete.confirm.confirm-button': 'Supprimer l\'organisation',
'organization.settings.delete.confirm.cancel-button': 'Annuler',
'organization.settings.delete.success': 'Organisation supprimée',
'organizations.members.title': 'Membres',
'organizations.members.description': 'Gérez les membres de votre organisation.',
'organizations.members.invite-member': 'Inviter un membre',
'organizations.members.invite-member-disabled-tooltip': 'Seuls les administrateurs ou les propriétaires peuvent inviter des membres à l\'organisation',
'organizations.members.remove-from-organization': 'Retirer de l\'organisation',
'organizations.members.role': 'Rôle',
'organizations.members.roles.owner': 'Propriétaire',
'organizations.members.roles.admin': 'Admin',
'organizations.members.roles.member': 'Membre',
'organizations.members.delete.confirm.title': 'Retirer un membre',
'organizations.members.delete.confirm.message': 'Êtes-vous sûr de vouloir retirer ce membre de l\'organisation ?',
'organizations.members.delete.confirm.confirm-button': 'Retirer',
'organizations.members.delete.confirm.cancel-button': 'Annuler',
'organizations.members.delete.success': 'Membre retiré de l\'organisation',
'organizations.members.update-role.success': 'Rôle du membre mis à jour',
'organizations.members.table.headers.name': 'Nom',
'organizations.members.table.headers.email': 'Email',
'organizations.members.table.headers.role': 'Rôle',
'organizations.members.table.headers.created': 'Créé',
'organizations.members.table.headers.actions': 'Actions',
'organizations.invite-member.title': 'Inviter un membre',
'organizations.invite-member.description': 'Invite un membre à votre organisation',
'organizations.invite-member.form.email.label': 'Email',
'organizations.invite-member.form.email.placeholder': 'Exemple: ada@papra.app',
'organizations.invite-member.form.email.required': 'Veuillez entrer une adresse email valide',
'organizations.invite-member.form.role.label': 'Rôle',
'organizations.invite-member.form.submit': 'Inviter à l\'organisation',
'organizations.invite-member.success.message': 'Membre invité',
'organizations.invite-member.success.description': 'L\'email a été invité à l\'organisation.',
'organizations.invite-member.error.message': 'Échec de l\'invitation du membre',
'organizations.invitations.title': 'Invitations',
'organizations.invitations.description': 'Gérez les invitations de votre organisation.',
'organizations.invitations.list.cta': 'Inviter un membre',
'organizations.invitations.list.empty.title': 'Aucune invitation en attente',
'organizations.invitations.list.empty.description': 'Vous n\'avez pas été invité à aucune organisation.',
'organizations.invitations.status.pending': 'En attente',
'organizations.invitations.status.accepted': 'Accepté',
'organizations.invitations.status.rejected': 'Refusé',
'organizations.invitations.status.expired': 'Expiré',
'organizations.invitations.status.cancelled': 'Annulé',
'organizations.invitations.resend': 'Renvoyer l\'invitation',
'organizations.invitations.cancel.title': 'Annuler l\'invitation',
'organizations.invitations.cancel.description': 'Êtes-vous sûr de vouloir annuler cette invitation ?',
'organizations.invitations.cancel.confirm': 'Annuler l\'invitation',
'organizations.invitations.cancel.cancel': 'Annuler',
'organizations.invitations.resend.title': 'Renvoyer l\'invitation',
'organizations.invitations.resend.description': 'Êtes-vous sûr de vouloir renvoyer cette invitation ? Cela enverra un nouvel email à l\'invité.',
'organizations.invitations.resend.confirm': 'Renvoyer l\'invitation',
'organizations.invitations.resend.cancel': 'Annuler',
'invitations.list.title': 'Invitations',
'invitations.list.description': 'Gérez les invitations de votre organisation.',
'invitations.list.empty.title': 'Aucune invitation en attente',
'invitations.list.empty.description': 'Vous n\'avez pas été invité à aucune organisation.',
'invitations.list.headers.organization': 'Organisation',
'invitations.list.headers.status': 'Statut',
'invitations.list.headers.created': 'Créé',
'invitations.list.headers.actions': 'Actions',
'invitations.list.actions.accept': 'Accepter',
'invitations.list.actions.reject': 'Refuser',
'invitations.list.actions.accept.success.message': 'Invitation acceptée',
'invitations.list.actions.accept.success.description': 'L\'invitation a été acceptée.',
'invitations.list.actions.reject.success.message': 'Invitation refusée',
'invitations.list.actions.reject.success.description': 'L\'invitation a été refusée.',
// Documents
'documents.list.title': 'Documents',
'documents.list.no-documents.title': 'Aucun document',
'documents.list.no-documents.description': 'Il n\'y a pas de documents dans cette organisation. Commencez par télécharger des documents.',
'documents.list.no-results': 'Aucun document trouvé',
'documents.tabs.info': 'Info',
'documents.tabs.content': 'Contenu',
'documents.tabs.activity': 'Activité',
'documents.deleted.message': 'Ce document a été supprimé et sera supprimé définitivement dans {{ days }} jours.',
'documents.actions.download': 'Télécharger',
'documents.actions.open-in-new-tab': 'Ouvrir dans un nouvel onglet',
'documents.actions.restore': 'Restaurer',
'documents.actions.delete': 'Supprimer',
'documents.actions.edit': 'Modifier',
'documents.actions.cancel': 'Annuler',
'documents.actions.save': 'Enregistrer',
'documents.actions.saving': 'Enregistrement...',
'documents.content.alert': 'Le contenu du document est automatiquement extrait du document lors de l\'import. Il est uniquement utilisé pour la recherche et l\'indexation.',
'documents.content.empty-placeholder': 'Ce document n\'a pas de contenu extrait, vous pouvez le définir manuellement ici.',
'documents.info.id': 'ID',
'documents.info.name': 'Nom',
'documents.info.type': 'Type',
'documents.info.size': 'Taille',
'documents.info.created-at': 'Créé le',
'documents.info.updated-at': 'Mis à jour le',
'documents.info.never': 'Jamais',
'documents.rename.title': 'Renommer le document',
'documents.rename.form.name.label': 'Nom',
'documents.rename.form.name.placeholder': 'Exemple: Facture 2024',
'documents.rename.form.name.required': 'Veuillez entrer un nom pour le document',
'documents.rename.form.name.max-length': 'Le nom doit contenir moins de 255 caractères',
'documents.rename.form.submit': 'Renommer',
'documents.rename.success': 'Document renommé avec succès',
'documents.rename.cancel': 'Annuler',
'import-documents.title.error': '{{ count }} documents ont échoué',
'import-documents.title.success': '{{ count }} documents ont été importés',
'import-documents.title.pending': '{{ count }} / {{ total }} documents importés',
'import-documents.title.none': 'Importer des documents',
'import-documents.no-import-in-progress': 'Aucune importation de documents en cours',
'documents.deleted.title': 'Documents supprimés',
'documents.deleted.empty.title': 'Aucun document supprimé',
'documents.deleted.empty.description': 'Vous n\'avez pas de documents supprimés. Les documents supprimés seront déplacés dans la corbeille pour {{ days }} jours.',
'documents.deleted.retention-notice': 'Tous les documents supprimés sont stockés dans la corbeille pour {{ days }} jours. Passé ce délai, les documents seront supprimés définitivement, et vous ne pourrez plus les restaurer.',
'documents.deleted.deleted-at': 'Supprimé',
'documents.deleted.restoring': 'Restauration...',
'documents.deleted.deleting': 'Suppression...',
'documents.preview.unknown-file-type': 'Aucun aperçu disponible pour ce type de fichier',
'documents.preview.binary-file': 'Cela semble être un fichier binaire et ne peut pas être affiché en texte',
'trash.delete-all.button': 'Supprimer tous les documents',
'trash.delete-all.confirm.title': 'Supprimer définitivement tous les documents ?',
'trash.delete-all.confirm.description': 'Êtes-vous sûr de vouloir supprimer définitivement tous les documents de la corbeille ? Cette action est irréversible.',
'trash.delete-all.confirm.label': 'Supprimer',
'trash.delete-all.confirm.cancel': 'Annuler',
'trash.delete.button': 'Supprimer',
'trash.delete.confirm.title': 'Supprimer définitivement le document ?',
'trash.delete.confirm.description': 'Êtes-vous sûr de vouloir supprimer définitivement ce document de la corbeille ? Cette action est irréversible.',
'trash.delete.confirm.label': 'Supprimer',
'trash.delete.confirm.cancel': 'Annuler',
'trash.deleted.success.title': 'Document supprimé',
'trash.deleted.success.description': 'Le document a été supprimé définitivement.',
'activity.document.created': 'Le document a été créé',
'activity.document.updated.single': 'Le {{ field }} a été mis à jour',
'activity.document.updated.multiple': 'Les {{ fields }} ont été mis à jour',
'activity.document.updated': 'Le document a été mis à jour',
'activity.document.deleted': 'Le document a été supprimé',
'activity.document.restored': 'Le document a été restauré',
'activity.document.tagged': 'Le tag {{ tag }} a été ajouté',
'activity.document.untagged': 'Le tag {{ tag }} a été supprimé',
'activity.document.user.name': 'par {{ name }}',
'activity.load-more': 'Charger plus',
'activity.no-more-activities': 'Aucune activité pour ce document',
// Tags
'tags.no-tags.title': 'Aucun tag',
'tags.no-tags.description': 'Cette organisation n\'a pas de tags. Les tags sont utilisés pour catégoriser les documents. Vous pouvez ajouter des tags à vos documents pour les rendre plus faciles à trouver et à organiser.',
'tags.no-tags.create-tag': 'Créer un tag',
'tags.title': 'Tags de documents',
'tags.description': 'Les tags sont utilisés pour catégoriser les documents. Vous pouvez ajouter des tags à vos documents pour les rendre plus faciles à trouver et à organiser.',
'tags.create': 'Créer un tag',
'tags.update': 'Mettre à jour un tag',
'tags.delete': 'Supprimer un tag',
'tags.delete.confirm.title': 'Supprimer un tag',
'tags.delete.confirm.message': 'Êtes-vous sûr de vouloir supprimer ce tag ? Supprimer un tag supprimera toutes les règles de catégorisation qui l\'utilisent.',
'tags.delete.confirm.confirm-button': 'Supprimer',
'tags.delete.confirm.cancel-button': 'Annuler',
'tags.delete.success': 'Tag supprimé avec succès',
'tags.create.success': 'Tag "{{ name }}" créé avec succès.',
'tags.update.success': 'Tag "{{ name }}" mis à jour avec succès.',
'tags.form.name.label': 'Nom',
'tags.form.name.placeholder': 'Exemple: Contrats',
'tags.form.name.required': 'Veuillez entrer un nom pour le tag',
'tags.form.name.max-length': 'Le nom du tag doit contenir moins de 64 caractères',
'tags.form.color.label': 'Couleur',
'tags.form.color.required': 'Veuillez entrer une couleur',
'tags.form.color.invalid': 'La couleur hexadécimale est mal formatée.',
'tags.form.description.label': 'Description',
'tags.form.description.optional': '(optionnel)',
'tags.form.description.placeholder': 'Exemple: Tous les contrats signés par l\'entreprise',
'tags.form.description.max-length': 'La description doit contenir moins de 256 caractères',
'tags.form.no-description': 'Aucune description',
'tags.table.headers.tag': 'Tag',
'tags.table.headers.description': 'Description',
'tags.table.headers.documents': 'Documents',
'tags.table.headers.created': 'Date de création',
'tags.table.headers.actions': 'Actions',
// Tagging rules
'tagging-rules.field.name': 'nom du document',
'tagging-rules.field.content': 'contenu du document',
'tagging-rules.operator.equals': 'égal à',
'tagging-rules.operator.not-equals': 'différent de',
'tagging-rules.operator.contains': 'contient',
'tagging-rules.operator.not-contains': 'ne contient pas',
'tagging-rules.operator.starts-with': 'commence par',
'tagging-rules.operator.ends-with': 'finit par',
'tagging-rules.list.title': 'Règles de catégorisation',
'tagging-rules.list.description': 'Gérez vos règles de catégorisation, pour catégoriser automatiquement les documents en fonction de conditions que vous définissez.',
'tagging-rules.list.demo-warning': 'Note: Cette instance est une démo, les règles de catégorisation ne seront pas appliquées aux documents ajoutés.',
'tagging-rules.list.no-tagging-rules.title': 'Aucune règle de catégorisation',
'tagging-rules.list.no-tagging-rules.description': 'Créez une règle de catégorisation pour catégoriser automatiquement vos documents en fonction de conditions que vous définissez.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Créer une règle de catégorisation',
'tagging-rules.list.card.no-conditions': 'Aucune condition',
'tagging-rules.list.card.one-condition': '1 condition',
'tagging-rules.list.card.conditions': '{{ count }} conditions',
'tagging-rules.list.card.delete': 'Supprimer la règle',
'tagging-rules.list.card.edit': 'Modifier la règle',
'tagging-rules.create.title': 'Créer une règle de catégorisation',
'tagging-rules.create.success': 'Règle de catégorisation créée avec succès',
'tagging-rules.create.error': 'Échec de la création de la règle de catégorisation',
'tagging-rules.create.submit': 'Créer la règle',
'tagging-rules.form.name.label': 'Nom',
'tagging-rules.form.name.placeholder': 'Exemple: Catégoriser les factures',
'tagging-rules.form.name.min-length': 'Veuillez entrer un nom pour la règle',
'tagging-rules.form.name.max-length': 'Le nom doit contenir moins de 64 caractères',
'tagging-rules.form.description.label': 'Description',
'tagging-rules.form.description.placeholder': 'Exemple: Catégoriser les documents avec \'facture\' dans le nom',
'tagging-rules.form.description.max-length': 'La description doit contenir moins de 256 caractères',
'tagging-rules.form.conditions.label': 'Conditions',
'tagging-rules.form.conditions.description': 'Définissez les conditions que doivent remplir la règle pour qu\'elle s\'applique. Toutes les conditions doivent être remplies pour que la règle s\'applique.',
'tagging-rules.form.conditions.add-condition': 'Ajouter une condition',
'tagging-rules.form.conditions.no-conditions.title': 'Aucune condition',
'tagging-rules.form.conditions.no-conditions.description': 'Vous n\'avez pas ajouté de conditions à cette règle. Cette règle appliquera ses tags à tous les documents.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Appliquer la règle sans conditions',
'tagging-rules.form.conditions.no-conditions.cancel': 'Annuler',
'tagging-rules.form.conditions.value.placeholder': 'Exemple: facture',
'tagging-rules.form.conditions.value.min-length': 'Veuillez entrer une valeur pour la condition',
'tagging-rules.form.tags.label': 'Tags',
'tagging-rules.form.tags.description': 'Sélectionnez les tags à appliquer aux documents ajoutés qui correspondent aux conditions',
'tagging-rules.form.tags.min-length': 'Au moins un tag à appliquer est requis',
'tagging-rules.form.tags.add-tag': 'Créer un tag',
'tagging-rules.form.submit': 'Créer la règle',
'tagging-rules.update.title': 'Mettre à jour la règle de catégorisation',
'tagging-rules.update.error': 'Échec de la mise à jour de la règle de catégorisation',
'tagging-rules.update.submit': 'Mettre à jour la règle',
'tagging-rules.update.cancel': 'Annuler',
// Intake emails
'intake-emails.title': 'Adresses de réception',
'intake-emails.description': 'Les adresses de réception sont utilisées pour ingérer automatiquement les emails dans Papra. Il suffit de les envoyer à l\'adresse de réception et leurs pièces jointes seront ajoutées à vos documents.',
'intake-emails.disabled.title': 'Les adresses de réception sont désactivées',
'intake-emails.disabled.description': 'Les adresses de réception sont désactivées sur cette instance. Veuillez contacter votre administrateur pour les activer. Voir la {{ documentation }} pour plus d\'informations.',
'intake-emails.disabled.documentation': 'documentation',
'intake-emails.info': 'Seules les adresses de réception activées depuis les origines autorisées seront traitées. Vous pouvez activer ou désactiver une adresse de réception à tout moment.',
'intake-emails.empty.title': 'Aucune adresse de réception',
'intake-emails.empty.description': 'Générez une adresse de réception pour ingérer facilement les pièces jointes des emails.',
'intake-emails.empty.generate': 'Générer une adresse de réception',
'intake-emails.count': '{{ count }} intake email{{ plural }} for this organization',
'intake-emails.new': 'Nouvelle adresse de réception',
'intake-emails.disabled-label': '(Désactivé)',
'intake-emails.no-origins': 'Aucune adresse de réception autorisée',
'intake-emails.allowed-origins': 'Autorisées depuis {{ count }} adresse{{ plural }}',
'intake-emails.actions.enable': 'Activer',
'intake-emails.actions.disable': 'Désactiver',
'intake-emails.actions.manage-origins': 'Gérer les adresses d\'origine',
'intake-emails.actions.delete': 'Supprimer',
'intake-emails.delete.confirm.title': 'Supprimer l\'adresse de réception ?',
'intake-emails.delete.confirm.message': 'Êtes-vous sûr de vouloir supprimer cette adresse de réception ? Cette action est irréversible.',
'intake-emails.delete.confirm.confirm-button': 'Supprimer l\'adresse de réception',
'intake-emails.delete.confirm.cancel-button': 'Annuler',
'intake-emails.delete.success': 'Adresse de réception supprimée',
'intake-emails.create.success': 'Adresse de réception créée',
'intake-emails.update.success.enabled': 'Adresse de réception activée',
'intake-emails.update.success.disabled': 'Adresse de réception désactivée',
'intake-emails.allowed-origins.title': 'Adresses d\'origine autorisées',
'intake-emails.allowed-origins.description': 'Seuls les emails envoyés à {{ email }} depuis ces adresses d\'origine seront traités. Si aucune adresse d\'origine n\'est spécifiée, tous les emails seront rejetés.',
'intake-emails.allowed-origins.add.label': 'Ajouter une adresse d\'origine autorisée',
'intake-emails.allowed-origins.add.placeholder': 'Exemple: ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Ajouter',
'intake-emails.allowed-origins.add.error.exists': 'Cette adresse email est déjà dans les adresses d\'origine autorisées pour cette adresse de réception',
// API keys
'api-keys.permissions.documents.title': 'Documents',
'api-keys.permissions.documents.documents:create': 'Créer des documents',
'api-keys.permissions.documents.documents:read': 'Lire des documents',
'api-keys.permissions.documents.documents:update': 'Mettre à jour des documents',
'api-keys.permissions.documents.documents:delete': 'Supprimer des documents',
'api-keys.permissions.tags.title': 'Tags',
'api-keys.permissions.tags.tags:create': 'Créer des tags',
'api-keys.permissions.tags.tags:read': 'Lire des tags',
'api-keys.permissions.tags.tags:update': 'Mettre à jour des tags',
'api-keys.permissions.tags.tags:delete': 'Supprimer des tags',
'api-keys.create.title': 'Créer une clé API',
'api-keys.create.description': 'Créer une nouvelle clé API pour accéder à l\'API de Papra.',
'api-keys.create.success': 'La clé API a été créée avec succès.',
'api-keys.create.back': 'Retour aux clés API',
'api-keys.create.form.name.label': 'Nom',
'api-keys.create.form.name.placeholder': 'Exemple: Ma clé API',
'api-keys.create.form.name.required': 'Veuillez entrer un nom pour la clé API',
'api-keys.create.form.permissions.label': 'Permissions',
'api-keys.create.form.permissions.required': 'Veuillez sélectionner au moins une permission',
'api-keys.create.form.submit': 'Créer la clé API',
'api-keys.create.created.title': 'Clé API créée',
'api-keys.create.created.description': 'La clé API a été créée avec succès. Enregistrez-la dans un endroit sûr car elle ne sera plus affichée.',
'api-keys.list.title': 'Clés API',
'api-keys.list.description': 'Gérez vos clés API ici.',
'api-keys.list.create': 'Créer une clé API',
'api-keys.list.empty.title': 'Aucune clé API',
'api-keys.list.empty.description': 'Créez une clé API pour accéder à l\'API de Papra.',
'api-keys.list.card.last-used': 'Dernière utilisation',
'api-keys.list.card.never': 'Jamais',
'api-keys.list.card.created': 'Créée',
'api-keys.delete.success': 'La clé API a été supprimée avec succès',
'api-keys.delete.confirm.title': 'Supprimer la clé API',
'api-keys.delete.confirm.message': 'Êtes-vous sûr de vouloir supprimer cette clé API ? Cette action est irréversible.',
'api-keys.delete.confirm.confirm-button': 'Supprimer',
'api-keys.delete.confirm.cancel-button': 'Annuler',
// Webhooks
'webhooks.list.title': 'Webhooks',
'webhooks.list.description': 'Gérez vos webhooks ici.',
'webhooks.list.empty.title': 'Aucun webhook',
'webhooks.list.empty.description': 'Créez votre premier webhook pour commencer à recevoir des événements.',
'webhooks.list.create': 'Créer un webhook',
'webhooks.list.card.last-triggered': 'Dernière invocation',
'webhooks.list.card.never': 'Jamais',
'webhooks.list.card.created': 'Créée',
'webhooks.create.title': 'Créer un webhook',
'webhooks.create.description': 'Créez un webhook pour recevoir des événements lorsque des documents sont ajoutés à votre organisation.',
'webhooks.create.success': 'Le webhook a été créé avec succès.',
'webhooks.create.back': 'Retour aux webhooks',
'webhooks.create.form.submit': 'Créer le webhook',
'webhooks.create.form.name.label': 'Nom du webhook',
'webhooks.create.form.name.placeholder': 'Entrez le nom du webhook',
'webhooks.create.form.name.required': 'Le nom est requis',
'webhooks.create.form.url.label': 'URL du webhook',
'webhooks.create.form.url.placeholder': 'Entrez l\'URL du webhook',
'webhooks.create.form.url.required': 'L\'URL est requise',
'webhooks.create.form.url.invalid': 'L\'URL est invalide',
'webhooks.create.form.secret.label': 'Secret',
'webhooks.create.form.secret.placeholder': 'Entrez le secret du webhook',
'webhooks.create.form.events.label': 'Événements',
'webhooks.create.form.events.required': 'Au moins un événement est requis',
'webhooks.update.title': 'Modifier le webhook',
'webhooks.update.description': 'Mettez à jour les détails de votre webhook',
'webhooks.update.success': 'Le webhook a été mis à jour avec succès',
'webhooks.update.submit': 'Mettre à jour le webhook',
'webhooks.update.cancel': 'Annuler',
'webhooks.update.form.secret.placeholder': 'Entrez un nouveau secret',
'webhooks.update.form.secret.placeholder-redacted': '[Secret masqué]',
'webhooks.update.form.rotate-secret.button': 'Rotation du secret',
'webhooks.delete.success': 'Le webhook a été supprimé avec succès',
'webhooks.delete.confirm.title': 'Supprimer le webhook',
'webhooks.delete.confirm.message': 'Êtes-vous sûr de vouloir supprimer ce webhook ? Cette action est irréversible.',
'webhooks.delete.confirm.confirm-button': 'Supprimer',
'webhooks.delete.confirm.cancel-button': 'Annuler',
'webhooks.events.documents.title': 'Événements de documents',
'webhooks.events.documents.document:created.description': 'Document créé',
'webhooks.events.documents.document:deleted.description': 'Document supprimé',
'webhooks.events.documents.document:updated.description': 'Document mis à jour',
'webhooks.events.documents.document:tag:added.description': 'Un tag est ajouté à un document',
'webhooks.events.documents.document:tag:removed.description': 'Un tag est retiré d\'un document',
// Navigation
'layout.menu.home': 'Accueil',
'layout.menu.documents': 'Documents',
'layout.menu.tags': 'Tags',
'layout.menu.tagging-rules': 'Règles de catégorisation',
'layout.menu.deleted-documents': 'Documents supprimés',
'layout.menu.organization-settings': 'Paramètres',
'layout.menu.api-keys': 'API keys',
'layout.menu.settings': 'Paramètres',
'layout.menu.account': 'Compte',
'layout.menu.general-settings': 'Paramètres généraux',
'layout.menu.intake-emails': 'Adresses de réception',
'layout.menu.webhooks': 'Webhooks',
'layout.menu.members': 'Membres',
'layout.menu.invitations': 'Invitations',
'layout.theme.light': 'Mode clair',
'layout.theme.dark': 'Mode sombre',
'layout.theme.system': 'Mode système',
'layout.search.placeholder': 'Rechercher...',
'layout.menu.import-document': 'Importer un document',
'user-menu.account-settings': 'Paramètres du compte',
'user-menu.api-keys': 'Clés d\'API',
'user-menu.invitations': 'Invitations',
'user-menu.language': 'Langue',
'user-menu.logout': 'Déconnexion',
// Command palette
'command-palette.search.placeholder': 'Rechercher des commandes ou des documents',
'command-palette.no-results': 'Aucun résultat trouvé',
'command-palette.sections.documents': 'Documents',
'command-palette.sections.theme': 'Thème',
// API errors
'api-errors.document.already_exists': 'Le document existe déjà',
'api-errors.document.file_too_big': 'Le fichier du document est trop grand',
'api-errors.intake_email.limit_reached': 'Le nombre maximum d\'emails de réception pour cette organisation a été atteint. Veuillez mettre à niveau votre plan pour créer plus d\'emails de réception.',
'api-errors.user.max_organization_count_reached': 'Vous avez atteint le nombre maximum d\'organisations que vous pouvez créer, si vous avez besoin de créer plus, veuillez contacter le support.',
'api-errors.default': 'Une erreur est survenue lors du traitement de votre requête.',
'api-errors.organization.invitation_already_exists': 'Une invitation pour cet email existe déjà dans cette organisation.',
'api-errors.user.already_in_organization': 'Cet utilisateur est déjà dans cette organisation.',
'api-errors.user.organization_invitation_limit_reached': 'Le nombre maximum d\'invitations a été atteint pour aujourd\'hui. Veuillez réessayer demain.',
'api-errors.demo.not_available': 'Cette fonctionnalité n\'est pas disponible dans la démo',
'api-errors.tags.already_exists': 'Un tag avec ce nom existe déjà pour cette organisation',
'api-errors.internal.error': 'Une erreur est survenue lors du traitement de votre requête. Veuillez réessayer.',
'api-errors.auth.invalid_origin': 'Origine de l\'application invalide. Si vous hébergez Papra, assurez-vous que la variable d\'environnement APP_BASE_URL correspond à votre URL actuelle. Pour plus de détails, consultez https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Not Found',
'not-found.description': 'Désolé, la page que vous cherchez n\'existe pas. Veuillez vérifier l\'URL et réessayer.',
'not-found.back-to-home': 'Retour à l\'accueil',
// Demo
'demo.popup.description': 'Cette instance est une démo, toutes les données sont sauvegardées dans le stockage local de votre navigateur.',
'demo.popup.discord': 'Rejoignez le {{ discordLink }} pour obtenir de l\'aide, proposer des fonctionnalités ou simplement discuter.',
'demo.popup.discord-link-label': 'Serveur Discord',
'demo.popup.reset': 'Réinitialiser la démo',
'demo.popup.hide': 'Masquer',
// Color picker
'color-picker.hue': 'Teinte',
'color-picker.saturation': 'Saturation',
'color-picker.lightness': 'Luminosité',
'color-picker.select-color': 'Sélectionner la couleur',
'color-picker.select-a-color': 'Sélectionner une couleur',
};

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Reimposta la tua password',
'auth.request-password-reset.description': 'Inserisci la tua email per reimpostare la password.',
'auth.request-password-reset.requested': 'Se esiste un account per questa email, ti abbiamo inviato un\'email per reimpostare la password.',
'auth.request-password-reset.back-to-login': 'Torna al login',
'auth.request-password-reset.form.email.label': 'Email',
'auth.request-password-reset.form.email.placeholder': 'Esempio: ada@papra.app',
'auth.request-password-reset.form.email.required': 'Inserisci il tuo indirizzo email',
'auth.request-password-reset.form.email.invalid': 'Questo indirizzo email non è valido',
'auth.request-password-reset.form.submit': 'Richiedi reimpostazione password',
'auth.reset-password.title': 'Reimposta la tua password',
'auth.reset-password.description': 'Inserisci la nuova password per reimpostare la password.',
'auth.reset-password.reset': 'La tua password è stata reimpostata.',
'auth.reset-password.back-to-login': 'Torna al login',
'auth.reset-password.form.new-password.label': 'Nuova password',
'auth.reset-password.form.new-password.placeholder': 'Esempio: **********',
'auth.reset-password.form.new-password.required': 'Inserisci la tua nuova password',
'auth.reset-password.form.new-password.min-length': 'La password deve essere di almeno {{ minLength }} caratteri',
'auth.reset-password.form.new-password.max-length': 'La password deve essere inferiore a {{ maxLength }} caratteri',
'auth.reset-password.form.submit': 'Reimposta password',
'auth.email-provider.open': 'Apri {{ provider }}',
'auth.login.title': 'Accedi a Papra',
'auth.login.description': 'Inserisci la tua email o usa un provider per accedere al tuo account Papra.',
'auth.login.login-with-provider': 'Accedi con {{ provider }}',
'auth.login.no-account': 'Non hai un account?',
'auth.login.register': 'Registrati',
'auth.login.form.email.label': 'Email',
'auth.login.form.email.placeholder': 'Esempio: ada@papra.app',
'auth.login.form.email.required': 'Inserisci il tuo indirizzo email',
'auth.login.form.email.invalid': 'Questo indirizzo email non è valido',
'auth.login.form.password.label': 'Password',
'auth.login.form.password.placeholder': 'Imposta una password',
'auth.login.form.password.required': 'Inserisci la tua password',
'auth.login.form.remember-me.label': 'Ricordami',
'auth.login.form.forgot-password.label': 'Password dimenticata?',
'auth.login.form.submit': 'Accedi',
'auth.register.title': 'Registrati a Papra',
'auth.register.description': 'Crea un account per iniziare a usare Papra.',
'auth.register.register-with-email': 'Registrati tramite email',
'auth.register.register-with-provider': 'Registrati tramite {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Hai già un account?',
'auth.register.login': 'Accedi',
'auth.register.registration-disabled.title': 'Registrazione disabilitata',
'auth.register.registration-disabled.description': 'La creazione di nuovi account è attualmente disabilitata su questa istanza di Papra. Solo gli utenti con account esistenti possono accedere. Se pensi che sia un errore, contatta l\'amministratore di questa istanza.',
'auth.register.form.email.label': 'Email',
'auth.register.form.email.placeholder': 'Esempio: ada@papra.app',
'auth.register.form.email.required': 'Inserisci il tuo indirizzo email',
'auth.register.form.email.invalid': 'Questo indirizzo email non è valido',
'auth.register.form.password.label': 'Password',
'auth.register.form.password.placeholder': 'Imposta una password',
'auth.register.form.password.required': 'Inserisci la tua password',
'auth.register.form.password.min-length': 'La password deve essere di almeno {{ minLength }} caratteri',
'auth.register.form.password.max-length': 'La password deve essere inferiore a {{ maxLength }} caratteri',
'auth.register.form.name.label': 'Nome',
'auth.register.form.name.placeholder': 'Esempio: Ada Lovelace',
'auth.register.form.name.required': 'Inserisci il tuo nome',
'auth.register.form.name.max-length': 'Il nome deve essere inferiore a {{ maxLength }} caratteri',
'auth.register.form.submit': 'Registrati',
'auth.email-validation-required.title': 'Verifica la tua email',
'auth.email-validation-required.description': 'Una email di verifica è stata inviata al tuo indirizzo email. Verifica il tuo indirizzo cliccando il link nell\'email.',
'auth.legal-links.description': 'Continuando, confermi di aver letto e accettato i {{ terms }} e l\'{{ privacy }}.',
'auth.legal-links.terms': 'Termini di servizio',
'auth.legal-links.privacy': 'Informativa sulla privacy',
'auth.no-auth-provider.title': 'Nessun provider di autenticazione',
'auth.no-auth-provider.description': 'Nessun provider di autenticazione è abilitato su questa istanza di Papra. Contatta l\'amministratore di questa istanza per abilitarli.',
// User settings
'user.settings.title': 'Impostazioni utente',
'user.settings.description': 'Gestisci qui le impostazioni del tuo account.',
'user.settings.email.title': 'Indirizzo email',
'user.settings.email.description': 'Il tuo indirizzo email non può essere modificato.',
'user.settings.email.label': 'Indirizzo email',
'user.settings.name.title': 'Nome completo',
'user.settings.name.description': 'Il tuo nome completo è visibile agli altri membri dell\'organizzazione.',
'user.settings.name.label': 'Nome completo',
'user.settings.name.placeholder': 'Es. Mario Rossi',
'user.settings.name.update': 'Aggiorna nome',
'user.settings.name.updated': 'Il tuo nome completo è stato aggiornato',
'user.settings.logout.title': 'Logout',
'user.settings.logout.description': 'Esci dal tuo account. Potrai accedere nuovamente in seguito.',
'user.settings.logout.button': 'Esci',
// Organizations
'organizations.list.title': 'Le tue organizzazioni',
'organizations.list.description': 'Le organizzazioni sono un modo per raggruppare i tuoi documenti e gestire l\'accesso. Puoi creare più organizzazioni e invitare i tuoi collaboratori.',
'organizations.list.create-new': 'Crea una nuova organizzazione',
'organizations.details.no-documents.title': 'Nessun documento',
'organizations.details.no-documents.description': 'Non ci sono ancora documenti in questa organizzazione. Inizia caricando dei documenti.',
'organizations.details.upload-documents': 'Carica documenti',
'organizations.details.documents-count': 'documenti in totale',
'organizations.details.total-size': 'dimensione totale',
'organizations.details.latest-documents': 'Ultimi documenti importati',
'organizations.create.title': 'Crea una nuova organizzazione',
'organizations.create.description': 'I tuoi documenti saranno raggruppati per organizzazione. Puoi creare più organizzazioni per separare i documenti, ad esempio per uso personale e lavorativo.',
'organizations.create.back': 'Indietro',
'organizations.create.error.max-count-reached': 'Hai raggiunto il numero massimo di organizzazioni che puoi creare, se hai bisogno di crearne altre contatta il supporto.',
'organizations.create.form.name.label': 'Nome organizzazione',
'organizations.create.form.name.placeholder': 'Es. Acme Inc.',
'organizations.create.form.name.required': 'Inserisci il nome dell\'organizzazione',
'organizations.create.form.submit': 'Crea organizzazione',
'organizations.create.success': 'Organizzazione creata con successo',
'organizations.create-first.title': 'Crea la tua organizzazione',
'organizations.create-first.description': 'I tuoi documenti saranno raggruppati per organizzazione. Puoi creare più organizzazioni per separare i documenti, ad esempio per uso personale e lavorativo.',
'organizations.create-first.default-name': 'La mia organizzazione',
'organizations.create-first.user-name': 'Organizzazione di {{ name }}',
'organization.settings.title': 'Impostazioni organizzazione',
'organization.settings.page.title': 'Impostazioni organizzazione',
'organization.settings.page.description': 'Gestisci qui le impostazioni della tua organizzazione.',
'organization.settings.name.title': 'Nome organizzazione',
'organization.settings.name.update': 'Aggiorna nome',
'organization.settings.name.placeholder': 'Es. Acme Inc.',
'organization.settings.name.updated': 'Nome organizzazione aggiornato',
'organization.settings.subscription.title': 'Sottoscrizione',
'organization.settings.subscription.description': 'Gestisci fatturazione, fatture e metodi di pagamento.',
'organization.settings.subscription.manage': 'Gestisci sottoscrizione',
'organization.settings.subscription.error': 'Impossibile ottenere l\'URL del portale clienti',
'organization.settings.delete.title': 'Elimina organizzazione',
'organization.settings.delete.description': 'Eliminando questa organizzazione rimuoverai definitivamente tutti i dati associati.',
'organization.settings.delete.confirm.title': 'Elimina organizzazione',
'organization.settings.delete.confirm.message': 'Sei sicuro di voler eliminare questa organizzazione? Questa azione non può essere annullata e tutti i dati associati saranno rimossi in modo permanente.',
'organization.settings.delete.confirm.confirm-button': 'Elimina organizzazione',
'organization.settings.delete.confirm.cancel-button': 'Annulla',
'organization.settings.delete.success': 'Organizzazione eliminata',
'organizations.members.title': 'Membri',
'organizations.members.description': 'Gestisci i membri della tua organizzazione',
'organizations.members.invite-member': 'Invita membro',
'organizations.members.invite-member-disabled-tooltip': 'Solo gli amministratori o i proprietari possono invitare membri nell\'organizzazione',
'organizations.members.remove-from-organization': 'Rimuovi dall\'organizzazione',
'organizations.members.role': 'Ruolo',
'organizations.members.roles.owner': 'Proprietario',
'organizations.members.roles.admin': 'Amministratore',
'organizations.members.roles.member': 'Membro',
'organizations.members.delete.confirm.title': 'Rimuovi membro',
'organizations.members.delete.confirm.message': 'Sei sicuro di voler rimuovere questo membro dall\'organizzazione?',
'organizations.members.delete.confirm.confirm-button': 'Rimuovi',
'organizations.members.delete.confirm.cancel-button': 'Annulla',
'organizations.members.delete.success': 'Membro rimosso dall\'organizzazione',
'organizations.members.update-role.success': 'Ruolo del membro aggiornato',
'organizations.members.table.headers.name': 'Nome',
'organizations.members.table.headers.email': 'Email',
'organizations.members.table.headers.role': 'Ruolo',
'organizations.members.table.headers.created': 'Creato',
'organizations.members.table.headers.actions': 'Azioni',
'organizations.invite-member.title': 'Invita membro',
'organizations.invite-member.description': 'Invita un membro nella tua organizzazione',
'organizations.invite-member.form.email.label': 'Email',
'organizations.invite-member.form.email.placeholder': 'Esempio: ada@papra.app',
'organizations.invite-member.form.email.required': 'Inserisci un indirizzo email valido',
'organizations.invite-member.form.role.label': 'Ruolo',
'organizations.invite-member.form.submit': 'Invita nell\'organizzazione',
'organizations.invite-member.success.message': 'Membro invitato',
'organizations.invite-member.success.description': 'Il membro è stato invitato nell\'organizzazione.',
'organizations.invite-member.error.message': 'Impossibile invitare il membro',
'organizations.invitations.title': 'Inviti',
'organizations.invitations.description': 'Gestisci gli inviti della tua organizzazione',
'organizations.invitations.list.cta': 'Invita membro',
'organizations.invitations.list.empty.title': 'Nessun invito in sospeso',
'organizations.invitations.list.empty.description': 'Non sei stato ancora invitato in nessuna organizzazione.',
'organizations.invitations.status.pending': 'In sospeso',
'organizations.invitations.status.accepted': 'Accettato',
'organizations.invitations.status.rejected': 'Rifiutato',
'organizations.invitations.status.expired': 'Scaduto',
'organizations.invitations.status.cancelled': 'Cancellato',
'organizations.invitations.resend': 'Invia di nuovo invito',
'organizations.invitations.cancel.title': 'Annulla invito',
'organizations.invitations.cancel.description': 'Sei sicuro di voler annullare questo invito?',
'organizations.invitations.cancel.confirm': 'Annulla invito',
'organizations.invitations.cancel.cancel': 'Annulla',
'organizations.invitations.resend.title': 'Invia di nuovo invito',
'organizations.invitations.resend.description': 'Sei sicuro di voler inviare nuovamente questo invito? Sarà inviata una nuova email al destinatario.',
'organizations.invitations.resend.confirm': 'Invia invito',
'organizations.invitations.resend.cancel': 'Annulla',
'invitations.list.title': 'Inviti',
'invitations.list.description': 'Gestisci gli inviti della tua organizzazione',
'invitations.list.empty.title': 'Nessun invito in sospeso',
'invitations.list.empty.description': 'Non sei stato ancora invitato in nessuna organizzazione.',
'invitations.list.headers.organization': 'Organizzazione',
'invitations.list.headers.status': 'Stato',
'invitations.list.headers.created': 'Creato',
'invitations.list.headers.actions': 'Azioni',
'invitations.list.actions.accept': 'Accetta',
'invitations.list.actions.reject': 'Rifiuta',
'invitations.list.actions.accept.success.message': 'Invito accettato',
'invitations.list.actions.accept.success.description': 'L\'invito è stato accettato.',
'invitations.list.actions.reject.success.message': 'Invito rifiutato',
'invitations.list.actions.reject.success.description': 'L\'invito è stato rifiutato.',
// Documents
'documents.list.title': 'Documenti',
'documents.list.no-documents.title': 'Nessun documento',
'documents.list.no-documents.description': 'Non ci sono ancora documenti in questa organizzazione. Inizia caricando dei documenti.',
'documents.list.no-results': 'Nessun documento trovato',
'documents.tabs.info': 'Info',
'documents.tabs.content': 'Contenuto',
'documents.tabs.activity': 'Attività',
'documents.deleted.message': 'Questo documento è stato eliminato e sarà rimosso definitivamente tra {{ days }} giorni.',
'documents.actions.download': 'Scarica',
'documents.actions.open-in-new-tab': 'Apri in una nuova scheda',
'documents.actions.restore': 'Ripristina',
'documents.actions.delete': 'Elimina',
'documents.actions.edit': 'Modifica',
'documents.actions.cancel': 'Annulla',
'documents.actions.save': 'Salva',
'documents.actions.saving': 'Salvataggio in corso...',
'documents.content.alert': 'Il contenuto del documento è estratto automaticamente al caricamento. È usato solo per la ricerca e l\'indicizzazione.',
'documents.content.empty-placeholder': 'Questo documento non ha contenuto estratto, puoi inserirlo manualmente qui.',
'documents.info.id': 'ID',
'documents.info.name': 'Nome',
'documents.info.type': 'Tipo',
'documents.info.size': 'Dimensione',
'documents.info.created-at': 'Creato il',
'documents.info.updated-at': 'Aggiornato il',
'documents.info.never': 'Mai',
'documents.rename.title': 'Rinomina documento',
'documents.rename.form.name.label': 'Nome',
'documents.rename.form.name.placeholder': 'Esempio: Fattura 2024',
'documents.rename.form.name.required': 'Inserisci un nome per il documento',
'documents.rename.form.name.max-length': 'Il nome deve essere inferiore a 255 caratteri',
'documents.rename.form.submit': 'Rinomina documento',
'documents.rename.success': 'Documento rinominato con successo',
'documents.rename.cancel': 'Annulla',
'import-documents.title.error': '{{ count }} documenti non importati',
'import-documents.title.success': '{{ count }} documenti importati',
'import-documents.title.pending': '{{ count }} / {{ total }} documenti importati',
'import-documents.title.none': 'Importa documenti',
'import-documents.no-import-in-progress': 'Nessuna importazione documenti in corso',
'documents.deleted.title': 'Documenti eliminati',
'documents.deleted.empty.title': 'Nessun documento eliminato',
'documents.deleted.empty.description': 'Non hai documenti eliminati. I documenti eliminati saranno spostati nel cestino per {{ days }} giorni.',
'documents.deleted.retention-notice': 'Tutti i documenti eliminati sono conservati nel cestino per {{ days }} giorni. Passato questo periodo, saranno eliminati definitivamente e non potrai recuperarli.',
'documents.deleted.deleted-at': 'Eliminato il',
'documents.deleted.restoring': 'Ripristino in corso...',
'documents.deleted.deleting': 'Eliminazione in corso...',
'documents.preview.unknown-file-type': 'Nessuna anteprima disponibile per questo tipo di file',
'documents.preview.binary-file': 'Sembra essere un file binario e non può essere visualizzato come testo',
'trash.delete-all.button': 'Elimina tutto',
'trash.delete-all.confirm.title': 'Eliminare definitivamente tutti i documenti?',
'trash.delete-all.confirm.description': 'Sei sicuro di voler eliminare definitivamente tutti i documenti dal cestino? Questa azione non può essere annullata.',
'trash.delete-all.confirm.label': 'Elimina',
'trash.delete-all.confirm.cancel': 'Annulla',
'trash.delete.button': 'Elimina',
'trash.delete.confirm.title': 'Eliminare definitivamente il documento?',
'trash.delete.confirm.description': 'Sei sicuro di voler eliminare definitivamente questo documento dal cestino? Questa azione non può essere annullata.',
'trash.delete.confirm.label': 'Elimina',
'trash.delete.confirm.cancel': 'Annulla',
'trash.deleted.success.title': 'Documento eliminato',
'trash.deleted.success.description': 'Il documento è stato eliminato definitivamente.',
'activity.document.created': 'Documento creato',
'activity.document.updated.single': 'Il campo {{ field }} è stato aggiornato',
'activity.document.updated.multiple': 'I campi {{ fields }} sono stati aggiornati',
'activity.document.updated': 'Documento aggiornato',
'activity.document.deleted': 'Documento eliminato',
'activity.document.restored': 'Documento ripristinato',
'activity.document.tagged': 'Tag {{ tag }} aggiunto',
'activity.document.untagged': 'Tag {{ tag }} rimosso',
'activity.document.user.name': 'da {{ name }}',
'activity.load-more': 'Carica altri',
'activity.no-more-activities': 'Nessuna altra attività per questo documento',
// Tags
'tags.no-tags.title': 'Nessun tag',
'tags.no-tags.description': 'Questa organizzazione non ha ancora tag. I tag vengono usati per categorizzare i documenti. Puoi aggiungere tag ai tuoi documenti per trovarli e organizzarli più facilmente.',
'tags.no-tags.create-tag': 'Crea tag',
'tags.title': 'Tag dei documenti',
'tags.description': 'I tag vengono usati per categorizzare i documenti. Puoi aggiungere tag ai tuoi documenti per trovarli e organizzarli più facilmente.',
'tags.create': 'Crea tag',
'tags.update': 'Aggiorna tag',
'tags.delete': 'Elimina tag',
'tags.delete.confirm.title': 'Elimina tag',
'tags.delete.confirm.message': 'Sei sicuro di voler eliminare questo tag? Il tag verrà rimosso da tutti i documenti.',
'tags.delete.confirm.confirm-button': 'Elimina',
'tags.delete.confirm.cancel-button': 'Annulla',
'tags.delete.success': 'Tag eliminato con successo',
'tags.create.success': 'Tag "{{ name }}" creato con successo.',
'tags.update.success': 'Tag "{{ name }}" aggiornato con successo.',
'tags.form.name.label': 'Nome',
'tags.form.name.placeholder': 'Es. Contratti',
'tags.form.name.required': 'Inserisci un nome per il tag',
'tags.form.name.max-length': 'Il nome del tag deve essere inferiore a 64 caratteri',
'tags.form.color.label': 'Colore',
'tags.form.color.required': 'Inserisci un colore',
'tags.form.color.invalid': 'Il colore hex non è formattato correttamente.',
'tags.form.description.label': 'Descrizione',
'tags.form.description.optional': '(opzionale)',
'tags.form.description.placeholder': 'Es. Tutti i contratti firmati dall\'azienda',
'tags.form.description.max-length': 'La descrizione deve essere inferiore a 256 caratteri',
'tags.form.no-description': 'Nessuna descrizione',
'tags.table.headers.tag': 'Tag',
'tags.table.headers.description': 'Descrizione',
'tags.table.headers.documents': 'Documenti',
'tags.table.headers.created': 'Creato',
'tags.table.headers.actions': 'Azioni',
// Tagging rules
'tagging-rules.field.name': 'nome documento',
'tagging-rules.field.content': 'contenuto documento',
'tagging-rules.operator.equals': 'uguale a',
'tagging-rules.operator.not-equals': 'diverso da',
'tagging-rules.operator.contains': 'contiene',
'tagging-rules.operator.not-contains': 'non contiene',
'tagging-rules.operator.starts-with': 'inizia con',
'tagging-rules.operator.ends-with': 'termina con',
'tagging-rules.list.title': 'Regole di tagging',
'tagging-rules.list.description': 'Gestisci le regole di tagging della tua organizzazione per taggare automaticamente i documenti in base a condizioni definite da te.',
'tagging-rules.list.demo-warning': 'Nota: Essendo un ambiente demo (senza server), le regole di tagging non verranno applicate ai nuovi documenti.',
'tagging-rules.list.no-tagging-rules.title': 'Nessuna regola di tagging',
'tagging-rules.list.no-tagging-rules.description': 'Crea una regola per taggare automaticamente i documenti aggiunti in base a condizioni definite da te.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Crea regola di tagging',
'tagging-rules.list.card.no-conditions': 'Nessuna condizione',
'tagging-rules.list.card.one-condition': '1 condizione',
'tagging-rules.list.card.conditions': '{{ count }} condizioni',
'tagging-rules.list.card.delete': 'Elimina regola',
'tagging-rules.list.card.edit': 'Modifica regola',
'tagging-rules.create.title': 'Crea regola di tagging',
'tagging-rules.create.success': 'Regola di tagging creata con successo',
'tagging-rules.create.error': 'Errore nella creazione della regola di tagging',
'tagging-rules.create.submit': 'Crea regola',
'tagging-rules.form.name.label': 'Nome',
'tagging-rules.form.name.placeholder': 'Esempio: Tagga fatture',
'tagging-rules.form.name.min-length': 'Inserisci un nome per la regola',
'tagging-rules.form.name.max-length': 'Il nome deve essere inferiore a 64 caratteri',
'tagging-rules.form.description.label': 'Descrizione',
'tagging-rules.form.description.placeholder': 'Esempio: Tagga i documenti con \'fattura\' nel nome',
'tagging-rules.form.description.max-length': 'La descrizione deve essere inferiore a 256 caratteri',
'tagging-rules.form.conditions.label': 'Condizioni',
'tagging-rules.form.conditions.description': 'Definisci le condizioni che devono essere soddisfatte affinché la regola si applichi. Tutte le condizioni devono essere soddisfatte.',
'tagging-rules.form.conditions.add-condition': 'Aggiungi condizione',
'tagging-rules.form.conditions.no-conditions.title': 'Nessuna condizione',
'tagging-rules.form.conditions.no-conditions.description': 'Non hai aggiunto nessuna condizione a questa regola. Questa regola applicherà i suoi tag a tutti i documenti.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Applica regola senza condizioni',
'tagging-rules.form.conditions.no-conditions.cancel': 'Annulla',
'tagging-rules.form.conditions.value.placeholder': 'Esempio: fattura',
'tagging-rules.form.conditions.value.min-length': 'Inserisci un valore per la condizione',
'tagging-rules.form.tags.label': 'Tag',
'tagging-rules.form.tags.description': 'Seleziona i tag da applicare ai documenti che soddisfano le condizioni',
'tagging-rules.form.tags.min-length': 'È richiesto almeno un tag da applicare',
'tagging-rules.form.tags.add-tag': 'Crea tag',
'tagging-rules.form.submit': 'Crea regola',
'tagging-rules.update.title': 'Aggiorna regola di tagging',
'tagging-rules.update.error': 'Errore nell\'aggiornamento della regola di tagging',
'tagging-rules.update.submit': 'Aggiorna regola',
'tagging-rules.update.cancel': 'Annulla',
// Intake emails
'intake-emails.title': 'Email di acquisizione',
'intake-emails.description': 'Gli indirizzi email di acquisizione vengono usati per importare automaticamente email in Papra. Basta inoltrare le email all\'indirizzo di acquisizione e gli allegati saranno aggiunti ai documenti dell\'organizzazione.',
'intake-emails.disabled.title': 'Email di acquisizione disabilitate',
'intake-emails.disabled.description': 'Le email di acquisizione sono disabilitate su questa istanza. Contatta il tuo amministratore per abilitarle. Consulta la {{ documentation }} per maggiori informazioni.',
'intake-emails.disabled.documentation': 'documentazione',
'intake-emails.info': 'Solo le email di acquisizione abilitate provenienti da origini consentite saranno processate. Puoi abilitare o disabilitare un\'email di acquisizione in qualsiasi momento.',
'intake-emails.empty.title': 'Nessuna email di acquisizione',
'intake-emails.empty.description': 'Genera un indirizzo di acquisizione per importare facilmente allegati email.',
'intake-emails.empty.generate': 'Genera email di acquisizione',
'intake-emails.count': '{{ count }} email di acquisizione per questa organizzazione',
'intake-emails.new': 'Nuova email di acquisizione',
'intake-emails.disabled-label': '(Disabilitata)',
'intake-emails.no-origins': 'Nessuna origine email consentita',
'intake-emails.allowed-origins': 'Consentito da {{ count }} indirizzo/i',
'intake-emails.actions.enable': 'Abilita',
'intake-emails.actions.disable': 'Disabilita',
'intake-emails.actions.manage-origins': 'Gestisci indirizzi origine',
'intake-emails.actions.delete': 'Elimina',
'intake-emails.delete.confirm.title': 'Eliminare l\'email di acquisizione?',
'intake-emails.delete.confirm.message': 'Sei sicuro di voler eliminare questa email di acquisizione? Questa azione non può essere annullata.',
'intake-emails.delete.confirm.confirm-button': 'Elimina email di acquisizione',
'intake-emails.delete.confirm.cancel-button': 'Annulla',
'intake-emails.delete.success': 'Email di acquisizione eliminata',
'intake-emails.create.success': 'Email di acquisizione creata',
'intake-emails.update.success.enabled': 'Email di acquisizione abilitata',
'intake-emails.update.success.disabled': 'Email di acquisizione disabilitata',
'intake-emails.allowed-origins.title': 'Origini consentite',
'intake-emails.allowed-origins.description': 'Solo le email inviate a {{ email }} da queste origini saranno processate. Se non sono specificate origini, tutte le email saranno scartate.',
'intake-emails.allowed-origins.add.label': 'Aggiungi email origine consentita',
'intake-emails.allowed-origins.add.placeholder': 'Es. ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Aggiungi',
'intake-emails.allowed-origins.add.error.exists': 'Questa email è già tra le origini consentite per questa email di acquisizione',
// API keys
'api-keys.permissions.documents.title': 'Documenti',
'api-keys.permissions.documents.documents:create': 'Crea documenti',
'api-keys.permissions.documents.documents:read': 'Leggi documenti',
'api-keys.permissions.documents.documents:update': 'Aggiorna documenti',
'api-keys.permissions.documents.documents:delete': 'Elimina documenti',
'api-keys.permissions.tags.title': 'Tag',
'api-keys.permissions.tags.tags:create': 'Crea tag',
'api-keys.permissions.tags.tags:read': 'Leggi tag',
'api-keys.permissions.tags.tags:update': 'Aggiorna tag',
'api-keys.permissions.tags.tags:delete': 'Elimina tag',
'api-keys.create.title': 'Crea chiave API',
'api-keys.create.description': 'Crea una nuova chiave API per accedere all\'API di Papra.',
'api-keys.create.success': 'La chiave API è stata creata con successo.',
'api-keys.create.back': 'Torna alle chiavi API',
'api-keys.create.form.name.label': 'Nome',
'api-keys.create.form.name.placeholder': 'Esempio: La mia chiave API',
'api-keys.create.form.name.required': 'Inserisci un nome per la chiave API',
'api-keys.create.form.permissions.label': 'Permessi',
'api-keys.create.form.permissions.required': 'Seleziona almeno un permesso',
'api-keys.create.form.submit': 'Crea chiave API',
'api-keys.create.created.title': 'Chiave API creata',
'api-keys.create.created.description': 'La chiave API è stata creata con successo. Salvala in un luogo sicuro, non verrà più mostrata.',
'api-keys.list.title': 'Chiavi API',
'api-keys.list.description': 'Gestisci qui le tue chiavi API.',
'api-keys.list.create': 'Crea chiave API',
'api-keys.list.empty.title': 'Nessuna chiave API',
'api-keys.list.empty.description': 'Crea una chiave API per accedere all\'API di Papra.',
'api-keys.list.card.last-used': 'Ultimo utilizzo',
'api-keys.list.card.never': 'Mai',
'api-keys.list.card.created': 'Creato',
'api-keys.delete.success': 'La chiave API è stata eliminata con successo',
'api-keys.delete.confirm.title': 'Eliminare la chiave API',
'api-keys.delete.confirm.message': 'Sei sicuro di voler eliminare questa chiave API? Questa azione non può essere annullata.',
'api-keys.delete.confirm.confirm-button': 'Elimina',
'api-keys.delete.confirm.cancel-button': 'Annulla',
// Webhooks
'webhooks.list.title': 'Webhook',
'webhooks.list.description': 'Gestisci i webhook della tua organizzazione',
'webhooks.list.empty.title': 'Nessun webhook',
'webhooks.list.empty.description': 'Crea il tuo primo webhook per iniziare a ricevere eventi',
'webhooks.list.create': 'Crea webhook',
'webhooks.list.card.last-triggered': 'Ultima attivazione',
'webhooks.list.card.never': 'Mai',
'webhooks.list.card.created': 'Creato',
'webhooks.create.title': 'Crea webhook',
'webhooks.create.description': 'Crea un nuovo webhook per ricevere eventi',
'webhooks.create.success': 'Webhook creato con successo',
'webhooks.create.back': 'Indietro',
'webhooks.create.form.submit': 'Crea webhook',
'webhooks.create.form.name.label': 'Nome webhook',
'webhooks.create.form.name.placeholder': 'Inserisci nome webhook',
'webhooks.create.form.name.required': 'Il nome è obbligatorio',
'webhooks.create.form.url.label': 'URL webhook',
'webhooks.create.form.url.placeholder': 'Inserisci URL webhook',
'webhooks.create.form.url.required': 'L\'URL è obbligatorio',
'webhooks.create.form.url.invalid': 'L\'URL non è valido',
'webhooks.create.form.secret.label': 'Segreto',
'webhooks.create.form.secret.placeholder': 'Inserisci il segreto del webhook',
'webhooks.create.form.events.label': 'Eventi',
'webhooks.create.form.events.required': 'È richiesto almeno un evento',
'webhooks.update.title': 'Modifica webhook',
'webhooks.update.description': 'Aggiorna i dettagli del webhook',
'webhooks.update.success': 'Webhook aggiornato con successo',
'webhooks.update.submit': 'Aggiorna webhook',
'webhooks.update.cancel': 'Annulla',
'webhooks.update.form.secret.placeholder': 'Inserisci nuovo segreto',
'webhooks.update.form.secret.placeholder-redacted': '[Segreto nascosto]',
'webhooks.update.form.rotate-secret.button': 'Rigenera segreto',
'webhooks.delete.success': 'Webhook eliminato con successo',
'webhooks.delete.confirm.title': 'Eliminare webhook',
'webhooks.delete.confirm.message': 'Sei sicuro di voler eliminare questo webhook?',
'webhooks.delete.confirm.confirm-button': 'Elimina',
'webhooks.delete.confirm.cancel-button': 'Annulla',
'webhooks.events.documents.title': 'Eventi documenti',
'webhooks.events.documents.document:created.description': 'Documento creato',
'webhooks.events.documents.document:deleted.description': 'Documento eliminato',
'webhooks.events.documents.document:updated.description': 'Documento aggiornato',
'webhooks.events.documents.document:tag:added.description': 'Un tag è stato aggiunto a un documento',
'webhooks.events.documents.document:tag:removed.description': 'Un tag è stato rimosso da un documento',
// Navigation
'layout.menu.home': 'Home',
'layout.menu.documents': 'Documenti',
'layout.menu.tags': 'Tag',
'layout.menu.tagging-rules': 'Regole di tagging',
'layout.menu.deleted-documents': 'Documenti eliminati',
'layout.menu.organization-settings': 'Impostazioni',
'layout.menu.api-keys': 'Chiavi API',
'layout.menu.settings': 'Impostazioni',
'layout.menu.account': 'Account',
'layout.menu.general-settings': 'Impostazioni generali',
'layout.menu.intake-emails': 'Email di acquisizione',
'layout.menu.webhooks': 'Webhook',
'layout.menu.members': 'Membri',
'layout.menu.invitations': 'Inviti',
'layout.theme.light': 'Modalità chiara',
'layout.theme.dark': 'Modalità scura',
'layout.theme.system': 'Modalità sistema',
'layout.search.placeholder': 'Cerca...',
'layout.menu.import-document': 'Importa un documento',
'user-menu.account-settings': 'Impostazioni account',
'user-menu.api-keys': 'Chiavi API',
'user-menu.invitations': 'Inviti',
'user-menu.language': 'Lingua',
'user-menu.logout': 'Esci',
// Command palette
'command-palette.search.placeholder': 'Cerca comandi o documenti',
'command-palette.no-results': 'Nessun risultato trovato',
'command-palette.sections.documents': 'Documenti',
'command-palette.sections.theme': 'Tema',
// API errors
'api-errors.document.already_exists': 'Il documento esiste già',
'api-errors.document.file_too_big': 'Il file del documento è troppo grande',
'api-errors.intake_email.limit_reached': 'È stato raggiunto il numero massimo di email di acquisizione per questa organizzazione. Aggiorna il tuo piano per crearne altre.',
'api-errors.user.max_organization_count_reached': 'Hai raggiunto il numero massimo di organizzazioni che puoi creare, se hai bisogno di crearne altre contatta il supporto.',
'api-errors.default': 'Si è verificato un errore durante l\'elaborazione della richiesta.',
'api-errors.organization.invitation_already_exists': 'Esiste già un invito per questa email in questa organizzazione.',
'api-errors.user.already_in_organization': 'Questo utente è già in questa organizzazione.',
'api-errors.user.organization_invitation_limit_reached': 'È stato raggiunto il numero massimo di inviti per oggi. Riprova domani.',
'api-errors.demo.not_available': 'Questa funzionalità non è disponibile nella demo',
'api-errors.tags.already_exists': 'Esiste già un tag con questo nome per questa organizzazione',
'api-errors.internal.error': 'Si è verificato un errore durante l\'elaborazione della richiesta. Riprova.',
'api-errors.auth.invalid_origin': 'Origine dell\'applicazione non valida. Se stai ospitando Papra, assicurati che la variabile di ambiente APP_BASE_URL corrisponda all\'URL corrente. Per maggiori dettagli, consulta https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Non trovato',
'not-found.description': 'Spiacenti, la pagina che stai cercando non sembra esistere. Controlla l\'URL e riprova.',
'not-found.back-to-home': 'Torna alla home',
// Demo
'demo.popup.description': 'Questo è un ambiente demo, tutti i dati vengono salvati nello storage locale del browser.',
'demo.popup.discord': 'Unisciti a {{ discordLink }} per ricevere supporto, proporre funzionalità o semplicemente fare due chiacchiere.',
'demo.popup.discord-link-label': 'Server Discord',
'demo.popup.reset': 'Reimposta dati demo',
'demo.popup.hide': 'Nascondi',
// Color picker
'color-picker.hue': 'Tonalità',
'color-picker.saturation': 'Saturazione',
'color-picker.lightness': 'Luminosità',
'color-picker.select-color': 'Seleziona colore',
'color-picker.select-a-color': 'Seleziona un colore',
};

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Zresetuj swoje hasło',
'auth.request-password-reset.description': 'Wprowadź swój adres e-mail, aby zresetować hasło.',
'auth.request-password-reset.requested': 'Jeśli istnieje konto powiązane z tym adresem e-mail, otrzymasz wiadomość umożliwiającą zresetowanie hasła.',
'auth.request-password-reset.back-to-login': 'Wróć do logowania',
'auth.request-password-reset.form.email.label': 'E-mail',
'auth.request-password-reset.form.email.placeholder': 'Przykład: ada@papra.app',
'auth.request-password-reset.form.email.required': 'Wprowadź swój adres e-mail',
'auth.request-password-reset.form.email.invalid': 'Ten adres e-mail jest nieprawidłowy',
'auth.request-password-reset.form.submit': 'Poproś o zresetowanie hasła',
'auth.reset-password.title': 'Zresetuj swoje hasło',
'auth.reset-password.description': 'Wprowadź nowe hasło, aby zresetować dotychczasowe.',
'auth.reset-password.reset': 'Twoje hasło zostało zresetowane.',
'auth.reset-password.back-to-login': 'Wróć do logowania',
'auth.reset-password.form.new-password.label': 'Nowe hasło',
'auth.reset-password.form.new-password.placeholder': 'Przykład: **********',
'auth.reset-password.form.new-password.required': 'Wprowadź nowe hasło',
'auth.reset-password.form.new-password.min-length': 'Hasło musi mieć co najmniej {{ minLength }} znaków',
'auth.reset-password.form.new-password.max-length': 'Hasło musi mieć mniej niż {{ maxLength }} znaków',
'auth.reset-password.form.submit': 'Zresetuj hasło',
'auth.email-provider.open': 'Otwórz {{ provider }}',
'auth.login.title': 'Zaloguj się do Papra',
'auth.login.description': 'Wprowadź swój adres e-mail lub skorzystaj z logowania federacyjnego, aby uzyskać dostęp do swojego konta Papra.',
'auth.login.login-with-provider': 'Zaloguj się za pomocą {{ provider }}',
'auth.login.no-account': 'Nie masz konta?',
'auth.login.register': 'Zarejestruj się',
'auth.login.form.email.label': 'E-mail',
'auth.login.form.email.placeholder': 'Przykład: ada@papra.app',
'auth.login.form.email.required': 'Wprowadź swój adres e-mail',
'auth.login.form.email.invalid': 'Ten adres e-mail jest nieprawidłowy',
'auth.login.form.password.label': 'Hasło',
'auth.login.form.password.placeholder': 'Ustaw hasło',
'auth.login.form.password.required': 'Wprowadź swoje hasło',
'auth.login.form.remember-me.label': 'Zapamiętaj mnie',
'auth.login.form.forgot-password.label': 'Zapomniałeś hasła?',
'auth.login.form.submit': 'Zaloguj się',
'auth.register.title': 'Zarejestruj się w Papra',
'auth.register.description': 'Utwórz konto, aby zacząć korzystać z Papra.',
'auth.register.register-with-email': 'Zarejestruj się przez e-mail',
'auth.register.register-with-provider': 'Zarejestruj się przez {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Masz już konto?',
'auth.register.login': 'Zaloguj się',
'auth.register.registration-disabled.title': 'Rejestracja jest wyłączona',
'auth.register.registration-disabled.description': 'Tworzenie nowych kont na tej instancji Papra jest obecnie wyłączone. Tylko użytkownicy z istniejącymi kontami mogą się zalogować. Jeśli uważasz, że to błąd, skontaktuj się z administratorem tej instancji.',
'auth.register.form.email.label': 'E-mail',
'auth.register.form.email.placeholder': 'Przykład: ada@papra.app',
'auth.register.form.email.required': 'Wprowadź swój adres e-mail',
'auth.register.form.email.invalid': 'Ten adres e-mail jest nieprawidłowy',
'auth.register.form.password.label': 'Hasło',
'auth.register.form.password.placeholder': 'Ustaw hasło',
'auth.register.form.password.required': 'Wprowadź swoje hasło',
'auth.register.form.password.min-length': 'Hasło musi mieć co najmniej {{ minLength }} znaków',
'auth.register.form.password.max-length': 'Hasło musi mieć mniej niż {{ maxLength }} znaków',
'auth.register.form.name.label': 'Imię i nazwisko',
'auth.register.form.name.placeholder': 'Przykład: Ada Lovelace',
'auth.register.form.name.required': 'Wprowadź swoje imię i nazwisko',
'auth.register.form.name.max-length': 'Imię i nazwisko musi mieć mniej niż {{ maxLength }} znaków',
'auth.register.form.submit': 'Zarejestruj się',
'auth.email-validation-required.title': 'Zweryfikuj swój adres e-mail',
'auth.email-validation-required.description': 'Wiadomość weryfikacyjna została wysłana na Twój adres e-mail. Zweryfikuj swój adres e-mail, klikając link w wiadomości.',
'auth.legal-links.description': 'Kontynuując, potwierdzasz, że rozumiesz i zgadzasz się na {{ terms }} oraz {{ privacy }}.',
'auth.legal-links.terms': 'Warunki korzystania z usługi',
'auth.legal-links.privacy': 'Polityka prywatności',
'auth.no-auth-provider.title': 'Brak dostawcy uwierzytelniania',
'auth.no-auth-provider.description': 'Na tej instancji Papra nie ma włączonych dostawców uwierzytelniania. Skontaktuj się z administratorem tej instancji, aby je włączyć.',
// User settings
'user.settings.title': 'Ustawienia użytkownika',
'user.settings.description': 'Zarządzaj ustawieniami swojego konta.',
'user.settings.email.title': 'Adres e-mail',
'user.settings.email.description': 'Twój adres e-mail nie może być zmieniony.',
'user.settings.email.label': 'Adres e-mail',
'user.settings.name.title': 'Imię i nazwisko',
'user.settings.name.description': 'Twoje imię i nazwisko jest wyświetlane innym członkom organizacji.',
'user.settings.name.label': 'Imię i nazwisko',
'user.settings.name.placeholder': 'Przykład: Jan Kowalski',
'user.settings.name.update': 'Zaktualizuj imię i nazwisko',
'user.settings.name.updated': 'Twoje imię i nazwisko zostało zaktualizowane',
'user.settings.logout.title': 'Wyloguj się',
'user.settings.logout.description': 'Wyloguj się ze swojego konta. Możesz zalogować się ponownie później.',
'user.settings.logout.button': 'Wyloguj się',
// Organizations
'organizations.list.title': 'Twoje organizacje',
'organizations.list.description': 'Organizacje to sposób grupowania dokumentów i zarządzania dostępem do nich. Możesz tworzyć wiele organizacji i zapraszać członków zespołu do współpracy.',
'organizations.list.create-new': 'Utwórz nową organizację',
'organizations.details.no-documents.title': 'Brak dokumentów',
'organizations.details.no-documents.description': 'W tej organizacji nie ma jeszcze żadnych dokumentów. Zacznij od przesłania kilku dokumentów.',
'organizations.details.upload-documents': 'Prześlij dokumenty',
'organizations.details.documents-count': 'dokumentów w sumie',
'organizations.details.total-size': 'całkowity rozmiar',
'organizations.details.latest-documents': 'Najnowsze zaimportowane dokumenty',
'organizations.create.title': 'Utwórz nową organizację',
'organizations.create.description': 'Twoje dokumenty będą grupowane według organizacji. Możesz tworzyć wiele organizacji, aby oddzielić swoje dokumenty, na przykład dokumenty osobiste i służbowe.',
'organizations.create.back': 'Wstecz',
'organizations.create.error.max-count-reached': 'Osiągnąłeś maksymalną liczbę organizacji, które możesz utworzyć. Jeśli potrzebujesz utworzyć więcej, skontaktuj się z pomocą techniczną.',
'organizations.create.form.name.label': 'Nazwa organizacji',
'organizations.create.form.name.placeholder': 'Przykład: Acme Inc.',
'organizations.create.form.name.required': 'Wprowadź nazwę organizacji',
'organizations.create.form.submit': 'Utwórz organizację',
'organizations.create.success': 'Organizacja została pomyślnie utworzona',
'organizations.create-first.title': 'Utwórz swoją organizację',
'organizations.create-first.description': 'Twoje dokumenty będą grupowane według organizacji. Możesz tworzyć wiele organizacji, aby oddzielić swoje dokumenty, na przykład dokumenty osobiste i służbowe.',
'organizations.create-first.default-name': 'Moja organizacja',
'organizations.create-first.user-name': 'Organizacja użytkownika {{ name }}',
'organization.settings.title': 'Ustawienia organizacji',
'organization.settings.page.title': 'Ustawienia organizacji',
'organization.settings.page.description': 'Zarządzaj ustawieniami swojej organizacji.',
'organization.settings.name.title': 'Nazwa organizacji',
'organization.settings.name.update': 'Zaktualizuj nazwę',
'organization.settings.name.placeholder': 'Przykład: Acme Inc.',
'organization.settings.name.updated': 'Nazwa organizacji została zaktualizowana',
'organization.settings.subscription.title': 'Subskrypcja',
'organization.settings.subscription.description': 'Zarządzaj swoim rozliczeniem, fakturami i metodami płatności.',
'organization.settings.subscription.manage': 'Zarządzaj subskrypcją',
'organization.settings.subscription.error': 'Nie udało się uzyskać adresu URL portalu klienta',
'organization.settings.delete.title': 'Usuń organizację',
'organization.settings.delete.description': 'Usunięcie tej organizacji spowoduje trwałe usunięcie wszystkich danych z nią związanych.',
'organization.settings.delete.confirm.title': 'Usuń organizację',
'organization.settings.delete.confirm.message': 'Czy na pewno chcesz usunąć tę organizację? Ta operacja jest nieodwracalna, a wszystkie dane związane z tą organizacją zostaną trwale usunięte.',
'organization.settings.delete.confirm.confirm-button': 'Usuń organizację',
'organization.settings.delete.confirm.cancel-button': 'Anuluj',
'organization.settings.delete.success': 'Organizacja została usunięta',
'organizations.members.title': 'Członkowie',
'organizations.members.description': 'Zarządzaj członkami swojej organizacji',
'organizations.members.invite-member': 'Zaproś członka',
'organizations.members.invite-member-disabled-tooltip': 'Tylko administratorzy lub właściciele mogą zapraszać członków do organizacji',
'organizations.members.remove-from-organization': 'Usuń z organizacji',
'organizations.members.role': 'Rola',
'organizations.members.roles.owner': 'Właściciel',
'organizations.members.roles.admin': 'Administrator',
'organizations.members.roles.member': 'Członek',
'organizations.members.delete.confirm.title': 'Usuń członka',
'organizations.members.delete.confirm.message': 'Czy na pewno chcesz usunąć tego członka z organizacji?',
'organizations.members.delete.confirm.confirm-button': 'Usuń',
'organizations.members.delete.confirm.cancel-button': 'Anuluj',
'organizations.members.delete.success': 'Członek został usunięty z organizacji',
'organizations.members.update-role.success': 'Rola członka została zaktualizowana',
'organizations.members.table.headers.name': 'Imię i nazwisko',
'organizations.members.table.headers.email': 'E-mail',
'organizations.members.table.headers.role': 'Rola',
'organizations.members.table.headers.created': 'Utworzono',
'organizations.members.table.headers.actions': 'Akcje',
'organizations.invite-member.title': 'Zaproś członka',
'organizations.invite-member.description': 'Zaproś członka do swojej organizacji',
'organizations.invite-member.form.email.label': 'E-mail',
'organizations.invite-member.form.email.placeholder': 'Przykład: ada@papra.app',
'organizations.invite-member.form.email.required': 'Wprowadź poprawny adres e-mail',
'organizations.invite-member.form.role.label': 'Rola',
'organizations.invite-member.form.submit': 'Zaproś do organizacji',
'organizations.invite-member.success.message': 'Członek zaproszony',
'organizations.invite-member.success.description': 'E-mail został zaproszony do organizacji.',
'organizations.invite-member.error.message': 'Nie udało się zaprosić członka',
'organizations.invitations.title': 'Zaproszenia',
'organizations.invitations.description': 'Zarządzaj zaproszeniami do swojej organizacji',
'organizations.invitations.list.cta': 'Zaproś członka',
'organizations.invitations.list.empty.title': 'Brak oczekujących zaproszeń',
'organizations.invitations.list.empty.description': 'Nie zostałeś zaproszony do żadnej organizacji.',
'organizations.invitations.status.pending': 'Oczekujące',
'organizations.invitations.status.accepted': 'Zaakceptowane',
'organizations.invitations.status.rejected': 'Odrzucone',
'organizations.invitations.status.expired': 'Wygasłe',
'organizations.invitations.status.cancelled': 'Anulowane',
'organizations.invitations.resend': 'Wyślij zaproszenie ponownie',
'organizations.invitations.cancel.title': 'Anuluj zaproszenie',
'organizations.invitations.cancel.description': 'Czy na pewno chcesz anulować to zaproszenie?',
'organizations.invitations.cancel.confirm': 'Anuluj zaproszenie',
'organizations.invitations.cancel.cancel': 'Anuluj',
'organizations.invitations.resend.title': 'Wyślij zaproszenie ponownie',
'organizations.invitations.resend.description': 'Czy na pewno chcesz wysłać ponownie to zaproszenie? To spowoduje wysłanie nowego e-maila do odbiorcy.',
'organizations.invitations.resend.confirm': 'Wyślij zaproszenie ponownie',
'organizations.invitations.resend.cancel': 'Anuluj',
'invitations.list.title': 'Zaproszenia',
'invitations.list.description': 'Zarządzaj zaproszeniami do swojej organizacji',
'invitations.list.empty.title': 'Brak oczekujących zaproszeń',
'invitations.list.empty.description': 'Nie zostałeś zaproszony do żadnej organizacji.',
'invitations.list.headers.organization': 'Organizacja',
'invitations.list.headers.status': 'Status',
'invitations.list.headers.created': 'Utworzono',
'invitations.list.headers.actions': 'Akcje',
'invitations.list.actions.accept': 'Zaakceptuj',
'invitations.list.actions.reject': 'Odrzuć',
'invitations.list.actions.accept.success.message': 'Zaproszenie zaakceptowane',
'invitations.list.actions.accept.success.description': 'Zaproszenie zostało zaakceptowane.',
'invitations.list.actions.reject.success.message': 'Zaproszenie odrzucone',
'invitations.list.actions.reject.success.description': 'Zaproszenie zostało odrzucone.',
// Documents
'documents.list.title': 'Dokumenty',
'documents.list.no-documents.title': 'Brak dokumentów',
'documents.list.no-documents.description': 'W tej organizacji nie ma jeszcze żadnych dokumentów. Zacznij od przesłania kilku dokumentów.',
'documents.list.no-results': 'Nie znaleziono dokumentów',
'documents.tabs.info': 'Informacje',
'documents.tabs.content': 'Treść',
'documents.tabs.activity': 'Aktywność',
'documents.deleted.message': 'Ten dokument został usunięty i zostanie trwale usunięty za {{ days }} dni.',
'documents.actions.download': 'Pobierz',
'documents.actions.open-in-new-tab': 'Otwórz w nowej karcie',
'documents.actions.restore': 'Przywróć',
'documents.actions.delete': 'Usuń',
'documents.actions.edit': 'Edytuj',
'documents.actions.cancel': 'Anuluj',
'documents.actions.save': 'Zapisz',
'documents.actions.saving': 'Zapisywanie...',
'documents.content.alert': 'Zawartość dokumentu jest automatycznie wyodrębniana z dokumentu podczas przesyłania. Jest używana tylko do wyszukiwania i indeksowania.',
'documents.content.empty-placeholder': 'Ten dokument nie ma wyodrębnionej zawartości, możesz ją ustawić ręcznie tutaj.',
'documents.info.id': 'ID',
'documents.info.name': 'Nazwa',
'documents.info.type': 'Typ',
'documents.info.size': 'Rozmiar',
'documents.info.created-at': 'Utworzono',
'documents.info.updated-at': 'Zaktualizowano',
'documents.info.never': 'Nigdy',
'documents.rename.title': 'Zmień nazwę dokumentu',
'documents.rename.form.name.label': 'Nazwa',
'documents.rename.form.name.placeholder': 'Przykład: Faktura 2024',
'documents.rename.form.name.required': 'Proszę wprowadzić nazwę dokumentu',
'documents.rename.form.name.max-length': 'Nazwa musi mieć mniej niż 255 znaków',
'documents.rename.form.submit': 'Zmień nazwę dokumentu',
'documents.rename.success': 'Nazwa dokumentu została pomyślnie zmieniona',
'documents.rename.cancel': 'Anuluj',
'import-documents.title.error': '{{ count }} dokumentów nie powiodły się',
'import-documents.title.success': '{{ count }} dokumentów zaimportowane',
'import-documents.title.pending': '{{ count }} / {{ total }} dokumentów zaimportowanych',
'import-documents.title.none': 'Importuj dokumenty',
'import-documents.no-import-in-progress': 'Brak importu dokumentów w toku',
'documents.deleted.title': 'Usunięte dokumenty',
'documents.deleted.empty.title': 'Brak usuniętych dokumentów',
'documents.deleted.empty.description': 'Nie masz żadnych usuniętych dokumentów. Dokumenty, które są usuwane, zostaną przeniesione do kosza na {{ days }} dni.',
'documents.deleted.retention-notice': 'Wszystkie usunięte dokumenty są przechowywane w koszu przez {{ days }} dni. Po upływie tego terminu dokumenty zostaną trwale usunięte, a Ty nie będziesz mógł ich przywrócić.',
'documents.deleted.deleted-at': 'Usunięto',
'documents.deleted.restoring': 'Przywracanie...',
'documents.deleted.deleting': 'Usuwanie...',
'documents.preview.unknown-file-type': 'Brak podglądu dla tego typu pliku',
'documents.preview.binary-file': 'To wydaje się być plikiem binarnym i nie może być wyświetlane jako tekst',
'trash.delete-all.button': 'Usuń wszystkie',
'trash.delete-all.confirm.title': 'Trwale usunąć wszystkie dokumenty?',
'trash.delete-all.confirm.description': 'Czy na pewno chcesz trwale usunąć wszystkie dokumenty z kosza? Ta akcja nie może być cofnięta.',
'trash.delete-all.confirm.label': 'Usuń',
'trash.delete-all.confirm.cancel': 'Anuluj',
'trash.delete.button': 'Usuń',
'trash.delete.confirm.title': 'Trwale usunąć dokument?',
'trash.delete.confirm.description': 'Czy na pewno chcesz trwale usunąć ten dokument z kosza? Ta akcja nie może być cofnięta.',
'trash.delete.confirm.label': 'Usuń',
'trash.delete.confirm.cancel': 'Anuluj',
'trash.deleted.success.title': 'Dokument usunięty',
'trash.deleted.success.description': 'Dokument został trwale usunięty.',
'activity.document.created': 'Dokument został utworzony',
'activity.document.updated.single': 'Pole {{ field }} zostało zaktualizowane',
'activity.document.updated.multiple': 'Pola {{ fields }} zostały zaktualizowane',
'activity.document.updated': 'Dokument został zaktualizowany',
'activity.document.deleted': 'Dokument został usunięty',
'activity.document.restored': 'Dokument został przywrócony',
'activity.document.tagged': 'Tag {{ tag }} został dodany',
'activity.document.untagged': 'Tag {{ tag }} został usunięty',
'activity.document.user.name': 'od {{ name }}',
'activity.load-more': 'Załaduj więcej',
'activity.no-more-activities': 'Brak dalszych działań dla tego dokumentu',
// Tags
'tags.no-tags.title': 'Brak tagów',
'tags.no-tags.description': 'Ta organizacja nie ma jeszcze tagów. Tagi służą do kategoryzowania dokumentów. Możesz dodać tagi do swoich dokumentów, aby ułatwić ich wyszukiwanie i organizację.',
'tags.no-tags.create-tag': 'Utwórz tag',
'tags.title': 'Tagi dokumentów',
'tags.description': 'Tagi służą do kategoryzowania dokumentów. Możesz dodać tagi do swoich dokumentów, aby ułatwić ich wyszukiwanie i organizację.',
'tags.create': 'Utwórz tag',
'tags.update': 'Zaktualizuj tag',
'tags.delete': 'Usuń tag',
'tags.delete.confirm.title': 'Usuń tag',
'tags.delete.confirm.message': 'Czy na pewno chcesz usunąć ten tag? Usunięcie tagu spowoduje jego usunięcie ze wszystkich dokumentów.',
'tags.delete.confirm.confirm-button': 'Usuń',
'tags.delete.confirm.cancel-button': 'Anuluj',
'tags.delete.success': 'Tag został pomyślnie usunięty',
'tags.create.success': 'Tag "{{ name }}" został pomyślnie utworzony.',
'tags.update.success': 'Tag "{{ name }}" został pomyślnie zaktualizowany.',
'tags.form.name.label': 'Nazwa',
'tags.form.name.placeholder': 'Przykład: Umowy',
'tags.form.name.required': 'Proszę wprowadzić nazwę tagu',
'tags.form.name.max-length': 'Nazwa tagu musi mieć mniej niż 64 znaki',
'tags.form.color.label': 'Kolor',
'tags.form.color.required': 'Proszę wprowadzić kolor',
'tags.form.color.invalid': 'Kolor hex jest źle sformatowany.',
'tags.form.description.label': 'Opis',
'tags.form.description.optional': '(opcjonalnie)',
'tags.form.description.placeholder': 'Przykład: Wszystkie umowy podpisane przez firmę',
'tags.form.description.max-length': 'Opis musi mieć mniej niż 256 znaków',
'tags.form.no-description': 'Brak opisu',
'tags.table.headers.tag': 'Tag',
'tags.table.headers.description': 'Opis',
'tags.table.headers.documents': 'Dokumenty',
'tags.table.headers.created': 'Utworzono',
'tags.table.headers.actions': 'Akcje',
// Tagging rules
'tagging-rules.field.name': 'nazwa dokumentu',
'tagging-rules.field.content': 'treść dokumentu',
'tagging-rules.operator.equals': 'równa się',
'tagging-rules.operator.not-equals': 'nie równa się',
'tagging-rules.operator.contains': 'zawiera',
'tagging-rules.operator.not-contains': 'nie zawiera',
'tagging-rules.operator.starts-with': 'zaczyna się od',
'tagging-rules.operator.ends-with': 'kończy się na',
'tagging-rules.list.title': 'Reguły tagowania',
'tagging-rules.list.description': 'Zarządzaj regułami tagowania w swojej organizacji, aby automatycznie tagować dokumenty na podstawie zdefiniowanych przez siebie warunków.',
'tagging-rules.list.demo-warning': 'Uwaga: Ponieważ jest to środowisko demonstracyjne (bez serwera), reguły tagowania nie będą stosowane do nowo dodanych dokumentów.',
'tagging-rules.list.no-tagging-rules.title': 'Brak reguł tagowania',
'tagging-rules.list.no-tagging-rules.description': 'Utwórz regułę tagowania, aby automatycznie tagować dodane dokumenty na podstawie zdefiniowanych przez siebie warunków.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Utwórz regułę tagowania',
'tagging-rules.list.card.no-conditions': 'Brak warunków',
'tagging-rules.list.card.one-condition': '1 warunek',
'tagging-rules.list.card.conditions': '{{ count }} warunków',
'tagging-rules.list.card.delete': 'Usuń regułę',
'tagging-rules.list.card.edit': 'Edytuj regułę',
'tagging-rules.create.title': 'Utwórz regułę tagowania',
'tagging-rules.create.success': 'Reguła tagowania została pomyślnie utworzona',
'tagging-rules.create.error': 'Nie udało się utworzyć reguły tagowania',
'tagging-rules.create.submit': 'Utwórz regułę',
'tagging-rules.form.name.label': 'Nazwa',
'tagging-rules.form.name.placeholder': 'Przykład: Taguj faktury',
'tagging-rules.form.name.min-length': 'Proszę wprowadzić nazwę reguły',
'tagging-rules.form.name.max-length': 'Nazwa musi mieć mniej niż 64 znaki',
'tagging-rules.form.description.label': 'Opis',
'tagging-rules.form.description.placeholder': 'Przykład: Oznacz dokumenty ze słowem \'faktura\' w nazwie',
'tagging-rules.form.description.max-length': 'Opis musi mieć mniej niż 256 znaków',
'tagging-rules.form.conditions.label': 'Warunki',
'tagging-rules.form.conditions.description': 'Zdefiniuj warunki, które muszą być spełnione, aby reguła mogła zostać zastosowana. Wszystkie warunki muszą być spełnione, aby reguła mogła zostać zastosowana.',
'tagging-rules.form.conditions.add-condition': 'Dodaj warunek',
'tagging-rules.form.conditions.no-conditions.title': 'Brak warunków',
'tagging-rules.form.conditions.no-conditions.description': 'Nie dodałeś żadnych warunków do tej reguły. Ta reguła zastosuje swoje tagi do wszystkich dokumentów.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Zastosuj regułę bez warunków',
'tagging-rules.form.conditions.no-conditions.cancel': 'Anuluj',
'tagging-rules.form.conditions.value.placeholder': 'Przykład: faktura',
'tagging-rules.form.conditions.value.min-length': 'Proszę wprowadzić wartość dla warunku',
'tagging-rules.form.tags.label': 'Tagi',
'tagging-rules.form.tags.description': 'Wybierz tagi do zastosowania do dodanych dokumentów, które spełniają warunki',
'tagging-rules.form.tags.min-length': 'Co najmniej jeden tag do zastosowania jest wymagany',
'tagging-rules.form.tags.add-tag': 'Utwórz tag',
'tagging-rules.form.submit': 'Utwórz regułę',
'tagging-rules.update.title': 'Zaktualizuj regułę tagowania',
'tagging-rules.update.error': 'Nie udało się zaktualizować reguły tagowania',
'tagging-rules.update.submit': 'Zaktualizuj regułę',
'tagging-rules.update.cancel': 'Anuluj',
// Intake emails
'intake-emails.title': 'Adresy przyjęć',
'intake-emails.description': 'Adresy przyjęć służą do automatycznego przyjmowania wiadomości e-mail do Papra. Wystarczy przekazać wiadomości e-mail na adres e-mail do przyjmowania, a ich załączniki zostaną dodane do dokumentów Twojej organizacji.',
'intake-emails.disabled.title': 'Adresy przyjęć są wyłączone',
'intake-emails.disabled.description': 'Adresy przyjęć są wyłączone na tej instancji. Skontaktuj się z administratorem, aby je włączyć. Zobacz {{ documentation }} w celu uzyskania dodatkowych informacji.',
'intake-emails.disabled.documentation': 'dokumentację',
'intake-emails.info': 'Tylko włączone adresy przyjęć z dozwolonych źródeł będą przetwarzane. Możesz w dowolnym momencie włączyć lub wyłączyć adres e-mail do przyjęć.',
'intake-emails.empty.title': 'Brak adresów przyjęć',
'intake-emails.empty.description': 'Wygeneruj adres przyjęć, aby łatwo przyjmować załączniki e-mail.',
'intake-emails.empty.generate': 'Wygeneruj adres e-mail do przyjęć',
'intake-emails.count': '{{ count }} adres/ów e-mail do przyjęć dla tej organizacji',
'intake-emails.new': 'Nowy adres e-mail do przyjęć',
'intake-emails.disabled-label': '(Wyłączone)',
'intake-emails.no-origins': 'Brak dozwolonych źródeł e-mail',
'intake-emails.allowed-origins': 'Dozwolone z {{ count }} adresu/ów',
'intake-emails.actions.enable': 'Włącz',
'intake-emails.actions.disable': 'Wyłącz',
'intake-emails.actions.manage-origins': 'Zarządzaj dozwolonymi źródłami',
'intake-emails.actions.delete': 'Usuń',
'intake-emails.delete.confirm.title': 'Usuąć adres e-mail do przyjęć?',
'intake-emails.delete.confirm.message': 'Czy na pewno chcesz usunąć ten adres e-mail do przyjęć? Ta akcja jest nieodwracalna.',
'intake-emails.delete.confirm.confirm-button': 'Usuń adres przyjęć',
'intake-emails.delete.confirm.cancel-button': 'Anuluj',
'intake-emails.delete.success': 'Adres przyjęć usunięty',
'intake-emails.create.success': 'Adres przyjęć utworzony',
'intake-emails.update.success.enabled': 'Adres przyjęć włączony',
'intake-emails.update.success.disabled': 'Adres przyjęć wyłączony',
'intake-emails.allowed-origins.title': 'Dozwolone źródła',
'intake-emails.allowed-origins.description': 'Tylko e-maile wysłane na {{ email }} z tych źródeł będą przetwarzane. Jeśli nie określono źródeł, wszystkie e-maile zostaną odrzucone.',
'intake-emails.allowed-origins.add.label': 'Dodaj dozwolony adres e-mail',
'intake-emails.allowed-origins.add.placeholder': 'Przykład: ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Dodaj',
'intake-emails.allowed-origins.add.error.exists': 'Ten adres e-mail jest już w dozwolonych źródłach dla tego adresu e-mail do przyjęć.',
// API keys
'api-keys.permissions.documents.title': 'Dokumenty',
'api-keys.permissions.documents.documents:create': 'Tworzenie dokumentów',
'api-keys.permissions.documents.documents:read': 'Odczyt dokumentów',
'api-keys.permissions.documents.documents:update': 'Aktualizacja dokumentów',
'api-keys.permissions.documents.documents:delete': 'Usuwanie dokumentów',
'api-keys.permissions.tags.title': 'Tag',
'api-keys.permissions.tags.tags:create': 'Tworzenie tagów',
'api-keys.permissions.tags.tags:read': 'Odczyt tagów',
'api-keys.permissions.tags.tags:update': 'Aktualizacja tagów',
'api-keys.permissions.tags.tags:delete': 'Usuwanie tagów',
'api-keys.create.title': 'Tworzenie klucza API',
'api-keys.create.description': 'Utwórz nowy klucz API, aby uzyskać dostęp do API Papra.',
'api-keys.create.success': 'Klucz API został utworzony pomyślnie.',
'api-keys.create.back': 'Wróć do kluczy API',
'api-keys.create.form.name.label': 'Nazwa',
'api-keys.create.form.name.placeholder': 'Przykład: Mój klucz API',
'api-keys.create.form.name.required': 'Proszę wprowadzić nazwę dla klucza API',
'api-keys.create.form.permissions.label': 'Uprawnienia',
'api-keys.create.form.permissions.required': 'Proszę wybrać co najmniej jedno uprawnienie',
'api-keys.create.form.submit': 'Utwórz klucz API',
'api-keys.create.created.title': 'Klucz API utworzony',
'api-keys.create.created.description': 'Klucz API został utworzony pomyślnie. Zapisz go w bezpiecznym miejscu, ponieważ nie będzie wyświetlony ponownie.',
'api-keys.list.title': 'Klucze API',
'api-keys.list.description': 'Zarządzaj swoimi kluczami API tutaj.',
'api-keys.list.create': 'Utwórz klucz API',
'api-keys.list.empty.title': 'Brak kluczy API',
'api-keys.list.empty.description': 'Utwórz klucz API, aby uzyskać dostęp do API Papra.',
'api-keys.list.card.last-used': 'Ostatnie użycie',
'api-keys.list.card.never': 'Nigdy',
'api-keys.list.card.created': 'Utworzono',
'api-keys.delete.success': 'Klucz API został usunięty pomyślnie',
'api-keys.delete.confirm.title': 'Usuń klucz API',
'api-keys.delete.confirm.message': 'Czy na pewno chcesz usunąć ten klucz API? Ta akcja jest nieodwracalna.',
'api-keys.delete.confirm.confirm-button': 'Usuń',
'api-keys.delete.confirm.cancel-button': 'Anuluj',
// Webhooks
'webhooks.list.title': 'Webhooki',
'webhooks.list.description': 'Zarządzaj webhookami swojej organizacji',
'webhooks.list.empty.title': 'Brak webhooków',
'webhooks.list.empty.description': 'Utwórz pierwszy webhook, aby rozpocząć odbieranie zdarzeń',
'webhooks.list.create': 'Utwórz webhook',
'webhooks.list.card.last-triggered': 'Ostatnie wywołanie',
'webhooks.list.card.never': 'Nigdy',
'webhooks.list.card.created': 'Utworzono',
'webhooks.create.title': 'Utwórz webhook',
'webhooks.create.description': 'Utwórz nowy webhook, aby odbierać zdarzenia',
'webhooks.create.success': 'Webhook został utworzony pomyślnie',
'webhooks.create.back': 'Wróć',
'webhooks.create.form.submit': 'Utwórz webhook',
'webhooks.create.form.name.label': 'Nazwa webhooka',
'webhooks.create.form.name.placeholder': 'Wprowadź nazwę webhooka',
'webhooks.create.form.name.required': 'Nazwa jest wymagana',
'webhooks.create.form.url.label': 'URL webhooka',
'webhooks.create.form.url.placeholder': 'Wprowadź URL webhooka',
'webhooks.create.form.url.required': 'URL jest wymagany',
'webhooks.create.form.url.invalid': 'URL jest nieprawidłowy',
'webhooks.create.form.secret.label': 'Sekret',
'webhooks.create.form.secret.placeholder': 'Wprowadź sekret webhooka',
'webhooks.create.form.events.label': 'Zdarzenia',
'webhooks.create.form.events.required': 'Co najmniej jedno zdarzenie jest wymagane',
'webhooks.update.title': 'Edytuj webhook',
'webhooks.update.description': 'Zaktualizuj szczegóły webhooka',
'webhooks.update.success': 'Webhook został zaktualizowany pomyślnie',
'webhooks.update.submit': 'Zaktualizuj webhook',
'webhooks.update.cancel': 'Anuluj',
'webhooks.update.form.secret.placeholder': 'Wprowadź nowy sekret',
'webhooks.update.form.secret.placeholder-redacted': '[Zredagowany sekret]',
'webhooks.update.form.rotate-secret.button': 'Wygeneruj nowy sekret',
'webhooks.delete.success': 'Webhook został usunięty pomyślnie',
'webhooks.delete.confirm.title': 'Usuń webhook',
'webhooks.delete.confirm.message': 'Czy na pewno chcesz usunąć ten webhook?',
'webhooks.delete.confirm.confirm-button': 'Usuń',
'webhooks.delete.confirm.cancel-button': 'Anuluj',
'webhooks.events.documents.title': 'Zdarzenia dokumentów',
'webhooks.events.documents.document:created.description': 'Utworzono dokument',
'webhooks.events.documents.document:deleted.description': 'Usunięto dokument',
'webhooks.events.documents.document:updated.description': 'Dokument został zaktualizowany',
'webhooks.events.documents.document:tag:added.description': 'Tag został dodany do dokumentu',
'webhooks.events.documents.document:tag:removed.description': 'Tag został usunięty z dokumentu',
// Navigation
'layout.menu.home': 'Strona główna',
'layout.menu.documents': 'Dokumenty',
'layout.menu.tags': 'Tagi',
'layout.menu.tagging-rules': 'Zasady tagowania',
'layout.menu.deleted-documents': 'Usunięte dokumenty',
'layout.menu.organization-settings': 'Ustawienia',
'layout.menu.api-keys': 'Klucze API',
'layout.menu.settings': 'Ustawienia',
'layout.menu.account': 'Konto',
'layout.menu.general-settings': 'Ustawienia ogólne',
'layout.menu.intake-emails': 'Adresy przyjęć',
'layout.menu.webhooks': 'Webhooki',
'layout.menu.members': 'Członkowie',
'layout.menu.invitations': 'Zaproszenia',
'layout.theme.light': 'Tryb jasny',
'layout.theme.dark': 'Tryb ciemny',
'layout.theme.system': 'Tryb systemowy',
'layout.search.placeholder': 'Szukaj...',
'layout.menu.import-document': 'Importuj dokument',
'user-menu.account-settings': 'Ustawienia konta',
'user-menu.api-keys': 'Klucze API',
'user-menu.invitations': 'Zaproszenia',
'user-menu.language': 'Język',
'user-menu.logout': 'Wyloguj',
// Command palette
'command-palette.search.placeholder': 'Szukaj poleceń lub dokumentów',
'command-palette.no-results': 'Nie znaleziono wyników',
'command-palette.sections.documents': 'Dokumenty',
'command-palette.sections.theme': 'Motyw',
// API errors
'api-errors.document.already_exists': 'Dokument już istnieje',
'api-errors.document.file_too_big': 'Plik dokumentu jest zbyt duży',
'api-errors.intake_email.limit_reached': 'Osiągnięto maksymalną liczbę adresów e-mail do przyjęć dla tej organizacji. Aby utworzyć więcej adresów e-mail do przyjęć, zaktualizuj swój plan.',
'api-errors.user.max_organization_count_reached': 'Osiągnięto maksymalną liczbę organizacji, które możesz utworzyć. Jeśli potrzebujesz utworzyć więcej, skontaktuj się z pomocą techniczną.',
'api-errors.default': 'Wystąpił błąd podczas przetwarzania żądania.',
'api-errors.organization.invitation_already_exists': 'Zaproszenie dla tego adresu e-mail już istnieje w tej organizacji.',
'api-errors.user.already_in_organization': 'Ten użytkownik należy już do tej organizacji.',
'api-errors.user.organization_invitation_limit_reached': 'Osiągnięto maksymalną liczbę zaproszeń na dzisiaj. Spróbuj ponownie jutro.',
'api-errors.demo.not_available': 'Ta funkcja nie jest dostępna w wersji demo',
'api-errors.tags.already_exists': 'Tag o tej nazwie już istnieje w tej organizacji',
'api-errors.internal.error': 'Wystąpił błąd podczas przetwarzania żądania. Spróbuj ponownie później.',
'api-errors.auth.invalid_origin': 'Nieprawidłowa lokalizacja aplikacji. Jeśli hostujesz Papra, upewnij się, że zmienna środowiskowa APP_BASE_URL odpowiada bieżącemu adresowi URL. Aby uzyskać więcej informacji, zobacz https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Nie znaleziono',
'not-found.description': 'Przepraszamy, strona, której szukasz wydaje się nie istnieć. Sprawdź URL i spróbuj ponownie.',
'not-found.back-to-home': 'Wróć do strony głównej',
// Demo
'demo.popup.description': 'To jest środowisko demonstracyjne, wszystkie dane są zapisywane w lokalnej pamięci przeglądarki.',
'demo.popup.discord': 'Dołącz do {{ discordLink }}, aby uzyskać wsparcie, zaproponować funkcje lub po prostu porozmawiać.',
'demo.popup.discord-link-label': 'Serwer Discord',
'demo.popup.reset': 'Zresetuj dane demonstracyjne',
'demo.popup.hide': 'Ukryj',
// Color picker
'color-picker.hue': 'Odcień',
'color-picker.saturation': 'Nasycenie',
'color-picker.lightness': 'Jasność',
'color-picker.select-color': 'Wybierz kolor',
'color-picker.select-a-color': 'Wybierz kolor',
};

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Redefina sua senha',
'auth.request-password-reset.description': 'Insira seu e-mail para redefinir sua senha.',
'auth.request-password-reset.requested': 'Se uma conta com este e-mail existe, enviamos uma mensagem para redefinir sua senha.',
'auth.request-password-reset.back-to-login': 'Voltar para o login',
'auth.request-password-reset.form.email.label': 'E-mail',
'auth.request-password-reset.form.email.placeholder': 'Exemplo: cesar@papra.app',
'auth.request-password-reset.form.email.required': 'Por favor, insira seu endereço de e-mail',
'auth.request-password-reset.form.email.invalid': 'Este endereço de e-mail é inválido',
'auth.request-password-reset.form.submit': 'Solicitar redefinição de senha',
'auth.reset-password.title': 'Redefina sua senha',
'auth.reset-password.description': 'Insira sua nova senha para redefinir sua senha.',
'auth.reset-password.reset': 'Sua senha foi redefinida.',
'auth.reset-password.back-to-login': 'Voltar para o login',
'auth.reset-password.form.new-password.label': 'Nova senha',
'auth.reset-password.form.new-password.placeholder': 'Exemplo: **********',
'auth.reset-password.form.new-password.required': 'Por favor, insira sua nova senha',
'auth.reset-password.form.new-password.min-length': 'A senha deve ter pelo menos {{ minLength }} caracteres',
'auth.reset-password.form.new-password.max-length': 'A senha deve ter menos de {{ maxLength }} caracteres',
'auth.reset-password.form.submit': 'Redefinir senha',
'auth.email-provider.open': 'Abrir {{ provider }}',
'auth.login.title': 'Acessar o Papra',
'auth.login.description': 'Insira seu e-mail ou use um login de rede social para acessar sua conta no Papra.',
'auth.login.login-with-provider': 'Entrar com {{ provider }}',
'auth.login.no-account': 'Não tem uma conta?',
'auth.login.register': 'Cadastre-se',
'auth.login.form.email.label': 'E-mail',
'auth.login.form.email.placeholder': 'Exemplo: cesar@papra.app',
'auth.login.form.email.required': 'Por favor, insira seu endereço de e-mail',
'auth.login.form.email.invalid': 'Este endereço de e-mail é inválido',
'auth.login.form.password.label': 'Senha',
'auth.login.form.password.placeholder': 'Defina uma senha',
'auth.login.form.password.required': 'Por favor, insira sua senha',
'auth.login.form.remember-me.label': 'Lembrar de mim',
'auth.login.form.forgot-password.label': 'Esqueceu a senha?',
'auth.login.form.submit': 'Entrar',
'auth.register.title': 'Cadastre-se no Papra',
'auth.register.description': 'Crie uma conta para começar a usar o Papra.',
'auth.register.register-with-email': 'Cadastrar com e-mail',
'auth.register.register-with-provider': 'Cadastrar com {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Já tem uma conta?',
'auth.register.login': 'Entrar',
'auth.register.registration-disabled.title': 'Cadastro desativado',
'auth.register.registration-disabled.description': 'A criação de novas contas está desativada nesta instância do Papra. Somente usuários com contas existentes podem acessar. Se você acha que isso é um engano, entre em contato com o administrador desta instância.',
'auth.register.form.email.label': 'E-mail',
'auth.register.form.email.placeholder': 'Exemplo: cesar@papra.app',
'auth.register.form.email.required': 'Por favor, insira seu endereço de e-mail',
'auth.register.form.email.invalid': 'Este endereço de e-mail é inválido',
'auth.register.form.password.label': 'Senha',
'auth.register.form.password.placeholder': 'Defina uma senha',
'auth.register.form.password.required': 'Por favor, insira sua senha',
'auth.register.form.password.min-length': 'A senha deve ter pelo menos {{ minLength }} caracteres',
'auth.register.form.password.max-length': 'A senha deve ter menos de {{ maxLength }} caracteres',
'auth.register.form.name.label': 'Nome',
'auth.register.form.name.placeholder': 'Exemplo: César Lattes',
'auth.register.form.name.required': 'Por favor, insira seu nome',
'auth.register.form.name.max-length': 'O nome deve ter menos de {{ maxLength }} caracteres',
'auth.register.form.submit': 'Cadastrar',
'auth.email-validation-required.title': 'Verifique seu e-mail',
'auth.email-validation-required.description': 'Um e-mail de verificação foi enviado para seu endereço. Por favor, verifique seu e-mail clicando no link enviado.',
'auth.legal-links.description': 'Ao continuar, você reconhece que leu e concorda com os {{ terms }} e a {{ privacy }}.',
'auth.legal-links.terms': 'Termos de Serviço',
'auth.legal-links.privacy': 'Política de Privacidade',
'auth.no-auth-provider.title': 'Nenhum provedor de autenticação',
'auth.no-auth-provider.description': 'Não há provedores de autenticação habilitados nesta instância do Papra. Por favor, entre em contato com o administrador desta instância para habilitá-los.',
// User settings
'user.settings.title': 'Configurações do usuário',
'user.settings.description': 'Gerencie as configurações da sua conta aqui.',
'user.settings.email.title': 'Endereço de e-mail',
'user.settings.email.description': 'Seu endereço de e-mail não pode ser alterado.',
'user.settings.email.label': 'Endereço de e-mail',
'user.settings.name.title': 'Nome completo',
'user.settings.name.description': 'Seu nome completo é exibido para outros membros da organização.',
'user.settings.name.label': 'Nome completo',
'user.settings.name.placeholder': 'Ex: João da Silva',
'user.settings.name.update': 'Atualizar nome',
'user.settings.name.updated': 'Seu nome completo foi atualizado',
'user.settings.logout.title': 'Sair',
'user.settings.logout.description': 'Encerre a sessão da sua conta. Você poderá acessá-la novamente mais tarde.',
'user.settings.logout.button': 'Sair',
// Organizations
'organizations.list.title': 'Suas organizações',
'organizations.list.description': 'Organizações são uma forma de agrupar seus documentos e gerenciar o acesso a eles. Você pode criar várias organizações e convidar membros da sua equipe para colaborar.',
'organizations.list.create-new': 'Criar nova organização',
'organizations.details.no-documents.title': 'Nenhum documento',
'organizations.details.no-documents.description': 'Ainda não há documentos nesta organização. Comece enviando documentos.',
'organizations.details.upload-documents': 'Enviar documentos',
'organizations.details.documents-count': 'documentos no total',
'organizations.details.total-size': 'tamanho total',
'organizations.details.latest-documents': 'Documentos importados recentemente',
'organizations.create.title': 'Criar uma nova organização',
'organizations.create.description': 'Seus documentos serão agrupados por organização. Você pode criar várias organizações para separar, por exemplo, documentos pessoais e profissionais.',
'organizations.create.back': 'Voltar',
'organizations.create.error.max-count-reached': 'Você atingiu o número máximo de organizações que pode criar. Se precisar criar mais, entre em contato com o suporte.',
'organizations.create.form.name.label': 'Nome da organização',
'organizations.create.form.name.placeholder': 'Ex: Empresa Ltda.',
'organizations.create.form.name.required': 'Por favor, insira um nome para a organização',
'organizations.create.form.submit': 'Criar organização',
'organizations.create.success': 'Organização criada com sucesso',
'organizations.create-first.title': 'Crie sua organização',
'organizations.create-first.description': 'Seus documentos serão agrupados por organização. Você pode criar várias organizações para separar, por exemplo, documentos pessoais e profissionais.',
'organizations.create-first.default-name': 'Minha organização',
'organizations.create-first.user-name': 'Organização de {{ name }}',
'organization.settings.title': 'Configurações da Organização',
'organization.settings.page.title': 'Configurações da organização',
'organization.settings.page.description': 'Gerencie aqui as configurações da sua organização.',
'organization.settings.name.title': 'Nome da organização',
'organization.settings.name.update': 'Atualizar nome',
'organization.settings.name.placeholder': 'Ex: Empresa Ltda.',
'organization.settings.name.updated': 'Nome da organização atualizado',
'organization.settings.subscription.title': 'Assinatura',
'organization.settings.subscription.description': 'Gerencie sua cobrança, faturas e formas de pagamento.',
'organization.settings.subscription.manage': 'Gerenciar assinatura',
'organization.settings.subscription.error': 'Falha ao obter o link do portal do cliente',
'organization.settings.delete.title': 'Excluir organização',
'organization.settings.delete.description': 'A exclusão desta organização removerá permanentemente todos seus dados associados.',
'organization.settings.delete.confirm.title': 'Excluir organização',
'organization.settings.delete.confirm.message': 'Tem certeza de que deseja excluir esta organização? Esta ação não pode ser desfeita e todos os dados associados serão permanentemente removidos.',
'organization.settings.delete.confirm.confirm-button': 'Excluir organização',
'organization.settings.delete.confirm.cancel-button': 'Cancelar',
'organization.settings.delete.success': 'Organização excluída',
'organizations.members.title': 'Membros',
'organizations.members.description': 'Gerencie os membros da sua organização',
'organizations.members.invite-member': 'Convidar membro',
'organizations.members.invite-member-disabled-tooltip': 'Apenas administradores ou proprietários podem convidar membros para a organização',
'organizations.members.remove-from-organization': 'Remover da organização',
'organizations.members.role': 'Função',
'organizations.members.roles.owner': 'Proprietário',
'organizations.members.roles.admin': 'Administrador',
'organizations.members.roles.member': 'Membro',
'organizations.members.delete.confirm.title': 'Remover membro',
'organizations.members.delete.confirm.message': 'Tem certeza de que deseja remover este membro da organização?',
'organizations.members.delete.confirm.confirm-button': 'Remover',
'organizations.members.delete.confirm.cancel-button': 'Cancelar',
'organizations.members.delete.success': 'Membro removido da organização',
'organizations.members.update-role.success': 'Função do membro atualizada',
'organizations.members.table.headers.name': 'Nome',
'organizations.members.table.headers.email': 'E-mail',
'organizations.members.table.headers.role': 'Função',
'organizations.members.table.headers.created': 'Criado em',
'organizations.members.table.headers.actions': 'Ações',
'organizations.invite-member.title': 'Convidar membro',
'organizations.invite-member.description': 'Convide um membro para a sua organização',
'organizations.invite-member.form.email.label': 'E-mail',
'organizations.invite-member.form.email.placeholder': 'Exemplo: cesar@papra.app',
'organizations.invite-member.form.email.required': 'Por favor, insira um endereço de e-mail válido',
'organizations.invite-member.form.role.label': 'Função',
'organizations.invite-member.form.submit': 'Convidar para a organização',
'organizations.invite-member.success.message': 'Membro convidado',
'organizations.invite-member.success.description': 'O e-mail foi convidado para a organização.',
'organizations.invite-member.error.message': 'Falha ao convidar o membro',
'organizations.invitations.title': 'Convites',
'organizations.invitations.description': 'Gerencie os convites da sua organização',
'organizations.invitations.list.cta': 'Convidar membro',
'organizations.invitations.list.empty.title': 'Nenhum convite pendente',
'organizations.invitations.list.empty.description': 'Você ainda não foi convidado para nenhuma organização.',
'organizations.invitations.status.pending': 'Pendente',
'organizations.invitations.status.accepted': 'Aceito',
'organizations.invitations.status.rejected': 'Rejeitado',
'organizations.invitations.status.expired': 'Expirado',
'organizations.invitations.status.cancelled': 'Cancelado',
'organizations.invitations.resend': 'Reenviar convite',
'organizations.invitations.cancel.title': 'Cancelar convite',
'organizations.invitations.cancel.description': 'Tem certeza de que deseja cancelar este convite?',
'organizations.invitations.cancel.confirm': 'Cancelar convite',
'organizations.invitations.cancel.cancel': 'Cancelar',
'organizations.invitations.resend.title': 'Reenviar convite',
'organizations.invitations.resend.description': 'Tem certeza de que deseja reenviar este convite? Um novo e-mail será enviado ao destinatário.',
'organizations.invitations.resend.confirm': 'Reenviar convite',
'organizations.invitations.resend.cancel': 'Cancelar',
'invitations.list.title': 'Convites',
'invitations.list.description': 'Gerencie os convites da sua organização',
'invitations.list.empty.title': 'Nenhum convite pendente',
'invitations.list.empty.description': 'Você ainda não foi convidado para nenhuma organização.',
'invitations.list.headers.organization': 'Organização',
'invitations.list.headers.status': 'Status',
'invitations.list.headers.created': 'Criado em',
'invitations.list.headers.actions': 'Ações',
'invitations.list.actions.accept': 'Aceitar',
'invitations.list.actions.reject': 'Rejeitar',
'invitations.list.actions.accept.success.message': 'Convite aceito',
'invitations.list.actions.accept.success.description': 'O convite foi aceito.',
'invitations.list.actions.reject.success.message': 'Convite rejeitado',
'invitations.list.actions.reject.success.description': 'O convite foi rejeitado.',
// Documents
'documents.list.title': 'Documentos',
'documents.list.no-documents.title': 'Nenhum documento',
'documents.list.no-documents.description': 'Ainda não há documentos nesta organização. Comece enviando documentos.',
'documents.list.no-results': 'Nenhum documento encontrado',
'documents.tabs.info': 'Informações',
'documents.tabs.content': 'Conteúdo',
'documents.tabs.activity': 'Atividades',
'documents.deleted.message': 'Este documento foi excluído e será deletado permanentemente em {{ days }} dias.',
'documents.actions.download': 'Baixar',
'documents.actions.open-in-new-tab': 'Abrir em nova aba',
'documents.actions.restore': 'Restaurar',
'documents.actions.delete': 'Excluir',
'documents.actions.edit': 'Editar',
'documents.actions.cancel': 'Cancelar',
'documents.actions.save': 'Salvar',
'documents.actions.saving': 'Salvando...',
'documents.content.alert': 'O conteúdo do documento é extraído automaticamente durante o envio e será utilizado apenas para fins de busca e indexação.',
'documents.content.empty-placeholder': 'Este documento não tem conteúdo extraído, você pode inserir manualmente aqui.',
'documents.info.id': 'ID',
'documents.info.name': 'Nome',
'documents.info.type': 'Tipo',
'documents.info.size': 'Tamanho',
'documents.info.created-at': 'Criado em',
'documents.info.updated-at': 'Atualizado em',
'documents.info.never': 'Nunca',
'documents.rename.title': 'Renomear documento',
'documents.rename.form.name.label': 'Nome',
'documents.rename.form.name.placeholder': 'Exemplo: Fatura 2024',
'documents.rename.form.name.required': 'Por favor, insira um nome para o documento',
'documents.rename.form.name.max-length': 'O nome deve ter menos de 255 caracteres',
'documents.rename.form.submit': 'Renomear documento',
'documents.rename.success': 'Documento renomeado com sucesso',
'documents.rename.cancel': 'Cancelar',
'import-documents.title.error': '{{ count }} documentos falharam',
'import-documents.title.success': '{{ count }} documentos importados',
'import-documents.title.pending': '{{ count }} / {{ total }} documentos importados',
'import-documents.title.none': 'Importar documentos',
'import-documents.no-import-in-progress': 'Nenhuma importação de documentos em andamento',
'documents.deleted.title': 'Documentos excluídos',
'documents.deleted.empty.title': 'Nenhum documento excluído',
'documents.deleted.empty.description': 'Você não tem documentos excluídos. Documentos excluídos serão movidos para a lixeira por {{ days }} dias.',
'documents.deleted.retention-notice': 'Todos os documentos excluídos são armazenados na lixeira por {{ days }} dias. Após esse período, os documentos serão excluídos permanentemente e não será possível restaurá-los.',
'documents.deleted.deleted-at': 'Excluído em',
'documents.deleted.restoring': 'Restaurando...',
'documents.deleted.deleting': 'Excluindo...',
'documents.preview.unknown-file-type': 'Pré-visualização não disponível para este tipo de arquivo',
'documents.preview.binary-file': 'Arquivos binários não podem ser exibidos como texto',
'trash.delete-all.button': 'Excluir tudo',
'trash.delete-all.confirm.title': 'Excluir todos os documentos permanentemente?',
'trash.delete-all.confirm.description': 'Tem certeza de que deseja excluir permanentemente todos os documentos da lixeira? Esta ação não poderá ser desfeita.',
'trash.delete-all.confirm.label': 'Excluir',
'trash.delete-all.confirm.cancel': 'Cancelar',
'trash.delete.button': 'Excluir',
'trash.delete.confirm.title': 'Excluir documento permanentemente?',
'trash.delete.confirm.description': 'Tem certeza de que deseja excluir permanentemente este documento da lixeira? Esta ação não poderá ser desfeita.',
'trash.delete.confirm.label': 'Excluir',
'trash.delete.confirm.cancel': 'Cancelar',
'trash.deleted.success.title': 'Documento excluído',
'trash.deleted.success.description': 'O documento foi excluído permanentemente.',
'activity.document.created': 'O documento foi criado',
'activity.document.updated.single': 'O {{ field }} foi atualizado',
'activity.document.updated.multiple': 'Os {{ fields }} foram atualizados',
'activity.document.updated': 'O documento foi atualizado',
'activity.document.deleted': 'O documento foi excluído',
'activity.document.restored': 'O documento foi restaurado',
'activity.document.tagged': 'A tag {{ tag }} foi adicionada',
'activity.document.untagged': 'A tag {{ tag }} foi removida',
'activity.document.user.name': 'por {{ name }}',
'activity.load-more': 'Carregar mais',
'activity.no-more-activities': 'Não há mais atividades para este documento',
// Tags
'tags.no-tags.title': 'Nenhuma tag',
'tags.no-tags.description': 'Esta organização ainda não possui tags. As tags são usadas para categorizar documentos. Você pode adicioná-las aos seus documentos para facilitar a busca e a organização.',
'tags.no-tags.create-tag': 'Criar tag',
'tags.title': 'Tags de documentos',
'tags.description': 'As tags são usadas para categorizar documentos. Você pode adicioná-las aos seus documentos para facilitar a busca e a organização.',
'tags.create': 'Criar tag',
'tags.update': 'Atualizar tag',
'tags.delete': 'Excluir tag',
'tags.delete.confirm.title': 'Excluir tag',
'tags.delete.confirm.message': 'Tem certeza de que deseja excluir esta tag? A exclusão de uma tag a removerá de todos os documentos.',
'tags.delete.confirm.confirm-button': 'Excluir',
'tags.delete.confirm.cancel-button': 'Cancelar',
'tags.delete.success': 'Tag excluída com sucesso',
'tags.create.success': 'Tag "{{ name }}" criada com sucesso.',
'tags.update.success': 'Tag "{{ name }}" atualizada com sucesso.',
'tags.form.name.label': 'Nome',
'tags.form.name.placeholder': 'Ex: Contratos',
'tags.form.name.required': 'Por favor, insira um nome para a tag',
'tags.form.name.max-length': 'O nome da tag deve ter menos de 64 caracteres',
'tags.form.color.label': 'Cor',
'tags.form.color.required': 'Por favor, insira uma cor',
'tags.form.color.invalid': 'Código hexadecimal formatado incorretamente.',
'tags.form.description.label': 'Descrição',
'tags.form.description.optional': '(opcional)',
'tags.form.description.placeholder': 'Ex: Todos os contratos assinados pela empresa',
'tags.form.description.max-length': 'A descrição deve ter menos de 256 caracteres',
'tags.form.no-description': 'Sem descrição',
'tags.table.headers.tag': 'Tag',
'tags.table.headers.description': 'Descrição',
'tags.table.headers.documents': 'Documentos',
'tags.table.headers.created': 'Criado em',
'tags.table.headers.actions': 'Ações',
// Tagging rules
'tagging-rules.field.name': 'nome do documento',
'tagging-rules.field.content': 'conteúdo do documento',
'tagging-rules.operator.equals': 'é igual a',
'tagging-rules.operator.not-equals': 'é diferente de',
'tagging-rules.operator.contains': 'contém',
'tagging-rules.operator.not-contains': 'não contém',
'tagging-rules.operator.starts-with': 'começa com',
'tagging-rules.operator.ends-with': 'termina com',
'tagging-rules.list.title': 'Regras de marcação',
'tagging-rules.list.description': 'Gerencie as regras de marcação da sua organização para aplicar tags automaticamente a documentos com base em condições definidas por você.',
'tagging-rules.list.demo-warning': 'Nota: Como este é um ambiente de demonstração (sem servidor), as regras de marcação não serão aplicadas a novos documentos adicionados.',
'tagging-rules.list.no-tagging-rules.title': 'Nenhuma regra de marcação',
'tagging-rules.list.no-tagging-rules.description': 'Crie uma regra de marcação para aplicar tags automaticamente aos documentos adicionados, com base em condições definidas por você.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Criar regra de marcação',
'tagging-rules.list.card.no-conditions': 'Nenhuma condição',
'tagging-rules.list.card.one-condition': '1 condição',
'tagging-rules.list.card.conditions': '{{ count }} condições',
'tagging-rules.list.card.delete': 'Excluir regra',
'tagging-rules.list.card.edit': 'Editar regra',
'tagging-rules.create.title': 'Criar regra de marcação',
'tagging-rules.create.success': 'Regra de marcação criada com sucesso',
'tagging-rules.create.error': 'Falha ao criar a regra de marcação',
'tagging-rules.create.submit': 'Criar regra',
'tagging-rules.form.name.label': 'Nome',
'tagging-rules.form.name.placeholder': 'Exemplo: Marcar faturas',
'tagging-rules.form.name.min-length': 'Por favor, insira um nome para a regra',
'tagging-rules.form.name.max-length': 'O nome deve ter menos de 64 caracteres',
'tagging-rules.form.description.label': 'Descrição',
'tagging-rules.form.description.placeholder': 'Exemplo: Marcar documentos com \'fatura\' no nome',
'tagging-rules.form.description.max-length': 'A descrição deve ter menos de 256 caracteres',
'tagging-rules.form.conditions.label': 'Condições',
'tagging-rules.form.conditions.description': 'Defina as condições que devem ser atendidas para que a regra seja aplicada. Todas as condições devem ser atendidas.',
'tagging-rules.form.conditions.add-condition': 'Adicionar condição',
'tagging-rules.form.conditions.no-conditions.title': 'Nenhuma condição',
'tagging-rules.form.conditions.no-conditions.description': 'Você não adicionou nenhuma condição a esta regra. Ela será aplicada a todos os documentos.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Aplicar regra sem condições',
'tagging-rules.form.conditions.no-conditions.cancel': 'Cancelar',
'tagging-rules.form.conditions.value.placeholder': 'Exemplo: fatura',
'tagging-rules.form.conditions.value.min-length': 'Por favor, insira um valor para a condição',
'tagging-rules.form.tags.label': 'Tags',
'tagging-rules.form.tags.description': 'Selecione as tags que serão aplicadas aos documentos adicionados que correspondam às condições',
'tagging-rules.form.tags.min-length': 'Ao menos uma tag para aplicar é necessária',
'tagging-rules.form.tags.add-tag': 'Criar tag',
'tagging-rules.form.submit': 'Criar regra',
'tagging-rules.update.title': 'Atualizar regra de marcação',
'tagging-rules.update.error': 'Falha ao atualizar a regra de marcação',
'tagging-rules.update.submit': 'Atualizar regra',
'tagging-rules.update.cancel': 'Cancelar',
// Intake emails
'intake-emails.title': 'E-mails de entrada',
'intake-emails.description': 'Os endereços de e-mail de entrada são usados para importar automaticamente e-mails para o Papra. Basta encaminhar e-mails para o endereço de entrada e os anexos serão adicionados aos documentos da sua organização.',
'intake-emails.disabled.title': 'E-mails de entrada desativados',
'intake-emails.disabled.description': 'Os e-mails de entrada estão desativados nesta instância. Por favor, entre em contato com o administrador para ativá-los. Consulte a {{ documentation }} para mais informações.',
'intake-emails.disabled.documentation': 'documentação',
'intake-emails.info': 'Apenas e-mails de entrada habilitados e provenientes de origens permitidas serão processados. Você pode ativar ou desativar um e-mail de entrada a qualquer momento.',
'intake-emails.empty.title': 'Nenhum e-mail de entrada',
'intake-emails.empty.description': 'Gere um endereço de entrada para importar facilmente anexos de e-mails.',
'intake-emails.empty.generate': 'Gerar e-mail de entrada',
'intake-emails.count': '{{ count }} e-mail{{ plural }} de entrada para esta organização',
'intake-emails.new': 'Novo e-mail de entrada',
'intake-emails.disabled-label': '(Desativado)',
'intake-emails.no-origins': 'Nenhuma origem de e-mail permitida',
'intake-emails.allowed-origins': 'Permitido de {{ count }} endereço{{ plural }}',
'intake-emails.actions.enable': 'Ativar',
'intake-emails.actions.disable': 'Desativar',
'intake-emails.actions.manage-origins': 'Gerenciar endereços de origem',
'intake-emails.actions.delete': 'Excluir',
'intake-emails.delete.confirm.title': 'Excluir e-mail de entrada?',
'intake-emails.delete.confirm.message': 'Tem certeza de que deseja excluir este e-mail de entrada? Esta ação não poderá ser desfeita.',
'intake-emails.delete.confirm.confirm-button': 'Excluir e-mail de entrada',
'intake-emails.delete.confirm.cancel-button': 'Cancelar',
'intake-emails.delete.success': 'E-mail de entrada excluído',
'intake-emails.create.success': 'E-mail de entrada criado',
'intake-emails.update.success.enabled': 'E-mail de entrada ativado',
'intake-emails.update.success.disabled': 'E-mail de entrada desativado',
'intake-emails.allowed-origins.title': 'Origens permitidas',
'intake-emails.allowed-origins.description': 'Apenas e-mails enviados para {{ email }} a partir dessas origens serão processados. Se nenhuma origem for especificada, todos os e-mails serão descartados.',
'intake-emails.allowed-origins.add.label': 'Adicionar e-mail de origem permitida',
'intake-emails.allowed-origins.add.placeholder': 'Ex: ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Adicionar',
'intake-emails.allowed-origins.add.error.exists': 'Este e-mail já está nas origens permitidas para este e-mail de entrada',
// API keys
'api-keys.permissions.documents.title': 'Documentos',
'api-keys.permissions.documents.documents:create': 'Criar documentos',
'api-keys.permissions.documents.documents:read': 'Ler documentos',
'api-keys.permissions.documents.documents:update': 'Atualizar documentos',
'api-keys.permissions.documents.documents:delete': 'Excluir documentos',
'api-keys.permissions.tags.title': 'Tags',
'api-keys.permissions.tags.tags:create': 'Criar tags',
'api-keys.permissions.tags.tags:read': 'Ler tags',
'api-keys.permissions.tags.tags:update': 'Atualizar tags',
'api-keys.permissions.tags.tags:delete': 'Excluir tags',
'api-keys.create.title': 'Criar chave de API',
'api-keys.create.description': 'Crie uma nova chave de API para acessar a API do Papra.',
'api-keys.create.success': 'A chave de API foi criada com sucesso.',
'api-keys.create.back': 'Voltar para as chaves de API',
'api-keys.create.form.name.label': 'Nome',
'api-keys.create.form.name.placeholder': 'Exemplo: Minha chave de API',
'api-keys.create.form.name.required': 'Por favor, insira um nome para a chave de API',
'api-keys.create.form.permissions.label': 'Permissões',
'api-keys.create.form.permissions.required': 'Por favor, selecione ao menos uma permissão',
'api-keys.create.form.submit': 'Criar chave de API',
'api-keys.create.created.title': 'Chave de API criada',
'api-keys.create.created.description': 'A chave de API foi criada com sucesso. Salve-a em um local seguro, pois ela não será exibida novamente.',
'api-keys.list.title': 'Chaves de API',
'api-keys.list.description': 'Gerencie suas chaves de API aqui.',
'api-keys.list.create': 'Criar chave de API',
'api-keys.list.empty.title': 'Nenhuma chave de API',
'api-keys.list.empty.description': 'Crie uma chave de API para acessar a API do Papra.',
'api-keys.list.card.last-used': 'Último uso',
'api-keys.list.card.never': 'Nunca',
'api-keys.list.card.created': 'Criada em',
'api-keys.delete.success': 'A chave de API foi excluída com sucesso',
'api-keys.delete.confirm.title': 'Excluir chave de API',
'api-keys.delete.confirm.message': 'Tem certeza de que deseja excluir esta chave de API? Esta ação não poderá ser desfeita.',
'api-keys.delete.confirm.confirm-button': 'Excluir',
'api-keys.delete.confirm.cancel-button': 'Cancelar',
// Webhooks
'webhooks.list.title': 'Webhooks',
'webhooks.list.description': 'Gerencie os webhooks da sua organização',
'webhooks.list.empty.title': 'Nenhum webhook',
'webhooks.list.empty.description': 'Crie seu primeiro webhook para começar a receber eventos',
'webhooks.list.create': 'Criar webhook',
'webhooks.list.card.last-triggered': 'Última ativação',
'webhooks.list.card.never': 'Nunca',
'webhooks.list.card.created': 'Criado em',
'webhooks.create.title': 'Criar webhook',
'webhooks.create.description': 'Crie um novo webhook para receber eventos',
'webhooks.create.success': 'Webhook criado com sucesso',
'webhooks.create.back': 'Voltar',
'webhooks.create.form.submit': 'Criar webhook',
'webhooks.create.form.name.label': 'Nome do webhook',
'webhooks.create.form.name.placeholder': 'Insira o nome do webhook',
'webhooks.create.form.name.required': 'O nome é obrigatório',
'webhooks.create.form.url.label': 'URL do Webhook',
'webhooks.create.form.url.placeholder': 'Insira a URL do webhook',
'webhooks.create.form.url.required': 'A URL é obrigatória',
'webhooks.create.form.url.invalid': 'URL inválida',
'webhooks.create.form.secret.label': 'Segredo',
'webhooks.create.form.secret.placeholder': 'Insira o segredo do webhook',
'webhooks.create.form.events.label': 'Eventos',
'webhooks.create.form.events.required': 'Adicione pelo menos um evento',
'webhooks.update.title': 'Editar webhook',
'webhooks.update.description': 'Atualize os detalhes do seu webhook',
'webhooks.update.success': 'Webhook atualizado com sucesso',
'webhooks.update.submit': 'Atualizar webhook',
'webhooks.update.cancel': 'Cancelar',
'webhooks.update.form.secret.placeholder': 'Insira um novo segredo',
'webhooks.update.form.secret.placeholder-redacted': '[Segredo ocultado]',
'webhooks.update.form.rotate-secret.button': 'Rotacionar segredo',
'webhooks.delete.success': 'Webhook excluído com sucesso',
'webhooks.delete.confirm.title': 'Excluir webhook',
'webhooks.delete.confirm.message': 'Tem certeza de que deseja excluir este webhook?',
'webhooks.delete.confirm.confirm-button': 'Excluir',
'webhooks.delete.confirm.cancel-button': 'Cancelar',
'webhooks.events.documents.title': 'Eventos de documentos',
'webhooks.events.documents.document:created.description': 'Documento criado',
'webhooks.events.documents.document:deleted.description': 'Documento excluído',
'webhooks.events.documents.document:updated.description': 'Documento atualizado',
'webhooks.events.documents.document:tag:added.description': 'Uma tag foi adicionada a um documento',
'webhooks.events.documents.document:tag:removed.description': 'Uma tag foi removida de um documento',
// Navigation
'layout.menu.home': 'Início',
'layout.menu.documents': 'Documentos',
'layout.menu.tags': 'Tags',
'layout.menu.tagging-rules': 'Regras de marcação',
'layout.menu.deleted-documents': 'Documentos excluídos',
'layout.menu.organization-settings': 'Configurações',
'layout.menu.api-keys': 'Chaves de API',
'layout.menu.settings': 'Configurações',
'layout.menu.account': 'Conta',
'layout.menu.general-settings': 'Configurações gerais',
'layout.menu.intake-emails': 'E-mails de entrada',
'layout.menu.webhooks': 'Webhooks',
'layout.menu.members': 'Membros',
'layout.menu.invitations': 'Convites',
'layout.theme.light': 'Tema claro',
'layout.theme.dark': 'Tema escuro',
'layout.theme.system': 'Tema do sistema',
'layout.search.placeholder': 'Buscar...',
'layout.menu.import-document': 'Importar um documento',
'user-menu.account-settings': 'Configurações da conta',
'user-menu.api-keys': 'Chaves de API',
'user-menu.invitations': 'Convites',
'user-menu.language': 'Idioma',
'user-menu.logout': 'Sair',
// Command palette
'command-palette.search.placeholder': 'Buscar comandos ou documentos',
'command-palette.no-results': 'Nenhum resultado encontrado',
'command-palette.sections.documents': 'Documentos',
'command-palette.sections.theme': 'Tema',
// API errors
'api-errors.document.already_exists': 'O documento já existe',
'api-errors.document.file_too_big': 'O arquivo do documento é muito grande',
'api-errors.intake_email.limit_reached': 'O número máximo de e-mails de entrada para esta organização foi atingido. Faça um upgrade no seu plano para criar mais e-mails de entrada.',
'api-errors.user.max_organization_count_reached': 'Você atingiu o número máximo de organizações que pode criar. Se precisar criar mais, entre em contato com o suporte.',
'api-errors.default': 'Ocorreu um erro ao processar sua solicitação.',
'api-errors.organization.invitation_already_exists': 'Já existe um convite para este e-mail nesta organização.',
'api-errors.user.already_in_organization': 'Este usuário já faz parte desta organização.',
'api-errors.user.organization_invitation_limit_reached': 'O número máximo de convites por hoje foi atingido. Por favor, tente novamente amanhã.',
'api-errors.demo.not_available': 'Este recurso não está disponível em ambiente de demonstração',
'api-errors.tags.already_exists': 'Já existe uma tag com este nome nesta organização',
'api-errors.internal.error': 'Ocorreu um erro ao processar sua solicitação. Por favor, tente novamente.',
'api-errors.auth.invalid_origin': 'Origem da aplicação inválida. Se você está hospedando o Papra, certifique-se de que a variável de ambiente APP_BASE_URL corresponde à sua URL atual. Para mais detalhes, consulte https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Página não encontrada',
'not-found.description': 'Desculpe, a página que você está procurando não existe. Verifique o URL e tente novamente.',
'not-found.back-to-home': 'Voltar para a página inicial',
// Demo
'demo.popup.description': 'Este é um ambiente de demonstração; todos os dados são salvos no armazenamento local do seu navegador.',
'demo.popup.discord': 'Entre no {{ discordLink }} para obter suporte, sugerir funcionalidades ou apenas conversar.',
'demo.popup.discord-link-label': 'Comunidade do Discord',
'demo.popup.reset': 'Redefinir dados da demonstração',
'demo.popup.hide': 'Ocultar',
// Color picker
'color-picker.hue': 'Matiz',
'color-picker.saturation': 'Saturação',
'color-picker.lightness': 'Brilho',
'color-picker.select-color': 'Selecionar cor',
'color-picker.select-a-color': 'Selecione uma cor',
};

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Redefinir a sua palavra-passe',
'auth.request-password-reset.description': 'Introduza o seu e-mail para redefinir a palavra-passe.',
'auth.request-password-reset.requested': 'Se existir uma conta para este e-mail, enviámos-lhe um e-mail para redefinir a palavra-passe.',
'auth.request-password-reset.back-to-login': 'Voltar ao início de sessão',
'auth.request-password-reset.form.email.label': 'E-mail',
'auth.request-password-reset.form.email.placeholder': 'Exemplo: joao@papra.app',
'auth.request-password-reset.form.email.required': 'Por favor, introduza o seu endereço de e-mail',
'auth.request-password-reset.form.email.invalid': 'Este endereço de e-mail é inválido',
'auth.request-password-reset.form.submit': 'Solicitar redefinição de palavra-passe',
'auth.reset-password.title': 'Redefinir a sua palavra-passe',
'auth.reset-password.description': 'Introduza a sua nova palavra-passe para redefinir a palavra-passe.',
'auth.reset-password.reset': 'A sua palavra-passe foi redefinida.',
'auth.reset-password.back-to-login': 'Voltar ao início de sessão',
'auth.reset-password.form.new-password.label': 'Nova palavra-passe',
'auth.reset-password.form.new-password.placeholder': 'Exemplo: **********',
'auth.reset-password.form.new-password.required': 'Por favor, introduza a sua nova palavra-passe',
'auth.reset-password.form.new-password.min-length': 'A palavra-passe deve ter pelo menos {{ minLength }} caracteres',
'auth.reset-password.form.new-password.max-length': 'A palavra-passe deve ter menos de {{ maxLength }} caracteres',
'auth.reset-password.form.submit': 'Redefinir palavra-passe',
'auth.email-provider.open': 'Abrir {{ provider }}',
'auth.login.title': 'Iniciar sessão no Papra',
'auth.login.description': 'Introduza o seu e-mail ou use o início de sessão social para aceder à sua conta Papra.',
'auth.login.login-with-provider': 'Iniciar sessão com {{ provider }}',
'auth.login.no-account': 'Não tem uma conta?',
'auth.login.register': 'Registar',
'auth.login.form.email.label': 'E-mail',
'auth.login.form.email.placeholder': 'Exemplo: joao@papra.app',
'auth.login.form.email.required': 'Por favor, introduza o seu endereço de e-mail',
'auth.login.form.email.invalid': 'Este endereço de e-mail é inválido',
'auth.login.form.password.label': 'Palavra-passe',
'auth.login.form.password.placeholder': 'Definir uma palavra-passe',
'auth.login.form.password.required': 'Por favor, introduza a sua palavra-passe',
'auth.login.form.remember-me.label': 'Lembrar-me',
'auth.login.form.forgot-password.label': 'Esqueceu-se da palavra-passe?',
'auth.login.form.submit': 'Iniciar sessão',
'auth.register.title': 'Registar no Papra',
'auth.register.description': 'Crie uma conta para começar a usar o Papra.',
'auth.register.register-with-email': 'Registar com e-mail',
'auth.register.register-with-provider': 'Registar com {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Já tem uma conta?',
'auth.register.login': 'Iniciar sessão',
'auth.register.registration-disabled.title': 'O registo está desativado',
'auth.register.registration-disabled.description': 'A criação de novas contas está atualmente desativada nesta instância do Papra. Apenas utilizadores com contas existentes podem iniciar sessão. Se acha que isto é um erro, contacte o administrador desta instância.',
'auth.register.form.email.label': 'E-mail',
'auth.register.form.email.placeholder': 'Exemplo: joao@papra.app',
'auth.register.form.email.required': 'Por favor, introduza o seu endereço de e-mail',
'auth.register.form.email.invalid': 'Este endereço de e-mail é inválido',
'auth.register.form.password.label': 'Palavra-passe',
'auth.register.form.password.placeholder': 'Definir uma palavra-passe',
'auth.register.form.password.required': 'Por favor, introduza a sua palavra-passe',
'auth.register.form.password.min-length': 'A palavra-passe deve ter pelo menos {{ minLength }} caracteres',
'auth.register.form.password.max-length': 'A palavra-passe deve ter menos de {{ maxLength }} caracteres',
'auth.register.form.name.label': 'Nome',
'auth.register.form.name.placeholder': 'Exemplo: Ada Lovelace',
'auth.register.form.name.required': 'Por favor, introduza o seu nome',
'auth.register.form.name.max-length': 'O nome deve ter menos de {{ maxLength }} caracteres',
'auth.register.form.submit': 'Registar',
'auth.email-validation-required.title': 'Verifique o seu e-mail',
'auth.email-validation-required.description': 'Foi enviado um e-mail de verificação para o seu endereço de e-mail. Por favor, verifique o seu endereço de e-mail clicando na ligação no e-mail.',
'auth.legal-links.description': 'Ao continuar, reconhece que compreende e concorda com os {{ terms }} e a {{ privacy }}.',
'auth.legal-links.terms': 'Termos de Serviço',
'auth.legal-links.privacy': 'Política de Privacidade',
'auth.no-auth-provider.title': 'Nenhum fornecedor de autenticação',
'auth.no-auth-provider.description': 'Não há fornecedores de autenticação ativados nesta instância do Papra. Por favor, contacte o administrador desta instância para ativar os mesmos.',
// User settings
'user.settings.title': 'Definições do utilizador',
'user.settings.description': 'Gira as definições da sua conta aqui.',
'user.settings.email.title': 'Endereço de e-mail',
'user.settings.email.description': 'O seu endereço de e-mail não pode ser alterado.',
'user.settings.email.label': 'Endereço de e-mail',
'user.settings.name.title': 'Nome completo',
'user.settings.name.description': 'O seu nome completo é exibido a outros membros da organização.',
'user.settings.name.label': 'Nome completo',
'user.settings.name.placeholder': 'Ex. João Silva',
'user.settings.name.update': 'Atualizar nome',
'user.settings.name.updated': 'O seu nome completo foi atualizado',
'user.settings.logout.title': 'Terminar sessão',
'user.settings.logout.description': 'Terminar sessão da sua conta. Pode iniciar sessão novamente mais tarde.',
'user.settings.logout.button': 'Terminar sessão',
// Organizations
'organizations.list.title': 'As suas organizações',
'organizations.list.description': 'As organizações são uma forma de agrupar os seus documentos e gerir o acesso aos mesmos. Pode criar várias organizações e convidar os membros da sua equipa para colaborar.',
'organizations.list.create-new': 'Criar nova organização',
'organizations.details.no-documents.title': 'Sem documentos',
'organizations.details.no-documents.description': 'Não há documentos nesta organização ainda. Comece por carregar alguns documentos.',
'organizations.details.upload-documents': 'Carregar documentos',
'organizations.details.documents-count': 'documentos no total',
'organizations.details.total-size': 'tamanho total',
'organizations.details.latest-documents': 'Últimos documentos importados',
'organizations.create.title': 'Criar uma nova organização',
'organizations.create.description': 'Os seus documentos serão agrupados por organização. Pode criar várias organizações para separar os seus documentos, por exemplo, para documentos pessoais e de trabalho.',
'organizations.create.back': 'Voltar',
'organizations.create.error.max-count-reached': 'Atingiu o número máximo de organizações que pode criar, se precisar de criar mais, contacte o suporte.',
'organizations.create.form.name.label': 'Nome da organização',
'organizations.create.form.name.placeholder': 'Ex. Acme Inc.',
'organizations.create.form.name.required': 'Por favor, introduza um nome para a organização',
'organizations.create.form.submit': 'Criar organização',
'organizations.create.success': 'Organização criada com sucesso',
'organizations.create-first.title': 'Criar a sua organização',
'organizations.create-first.description': 'Os seus documentos serão agrupados por organização. Pode criar várias organizações para separar os seus documentos, por exemplo, para documentos pessoais e de trabalho.',
'organizations.create-first.default-name': 'A minha organização',
'organizations.create-first.user-name': 'Organização de {{ name }}',
'organization.settings.title': 'Definições da Organização',
'organization.settings.page.title': 'Definições da organização',
'organization.settings.page.description': 'Gira as definições da sua organização aqui.',
'organization.settings.name.title': 'Nome da organização',
'organization.settings.name.update': 'Atualizar nome',
'organization.settings.name.placeholder': 'Ex. Acme Inc.',
'organization.settings.name.updated': 'Nome da organização atualizado',
'organization.settings.subscription.title': 'Subscrição',
'organization.settings.subscription.description': 'Gira a sua faturação, faturas e métodos de pagamento.',
'organization.settings.subscription.manage': 'Gerir subscrição',
'organization.settings.subscription.error': 'Falha ao obter URL do portal do cliente',
'organization.settings.delete.title': 'Eliminar organização',
'organization.settings.delete.description': 'Eliminar esta organização removerá permanentemente todos os dados associados à mesma.',
'organization.settings.delete.confirm.title': 'Eliminar organização',
'organization.settings.delete.confirm.message': 'Tem a certeza de que quer eliminar esta organização? Esta ação não pode ser desfeita e todos os dados associados a esta organização serão permanentemente removidos.',
'organization.settings.delete.confirm.confirm-button': 'Eliminar organização',
'organization.settings.delete.confirm.cancel-button': 'Cancelar',
'organization.settings.delete.success': 'Organização eliminada',
'organizations.members.title': 'Membros',
'organizations.members.description': 'Gira os membros da sua organização',
'organizations.members.invite-member': 'Convidar membro',
'organizations.members.invite-member-disabled-tooltip': 'Apenas administradores ou proprietários podem convidar membros para a organização',
'organizations.members.remove-from-organization': 'Remover da organização',
'organizations.members.role': 'Função',
'organizations.members.roles.owner': 'Proprietário',
'organizations.members.roles.admin': 'Administrador',
'organizations.members.roles.member': 'Membro',
'organizations.members.delete.confirm.title': 'Remover membro',
'organizations.members.delete.confirm.message': 'Tem a certeza de que quer remover este membro da organização?',
'organizations.members.delete.confirm.confirm-button': 'Remover',
'organizations.members.delete.confirm.cancel-button': 'Cancelar',
'organizations.members.delete.success': 'Membro removido da organização',
'organizations.members.update-role.success': 'Função do membro atualizada',
'organizations.members.table.headers.name': 'Nome',
'organizations.members.table.headers.email': 'E-mail',
'organizations.members.table.headers.role': 'Função',
'organizations.members.table.headers.created': 'Criado',
'organizations.members.table.headers.actions': 'Ações',
'organizations.invite-member.title': 'Convidar membro',
'organizations.invite-member.description': 'Convide um membro para a sua organização',
'organizations.invite-member.form.email.label': 'E-mail',
'organizations.invite-member.form.email.placeholder': 'Exemplo: joao@papra.app',
'organizations.invite-member.form.email.required': 'Por favor, introduza um endereço de e-mail válido',
'organizations.invite-member.form.role.label': 'Função',
'organizations.invite-member.form.submit': 'Convidar para a organização',
'organizations.invite-member.success.message': 'Membro convidado',
'organizations.invite-member.success.description': 'O e-mail foi convidado para a organização.',
'organizations.invite-member.error.message': 'Falha ao convidar membro',
'organizations.invitations.title': 'Convites',
'organizations.invitations.description': 'Gira os convites da sua organização',
'organizations.invitations.list.cta': 'Convidar membro',
'organizations.invitations.list.empty.title': 'Sem convites pendentes',
'organizations.invitations.list.empty.description': 'Ainda não foi convidado para nenhuma organização.',
'organizations.invitations.status.pending': 'Pendente',
'organizations.invitations.status.accepted': 'Aceite',
'organizations.invitations.status.rejected': 'Rejeitado',
'organizations.invitations.status.expired': 'Expirado',
'organizations.invitations.status.cancelled': 'Cancelado',
'organizations.invitations.resend': 'Reenviar convite',
'organizations.invitations.cancel.title': 'Cancelar convite',
'organizations.invitations.cancel.description': 'Tem a certeza de que quer cancelar este convite?',
'organizations.invitations.cancel.confirm': 'Cancelar convite',
'organizations.invitations.cancel.cancel': 'Cancelar',
'organizations.invitations.resend.title': 'Reenviar convite',
'organizations.invitations.resend.description': 'Tem a certeza de que quer reenviar este convite? Isto enviará um novo e-mail ao destinatário.',
'organizations.invitations.resend.confirm': 'Reenviar convite',
'organizations.invitations.resend.cancel': 'Cancelar',
'invitations.list.title': 'Convites',
'invitations.list.description': 'Gira os convites da sua organização',
'invitations.list.empty.title': 'Sem convites pendentes',
'invitations.list.empty.description': 'Ainda não foi convidado para nenhuma organização.',
'invitations.list.headers.organization': 'Organização',
'invitations.list.headers.status': 'Estado',
'invitations.list.headers.created': 'Criado',
'invitations.list.headers.actions': 'Ações',
'invitations.list.actions.accept': 'Aceitar',
'invitations.list.actions.reject': 'Rejeitar',
'invitations.list.actions.accept.success.message': 'Convite aceite',
'invitations.list.actions.accept.success.description': 'O convite foi aceite.',
'invitations.list.actions.reject.success.message': 'Convite rejeitado',
'invitations.list.actions.reject.success.description': 'O convite foi rejeitado.',
// Documents
'documents.list.title': 'Documentos',
'documents.list.no-documents.title': 'Sem documentos',
'documents.list.no-documents.description': 'Não há documentos nesta organização ainda. Comece por carregar alguns documentos.',
'documents.list.no-results': 'Nenhum documento encontrado',
'documents.tabs.info': 'Informação',
'documents.tabs.content': 'Conteúdo',
'documents.tabs.activity': 'Atividade',
'documents.deleted.message': 'Este documento foi eliminado e será permanentemente removido em {{ days }} dias.',
'documents.actions.download': 'Descarregar',
'documents.actions.open-in-new-tab': 'Abrir em novo separador',
'documents.actions.restore': 'Restaurar',
'documents.actions.delete': 'Eliminar',
'documents.actions.edit': 'Editar',
'documents.actions.cancel': 'Cancelar',
'documents.actions.save': 'Guardar',
'documents.actions.saving': 'A guardar...',
'documents.content.alert': 'O conteúdo do documento é automaticamente extraído do documento no carregamento. É usado apenas para fins de pesquisa e indexação.',
'documents.content.empty-placeholder': 'Este documento não tem conteúdo extraído, pode inserir manualmente aqui.',
'documents.info.id': 'ID',
'documents.info.name': 'Nome',
'documents.info.type': 'Tipo',
'documents.info.size': 'Tamanho',
'documents.info.created-at': 'Criado em',
'documents.info.updated-at': 'Atualizado em',
'documents.info.never': 'Nunca',
'documents.rename.title': 'Renomear documento',
'documents.rename.form.name.label': 'Nome',
'documents.rename.form.name.placeholder': 'Exemplo: Fatura 2024',
'documents.rename.form.name.required': 'Por favor, introduza um nome para o documento',
'documents.rename.form.name.max-length': 'O nome deve ter menos de 255 caracteres',
'documents.rename.form.submit': 'Renomear documento',
'documents.rename.success': 'Documento renomeado com sucesso',
'documents.rename.cancel': 'Cancelar',
'import-documents.title.error': '{{ count }} documentos falharam',
'import-documents.title.success': '{{ count }} documentos importados',
'import-documents.title.pending': '{{ count }} / {{ total }} documentos importados',
'import-documents.title.none': 'Importar documentos',
'import-documents.no-import-in-progress': 'Nenhuma importação de documento em progresso',
'documents.deleted.title': 'Documentos eliminados',
'documents.deleted.empty.title': 'Sem documentos eliminados',
'documents.deleted.empty.description': 'Não tem documentos eliminados. Os documentos que são eliminados serão movidos para a reciclagem por {{ days }} dias.',
'documents.deleted.retention-notice': 'Todos os documentos eliminados são armazenados na reciclagem por {{ days }} dias. Passando este prazo, os documentos serão permanentemente eliminados e não poderá restaurá-los.',
'documents.deleted.deleted-at': 'Eliminado',
'documents.deleted.restoring': 'A restaurar...',
'documents.deleted.deleting': 'A eliminar...',
'documents.preview.unknown-file-type': 'Não há pré-visualização disponível para este tipo de ficheiro',
'documents.preview.binary-file': 'Este parece ser um ficheiro binário e não pode ser exibido como texto',
'trash.delete-all.button': 'Eliminar tudo',
'trash.delete-all.confirm.title': 'Eliminar permanentemente todos os documentos?',
'trash.delete-all.confirm.description': 'Tem a certeza de que quer eliminar permanentemente todos os documentos da reciclagem? Esta ação não pode ser desfeita.',
'trash.delete-all.confirm.label': 'Eliminar',
'trash.delete-all.confirm.cancel': 'Cancelar',
'trash.delete.button': 'Eliminar',
'trash.delete.confirm.title': 'Eliminar documento permanentemente?',
'trash.delete.confirm.description': 'Tem a certeza de que quer eliminar permanentemente este documento da reciclagem? Esta ação não pode ser desfeita.',
'trash.delete.confirm.label': 'Eliminar',
'trash.delete.confirm.cancel': 'Cancelar',
'trash.deleted.success.title': 'Documento eliminado',
'trash.deleted.success.description': 'O documento foi eliminado permanentemente.',
'activity.document.created': 'O documento foi criado',
'activity.document.updated.single': 'O {{ field }} foi atualizado',
'activity.document.updated.multiple': 'Os {{ fields }} foram atualizados',
'activity.document.updated': 'O documento foi atualizado',
'activity.document.deleted': 'O documento foi eliminado',
'activity.document.restored': 'O documento foi restaurado',
'activity.document.tagged': 'A etiqueta {{ tag }} foi adicionada',
'activity.document.untagged': 'A etiqueta {{ tag }} foi removida',
'activity.document.user.name': 'por {{ name }}',
'activity.load-more': 'Carregar mais',
'activity.no-more-activities': 'Não há mais atividades para este documento',
// Tags
'tags.no-tags.title': 'Ainda sem etiquetas',
'tags.no-tags.description': 'Esta organização ainda não tem etiquetas. As etiquetas são usadas para categorizar documentos. Pode adicionar etiquetas aos seus documentos para os tornar mais fáceis de encontrar e organizar.',
'tags.no-tags.create-tag': 'Criar etiqueta',
'tags.title': 'Etiquetas de Documentos',
'tags.description': 'As etiquetas são usadas para categorizar documentos. Pode adicionar etiquetas aos seus documentos para os tornar mais fáceis de encontrar e organizar.',
'tags.create': 'Criar etiqueta',
'tags.update': 'Atualizar etiqueta',
'tags.delete': 'Eliminar etiqueta',
'tags.delete.confirm.title': 'Eliminar etiqueta',
'tags.delete.confirm.message': 'Tem a certeza de que quer eliminar esta etiqueta? Eliminar uma etiqueta irá removê-la de todos os documentos.',
'tags.delete.confirm.confirm-button': 'Eliminar',
'tags.delete.confirm.cancel-button': 'Cancelar',
'tags.delete.success': 'Etiqueta eliminada com sucesso',
'tags.create.success': 'Etiqueta "{{ name }}" criada com sucesso.',
'tags.update.success': 'Etiqueta "{{ name }}" atualizada com sucesso.',
'tags.form.name.label': 'Nome',
'tags.form.name.placeholder': 'Ex. Contratos',
'tags.form.name.required': 'Por favor, introduza um nome para a etiqueta',
'tags.form.name.max-length': 'O nome da etiqueta deve ter menos de 64 caracteres',
'tags.form.color.label': 'Cor',
'tags.form.color.required': 'Por favor, introduza uma cor',
'tags.form.color.invalid': 'A cor hexadecimal está mal formatada.',
'tags.form.description.label': 'Descrição',
'tags.form.description.optional': '(opcional)',
'tags.form.description.placeholder': 'Ex. Todos os contratos assinados pela empresa',
'tags.form.description.max-length': 'A descrição deve ter menos de 256 caracteres',
'tags.form.no-description': 'Sem descrição',
'tags.table.headers.tag': 'Etiqueta',
'tags.table.headers.description': 'Descrição',
'tags.table.headers.documents': 'Documentos',
'tags.table.headers.created': 'Criado',
'tags.table.headers.actions': 'Ações',
// Tagging rules
'tagging-rules.field.name': 'nome do documento',
'tagging-rules.field.content': 'conteúdo do documento',
'tagging-rules.operator.equals': 'igual a',
'tagging-rules.operator.not-equals': 'não igual a',
'tagging-rules.operator.contains': 'contém',
'tagging-rules.operator.not-contains': 'não contém',
'tagging-rules.operator.starts-with': 'começa com',
'tagging-rules.operator.ends-with': 'termina com',
'tagging-rules.list.title': 'Regras de etiquetagem',
'tagging-rules.list.description': 'Gira as regras de etiquetagem da sua organização, para etiquetar automaticamente documentos com base em condições que define.',
'tagging-rules.list.demo-warning': 'Nota: Como este é um ambiente de demonstração (sem servidor), as regras de etiquetagem não serão aplicadas a documentos recém-adicionados.',
'tagging-rules.list.no-tagging-rules.title': 'Sem regras de etiquetagem',
'tagging-rules.list.no-tagging-rules.description': 'Crie uma regra de etiquetagem para etiquetar automaticamente os seus documentos adicionados com base em condições que define.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Criar regra de etiquetagem',
'tagging-rules.list.card.no-conditions': 'Sem condições',
'tagging-rules.list.card.one-condition': '1 condição',
'tagging-rules.list.card.conditions': '{{ count }} condições',
'tagging-rules.list.card.delete': 'Eliminar regra',
'tagging-rules.list.card.edit': 'Editar regra',
'tagging-rules.create.title': 'Criar regra de etiquetagem',
'tagging-rules.create.success': 'Regra de etiquetagem criada com sucesso',
'tagging-rules.create.error': 'Falha ao criar regra de etiquetagem',
'tagging-rules.create.submit': 'Criar regra',
'tagging-rules.form.name.label': 'Nome',
'tagging-rules.form.name.placeholder': 'Exemplo: Etiquetar faturas',
'tagging-rules.form.name.min-length': 'Por favor, introduza um nome para a regra',
'tagging-rules.form.name.max-length': 'O nome deve ter menos de 64 caracteres',
'tagging-rules.form.description.label': 'Descrição',
'tagging-rules.form.description.placeholder': 'Exemplo: Etiquetar documentos com \'fatura\' no nome',
'tagging-rules.form.description.max-length': 'A descrição deve ter menos de 256 caracteres',
'tagging-rules.form.conditions.label': 'Condições',
'tagging-rules.form.conditions.description': 'Defina as condições que devem ser cumpridas para a regra se aplicar. Todas as condições devem ser cumpridas para a regra se aplicar.',
'tagging-rules.form.conditions.add-condition': 'Adicionar condição',
'tagging-rules.form.conditions.no-conditions.title': 'Sem condições',
'tagging-rules.form.conditions.no-conditions.description': 'Não adicionou nenhuma condição a esta regra. Esta regra aplicará as suas etiquetas a todos os documentos.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Aplicar regra sem condições',
'tagging-rules.form.conditions.no-conditions.cancel': 'Cancelar',
'tagging-rules.form.conditions.value.placeholder': 'Exemplo: fatura',
'tagging-rules.form.conditions.value.min-length': 'Por favor, introduza um valor para a condição',
'tagging-rules.form.tags.label': 'Etiquetas',
'tagging-rules.form.tags.description': 'Selecione as etiquetas a aplicar aos documentos adicionados que correspondem às condições',
'tagging-rules.form.tags.min-length': 'É necessária pelo menos uma etiqueta para aplicar',
'tagging-rules.form.tags.add-tag': 'Criar etiqueta',
'tagging-rules.form.submit': 'Criar regra',
'tagging-rules.update.title': 'Atualizar regra de etiquetagem',
'tagging-rules.update.error': 'Falha ao atualizar regra de etiquetagem',
'tagging-rules.update.submit': 'Atualizar regra',
'tagging-rules.update.cancel': 'Cancelar',
// Intake emails
'intake-emails.title': 'E-mails de Receção',
'intake-emails.description': 'Os endereços de e-mail de receção são usados para ingerir automaticamente e-mails no Papra. Basta reencaminhar e-mails para o endereço de e-mail de receção e os seus anexos serão adicionados aos documentos da sua organização.',
'intake-emails.disabled.title': 'Os E-mails de Receção estão desativados',
'intake-emails.disabled.description': 'Os e-mails de receção estão desativados nesta instância. Contacte o seu administrador para os ativar. Consulte a {{ documentation }} para mais informações.',
'intake-emails.disabled.documentation': 'documentação',
'intake-emails.info': 'Apenas e-mails de receção ativados de origens permitidas serão processados. Pode ativar ou desativar um e-mail de receção a qualquer momento.',
'intake-emails.empty.title': 'Sem e-mails de receção',
'intake-emails.empty.description': 'Gere um endereço de receção para ingerir facilmente anexos de e-mails.',
'intake-emails.empty.generate': 'Gerar e-mail de receção',
'intake-emails.count': '{{ count }} e-mail{{ plural }} de receção para esta organização',
'intake-emails.new': 'Novo e-mail de receção',
'intake-emails.disabled-label': '(Desativado)',
'intake-emails.no-origins': 'Sem origens de e-mail permitidas',
'intake-emails.allowed-origins': 'Permitido de {{ count }} endereço{{ plural }}',
'intake-emails.actions.enable': 'Ativar',
'intake-emails.actions.disable': 'Desativar',
'intake-emails.actions.manage-origins': 'Gerir endereços de origem',
'intake-emails.actions.delete': 'Eliminar',
'intake-emails.delete.confirm.title': 'Eliminar e-mail de receção?',
'intake-emails.delete.confirm.message': 'Tem a certeza de que quer eliminar este e-mail de receção? Esta ação não pode ser desfeita.',
'intake-emails.delete.confirm.confirm-button': 'Eliminar e-mail de receção',
'intake-emails.delete.confirm.cancel-button': 'Cancelar',
'intake-emails.delete.success': 'E-mail de receção eliminado',
'intake-emails.create.success': 'E-mail de receção criado',
'intake-emails.update.success.enabled': 'E-mail de receção ativado',
'intake-emails.update.success.disabled': 'E-mail de receção desativado',
'intake-emails.allowed-origins.title': 'Origens permitidas',
'intake-emails.allowed-origins.description': 'Apenas e-mails enviados para {{ email }} destas origens serão processados. Se nenhuma origem for especificada, todos os e-mails serão descartados.',
'intake-emails.allowed-origins.add.label': 'Adicionar e-mail de origem permitida',
'intake-emails.allowed-origins.add.placeholder': 'Ex. joao@papra.app',
'intake-emails.allowed-origins.add.button': 'Adicionar',
'intake-emails.allowed-origins.add.error.exists': 'Este e-mail já está nas origens permitidas para este e-mail de receção',
// API keys
'api-keys.permissions.documents.title': 'Documentos',
'api-keys.permissions.documents.documents:create': 'Criar documentos',
'api-keys.permissions.documents.documents:read': 'Ler documentos',
'api-keys.permissions.documents.documents:update': 'Atualizar documentos',
'api-keys.permissions.documents.documents:delete': 'Eliminar documentos',
'api-keys.permissions.tags.title': 'Etiquetas',
'api-keys.permissions.tags.tags:create': 'Criar etiquetas',
'api-keys.permissions.tags.tags:read': 'Ler etiquetas',
'api-keys.permissions.tags.tags:update': 'Atualizar etiquetas',
'api-keys.permissions.tags.tags:delete': 'Eliminar etiquetas',
'api-keys.create.title': 'Criar chave API',
'api-keys.create.description': 'Crie uma nova chave API para aceder à API do Papra.',
'api-keys.create.success': 'A chave API foi criada com sucesso.',
'api-keys.create.back': 'Voltar às chaves API',
'api-keys.create.form.name.label': 'Nome',
'api-keys.create.form.name.placeholder': 'Exemplo: A minha chave API',
'api-keys.create.form.name.required': 'Por favor, introduza um nome para a chave API',
'api-keys.create.form.permissions.label': 'Permissões',
'api-keys.create.form.permissions.required': 'Por favor, selecione pelo menos uma permissão',
'api-keys.create.form.submit': 'Criar chave API',
'api-keys.create.created.title': 'Chave API criada',
'api-keys.create.created.description': 'A chave API foi criada com sucesso. Guarde-a num local seguro pois não será exibida novamente.',
'api-keys.list.title': 'Chaves API',
'api-keys.list.description': 'Gira as suas chaves API aqui.',
'api-keys.list.create': 'Criar chave API',
'api-keys.list.empty.title': 'Sem chaves API',
'api-keys.list.empty.description': 'Crie uma chave API para aceder à API do Papra.',
'api-keys.list.card.last-used': 'Última utilização',
'api-keys.list.card.never': 'Nunca',
'api-keys.list.card.created': 'Criado',
'api-keys.delete.success': 'A chave API foi eliminada com sucesso',
'api-keys.delete.confirm.title': 'Eliminar chave API',
'api-keys.delete.confirm.message': 'Tem a certeza de que quer eliminar esta chave API? Esta ação não pode ser desfeita.',
'api-keys.delete.confirm.confirm-button': 'Eliminar',
'api-keys.delete.confirm.cancel-button': 'Cancelar',
// Webhooks
'webhooks.list.title': 'Webhooks',
'webhooks.list.description': 'Gira os webhooks da sua organização',
'webhooks.list.empty.title': 'Nenhum webhook',
'webhooks.list.empty.description': 'Crie o seu primeiro webhook para começar a receber eventos',
'webhooks.list.create': 'Criar webhook',
'webhooks.list.card.last-triggered': 'Última ativação',
'webhooks.list.card.never': 'Nunca',
'webhooks.list.card.created': 'Criado em',
'webhooks.create.title': 'Criar webhook',
'webhooks.create.description': 'Crie um novo webhook para receber eventos',
'webhooks.create.success': 'Webhook criado com sucesso',
'webhooks.create.back': 'Voltar',
'webhooks.create.form.submit': 'Criar webhook',
'webhooks.create.form.name.label': 'Nome do webhook',
'webhooks.create.form.name.placeholder': 'Insira o nome do webhook',
'webhooks.create.form.name.required': 'O nome é obrigatório',
'webhooks.create.form.url.label': 'URL do Webhook',
'webhooks.create.form.url.placeholder': 'Insira o URL do webhook',
'webhooks.create.form.url.required': 'O URL é obrigatória',
'webhooks.create.form.url.invalid': 'URL inválido',
'webhooks.create.form.secret.label': 'Segredo',
'webhooks.create.form.secret.placeholder': 'Insira o segredo do webhook',
'webhooks.create.form.events.label': 'Eventos',
'webhooks.create.form.events.required': 'Adicione pelo menos um evento',
'webhooks.update.title': 'Editar webhook',
'webhooks.update.description': 'Atualize os detalhes do seu webhook',
'webhooks.update.success': 'Webhook atualizado com sucesso',
'webhooks.update.submit': 'Atualizar webhook',
'webhooks.update.cancel': 'Cancelar',
'webhooks.update.form.secret.placeholder': 'Insira um novo segredo',
'webhooks.update.form.secret.placeholder-redacted': '[Segredo ocultado]',
'webhooks.update.form.rotate-secret.button': 'Rotacionar segredo',
'webhooks.delete.success': 'Webhook eliminado com sucesso',
'webhooks.delete.confirm.title': 'Eliminar webhook',
'webhooks.delete.confirm.message': 'Tem a certeza de que deseja eliminar este webhook?',
'webhooks.delete.confirm.confirm-button': 'Eliminar',
'webhooks.delete.confirm.cancel-button': 'Cancelar',
'webhooks.events.documents.title': 'Eventos de documentos',
'webhooks.events.documents.document:created.description': 'Documento criado',
'webhooks.events.documents.document:deleted.description': 'Documento eliminado',
'webhooks.events.documents.document:updated.description': 'Documento atualizado',
'webhooks.events.documents.document:tag:added.description': 'Uma etiqueta foi adicionada a um documento',
'webhooks.events.documents.document:tag:removed.description': 'Uma etiqueta foi removida de um documento',
// Navigation
'layout.menu.home': 'Início',
'layout.menu.documents': 'Documentos',
'layout.menu.tags': 'Tags',
'layout.menu.tagging-rules': 'Regras de etiquetagem',
'layout.menu.deleted-documents': 'Documentos eliminados',
'layout.menu.organization-settings': 'Definições',
'layout.menu.api-keys': 'Chaves API',
'layout.menu.settings': 'Definições',
'layout.menu.account': 'Conta',
'layout.menu.general-settings': 'Definições gerais',
'layout.menu.intake-emails': 'E-mails de entrada',
'layout.menu.webhooks': 'Webhooks',
'layout.menu.members': 'Membros',
'layout.menu.invitations': 'Convites',
'layout.theme.light': 'Tema claro',
'layout.theme.dark': 'Tema escuro',
'layout.theme.system': 'Tema do sistema',
'layout.search.placeholder': 'Procurar...',
'layout.menu.import-document': 'Importar um documento',
'user-menu.account-settings': 'Definições da conta',
'user-menu.api-keys': 'Chaves API',
'user-menu.invitations': 'Convites',
'user-menu.language': 'Linguagem',
'user-menu.logout': 'Sair',
// Command palette
'command-palette.search.placeholder': 'Procurar comandos ou documentos',
'command-palette.no-results': 'Nenhum resultado encontrado',
'command-palette.sections.documents': 'Documentos',
'command-palette.sections.theme': 'Tema',
// API errors
'api-errors.document.already_exists': 'O documento já existe',
'api-errors.document.file_too_big': 'O arquivo do documento é muito grande',
'api-errors.intake_email.limit_reached': 'O número máximo de e-mails de entrada para esta organização foi atingido. Faça um upgrade no seu plano para criar mais e-mails de entrada.',
'api-errors.user.max_organization_count_reached': 'Atingiu o número máximo de organizações que pode criar. Se precisar de criar mais, entre em contato com o suporte.',
'api-errors.default': 'Ocorreu um erro ao processar a solicitação.',
'api-errors.organization.invitation_already_exists': 'Já existe um convite para este e-mail nesta organização.',
'api-errors.user.already_in_organization': 'Este utilizadpr já faz parte desta organização.',
'api-errors.user.organization_invitation_limit_reached': 'O número máximo de convites por hoje foi atingido. Por favor, tente novamente amanhã.',
'api-errors.demo.not_available': 'Este recurso não está disponível em ambiente de demonstração',
'api-errors.tags.already_exists': 'Já existe uma etiqueta com este nome nesta organização',
'api-errors.internal.error': 'Ocorreu um erro ao processar a solicitação. Por favor, tente novamente.',
'api-errors.auth.invalid_origin': 'Origem da aplicação inválida. Se você está hospedando o Papra, certifique-se de que a variável de ambiente APP_BASE_URL corresponde à sua URL atual. Para mais detalhes, consulte https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Página não encontrada',
'not-found.description': 'Desculpe, a página que procura não existe. Verifique o URL e tente novamente.',
'not-found.back-to-home': 'Voltar para a página inicial',
// Demo
'demo.popup.description': 'Este é um ambiente de demonstração; todos os dados são guardadis no armazenamento local do navegador.',
'demo.popup.discord': 'Entre no {{ discordLink }} para obter suporte, sugerir funcionalidades ou apenas conversar.',
'demo.popup.discord-link-label': 'Comunidade do Discord',
'demo.popup.reset': 'Redefinir dados da demonstração',
'demo.popup.hide': 'Ocultar',
// Color picker
'color-picker.hue': 'Matiz',
'color-picker.saturation': 'Saturação',
'color-picker.lightness': 'Brilho',
'color-picker.select-color': 'Selecionar cor',
'color-picker.select-a-color': 'Selecione uma cor',
};

View File

@@ -0,0 +1,577 @@
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
export const translations: Partial<TranslationsDictionary> = {
// Authentication
'auth.request-password-reset.title': 'Resetează parola',
'auth.request-password-reset.description': 'Introdu adresa de e-mail pentru a reseta parola.',
'auth.request-password-reset.requested': 'Dacă există un cont pentru acest e-mail, am trimis un e-mail pentru resetarea parolei.',
'auth.request-password-reset.back-to-login': 'Înapoi la autentificare',
'auth.request-password-reset.form.email.label': 'E-mail',
'auth.request-password-reset.form.email.placeholder': 'Exemplu: popescu@papra.app',
'auth.request-password-reset.form.email.required': 'Introdu adresa de e-mail',
'auth.request-password-reset.form.email.invalid': 'Adresa de e-mail este invalidă',
'auth.request-password-reset.form.submit': 'Trimite cererea de resetare a parolei',
'auth.reset-password.title': 'Resetează parola',
'auth.reset-password.description': 'Introdu o parolă noua pentră a o reseta pe cea veche.',
'auth.reset-password.reset': 'Parola a fost resetată cu success.',
'auth.reset-password.back-to-login': 'Înapoi la autentificare',
'auth.reset-password.form.new-password.label': 'Parolă nouă',
'auth.reset-password.form.new-password.placeholder': 'Exemplu: **********',
'auth.reset-password.form.new-password.required': 'Introdu parola nouă',
'auth.reset-password.form.new-password.min-length': 'Parola trebuie să fie de minim {{ minLength }} caractere',
'auth.reset-password.form.new-password.max-length': 'Parola trebuie să fie de maxim {{ maxLength }} de caractere',
'auth.reset-password.form.submit': 'Resetează parola',
'auth.email-provider.open': 'Deschide {{ provider }}',
'auth.login.title': 'Autentificare la Papra',
'auth.login.description': 'Introdu e-mailul sau folosește autentificarea cu cont social pentru a accesa contul Papra.',
'auth.login.login-with-provider': 'Autentificare cu {{ provider }}',
'auth.login.no-account': 'Nu ai cont?',
'auth.login.register': 'Înregistrare',
'auth.login.form.email.label': 'E-mail',
'auth.login.form.email.placeholder': 'Exemplu: popescu@papra.app',
'auth.login.form.email.required': 'Introdu adresa de e-mail',
'auth.login.form.email.invalid': 'Adresa e-mail este invalidă',
'auth.login.form.password.label': 'Parola',
'auth.login.form.password.placeholder': 'Setează o parola noua',
'auth.login.form.password.required': 'Introdu parola noua',
'auth.login.form.remember-me.label': 'Ține-mă minte',
'auth.login.form.forgot-password.label': 'Ai uitat parola?',
'auth.login.form.submit': 'Autentificare',
'auth.register.title': 'Înregistrare la Papra',
'auth.register.description': 'Introdu e-mailul pentru a accesa Papra.',
'auth.register.register-with-email': 'înregistrează-te cu e-mail',
'auth.register.register-with-provider': 'Inregistreaza-te cu {{ provider }}',
'auth.register.providers.google': 'Google',
'auth.register.providers.github': 'GitHub',
'auth.register.have-account': 'Ai deja un cont?',
'auth.register.login': 'Autentificare',
'auth.register.registration-disabled.title': 'Înregistrarea este dezactivată',
'auth.register.registration-disabled.description': 'Crearea de conturi noi este momentan dezactivată pe această instanță de Papra. Doar utilizatorii cu conturi existente se pot autentifica. Dacă aceasta pare a fi o greșeală, contactează administratorul acestei instanțe.',
'auth.register.form.email.label': 'E-mail',
'auth.register.form.email.placeholder': 'Exemplu: popescu@papra.app',
'auth.register.form.email.required': 'Introdu adresa de e-mail',
'auth.register.form.email.invalid': 'Adresa e-mail este invalida',
'auth.register.form.password.label': 'Parola',
'auth.register.form.password.placeholder': 'Setează parola',
'auth.register.form.password.required': 'Te rugăm să introduci parola',
'auth.register.form.password.min-length': 'Parola trebuie să fie de minim {{ minLength }} caractere',
'auth.register.form.password.max-length': 'Parola trebuie să fie de maxim {{ maxLength }} de caractere',
'auth.register.form.name.label': 'Nume',
'auth.register.form.name.placeholder': 'Exemplu: Andrei Popescu',
'auth.register.form.name.required': 'Introdu numele',
'auth.register.form.name.max-length': 'Numele trebuie să fie de minim {{ maxLength }} caractere',
'auth.register.form.submit': 'Înregistrare',
'auth.email-validation-required.title': 'Verifică-ți email-ul',
'auth.email-validation-required.description': 'A fost trimis un e-mail de verificare la adresa ta de e-mail. Te rugăm să îți verifici adresa de e-mail dând click pe linkul din e-mail.',
'auth.legal-links.description': 'Continuând, confirmați că întelegeți și sunteti de acord cu {{ terms }} și {{ privacy }}.',
'auth.legal-links.terms': 'Termenii și condițiile',
'auth.legal-links.privacy': 'Politica de confidențialitate',
'auth.no-auth-provider.title': 'Niciun furnizor de autentificare',
'auth.no-auth-provider.description': 'Nu este niciun furnizor de autentificare activat pe această instanță de Papra. Te rugăm să contactezi administratorul aceste instanțe pentru a le activa.',
// User settings
'user.settings.title': 'Setările utilizatorului',
'user.settings.description': 'Configurează setările contului aici.',
'user.settings.email.title': 'Adresa de e-mail',
'user.settings.email.description': 'Adresa de e-mail nu poate fi schimbată.',
'user.settings.email.label': 'Adresa de e-mail',
'user.settings.name.title': 'Numele complet',
'user.settings.name.description': 'Numele complet este afișat altor membri din organizație.',
'user.settings.name.label': 'Numele complet',
'user.settings.name.placeholder': 'Ex. Andrei Popescu',
'user.settings.name.update': 'Schimbă numele',
'user.settings.name.updated': 'Numele a fost schimbat',
'user.settings.logout.title': 'Deconectare',
'user.settings.logout.description': 'Vei fi deconectat din cont. Te poți conecta înapoi ulterior.',
'user.settings.logout.button': 'Deconectare',
// Organizations
'organizations.list.title': 'Organizațiile tale',
'organizations.list.description': 'Organizațiile sunt o modalitate de a grupa documentele și de a gestiona accesul la acestea. Poți crea multiple organizații și invita membrii echipei tale să colaboreze.',
'organizations.list.create-new': 'Creează o organizație nouă',
'organizations.details.no-documents.title': 'Niciun document',
'organizations.details.no-documents.description': 'Încă nu există documente în această organizație. Încarcă niște documente pentru a începe.',
'organizations.details.upload-documents': 'Încarcă documente',
'organizations.details.documents-count': 'documente in total',
'organizations.details.total-size': 'mărime totala',
'organizations.details.latest-documents': 'Ultimele documente încarcate',
'organizations.create.title': 'Creează o organizație nouă',
'organizations.create.description': 'Documentele sunt grupate în funcție de organizație. Poți crea mai multe organizații pentru documente diferite, de exemplu, pentru uz personal și profesional.',
'organizations.create.back': 'Înapoi',
'organizations.create.error.max-count-reached': 'Ai ajuns la numărul maxim de organizații pe care le poți crea. Dacă ai nevoie de mai multe, contactează asistența.',
'organizations.create.form.name.label': 'Numle organizației',
'organizations.create.form.name.placeholder': 'Ex. Acme SRL.',
'organizations.create.form.name.required': 'Introdu numele organizației',
'organizations.create.form.submit': 'Creează organizația',
'organizations.create.success': 'Organizația a fost creată cu succes',
'organizations.create-first.title': 'Creează organizația',
'organizations.create-first.description': 'Documentele sunt grupate în funcție de organizație. Poți crea mai multe organizații pentru documente diferite, de exemplu, pentru uz personal și profesional.',
'organizations.create-first.default-name': 'Organizația mea',
'organizations.create-first.user-name': 'Organizația lui {{ name }}',
'organization.settings.title': 'Setările organizației',
'organization.settings.page.title': 'Setările organizației',
'organization.settings.page.description': 'Gestionează setarile organizației aici.',
'organization.settings.name.title': 'Numele organizației',
'organization.settings.name.update': 'Actualizează numele',
'organization.settings.name.placeholder': 'Ex. Acme SRL.',
'organization.settings.name.updated': 'Numele organizației a fost actualizat',
'organization.settings.subscription.title': 'Abonament',
'organization.settings.subscription.description': 'Gestionează facturile și metodele de plată.',
'organization.settings.subscription.manage': 'Gestionează-ți abonamentul',
'organization.settings.subscription.error': 'Eroare la obținerea URL-ului portalului de client',
'organization.settings.delete.title': 'Șterge organizația',
'organization.settings.delete.description': 'Ștergerea acestei organizații va elimina definitiv toate datele asociate cu aceasta.',
'organization.settings.delete.confirm.title': 'Șterge organizatia',
'organization.settings.delete.confirm.message': 'Ești sigur că vrei să ștergi această organizație? Aceasta operatie nu poate fi anulată si toate datele asociate cu aceasta vor fi eliminate definitiv.',
'organization.settings.delete.confirm.confirm-button': 'Șterge organizație',
'organization.settings.delete.confirm.cancel-button': 'Anulează',
'organization.settings.delete.success': 'Organizație ștearsă cu succes',
'organizations.members.title': 'Membri',
'organizations.members.description': 'Gestionează membrii organizației tale',
'organizations.members.invite-member': 'Invită membru',
'organizations.members.invite-member-disabled-tooltip': 'Doar administratorii sau proprietarii pot invita membrii la organizație',
'organizations.members.remove-from-organization': 'Elimina din organizație',
'organizations.members.role': 'Rol',
'organizations.members.roles.owner': 'Proprietar',
'organizations.members.roles.admin': 'Admin',
'organizations.members.roles.member': 'Membru',
'organizations.members.delete.confirm.title': 'Elimină membrul',
'organizations.members.delete.confirm.message': 'Ești sigur că vrei să elimini acest membru din organizație?',
'organizations.members.delete.confirm.confirm-button': 'Elimină',
'organizations.members.delete.confirm.cancel-button': 'Anulează',
'organizations.members.delete.success': 'Membru eliminat cu succes',
'organizations.members.update-role.success': 'Rolul membrului a fost actualizat',
'organizations.members.table.headers.name': 'Nume',
'organizations.members.table.headers.email': 'E-mail',
'organizations.members.table.headers.role': 'Rol',
'organizations.members.table.headers.created': 'Creat',
'organizations.members.table.headers.actions': 'Acțiuni',
'organizations.invite-member.title': 'Invită membru',
'organizations.invite-member.description': 'Invită un membru la organizație',
'organizations.invite-member.form.email.label': 'E-mail',
'organizations.invite-member.form.email.placeholder': 'Exemplu: ada@papra.app',
'organizations.invite-member.form.email.required': 'Introdu o adresă de e-mail validă',
'organizations.invite-member.form.role.label': 'Rol',
'organizations.invite-member.form.submit': 'Invită membru',
'organizations.invite-member.success.message': 'Membru invitat',
'organizations.invite-member.success.description': 'Adresă de e-mail a fost invitată la organizație.',
'organizations.invite-member.error.message': 'Eroare la invitarea membrului',
'organizations.invitations.title': 'Invitații',
'organizations.invitations.description': 'Gestionează invitațiile la organizație',
'organizations.invitations.list.cta': 'Invită membru',
'organizations.invitations.list.empty.title': 'Nicio invitație în așteptare',
'organizations.invitations.list.empty.description': 'Încă nu ai fost invitat la nicio organizație.',
'organizations.invitations.status.pending': 'În așteptare',
'organizations.invitations.status.accepted': 'Acceptată',
'organizations.invitations.status.rejected': 'Respinsă',
'organizations.invitations.status.expired': 'Expirată',
'organizations.invitations.status.cancelled': 'Anulată',
'organizations.invitations.resend': 'Retrimite invitația',
'organizations.invitations.cancel.title': 'Anulează invitația',
'organizations.invitations.cancel.description': 'Ești sigur că vrei să anulezi această invitație?',
'organizations.invitations.cancel.confirm': 'Anulează invitația',
'organizations.invitations.cancel.cancel': 'Anulează',
'organizations.invitations.resend.title': 'Retrimite invitația',
'organizations.invitations.resend.description': 'Ești sigur că vrei să retrimiți această invitație? Se va trimite un nou e-mail destinatarului.',
'organizations.invitations.resend.confirm': 'Retrimite invitația',
'organizations.invitations.resend.cancel': 'Anulează',
'invitations.list.title': 'Invitații',
'invitations.list.description': 'Gestionează invitații la organizație',
'invitations.list.empty.title': 'Nicio invitație în așteptare',
'invitations.list.empty.description': 'Încă nu ai fost invitat la nicio organizație.',
'invitations.list.headers.organization': 'Organizație',
'invitations.list.headers.status': 'Status',
'invitations.list.headers.created': 'Creat la',
'invitations.list.headers.actions': 'Acțiuni',
'invitations.list.actions.accept': 'Acceptă',
'invitations.list.actions.reject': 'Refuză',
'invitations.list.actions.accept.success.message': 'Invitație acceptată',
'invitations.list.actions.accept.success.description': 'Invitația a fost acceptată.',
'invitations.list.actions.reject.success.message': 'Invitație refuzată',
'invitations.list.actions.reject.success.description': 'Invitația a fost refuzată.',
// Documents
'documents.list.title': 'Documente',
'documents.list.no-documents.title': 'Niciun document',
'documents.list.no-documents.description': 'Încă nu există documente în aceasta organizație. Începe prin a încarca câteva documente.',
'documents.list.no-results': 'Nu au fost găsite documente',
'documents.tabs.info': 'Info',
'documents.tabs.content': 'Conținut',
'documents.tabs.activity': 'Activitate',
'documents.deleted.message': 'Acest document a fost șters și va fi eliminat definitiv după {{ days }} zile.',
'documents.actions.download': 'Descarcă',
'documents.actions.open-in-new-tab': 'Deschide în filă nouă',
'documents.actions.restore': 'Restaurează',
'documents.actions.delete': 'Șterge',
'documents.actions.edit': 'Editează',
'documents.actions.cancel': 'Anulează',
'documents.actions.save': 'Salvează',
'documents.actions.saving': 'Se salvează...',
'documents.content.alert': 'Conținutul documentului este extras automat din document la încarcare. Este folosit doar pentru căutare și indexare.',
'documents.content.empty-placeholder': 'Acest document nu are conținut extra, poți introduce manual aici.',
'documents.info.id': 'ID',
'documents.info.name': 'Nume',
'documents.info.type': 'Tip',
'documents.info.size': 'Dimensiune',
'documents.info.created-at': 'Creat la',
'documents.info.updated-at': 'Actualizat la',
'documents.info.never': 'Niciodată',
'documents.rename.title': 'Redenumește documentul',
'documents.rename.form.name.label': 'Nume',
'documents.rename.form.name.placeholder': 'Exemplu: Factura 2024',
'documents.rename.form.name.required': 'Te rugăm să introduci un nume pentru document',
'documents.rename.form.name.max-length': 'Numele trebuie să aibă mai puțin de 255 de caractere',
'documents.rename.form.submit': 'Redenumește documentul',
'documents.rename.success': 'Document redenumit cu succes',
'documents.rename.cancel': 'Anulează',
'import-documents.title.error': '{{ count }} documente au eșuat',
'import-documents.title.success': '{{ count }} documente importate',
'import-documents.title.pending': '{{ count }} / {{ total }} documente importate',
'import-documents.title.none': 'Importă documente',
'import-documents.no-import-in-progress': 'Niciun import de documente în curs',
'documents.deleted.title': 'Documente șterse',
'documents.deleted.empty.title': 'Niciun document șters',
'documents.deleted.empty.description': 'Nu ai niciun document șters. Documentele care sunt șterse vor fi mutate în coșul de gunoi timp de {{ days }} zile.',
'documents.deleted.retention-notice': 'Toate documentele șterse sunt stocate în coșul de gunoi timp de {{ days }} zile. După acest interval, documentele vor fi șterse definitiv și nu le vei mai putea restaura.',
'documents.deleted.deleted-at': 'Șterse la',
'documents.deleted.restoring': 'Se restaurează...',
'documents.deleted.deleting': 'Se șterge...',
'documents.preview.unknown-file-type': 'Nicio previzualizare disponibilă pentru acest tip de fișier',
'documents.preview.binary-file': 'Acesta pare a fi un fișier binar și nu poate fi afișat ca text',
'trash.delete-all.button': 'Șterge tot',
'trash.delete-all.confirm.title': 'Ștergi definitiv toate documentele?',
'trash.delete-all.confirm.description': 'Ești sigur că dorești să ștergi definitiv toate documentele din coșul de gunoi? Această acțiune nu poate fi anulată.',
'trash.delete-all.confirm.label': 'Șterge',
'trash.delete-all.confirm.cancel': 'Anulează',
'trash.delete.button': 'Șterge',
'trash.delete.confirm.title': 'Ștergi definitiv documentul?',
'trash.delete.confirm.description': 'Sunteti sigur ca doriti să stergeti definitiv acest document din cosul de gunoi? Această actiune nu poate fi anulată.',
'trash.delete.confirm.label': 'Șterge',
'trash.delete.confirm.cancel': 'Anulează',
'trash.deleted.success.title': 'Document șters',
'trash.deleted.success.description': 'Documentul a fost șters definitiv.',
'activity.document.created': 'Documentul a fost creat',
'activity.document.updated.single': 'Câmpul {{ field }} a fost actualizat',
'activity.document.updated.multiple': 'Câmpurile {{ fields }} au fost actualizate',
'activity.document.updated': 'Documentul a fost actualizat',
'activity.document.deleted': 'Documentul a fost șters',
'activity.document.restored': 'Documentul a fost restaurat',
'activity.document.tagged': 'Eticheta {{ tag }} a fost adaugată',
'activity.document.untagged': 'Eticheta {{ tag }} a fost eliminată',
'activity.document.user.name': 'de {{ name }}',
'activity.load-more': 'Încarcă mai multe',
'activity.no-more-activities': 'Nu mai sunt activități pentru acest document',
// Tags
'tags.no-tags.title': 'Încă nu există etichete',
'tags.no-tags.description': 'Această organizație nu are încă etichete. Etichetele sunt folosite pentru a clasifica documentele. Poți adăuga etichete la documente pentru a le găsi și organiza mai ușor.',
'tags.no-tags.create-tag': 'Creează eticheta',
'tags.title': 'Etichete documente',
'tags.description': 'Etichetele sunt folosite pentru a clasifica documentele. Poți adăuga etichete la documente pentru a le găsi și organiza mai ușor.',
'tags.create': 'Creează eticheta',
'tags.update': 'Actualizează eticheta',
'tags.delete': 'Șterge eticheta',
'tags.delete.confirm.title': 'Șterge eticheta',
'tags.delete.confirm.message': 'Ești sigur că vrei să ștergi aceasta eticheta? Stergerea unei etichete o va elimina din toate documentele.',
'tags.delete.confirm.confirm-button': 'Șterge',
'tags.delete.confirm.cancel-button': 'Anulează',
'tags.delete.success': 'Eticheta a fost ștearsă cu succes',
'tags.create.success': 'Eticheta "{{ name }}" a fost creată cu succes.',
'tags.update.success': 'Eticheta "{{ name }}" a fost actualizată cu succes.',
'tags.form.name.label': 'Nume',
'tags.form.name.placeholder': 'Ex. Contracte',
'tags.form.name.required': 'Te rugăm să introduci un nume pentru etichetă',
'tags.form.name.max-length': 'Numele etichetei trebuie să aibă mai puțin de 64 de caractere',
'tags.form.color.label': 'Culoare',
'tags.form.color.required': 'Te rugăm să introduci o culoare',
'tags.form.color.invalid': 'Culoarea hex este formatată greșit.',
'tags.form.description.label': 'Descriere',
'tags.form.description.optional': '(optional)',
'tags.form.description.placeholder': 'Ex. Toate contractele semnate de companie',
'tags.form.description.max-length': 'Descrierea trebuie să aibă mai puțin de 256 de caractere',
'tags.form.no-description': 'Nicio descriere',
'tags.table.headers.tag': 'Etichetă',
'tags.table.headers.description': 'Descriere',
'tags.table.headers.documents': 'Documente',
'tags.table.headers.created': 'Creat la',
'tags.table.headers.actions': 'Acțiuni',
// Tagging rules
'tagging-rules.field.name': 'nume document',
'tagging-rules.field.content': 'conținut document',
'tagging-rules.operator.equals': 'egal cu',
'tagging-rules.operator.not-equals': 'nu este egal cu',
'tagging-rules.operator.contains': 'conține',
'tagging-rules.operator.not-contains': 'nu conține',
'tagging-rules.operator.starts-with': 'începe cu',
'tagging-rules.operator.ends-with': 'se termină cu',
'tagging-rules.list.title': 'Reguli de etichetare',
'tagging-rules.list.description': 'Gestionează regulile de etichetare ale organizației pentru a eticheta automat documentele pe baza unor condiții definite.',
'tagging-rules.list.demo-warning': 'Notă: Deoarece acesta este un mediu demonstrativ (fără server), regulile de etichetare nu vor fi aplicate documentelor nou adăugate.',
'tagging-rules.list.no-tagging-rules.title': 'Nicio regulă de etichetare',
'tagging-rules.list.no-tagging-rules.description': 'Creează o regulă de etichetare pentru a eticheta automat documentele adăugate pe baza unor condiții definite.',
'tagging-rules.list.no-tagging-rules.create-tagging-rule': 'Creează regula de etichetare',
'tagging-rules.list.card.no-conditions': 'Nicio condiție',
'tagging-rules.list.card.one-condition': 'O condiție',
'tagging-rules.list.card.conditions': '{{ count }} condiții',
'tagging-rules.list.card.delete': 'Șterge regula',
'tagging-rules.list.card.edit': 'Editează regula',
'tagging-rules.create.title': 'Creează regula de etichetare',
'tagging-rules.create.success': 'Regula de etichetare a fost creată cu succes',
'tagging-rules.create.error': 'Nu s-a putut crea regula de etichetare',
'tagging-rules.create.submit': 'Creează regula',
'tagging-rules.form.name.label': 'Nume',
'tagging-rules.form.name.placeholder': 'Exemplu: Etichetează facturile',
'tagging-rules.form.name.min-length': 'Te rugăm să introduci numele regulii',
'tagging-rules.form.name.max-length': 'Numele trebuie să aibă mai puțin de 64 de caractere',
'tagging-rules.form.description.label': 'Descriere',
'tagging-rules.form.description.placeholder': 'Exemplu: Etichetează documentele cu \'factură\' în nume',
'tagging-rules.form.description.max-length': 'Descrierea trebuie să aibă mai puțin de 256 de caractere',
'tagging-rules.form.conditions.label': 'Condiții',
'tagging-rules.form.conditions.description': 'Definește condițiile care trebuie îndeplinite pentru ca regula să se aplice. Toate condițiile trebuie îndeplinite pentru ca regula să se aplice.',
'tagging-rules.form.conditions.add-condition': 'Adaugă condiție',
'tagging-rules.form.conditions.no-conditions.title': 'Nicio condiție',
'tagging-rules.form.conditions.no-conditions.description': 'Nu ai adăugat nicio condiție acestei reguli. Această regula va aplica etichetele sale tuturor documentelor.',
'tagging-rules.form.conditions.no-conditions.confirm': 'Aplică regula fara condiții',
'tagging-rules.form.conditions.no-conditions.cancel': 'Anulează',
'tagging-rules.form.conditions.value.placeholder': 'Exemplu: factură',
'tagging-rules.form.conditions.value.min-length': 'Te rugăm să introduci o valoare pentru condiție',
'tagging-rules.form.tags.label': 'Etichete',
'tagging-rules.form.tags.description': 'Selectează etichetele de aplicat documentelor adăugate care corespund condițiilor',
'tagging-rules.form.tags.min-length': 'Este necesară cel puțin o etichetă de aplicat',
'tagging-rules.form.tags.add-tag': 'Creează eticheta',
'tagging-rules.form.submit': 'Creează regula',
'tagging-rules.update.title': 'Actualizează regula de etichetare',
'tagging-rules.update.error': 'Nu s-a putut actualiza regula de etichetare',
'tagging-rules.update.submit': 'Actualizează regula',
'tagging-rules.update.cancel': 'Anulează',
// Intake emails
'intake-emails.title': 'E-mailuri de primire',
'intake-emails.description': 'Adresele de e-mail de primire sunt folosite pentru a introduce automat email-uri în Papra. Doar redirecționează e-mailuri către adresa de primire, iar fișierele atașate vor fi adăugate automat în documentele organizației tale.',
'intake-emails.disabled.title': 'Email-urile de primire sunt dezactivate',
'intake-emails.disabled.description': 'Email-urile de primire sunt dezactivate pe aceasta instanță. Te rugăm să contactezi administratorul pentru a le activa. Consultă {{ documentation }} pentru mai multe informații.',
'intake-emails.disabled.documentation': 'documentația',
'intake-emails.info': 'Vor fi procesate numai e-mailurile de primire activate de la originile permise. Poți activa sau dezactiva un e-mail de primire în orice moment.',
'intake-emails.empty.title': 'Niciun e-mail de primire',
'intake-emails.empty.description': 'Generează o adresă de primire pentru a primi cu ușurință fișiere atașate din e-mail.',
'intake-emails.empty.generate': 'Generează e-mail de primire',
'intake-emails.count': '{{ count }} email{{ plural }} de primire pentru această organizație',
'intake-emails.new': 'E-mail nou de primire',
'intake-emails.disabled-label': '(Dezactivat)',
'intake-emails.no-origins': 'Nicio origine de e-mail permisă',
'intake-emails.allowed-origins': 'Permis de la {{ count }} adrese{{ plural }}',
'intake-emails.actions.enable': 'Activează',
'intake-emails.actions.disable': 'Dezactivează',
'intake-emails.actions.manage-origins': 'Gestionează adresele de origine',
'intake-emails.actions.delete': 'Șterge',
'intake-emails.delete.confirm.title': 'Ștergi email-ul de primire?',
'intake-emails.delete.confirm.message': 'Ești sigur că vrei să ștergi acest e-mail de primire? Această acțiune nu poate fi anulată.',
'intake-emails.delete.confirm.confirm-button': 'Șterge email-ul de primire',
'intake-emails.delete.confirm.cancel-button': 'Anulează',
'intake-emails.delete.success': 'E-mail de primire șters',
'intake-emails.create.success': 'E-mail de primire creat',
'intake-emails.update.success.enabled': 'E-mail de primire activat',
'intake-emails.update.success.disabled': 'E-mail de primire dezactivat',
'intake-emails.allowed-origins.title': 'Origini permise',
'intake-emails.allowed-origins.description': 'Doar email-urile trimise la {{ e-mail }} de la aceste origini vor fi procesate. Dacă nu sunt specificate origini, toate email-urile vor fi ignorate.',
'intake-emails.allowed-origins.add.label': 'Adaugă adresa de e-mail de origine permisă',
'intake-emails.allowed-origins.add.placeholder': 'Ex. ada@papra.app',
'intake-emails.allowed-origins.add.button': 'Adaugă',
'intake-emails.allowed-origins.add.error.exists': 'Acest e-mail este deja în originile permise pentru acest e-mail de primire',
// API keys
'api-keys.permissions.documents.title': 'Documente',
'api-keys.permissions.documents.documents:create': 'Creează documente',
'api-keys.permissions.documents.documents:read': 'Citește documente',
'api-keys.permissions.documents.documents:update': 'Actualizează documente',
'api-keys.permissions.documents.documents:delete': 'Șterge documente',
'api-keys.permissions.tags.title': 'Etichete',
'api-keys.permissions.tags.tags:create': 'Creează etichete',
'api-keys.permissions.tags.tags:read': 'Citește etichete',
'api-keys.permissions.tags.tags:update': 'Actualizează etichete',
'api-keys.permissions.tags.tags:delete': 'Șterge etichete',
'api-keys.create.title': 'Creează cheie API',
'api-keys.create.description': 'Creează o nouă cheie API pentru a accesa API-ul Papra.',
'api-keys.create.success': 'Cheia API a fost creată cu succes.',
'api-keys.create.back': 'Înapoi la cheile API',
'api-keys.create.form.name.label': 'Nume',
'api-keys.create.form.name.placeholder': 'Exemplu: Cheia mea API',
'api-keys.create.form.name.required': 'Te rugăm să introduci un nume pentru cheia API',
'api-keys.create.form.permissions.label': 'Permisiuni',
'api-keys.create.form.permissions.required': 'Te rugăm să selectezi cel puțin o permisiune',
'api-keys.create.form.submit': 'Creează cheie API',
'api-keys.create.created.title': 'Cheie API creată',
'api-keys.create.created.description': 'Cheia API a fost creată cu succes. Salveaz-o într-un loc sigur, deoarece nu va fi afișată din nou.',
'api-keys.list.title': 'Chei API',
'api-keys.list.description': 'Gestionează-ți cheile API aici.',
'api-keys.list.create': 'Creează cheie API',
'api-keys.list.empty.title': 'Nicio cheie API',
'api-keys.list.empty.description': 'Creează o cheie API pentru a accesa API-ul Papra.',
'api-keys.list.card.last-used': 'Ultima utilizare',
'api-keys.list.card.never': 'Niciodată',
'api-keys.list.card.created': 'Creat la',
'api-keys.delete.success': 'Cheia API a fost ștearsă cu succes',
'api-keys.delete.confirm.title': 'Șterge cheia API',
'api-keys.delete.confirm.message': 'Ești sigur ca vrei să ștergi aceasta cheie API? Această acțiune nu poate fi anulată.',
'api-keys.delete.confirm.confirm-button': 'Șterge',
'api-keys.delete.confirm.cancel-button': 'Anulează',
// Webhooks
'webhooks.list.title': 'Webhook-uri',
'webhooks.list.description': 'Gestionează webhook-urile organizației tale',
'webhooks.list.empty.title': 'Niciun webhook',
'webhooks.list.empty.description': 'Creează primul webhook pentru a începe să primesti evenimente',
'webhooks.list.create': 'Creează webhook',
'webhooks.list.card.last-triggered': 'Ultima declanșare',
'webhooks.list.card.never': 'Niciodată',
'webhooks.list.card.created': 'Creat la',
'webhooks.create.title': 'Creează webhook',
'webhooks.create.description': 'Creează un nou webhook pentru a primi evenimente',
'webhooks.create.success': 'Webhook creat cu succes',
'webhooks.create.back': 'Înapoi',
'webhooks.create.form.submit': 'Creează webhook',
'webhooks.create.form.name.label': 'Nume webhook',
'webhooks.create.form.name.placeholder': 'Introdu numele webhook-ului',
'webhooks.create.form.name.required': 'Numele este obligatoriu',
'webhooks.create.form.url.label': 'URL webhook',
'webhooks.create.form.url.placeholder': 'Introdu URL-ul webhook-ului',
'webhooks.create.form.url.required': 'URL-ul este obligatoriu',
'webhooks.create.form.url.invalid': 'URL-ul este invalid',
'webhooks.create.form.secret.label': 'Secret',
'webhooks.create.form.secret.placeholder': 'Introdu secretul webhook-ului',
'webhooks.create.form.events.label': 'Evenimente',
'webhooks.create.form.events.required': 'Este necesar cel puțin un eveniment',
'webhooks.update.title': 'Editează webhook',
'webhooks.update.description': 'Actualizează detaliile webhook-ului',
'webhooks.update.success': 'Webhook actualizat cu succes',
'webhooks.update.submit': 'Actualizează webhook',
'webhooks.update.cancel': 'Anulează',
'webhooks.update.form.secret.placeholder': 'Introdu un secret nou',
'webhooks.update.form.secret.placeholder-redacted': '[Secret protejat]',
'webhooks.update.form.rotate-secret.button': 'Rotește secretul',
'webhooks.delete.success': 'Webhook șters cu succes',
'webhooks.delete.confirm.title': 'Șterge webhook',
'webhooks.delete.confirm.message': 'Ești sigur ca vrei să ștergi acest webhook?',
'webhooks.delete.confirm.confirm-button': 'Șterge',
'webhooks.delete.confirm.cancel-button': 'Anulează',
'webhooks.events.documents.title': 'Evenimente documente',
'webhooks.events.documents.document:created.description': 'Document creat',
'webhooks.events.documents.document:deleted.description': 'Document șters',
'webhooks.events.documents.document:updated.description': 'Document actualizat',
'webhooks.events.documents.document:tag:added.description': 'O etichetă a fost adăugată la un document',
'webhooks.events.documents.document:tag:removed.description': 'O etichetă a fost eliminată dintr-un document',
// Navigation
'layout.menu.home': 'Acasă',
'layout.menu.documents': 'Documente',
'layout.menu.tags': 'Etichete',
'layout.menu.tagging-rules': 'Reguli de etichetare',
'layout.menu.deleted-documents': 'Documente șterse',
'layout.menu.organization-settings': 'Setări organizație',
'layout.menu.api-keys': 'Chei API',
'layout.menu.settings': 'Setări',
'layout.menu.account': 'Cont',
'layout.menu.general-settings': 'Setări generale',
'layout.menu.intake-emails': 'Email-uri de primire',
'layout.menu.webhooks': 'Webhook-uri',
'layout.menu.members': 'Membri',
'layout.menu.invitations': 'Invitații',
'layout.theme.light': 'Mod luminos',
'layout.theme.dark': 'Mod intunecat',
'layout.theme.system': 'Modul sistemului',
'layout.search.placeholder': 'Căutare...',
'layout.menu.import-document': 'Importă un document',
'user-menu.account-settings': 'Setări cont',
'user-menu.api-keys': 'Chei API',
'user-menu.invitations': 'Invitații',
'user-menu.language': 'Limbă',
'user-menu.logout': 'Deconectare',
// Command palette
'command-palette.search.placeholder': 'Caută comenzi sau documente',
'command-palette.no-results': 'Niciun rezultat gasit',
'command-palette.sections.documents': 'Documente',
'command-palette.sections.theme': 'Temă',
// API errors
'api-errors.document.already_exists': 'Documentul există deja',
'api-errors.document.file_too_big': 'Fișierul documentului este prea mare',
'api-errors.intake_email.limit_reached': 'Numărul maxim de email-uri de primire pentru această organizație a fost atins. Te rugăm să-ți îmbunătățești planul pentru a crea mai multe email-uri de primire.',
'api-errors.user.max_organization_count_reached': 'Ai atins numărul maxim de organizații pe care le poți crea. Dacă ai nevoie să creezi mai multe, te rugăm să contactezi asistența.',
'api-errors.default': 'A apărut o eroare la procesarea cererii.',
'api-errors.organization.invitation_already_exists': 'O invitatie pentru acest e-mail există deja în această organizație.',
'api-errors.user.already_in_organization': 'Acest utilizator este deja în această organizație.',
'api-errors.user.organization_invitation_limit_reached': 'Numărul maxim de invitații a fost atins pentru astazi. Te rugăm să încerci din nou mâine.',
'api-errors.demo.not_available': 'Această functie nu este disponibila în demo',
'api-errors.tags.already_exists': 'O etichetă cu acest nume există deja pentru aceasta organizație',
'api-errors.internal.error': 'A apărut o eroare la procesarea cererii. Te rugăm să încerci din nou.',
'api-errors.auth.invalid_origin': 'Origine invalidă a aplicației. Dacă hospedezi Papra, asigură-te că variabila de mediu APP_BASE_URL corespunde URL-ului actual. Pentru mai multe detalii, consulta https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
// Not found
'not-found.title': '404 - Nu a fost gasit',
'not-found.description': 'Ne pare rău, pagina pe care o cauți nu pare să existe. Te rugăm să verifici URL-ul și să încerci din nou.',
'not-found.back-to-home': 'Înapoi la pagina principală',
// Demo
'demo.popup.description': 'Acesta este un mediu demonstrativ, toate datele sunt salvate in stocarea locală a browserului.',
'demo.popup.discord': 'Alătură-te {{ discordLink }} pentru a obtine asistență, a propune funcționalități sau doar pentru a discuta.',
'demo.popup.discord-link-label': 'serverului de Discord',
'demo.popup.reset': 'Resetează datele demo',
'demo.popup.hide': 'Ascunde',
// Color picker
'color-picker.hue': 'Nuanță',
'color-picker.saturation': 'Saturație',
'color-picker.lightness': 'Luminozitate',
'color-picker.select-color': 'Selectează culoarea',
'color-picker.select-a-color': 'Selectează o culoare',
};

View File

@@ -0,0 +1,28 @@
// export const API_KEY_PERMISSIONS = {
// documents: {
// create: 'documents:create',
// },
// } as const;
export const API_KEY_PERMISSIONS = [
{
section: 'documents',
permissions: [
'documents:create',
'documents:read',
'documents:update',
'documents:delete',
],
},
{
section: 'tags',
permissions: [
'tags:create',
'tags:read',
'tags:update',
'tags:delete',
],
},
] as const;
export const API_KEY_PERMISSIONS_LIST = API_KEY_PERMISSIONS.flatMap(permission => permission.permissions);

View File

@@ -0,0 +1,56 @@
import type { ApiKey } from './api-keys.types';
import { apiClient } from '../shared/http/api-client';
import { coerceDates } from '../shared/http/http-client.models';
export async function createApiKey({
name,
permissions,
organizationIds,
allOrganizations,
expiresAt,
}: {
name: string;
permissions: string[];
organizationIds: string[];
allOrganizations: boolean;
expiresAt?: Date;
}) {
const { apiKey, token } = await apiClient<{
apiKey: ApiKey;
token: string;
}>({
path: '/api/api-keys',
method: 'POST',
body: {
name,
permissions,
organizationIds,
allOrganizations,
expiresAt,
},
});
return {
apiKey: coerceDates(apiKey),
token,
};
}
export async function fetchApiKeys() {
const { apiKeys } = await apiClient<{
apiKeys: ApiKey[];
}>({
path: '/api/api-keys',
});
return {
apiKeys: apiKeys.map(coerceDates),
};
}
export async function deleteApiKey({ apiKeyId }: { apiKeyId: string }) {
await apiClient({
path: `/api/api-keys/${apiKeyId}`,
method: 'DELETE',
});
}

View File

@@ -0,0 +1,12 @@
export type ApiKey = {
id: string;
name: string;
permissions: string[];
organizationIds: string[];
allOrganizations: boolean;
expiresAt?: Date;
prefix: string;
lastUsedAt?: Date;
createdAt: Date;
updatedAt: Date;
};

View File

@@ -0,0 +1,75 @@
import type { Component } from 'solid-js';
import type { TranslationKeys } from '@/modules/i18n/locales.types';
import { createSignal, For } from 'solid-js';
import { useI18n } from '@/modules/i18n/i18n.provider';
import { Checkbox, CheckboxControl, CheckboxLabel } from '@/modules/ui/components/checkbox';
import { API_KEY_PERMISSIONS } from '../api-keys.constants';
export const ApiKeyPermissionsPicker: Component<{ permissions: string[]; onChange: (permissions: string[]) => void }> = (props) => {
const [permissions, setPermissions] = createSignal<string[]>(props.permissions);
const { t } = useI18n();
const getPermissionsSections = () => {
return API_KEY_PERMISSIONS.map(section => ({
...section,
title: t(`api-keys.permissions.${section.section}.title`),
permissions: section.permissions.map((permission) => {
const [prefix, suffix] = permission.split(':');
return {
name: permission,
prefix,
suffix,
description: t(`api-keys.permissions.${section.section}.${permission}` as TranslationKeys),
};
}),
}));
};
const isPermissionSelected = (permission: string) => {
return permissions().includes(permission);
};
const togglePermission = (permission: string) => {
setPermissions((prev) => {
if (prev.includes(permission)) {
return prev.filter(p => p !== permission);
}
return [...prev, permission];
});
props.onChange(permissions());
};
return (
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<For each={getPermissionsSections()}>
{section => (
<div>
<p class="text-muted-foreground text-xs">{section.title}</p>
<div class="pl-4 flex flex-col gap-4 mt-4">
<For each={section.permissions}>
{permission => (
<Checkbox
class="flex items-center gap-2"
checked={isPermissionSelected(permission.name)}
onChange={() => togglePermission(permission.name)}
>
<CheckboxControl />
<div class="flex flex-col gap-1">
<CheckboxLabel class="text-sm leading-none">
{permission.description}
</CheckboxLabel>
</div>
</Checkbox>
)}
</For>
</div>
</div>
)}
</For>
</div>
);
};

View File

@@ -0,0 +1,140 @@
import type { Component } from 'solid-js';
import type { ApiKey } from '../api-keys.types';
import { A } from '@solidjs/router';
import { useMutation, useQuery } from '@tanstack/solid-query';
import { format } from 'date-fns';
import { For, Match, Show, Suspense, Switch } from 'solid-js';
import { useI18n } from '@/modules/i18n/i18n.provider';
import { useConfirmModal } from '@/modules/shared/confirm';
import { queryClient } from '@/modules/shared/query/query-client';
import { Button } from '@/modules/ui/components/button';
import { EmptyState } from '@/modules/ui/components/empty';
import { createToast } from '@/modules/ui/components/sonner';
import { deleteApiKey, fetchApiKeys } from '../api-keys.services';
export const ApiKeyCard: Component<{ apiKey: ApiKey }> = ({ apiKey }) => {
const { t } = useI18n();
const { confirm } = useConfirmModal();
const deleteApiKeyMutation = useMutation(() => ({
mutationFn: deleteApiKey,
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['api-keys'] });
createToast({
message: t('api-keys.delete.success'),
});
},
}));
const handleDelete = async () => {
const confirmed = await confirm({
title: t('api-keys.delete.confirm.title'),
message: t('api-keys.delete.confirm.message'),
confirmButton: {
text: t('api-keys.delete.confirm.confirm-button'),
variant: 'destructive',
},
cancelButton: {
text: t('api-keys.delete.confirm.cancel-button'),
},
});
if (!confirmed) {
return;
}
deleteApiKeyMutation.mutate({ apiKeyId: apiKey.id });
};
return (
<div class="bg-card rounded-lg border p-4 flex items-center gap-4">
<div class="rounded-lg bg-muted p-2">
<div class="i-tabler-key text-muted-foreground size-5 text-primary" />
</div>
<div class="flex-1">
<h2 class="text-sm font-medium leading-tight">{apiKey.name}</h2>
<p class="text-muted-foreground text-xs font-mono">{`${apiKey.prefix}...`}</p>
</div>
<div>
<p class="text-muted-foreground text-xs">
{t('api-keys.list.card.last-used')}
{' '}
{apiKey.lastUsedAt ? format(apiKey.lastUsedAt, 'MMM d, yyyy') : t('api-keys.list.card.never')}
</p>
<p class="text-muted-foreground text-xs">
{t('api-keys.list.card.created')}
{' '}
{format(apiKey.createdAt, 'MMM d, yyyy')}
</p>
</div>
<div class="flex items-center gap-2">
<Button
variant="outline"
size="icon"
isLoading={deleteApiKeyMutation.isPending}
onClick={handleDelete}
>
<div class="i-tabler-trash text-muted-foreground size-4" />
</Button>
</div>
</div>
);
};
export const ApiKeysPage: Component = () => {
const { t } = useI18n();
const query = useQuery(() => ({
queryKey: ['api-keys'],
queryFn: () => fetchApiKeys(),
}));
return (
<div class="p-6 mt-12 pb-32 mx-auto max-w-xl w-full">
<div class="border-b pb-4 flex items-center justify-between">
<div>
<h1 class="text-2xl font-semibold mb-1">{t('api-keys.list.title')}</h1>
<p class="text-muted-foreground">{t('api-keys.list.description')}</p>
</div>
<div>
<Show when={query.data?.apiKeys?.length}>
<Button as={A} href="/api-keys/create" class="gap-2">
<div class="i-tabler-plus size-4" />
{t('api-keys.list.create')}
</Button>
</Show>
</div>
</div>
<Suspense>
<Switch>
<Match when={query.data?.apiKeys?.length === 0}>
<EmptyState
title={t('api-keys.list.empty.title')}
description={t('api-keys.list.empty.description')}
icon="i-tabler-key"
cta={(
<Button as={A} href="/api-keys/create" class="gap-2">
<div class="i-tabler-plus size-4" />
{t('api-keys.list.create')}
</Button>
)}
/>
</Match>
<Match when={query.data?.apiKeys?.length}>
<div class="mt-6 flex flex-col gap-2">
<For each={query.data?.apiKeys}>
{apiKey => (
<ApiKeyCard apiKey={apiKey} />
)}
</For>
</div>
</Match>
</Switch>
</Suspense>
</div>
);
};

View File

@@ -0,0 +1,118 @@
import type { Component } from 'solid-js';
import { setValue } from '@modular-forms/solid';
import { A } from '@solidjs/router';
import { createSignal, Show } from 'solid-js';
import * as v from 'valibot';
import { useI18n } from '@/modules/i18n/i18n.provider';
import { createForm } from '@/modules/shared/form/form';
import { queryClient } from '@/modules/shared/query/query-client';
import { CopyButton } from '@/modules/shared/utils/copy';
import { Button } from '@/modules/ui/components/button';
import { createToast } from '@/modules/ui/components/sonner';
import { TextField, TextFieldLabel, TextFieldRoot } from '@/modules/ui/components/textfield';
import { API_KEY_PERMISSIONS_LIST } from '../api-keys.constants';
import { createApiKey } from '../api-keys.services';
import { ApiKeyPermissionsPicker } from '../components/api-key-permissions-picker.component';
export const CreateApiKeyPage: Component = () => {
const { t } = useI18n();
const [getToken, setToken] = createSignal<string | null>(null);
const { form, Form, Field } = createForm({
onSubmit: async ({ name, permissions }) => {
const { token } = await createApiKey({
name,
permissions,
organizationIds: [],
allOrganizations: false,
});
await queryClient.invalidateQueries({ queryKey: ['api-keys'] });
setToken(token);
createToast({
type: 'success',
message: t('api-keys.create.success'),
});
},
schema: v.object({
name: v.pipe(
v.string(),
v.nonEmpty(t('api-keys.create.form.name.required')),
),
permissions: v.pipe(
v.array(v.picklist(API_KEY_PERMISSIONS_LIST as string[])),
v.nonEmpty(t('api-keys.create.form.permissions.required')),
),
}),
initialValues: {
name: '',
permissions: API_KEY_PERMISSIONS_LIST,
},
});
return (
<div class="p-6 mt-12 pb-32 mx-auto max-w-xl w-full">
<div class="border-b pb-4 mb-6">
<h1 class="text-2xl font-bold">{t('api-keys.create.title')}</h1>
<p class="text-sm text-muted-foreground">{t('api-keys.create.description')}</p>
</div>
<Show when={getToken()}>
<div class="bg-card border p-6 rounded-md mt-6">
<h2 class="text-lg font-semibold mb-2">{t('api-keys.create.created.title')}</h2>
<p class="text-sm text-muted-foreground mb-4">{t('api-keys.create.created.description')}</p>
<TextFieldRoot class="flex items-center gap-2 space-y-0">
<TextField type="text" placeholder={t('api-keys.create.form.name.placeholder')} value={getToken() ?? ''} />
<CopyButton text={getToken() ?? ''} />
</TextFieldRoot>
</div>
<div class="flex justify-end mt-6">
<Button type="button" variant="secondary" as={A} href="/api-keys">
{t('api-keys.create.back')}
</Button>
</div>
</Show>
<Show when={!getToken()}>
<Form>
<Field name="name">
{(field, inputProps) => (
<TextFieldRoot class="flex flex-col mb-6">
<TextFieldLabel for="name">{t('api-keys.create.form.name.label')}</TextFieldLabel>
<TextField type="text" id="name" placeholder={t('api-keys.create.form.name.placeholder')} {...inputProps} autoFocus value={field.value} aria-invalid={Boolean(field.error)} />
{field.error && <div class="text-red-500 text-sm">{field.error}</div>}
</TextFieldRoot>
)}
</Field>
<Field name="permissions" type="string[]">
{field => (
<div>
<p class="text-sm font-bold">{t('api-keys.create.form.permissions.label')}</p>
<div class="p-6 pb-8 border rounded-md mt-2">
<ApiKeyPermissionsPicker permissions={field.value ?? []} onChange={permissions => setValue(form, 'permissions', permissions)} />
</div>
{field.error && <div class="text-red-500 text-sm">{field.error}</div>}
</div>
)}
</Field>
<div class="flex justify-end mt-6">
<Button type="submit" isLoading={form.submitting}>
{t('api-keys.create.form.submit')}
</Button>
</div>
</Form>
</Show>
</div>
);
};

View File

@@ -0,0 +1,12 @@
export const ssoProviders = [
{
key: 'google',
name: 'Google',
icon: 'i-tabler-brand-google-filled',
},
{
key: 'github',
name: 'GitHub',
icon: 'i-tabler-brand-github',
},
] as const;

View File

@@ -0,0 +1,33 @@
import type { createAuthClient } from './auth.services';
export function createDemoAuthClient() {
const baseClient = {
useSession: () => () => ({
isPending: false,
data: {
user: {
id: '1',
email: 'test@test.com',
},
},
}),
signIn: {
email: () => Promise.resolve({}),
social: () => Promise.resolve({}),
},
signOut: () => Promise.resolve({}),
signUp: () => Promise.resolve({}),
forgetPassword: () => Promise.resolve({}),
resetPassword: () => Promise.resolve({}),
sendVerificationEmail: () => Promise.resolve({}),
};
return new Proxy(baseClient, {
get: (target, prop) => {
if (!(prop in target)) {
console.warn(`Accessing undefined property "${String(prop)}" in demo auth client`);
}
return target[prop as keyof typeof target];
},
}) as unknown as ReturnType<typeof createAuthClient>;
}

View File

@@ -1,12 +1,23 @@
export {
isAccessTokenExpired,
};
import type { Config } from '../config/config';
import type { SsoProviderConfig } from './auth.types';
import { get } from 'lodash-es';
import { ssoProviders } from './auth.constants';
function isAccessTokenExpired({ accessToken }: { accessToken: string }) {
try {
const token = JSON.parse(atob(accessToken.split('.')[1]));
return token.exp < Date.now() / 1000;
} catch {
return true;
}
export function isAuthErrorWithCode({ error, code }: { error: unknown; code: string }) {
return get(error, 'code') === code;
}
export const isEmailVerificationRequiredError = ({ error }: { error: unknown }) => isAuthErrorWithCode({ error, code: 'EMAIL_NOT_VERIFIED' });
export function getEnabledSsoProviderConfigs({ config }: { config: Config }): SsoProviderConfig[] {
const enabledSsoProviders: SsoProviderConfig[] = [
...ssoProviders.filter(({ key }) => get(config, `auth.providers.${key}.isEnabled`)),
...config.auth.providers.customs.map(({ providerId, providerName, providerIconUrl }) => ({
key: providerId,
name: providerName,
icon: providerIconUrl ?? 'i-tabler-login-2',
})),
];
return enabledSsoProviders;
}

View File

@@ -1,58 +1,69 @@
import { config } from '../config/config';
import { apiClient } from '../shared/http/api-client';
import { httpClient } from '../shared/http/http-client';
import type { Config } from '../config/config';
export { login };
import type { SsoProviderConfig } from './auth.types';
import { genericOAuthClient } from 'better-auth/client/plugins';
import { createAuthClient as createBetterAuthClient } from 'better-auth/solid';
import { buildTimeConfig } from '../config/config';
import { trackingServices } from '../tracking/tracking.services';
import { createDemoAuthClient } from './auth.demo.services';
async function login({ email, password }: { email: string; password: string }) {
const { accessToken } = await apiClient<{ accessToken: string }>({
path: 'api/auth/login',
method: 'POST',
body: {
email,
password,
export function createAuthClient() {
const client = createBetterAuthClient({
baseURL: buildTimeConfig.baseApiUrl,
plugins: [
genericOAuthClient(),
],
});
return {
// we can't spread the client because it is a proxy object
signIn: client.signIn,
signUp: client.signUp,
forgetPassword: client.forgetPassword,
resetPassword: client.resetPassword,
sendVerificationEmail: client.sendVerificationEmail,
useSession: client.useSession,
signOut: async () => {
trackingServices.capture({ event: 'User logged out' });
const result = await client.signOut();
trackingServices.reset();
return result;
},
});
return { accessToken };
};
}
export async function requestAuthTokensRefresh() {
// Do not use apiClient here top prevent loops since requestAuthTokensRefresh might be called from apiClient
const { accessToken } = await httpClient<{ accessToken: string }>({
baseUrl: config.baseApiUrl,
url: '/api/auth/refresh',
method: 'POST',
export const {
useSession,
signIn,
signUp,
signOut,
forgetPassword,
resetPassword,
sendVerificationEmail,
} = buildTimeConfig.isDemoMode
? createDemoAuthClient()
: createAuthClient();
// Required to send the refresh token
credentials: 'include',
});
export async function authWithProvider({ provider, config }: { provider: SsoProviderConfig; config: Config }) {
const isCustomProvider = config.auth.providers.customs.some(({ providerId }) => providerId === provider.key);
return { accessToken };
}
export async function logout() {
await apiClient({
path: '/api/auth/logout',
method: 'POST',
credentials: 'include',
});
}
export async function requestMagicLink({ email }: { email: string }) {
await apiClient({
path: '/api/auth/magic-link',
method: 'POST',
body: { email },
});
}
export async function verifyMagicLink({ token }: { token: string }) {
const { accessToken } = await apiClient<{ accessToken: string }>({
path: '/api/auth/magic-link/verification',
method: 'POST',
body: { token },
});
return { accessToken };
if (isCustomProvider) {
const { error } = await signIn.oauth2({
providerId: provider.key,
callbackURL: config.baseUrl,
});
if (error) {
throw error;
}
return;
}
const { error } = await signIn.social({ provider: provider.key as 'github' | 'google', callbackURL: config.baseUrl });
if (error) {
throw error;
}
}

View File

@@ -1,87 +0,0 @@
import { safely } from '@corentinth/chisels';
import { makePersisted } from '@solid-primitives/storage';
import { createRoot, createSignal } from 'solid-js';
import { createHook, createWaitForHook } from '../shared/hooks/hooks';
import { isAccessTokenExpired } from './auth.models';
import { logout, requestAuthTokensRefresh } from './auth.services';
export const authStore = createRoot(() => {
const [getAccessToken, setAccessTokenValue] = makePersisted(createSignal<string | null>(null), { name: 'papra_access_token', storage: localStorage });
const onAuthChangeHook = createHook<{ isAuthenticated: boolean }>();
const [getRedirectUrl, setRedirectUrl] = makePersisted(createSignal<string | null>(null), { name: 'papra_redirect_url', storage: localStorage });
const [getIsRefreshTokenInProgress, setIsRefreshTokenInProgress] = createSignal(false);
const [getMagicLinkRequestEmail, setMagicLinkRequestEmail] = createSignal<string | undefined>(undefined);
const waitForRefreshTokenHook = createWaitForHook();
const refreshToken = async () => {
setIsRefreshTokenInProgress(true);
const { accessToken } = await requestAuthTokensRefresh();
setAccessTokenValue(accessToken);
setIsRefreshTokenInProgress(false);
waitForRefreshTokenHook.trigger();
await onAuthChangeHook.trigger({ isAuthenticated: false });
};
const getIsAuthenticated = async () => {
const accessToken = getAccessToken();
if (!accessToken) {
return false;
}
const isExpired = isAccessTokenExpired({ accessToken });
if (isExpired && !getIsRefreshTokenInProgress()) {
await safely(refreshToken());
}
return Boolean(getAccessToken());
};
const setAccessToken = async ({ accessToken }: { accessToken: string }) => {
setAccessTokenValue(accessToken);
await onAuthChangeHook.trigger({ isAuthenticated: true });
};
const clearAccessToken = async () => {
setAccessTokenValue(null);
await onAuthChangeHook.trigger({ isAuthenticated: false });
};
return {
setAccessToken,
getAccessToken,
clearAccessToken,
getIsAuthenticated,
getRedirectUrl,
setRedirectUrl,
getIsRefreshTokenInProgress,
setIsRefreshTokenInProgress,
getMagicLinkRequestEmail,
setMagicLinkRequestEmail,
async waitForRefreshTokenToBeRefreshed() {
if (!getIsRefreshTokenInProgress()) {
return;
}
return waitForRefreshTokenHook.waitFor();
},
refreshToken,
async logout() {
await safely(logout());
await clearAccessToken();
window.location.href = '/login';
},
onAuthChange: onAuthChangeHook.on,
};
});

View File

@@ -0,0 +1,4 @@
import type { ssoProviders } from './auth.constants';
export type SsoProviderKey = (typeof ssoProviders)[number]['key'] | string & {};
export type SsoProviderConfig = { key: SsoProviderKey; name: string; icon: string };

View File

@@ -0,0 +1,32 @@
import type { Component } from 'solid-js';
import { A } from '@solidjs/router';
import { useConfig } from '@/modules/config/config.provider';
import { useI18n } from '@/modules/i18n/i18n.provider';
import { createVitrineUrl } from '@/modules/shared/utils/urls';
import { Button } from '@/modules/ui/components/button';
export const AuthLegalLinks: Component = () => {
const { config } = useConfig();
const { te, t } = useI18n();
if (!config.auth.showLegalLinksOnAuthPage) {
return null;
}
return (
<p class="text-muted-foreground mt-2">
{te('auth.legal-links.description', {
terms: (
<Button variant="link" as={A} class="inline px-0" href={createVitrineUrl({ path: 'terms-of-service' })}>
{t('auth.legal-links.terms')}
</Button>
),
privacy: (
<Button variant="link" as={A} class="inline px-0" href={createVitrineUrl({ path: 'privacy' })}>
{t('auth.legal-links.privacy')}
</Button>
),
})}
</p>
);
};

View File

@@ -0,0 +1,17 @@
import type { Component } from 'solid-js';
import { useI18n } from '@/modules/i18n/i18n.provider';
export const NoAuthProviderWarning: Component = () => {
const { t } = useI18n();
return (
<div class="flex items-center justify-center h-full p-6 sm:pb-32">
<div class="max-w-sm w-full">
<h1 class="text-lg font-bold">{t('auth.no-auth-provider.title')}</h1>
<p class="text-muted-foreground mt-1 mb-4">
{t('auth.no-auth-provider.description')}
</p>
</div>
</div>
);
};

View File

@@ -1,3 +1,9 @@
import type { Component, ComponentProps } from 'solid-js';
import { splitProps } from 'solid-js';
import { useI18n } from '@/modules/i18n/i18n.provider';
import { cn } from '@/modules/shared/style/cn';
import { Button } from '@/modules/ui/components/button';
const providers = [
{
name: 'Gmail',
@@ -239,3 +245,21 @@ export function getEmailProvider({ email }: { email?: string }) {
return { provider };
}
export const OpenEmailProvider: Component<{ email?: string } & ComponentProps<typeof Button>> = (props) => {
const [local, rest] = splitProps(props, ['email', 'class']);
const { t } = useI18n();
const { provider } = getEmailProvider({ email: local.email });
if (!provider) {
return null;
}
return (
<Button as="a" href={provider.url} target="_blank" rel="noopener noreferrer" class={cn('w-full', local.class)} {...rest}>
<div class="i-tabler-external-link mr-2 size-4" />
{t('auth.email-provider.open', { provider: provider.name })}
</Button>
);
};

View File

@@ -0,0 +1,47 @@
import type { Component } from 'solid-js';
import { createSignal, Match, Switch } from 'solid-js';
import { useI18nApiErrors } from '@/modules/shared/http/composables/i18n-api-errors';
import { cn } from '@/modules/shared/style/cn';
import { Button } from '@/modules/ui/components/button';
export const SsoProviderButton: Component<{ name: string; icon?: string; onClick: () => Promise<void>; label: string }> = (props) => {
const [getIsLoading, setIsLoading] = createSignal(false);
const [getError, setError] = createSignal<string | undefined>(undefined);
const { getErrorMessage } = useI18nApiErrors();
const onClick = async () => {
setIsLoading(true);
try {
await props.onClick();
} catch (error) {
setError(getErrorMessage({ error }));
// reset loading only in catch as the auth via sso can take a while before the redirection happens
setIsLoading(false);
}
};
return (
<>
<Button variant="secondary" class="block w-full flex items-center justify-center gap-2" onClick={onClick} disabled={getIsLoading()}>
<Switch>
<Match when={getIsLoading()}>
<span class="i-tabler-loader-2 animate-spin" />
</Match>
<Match when={props.icon?.startsWith('i-')}>
<span class={cn(`size-4.5`, props.icon)} />
</Match>
<Match when={props.icon}>
<img src={props.icon} alt={props.name} class="size-4.5" />
</Match>
</Switch>
{props.label}
</Button>
{getError() && <p class="text-red-500">{getError()}</p>}
</>
);
};

View File

@@ -1,14 +1,15 @@
import { useCurrentUser } from '@/modules/users/composables/useCurrentUser';
import type { Component } from 'solid-js';
import { Navigate } from '@solidjs/router';
import { type Component, createResource, Suspense } from 'solid-js';
import { Suspense } from 'solid-js';
import { Dynamic } from 'solid-js/web';
import { match } from 'ts-pattern';
import { authStore } from '../auth.store';
import { useSession } from '../auth.services';
export function createProtectedPage({ authType, component }: { authType: 'public' | 'private' | 'public-only' | 'admin'; component: Component }) {
return () => {
const [getIsAuthenticated] = createResource(async () => await authStore.getIsAuthenticated());
const { user } = ['public', 'public-only'].includes(authType) ? {} : useCurrentUser();
const session = useSession();
const getIsAuthenticated = () => Boolean(session()?.data?.user);
return (
<Suspense>
@@ -16,12 +17,13 @@ export function createProtectedPage({ authType, component }: { authType: 'public
match({
authType,
isAuthenticated: getIsAuthenticated(),
isAdmin: user?.roles.includes('admin'),
// isAdmin: user?.roles.includes('admin'),
})
.with({ authType: 'private', isAuthenticated: false }, () => <Navigate href="/login" />)
.with({ authType: 'public-only', isAuthenticated: true }, () => <Navigate href="/" />)
.with({ authType: 'admin', isAuthenticated: false }, () => <Navigate href="/login" />)
.with({ authType: 'admin', isAuthenticated: true, isAdmin: false }, () => <Navigate href="/" />)
// .with({ authType: 'admin', isAuthenticated: false }, () => <Navigate href="/login" />)
// .with({ authType: 'admin', isAuthenticated: true, isAdmin: false }, () => <Navigate href="/" />)
.otherwise(() => <Dynamic component={component} />)
}
</Suspense>

Some files were not shown because too many files have changed in this diff Show More