Compare commits

...

11 Commits

Author SHA1 Message Date
Manuel Raynaud e7cbe24f3d 🔖(patch) release 4.8.4
Added

- 🚸(frontend) hint min char search users #2064

Changed

- 💄(frontend) improve comments highlights #1961
- ️(frontend) improve BoxButton a11y and native button semantics #2103
- ️(frontend) improve language picker accessibility #2069
- ️(frontend) add aria-hidden to decorative icons in dropdown menu #2093

Fixed

- 🐛(y-provider) destroy Y.Doc instances after each convert request #2129
- 🐛(backend) remove deleted sub documents in favorite_list endpoint #2083
2026-03-25 23:19:28 +01:00
Anthony LC acb20a0d26 🌐(i18n) update translated strings
Update translated files with new translations
2026-03-25 23:19:28 +01:00
Anthony LC cbe6a67704 🔧(y-provider) increase Node.js memory limit
By default, Node.js has a memory limit of
around 512MB, which can lead to out-of-memory
errors when processing large documents.
This commit increases the memory limit to
2GB for the y-provider server, allowing
it to handle larger documents without crashing.
2026-03-25 17:22:32 +01:00
Manuel Raynaud f91223fe4a 🔊(backend) add some log to trace conversion made on docs creation
We added logs on the conversion made when a doc is created.
2026-03-25 17:22:32 +01:00
Manuel Raynaud 330096eb47 🐛(backend) move lock table closer to the insert operation targeted
We want to lock the table just before the insert we want to protect is
made. In the case of the perform_create action in the Document viewset,
an http call is made after the lock and can take a very long time,
blocking for nothing the table.
2026-03-25 15:43:49 +01:00
Paul Vernin ff995c6cd9 🚨(backend) fix lint on test file
Signed-off-by: Paul Vernin <paul.vernin@gmail.com>
2026-03-25 15:14:13 +01:00
Paul Vernin 2e4a1b8ff9 📝(changelog) add fix to CHANGELOG.md
Signed-off-by: Paul Vernin <paul.vernin@gmail.com>
2026-03-25 15:14:09 +01:00
Paul Vernin 004d637c8b 🐛(backend) use ancestors_deleted_at to filter out deleted docs
Filter by ancestors_deleted_at__isnull=True instead of deleted_at__isnull=True
to be more accurate

Signed-off-by: Paul Vernin <paul.vernin@gmail.com>
2026-03-25 15:13:59 +01:00
Paul Vernin 8a0330a30f (backend) add favorite list test for sub-doc
Add test_api_document_favorite_list_with_deleted_child to verify favorite_list
endpoint does not include deleted sub documents

Signed-off-by: Paul Vernin <paul.vernin@gmail.com>
2026-03-25 15:13:47 +01:00
Paul Vernin 677392b89b 🐛(backend) Fix favorite_list result for deleted sub docs
filters out deleted documents from the favorite_list query

Signed-off-by: Paul Vernin <paul.vernin@gmail.com>
2026-03-25 15:13:36 +01:00
Cyril b8e1d12aea ️(frontend) add aria-hidden to decorative icons in dropdown menu
Mark decorative SVG icons with aria-hidden.
2026-03-25 14:15:48 +01:00
36 changed files with 2514 additions and 1366 deletions
+7 -1
View File
@@ -6,6 +6,8 @@ and this project adheres to
## [Unreleased] ## [Unreleased]
## [v4.8.4] - 2026-03-25
### Added ### Added
- 🚸(frontend) hint min char search users #2064 - 🚸(frontend) hint min char search users #2064
@@ -15,10 +17,13 @@ and this project adheres to
- 💄(frontend) improve comments highlights #1961 - 💄(frontend) improve comments highlights #1961
- ♿️(frontend) improve BoxButton a11y and native button semantics #2103 - ♿️(frontend) improve BoxButton a11y and native button semantics #2103
- ♿️(frontend) improve language picker accessibility #2069 - ♿️(frontend) improve language picker accessibility #2069
- ♿️(frontend) add aria-hidden to decorative icons in dropdown menu #2093
- 🐛(backend) move lock table closer to the insert operation targeted
### Fixed ### Fixed
- 🐛(y-provider) destroy Y.Doc instances after each convert request #2129 - 🐛(y-provider) destroy Y.Doc instances after each convert request #2129
- 🐛(backend) remove deleted sub documents in favorite_list endpoint #2083
## [v4.8.3] - 2026-03-23 ## [v4.8.3] - 2026-03-23
@@ -1187,7 +1192,8 @@ and this project adheres to
- ✨(frontend) Coming Soon page (#67) - ✨(frontend) Coming Soon page (#67)
- 🚀 Impress, project to manage your documents easily and collaboratively. - 🚀 Impress, project to manage your documents easily and collaboratively.
[unreleased]: https://github.com/suitenumerique/docs/compare/v4.8.3...main [unreleased]: https://github.com/suitenumerique/docs/compare/v4.8.4...main
[v4.8.4]: https://github.com/suitenumerique/docs/releases/v4.8.4
[v4.8.3]: https://github.com/suitenumerique/docs/releases/v4.8.3 [v4.8.3]: https://github.com/suitenumerique/docs/releases/v4.8.3
[v4.8.2]: https://github.com/suitenumerique/docs/releases/v4.8.2 [v4.8.2]: https://github.com/suitenumerique/docs/releases/v4.8.2
[v4.8.1]: https://github.com/suitenumerique/docs/releases/v4.8.1 [v4.8.1]: https://github.com/suitenumerique/docs/releases/v4.8.1
+15 -13
View File
@@ -674,17 +674,8 @@ class DocumentViewSet(
return drf.response.Response(serializer.data) return drf.response.Response(serializer.data)
@transaction.atomic
def perform_create(self, serializer): def perform_create(self, serializer):
"""Set the current user as creator and owner of the newly created object.""" """Set the current user as creator and owner of the newly created object."""
# locks the table to ensure safe concurrent access
with connection.cursor() as cursor:
cursor.execute(
f'LOCK TABLE "{models.Document._meta.db_table}" ' # noqa: SLF001
"IN SHARE ROW EXCLUSIVE MODE;"
)
# Remove file from validated_data as it's not a model field # Remove file from validated_data as it's not a model field
# Process it if present # Process it if present
uploaded_file = serializer.validated_data.pop("file", None) uploaded_file = serializer.validated_data.pop("file", None)
@@ -702,15 +693,25 @@ class DocumentViewSet(
) )
serializer.validated_data["content"] = converted_content serializer.validated_data["content"] = converted_content
serializer.validated_data["title"] = uploaded_file.name serializer.validated_data["title"] = uploaded_file.name
logger.info("conversion ended successfully")
except ConversionError as err: except ConversionError as err:
logger.error("could not convert file content with error: %s", err)
raise drf.exceptions.ValidationError( raise drf.exceptions.ValidationError(
{"file": ["Could not convert file content"]} {"file": ["Could not convert file content"]}
) from err ) from err
obj = models.Document.add_root( with transaction.atomic():
creator=self.request.user, # locks the table to ensure safe concurrent access
**serializer.validated_data, with connection.cursor() as cursor:
) cursor.execute(
f'LOCK TABLE "{models.Document._meta.db_table}" ' # noqa: SLF001
"IN SHARE ROW EXCLUSIVE MODE;"
)
obj = models.Document.add_root(
creator=self.request.user,
**serializer.validated_data,
)
serializer.instance = obj serializer.instance = obj
models.DocumentAccess.objects.create( models.DocumentAccess.objects.create(
document=obj, document=obj,
@@ -827,6 +828,7 @@ class DocumentViewSet(
queryset = self.queryset.filter(path_list) queryset = self.queryset.filter(path_list)
queryset = queryset.filter(id__in=favorite_documents_ids) queryset = queryset.filter(id__in=favorite_documents_ids)
queryset = queryset.filter(ancestors_deleted_at__isnull=True)
queryset = queryset.annotate_user_roles(user) queryset = queryset.annotate_user_roles(user)
queryset = queryset.annotate( queryset = queryset.annotate(
is_favorite=db.Value(True, output_field=db.BooleanField()) is_favorite=db.Value(True, output_field=db.BooleanField())
+10 -11
View File
@@ -267,6 +267,16 @@ class User(AbstractBaseUser, BaseModel, auth_models.PermissionsMixin):
if settings.USER_ONBOARDING_SANDBOX_DOCUMENT: if settings.USER_ONBOARDING_SANDBOX_DOCUMENT:
# transaction.atomic is used in a context manager to avoid a transaction if # transaction.atomic is used in a context manager to avoid a transaction if
# the settings USER_ONBOARDING_SANDBOX_DOCUMENT is unused # the settings USER_ONBOARDING_SANDBOX_DOCUMENT is unused
sandbox_id = settings.USER_ONBOARDING_SANDBOX_DOCUMENT
try:
template_document = Document.objects.get(id=sandbox_id)
except Document.DoesNotExist:
logger.warning(
"Onboarding sandbox document with id %s does not exist. Skipping.",
sandbox_id,
)
return
with transaction.atomic(): with transaction.atomic():
# locks the table to ensure safe concurrent access # locks the table to ensure safe concurrent access
with connection.cursor() as cursor: with connection.cursor() as cursor:
@@ -274,17 +284,6 @@ class User(AbstractBaseUser, BaseModel, auth_models.PermissionsMixin):
f'LOCK TABLE "{Document._meta.db_table}" ' # noqa: SLF001 f'LOCK TABLE "{Document._meta.db_table}" ' # noqa: SLF001
"IN SHARE ROW EXCLUSIVE MODE;" "IN SHARE ROW EXCLUSIVE MODE;"
) )
sandbox_id = settings.USER_ONBOARDING_SANDBOX_DOCUMENT
try:
template_document = Document.objects.get(id=sandbox_id)
except Document.DoesNotExist:
logger.warning(
"Onboarding sandbox document with id %s does not exist. Skipping.",
sandbox_id,
)
return
sandbox_document = Document.add_root( sandbox_document = Document.add_root(
title=template_document.title, title=template_document.title,
content=template_document.content, content=template_document.content,
@@ -45,6 +45,8 @@ class Converter:
def convert(self, data, content_type, accept): def convert(self, data, content_type, accept):
"""Convert input into other formats using external microservices.""" """Convert input into other formats using external microservices."""
logger.info("converting content from %s to %s", content_type, accept)
if content_type == mime_types.DOCX and accept == mime_types.YJS: if content_type == mime_types.DOCX and accept == mime_types.YJS:
blocknote_data = self.docspec.convert( blocknote_data = self.docspec.convert(
data, mime_types.DOCX, mime_types.BLOCKNOTE data, mime_types.DOCX, mime_types.BLOCKNOTE
@@ -114,3 +114,29 @@ def test_api_document_favorite_list_with_favorite_children():
assert content[0]["id"] == str(children[0].id) assert content[0]["id"] == str(children[0].id)
assert content[1]["id"] == str(children[1].id) assert content[1]["id"] == str(children[1].id)
assert content[2]["id"] == str(access.document.id) assert content[2]["id"] == str(access.document.id)
def test_api_document_favorite_list_with_deleted_child():
"""
Authenticated users should not see deleted documents in their favorite list.
"""
user = factories.UserFactory()
client = APIClient()
client.force_login(user)
root = factories.DocumentFactory(creator=user, users=[user], favorited_by=[user])
child1, child2 = factories.DocumentFactory.create_batch(
2, parent=root, favorited_by=[user]
)
child1.delete()
response = client.get("/api/v1.0/documents/favorite_list/")
assert response.status_code == 200
assert response.json()["count"] == 2
content = response.json()["results"]
assert content[0]["id"] == str(root.id)
assert content[1]["id"] == str(child2.id)
+87 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Breton\n" "Language-Team: Breton\n"
"Language: br_FR\n" "Language: br_FR\n"
@@ -46,36 +46,40 @@ msgstr "Gwezennadur"
msgid "Title" msgid "Title"
msgstr "Titl" msgstr "Titl"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Me eo an aozer" msgstr "Me eo an aozer"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "Kuzhet" msgstr "Kuzhet"
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Sinedoù" msgstr "Sinedoù"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Ur restr nevez a zo bet krouet ganeoc'h!" msgstr "Ur restr nevez a zo bet krouet ganeoc'h!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "C'hwi zo bet disklaeriet perc'henn ur restr nevez:" msgstr "C'hwi zo bet disklaeriet perc'henn ur restr nevez:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "Ar vaezienn-mañ a zo rekis." msgstr "Ar vaezienn-mañ a zo rekis."
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "eilenn {title}" msgstr "eilenn {title}"
@@ -247,98 +251,98 @@ msgstr "implijer"
msgid "users" msgid "users"
msgstr "implijerien" msgstr "implijerien"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "titl" msgstr "titl"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "bomm" msgstr "bomm"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Restr" msgstr "Restr"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Restroù" msgstr "Restroù"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Restr hep titl" msgstr "Restr hep titl"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Digeriñ" msgstr "Digeriñ"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} en deus rannet ur restr ganeoc'h!" msgstr "{name} en deus rannet ur restr ganeoc'h!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} en deus pedet ac'hanoc'h gant ar rol \"{role}\" war ar restr da-heul:" msgstr "{name} en deus pedet ac'hanoc'h gant ar rol \"{role}\" war ar restr da-heul:"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} en deus rannet ur restr ganeoc'h: {title}" msgstr "{name} en deus rannet ur restr ganeoc'h: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Roud liamm ar restr/an implijer" msgstr "Roud liamm ar restr/an implijer"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Roudoù liamm ar restr/an implijer" msgstr "Roudoù liamm ar restr/an implijer"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Ur roud liamm a zo dija evit an restr/an implijer." msgstr "Ur roud liamm a zo dija evit an restr/an implijer."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Restr muiañ-karet" msgstr "Restr muiañ-karet"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Restroù muiañ-karet" msgstr "Restroù muiañ-karet"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Ar restr-mañ a zo ur restr muiañ karet gant an implijer-mañ." msgstr "Ar restr-mañ a zo ur restr muiañ karet gant an implijer-mañ."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Liamm restr/implijer" msgstr "Liamm restr/implijer"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Liammoù restr/implijer" msgstr "Liammoù restr/implijer"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "An implijer-mañ a zo dija er restr-mañ." msgstr "An implijer-mañ a zo dija er restr-mañ."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Ar skipailh-mañ a zo dija en restr-mañ." msgstr "Ar skipailh-mañ a zo dija en restr-mañ."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "An implijer pe ar skipailh a rank bezañ termenet, ket an daou avat." msgstr "An implijer pe ar skipailh a rank bezañ termenet, ket an daou avat."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "Goulenn tizhout ar restr" msgstr "Goulenn tizhout ar restr"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "Goulennoù tizhout ar restr" msgstr "Goulennoù tizhout ar restr"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "An implijer en deus goulennet tizhout ar restr-mañ." msgstr "An implijer en deus goulennet tizhout ar restr-mañ."
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "{name} en defe c'hoant da dizhout ar restr-mañ!" msgstr "{name} en defe c'hoant da dizhout ar restr-mañ!"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "{name} en defe c'hoant da dizhout ar restr da-heul:" msgstr "{name} en defe c'hoant da dizhout ar restr da-heul:"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "{name} en defe c'hoant da dizhout ar restr: {title}" msgstr "{name} en defe c'hoant da dizhout ar restr: {title}"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr ""
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr ""
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr ""
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr ""
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "postel" msgstr "postel"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Pedadenn d'ur restr" msgstr "Pedadenn d'ur restr"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Pedadennoù d'ur restr" msgstr "Pedadennoù d'ur restr"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Ar postel-mañ a zo liammet ouzh un implijer enskrivet." msgstr "Ar postel-mañ a zo liammet ouzh un implijer enskrivet."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+126 -122
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: German\n" "Language-Team: German\n"
"Language: de_DE\n" "Language: de_DE\n"
@@ -28,11 +28,11 @@ msgstr "Berechtigungen"
#: build/lib/core/admin.py:55 core/admin.py:55 #: build/lib/core/admin.py:55 core/admin.py:55
msgid "Important dates" msgid "Important dates"
msgstr "Wichtige Daten" msgstr "Wichtige Termine"
#: build/lib/core/admin.py:112 core/admin.py:112 #: build/lib/core/admin.py:112 core/admin.py:112
msgid "Import job created and queued." msgid "Import job created and queued."
msgstr "" msgstr "Import-Job erstellt und in der Warteschlange."
#: build/lib/core/admin.py:116 core/admin.py:116 #: build/lib/core/admin.py:116 core/admin.py:116
msgid "Process selected user reconciliations" msgid "Process selected user reconciliations"
@@ -46,36 +46,40 @@ msgstr "Baumstruktur"
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr "Suchen"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Ersteller bin ich" msgstr "Ersteller bin ich"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Masked"
msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked"
msgstr "Maskiert"
#: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Favorit" msgstr "Favorit"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Ein neues Dokument wurde in Ihrem Namen erstellt!" msgstr "Ein neues Dokument wurde in Ihrem Namen erstellt!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Sie sind Besitzer eines neuen Dokuments:" msgstr "Sie sind Besitzer eines neuen Dokuments:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr "Dies ist ein Pflichtfeld."
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr "Der Zugriff auf den Link '%(link_reach)s' ist aufgrund der Konfiguration übergeordneter Dokumente nicht erlaubt."
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "Kopie von {title}" msgstr "Kopie von {title}"
@@ -92,7 +96,7 @@ msgstr "Lesen"
#: build/lib/core/choices.py:36 build/lib/core/choices.py:44 core/choices.py:36 #: build/lib/core/choices.py:36 build/lib/core/choices.py:44 core/choices.py:36
#: core/choices.py:44 #: core/choices.py:44
msgid "Commenter" msgid "Commenter"
msgstr "" msgstr "Kommentieren"
#: build/lib/core/choices.py:37 build/lib/core/choices.py:45 core/choices.py:37 #: build/lib/core/choices.py:37 build/lib/core/choices.py:45 core/choices.py:37
#: core/choices.py:45 #: core/choices.py:45
@@ -173,11 +177,11 @@ msgstr "Wir konnten keinen Benutzer mit diesem Abo finden, aber die E-Mail-Adres
#: build/lib/core/models.py:141 core/models.py:141 #: build/lib/core/models.py:141 core/models.py:141
msgid "sub" msgid "sub"
msgstr "unter" msgstr "sub"
#: build/lib/core/models.py:142 core/models.py:142 #: build/lib/core/models.py:142 core/models.py:142
msgid "Required. 255 characters or fewer. ASCII characters only." msgid "Required. 255 characters or fewer. ASCII characters only."
msgstr "" msgstr "Pflichtfeld. 255 Zeichen oder weniger. Buchstaben (nur ASCII), Ziffern und die Zeichen @/-/_/."
#: build/lib/core/models.py:150 core/models.py:150 #: build/lib/core/models.py:150 core/models.py:150
msgid "full name" msgid "full name"
@@ -233,11 +237,11 @@ msgstr "Ob dieser Benutzer als aktiviert behandelt werden soll. Deaktivieren Sie
#: build/lib/core/models.py:197 core/models.py:197 #: build/lib/core/models.py:197 core/models.py:197
msgid "first connection status" msgid "first connection status"
msgstr "" msgstr "Status der ersten Verbindung"
#: build/lib/core/models.py:199 core/models.py:199 #: build/lib/core/models.py:199 core/models.py:199
msgid "Whether the user has completed the first connection process." msgid "Whether the user has completed the first connection process."
msgstr "" msgstr "Gibt an, ob der Benutzer die Prozedur der ersten Verbindung abgeschlossen hat."
#: build/lib/core/models.py:209 core/models.py:209 #: build/lib/core/models.py:209 core/models.py:209
msgid "user" msgid "user"
@@ -247,98 +251,98 @@ msgstr "Benutzer"
msgid "users" msgid "users"
msgstr "Benutzer" msgstr "Benutzer"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr "Aktive E-Mail-Adresse"
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr "Zu deaktivierende E-Mail-Adresse"
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr "Ausstehend"
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr "Bereit"
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr "Fertig"
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr "Fehler"
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr "Klicken Sie hier"
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr "Bestätigen Sie"
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr "Ihre Konten wurden zusammengelegt"
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr "Klicken Sie hier um zu sehen"
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr "Meine Dokumente einsehen"
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr "CSV-Datei"
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr "Wird ausgeführt"
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,177 +351,177 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr "Neue Anfrage erstellen"
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "Titel" msgstr "Titel"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "Auszug" msgstr "Auszug"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Dokument" msgstr "Dokument"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Dokumente" msgstr "Dokumente"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Unbenanntes Dokument" msgstr "Unbenanntes Dokument"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Öffnen" msgstr "Öffnen"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} hat ein Dokument mit Ihnen geteilt!" msgstr "{name} hat ein Dokument mit Ihnen geteilt!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} hat Sie mit der Rolle \"{role}\" zu folgendem Dokument eingeladen:" msgstr "{name} hat Sie mit der Rolle \"{role}\" zu folgendem Dokument eingeladen:"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} hat ein Dokument mit Ihnen geteilt: {title}" msgstr "{name} hat ein Dokument mit Ihnen geteilt: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Dokument/Benutzer Linkverfolgung" msgstr "Dokument/Benutzer Linkverfolgung"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Dokument/Benutzer Linkverfolgung" msgstr "Dokument/Benutzer Linkverfolgung"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Für dieses Dokument/ diesen Benutzer ist bereits eine Linkverfolgung vorhanden." msgstr "Für dieses Dokument/ diesen Benutzer ist bereits eine Linkverfolgung vorhanden."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Dokumentenfavorit" msgstr "Dokumentenfavorit"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Dokumentfavoriten" msgstr "Dokumentfavoriten"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Dieses Dokument ist bereits durch den gleichen Benutzer favorisiert worden." msgstr "Dieses Dokument ist bereits durch den gleichen Benutzer favorisiert worden."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Dokument/Benutzerbeziehung" msgstr "Dokument/Benutzerbeziehung"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Dokument/Benutzerbeziehungen" msgstr "Dokument/Benutzerbeziehungen"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "Dieser Benutzer befindet sich bereits in diesem Dokument." msgstr "Dieser Benutzer befindet sich bereits in diesem Dokument."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Dieses Team befindet sich bereits in diesem Dokument." msgstr "Dieses Team befindet sich bereits in diesem Dokument."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "Benutzer oder Team müssen gesetzt werden, nicht beides." msgstr "Benutzer oder Team müssen gesetzt werden, nicht beides."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "" msgstr "Dokument um Zugriff bitten"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "" msgstr "Dokumentenabfragen"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "" msgstr "Dieser Benutzer hat bereits um Zugang zu diesem Dokument gebeten."
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "" msgstr "{name} möchte Zugriff auf ein Dokument erhalten!"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "" msgstr "{name} möchte auf das folgende Dokument zugreifen:"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "" msgstr "{name} bittet um Zugang zum Dokument: {title}"
#: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread"
msgstr "Thread"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Thread"
msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839
msgid "Threads" msgid "Threads"
msgstr "" msgstr "Threads"
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr "Gast"
#: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment"
msgstr "Kommentar"
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comment"
msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890
msgid "Comments" msgid "Comments"
msgstr "" msgstr "Kommentare"
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr "Reaktion"
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr "Reaktionen"
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "E-Mail-Adresse" msgstr "E-Mail-Adresse"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Einladung zum Dokument" msgstr "Einladung zum Dokument"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Dokumenteinladungen" msgstr "Dokumenteinladungen"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Diese E-Mail ist bereits einem registrierten Benutzer zugeordnet." msgstr "Diese E-Mail ist bereits einem registrierten Benutzer zugeordnet."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr "Docs AI"
#: core/templates/mail/html/template.html:153 #: core/templates/mail/html/template.html:153
#: core/templates/mail/text/template.txt:3 #: core/templates/mail/text/template.txt:3
@@ -0,0 +1,548 @@
msgid ""
msgstr ""
"Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Crowdin-Project: lasuite-docs\n"
"X-Crowdin-Project-ID: 754523\n"
"X-Crowdin-Language: el\n"
"X-Crowdin-File: backend-impress.pot\n"
"X-Crowdin-File-ID: 18\n"
#: build/lib/core/admin.py:30 core/admin.py:30
msgid "Personal info"
msgstr "Προσωπικές πληροφορίες"
#: build/lib/core/admin.py:43 build/lib/core/admin.py:161 core/admin.py:43
#: core/admin.py:161
msgid "Permissions"
msgstr "Δικαιώματα"
#: build/lib/core/admin.py:55 core/admin.py:55
msgid "Important dates"
msgstr "Σημαντικές ημερομηνίες"
#: build/lib/core/admin.py:112 core/admin.py:112
msgid "Import job created and queued."
msgstr "Η εργασία εισαγωγής δημιουργήθηκε και μπήκε στην ουρά."
#: build/lib/core/admin.py:116 core/admin.py:116
msgid "Process selected user reconciliations"
msgstr "Επεξεργασία επιλεγμένων συμφωνιών χρηστών"
#: build/lib/core/admin.py:171 core/admin.py:171
msgid "Tree structure"
msgstr "Δομή δέντρου"
#: build/lib/core/api/filters.py:48 core/api/filters.py:48
msgid "Title"
msgstr "Τίτλος"
#: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr "Αναζήτηση"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me"
msgstr "Δημιουργός είμαι εγώ"
#: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked"
msgstr "Με κάλυψη"
#: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite"
msgstr "Αγαπημένο"
#: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!"
msgstr "Ένα νέο έγγραφο δημιουργήθηκε εκ μέρους σας!"
#: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:"
msgstr "Σας παραχωρήθηκε η ιδιοκτησία ενός νέου εγγράφου:"
#: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required."
msgstr "Αυτό το πεδίο είναι υποχρεωτικό."
#: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "Η εμβέλεια συνδέσμου '%(link_reach)s' δεν επιτρέπεται βάσει της διαμόρφωσης του γονικού εγγράφου."
#: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format
msgid "copy of {title}"
msgstr "αντίγραφο του {title}"
#: build/lib/core/apps.py:12 core/apps.py:12
msgid "Impress core application"
msgstr "Κεντρική εφαρμογή Impress"
#: build/lib/core/choices.py:35 build/lib/core/choices.py:43 core/choices.py:35
#: core/choices.py:43
msgid "Reader"
msgstr "Αναγνώστης"
#: build/lib/core/choices.py:36 build/lib/core/choices.py:44 core/choices.py:36
#: core/choices.py:44
msgid "Commenter"
msgstr "Σχολιαστής"
#: build/lib/core/choices.py:37 build/lib/core/choices.py:45 core/choices.py:37
#: core/choices.py:45
msgid "Editor"
msgstr "Συντάκτης"
#: build/lib/core/choices.py:46 core/choices.py:46
msgid "Administrator"
msgstr "Διαχειριστής"
#: build/lib/core/choices.py:47 core/choices.py:47
msgid "Owner"
msgstr "Ιδιοκτήτης"
#: build/lib/core/choices.py:58 core/choices.py:58
msgid "Restricted"
msgstr "Περιορισμένο"
#: build/lib/core/choices.py:62 core/choices.py:62
msgid "Authenticated"
msgstr "Πιστοποιημένο"
#: build/lib/core/choices.py:64 core/choices.py:64
msgid "Public"
msgstr "Δημόσιο"
#: build/lib/core/enums.py:36 core/enums.py:36
msgid "First child"
msgstr "Πρώτο θυγατρικό"
#: build/lib/core/enums.py:37 core/enums.py:37
msgid "Last child"
msgstr "Τελευταίο θυγατρικό"
#: build/lib/core/enums.py:38 core/enums.py:38
msgid "First sibling"
msgstr "Πρώτο αδελφό"
#: build/lib/core/enums.py:39 core/enums.py:39
msgid "Last sibling"
msgstr "Τελευταίο αδελφό"
#: build/lib/core/enums.py:40 core/enums.py:40
msgid "Left"
msgstr "Αριστερά"
#: build/lib/core/enums.py:41 core/enums.py:41
msgid "Right"
msgstr "Δεξιά"
#: build/lib/core/models.py:80 core/models.py:80
msgid "id"
msgstr "αναγνωριστικό"
#: build/lib/core/models.py:81 core/models.py:81
msgid "primary key for the record as UUID"
msgstr "πρωτεύον κλειδί για την εγγραφή ως UUID"
#: build/lib/core/models.py:87 core/models.py:87
msgid "created on"
msgstr "δημιουργήθηκε στις"
#: build/lib/core/models.py:88 core/models.py:88
msgid "date and time at which a record was created"
msgstr "ημερομηνία και ώρα δημιουργίας μιας εγγραφής"
#: build/lib/core/models.py:93 core/models.py:93
msgid "updated on"
msgstr "ενημερώθηκε στις"
#: build/lib/core/models.py:94 core/models.py:94
msgid "date and time at which a record was last updated"
msgstr "ημερομηνία και ώρα τελευταίας ενημέρωσης μιας εγγραφής"
#: build/lib/core/models.py:130 core/models.py:130
msgid "We couldn't find a user with this sub but the email is already associated with a registered user."
msgstr "Δεν μπορέσαμε να βρούμε χρήστη με αυτό το sub, αλλά το email σχετίζεται ήδη με έναν εγγεγραμμένο χρήστη."
#: build/lib/core/models.py:141 core/models.py:141
msgid "sub"
msgstr "sub (αναγνωριστικό υποκειμένου)"
#: build/lib/core/models.py:142 core/models.py:142
msgid "Required. 255 characters or fewer. ASCII characters only."
msgstr "Υποχρεωτικό. 255 χαρακτήρες ή λιγότεροι. Μόνο χαρακτήρες ASCII."
#: build/lib/core/models.py:150 core/models.py:150
msgid "full name"
msgstr "πλήρες όνομα"
#: build/lib/core/models.py:152 core/models.py:152
msgid "short name"
msgstr "σύντομο όνομα"
#: build/lib/core/models.py:155 core/models.py:155
msgid "identity email address"
msgstr "διεύθυνση email ταυτότητας"
#: build/lib/core/models.py:160 core/models.py:160
msgid "admin email address"
msgstr "διεύθυνση email διαχειριστή"
#: build/lib/core/models.py:167 core/models.py:167
msgid "language"
msgstr "γλώσσα"
#: build/lib/core/models.py:168 core/models.py:168
msgid "The language in which the user wants to see the interface."
msgstr "Η γλώσσα στην οποία ο χρήστης θέλει να δει τη διεπαφή."
#: build/lib/core/models.py:176 core/models.py:176
msgid "The timezone in which the user wants to see times."
msgstr "Η ζώνη ώρας στην οποία ο χρήστης θέλει να βλέπει την ώρα."
#: build/lib/core/models.py:179 core/models.py:179
msgid "device"
msgstr "συσκευή"
#: build/lib/core/models.py:181 core/models.py:181
msgid "Whether the user is a device or a real user."
msgstr "Εάν ο χρήστης είναι μια συσκευή ή πραγματικός χρήστης."
#: build/lib/core/models.py:184 core/models.py:184
msgid "staff status"
msgstr "κατάσταση προσωπικού"
#: build/lib/core/models.py:186 core/models.py:186
msgid "Whether the user can log into this admin site."
msgstr "Εάν ο χρήστης μπορεί να συνδεθεί σε αυτόν τον ιστότοπο διαχείρισης."
#: build/lib/core/models.py:189 core/models.py:189
msgid "active"
msgstr "ενεργός"
#: build/lib/core/models.py:192 core/models.py:192
msgid "Whether this user should be treated as active. Unselect this instead of deleting accounts."
msgstr "Εάν αυτός ο χρήστης πρέπει να θεωρείται ενεργός. Αποεπιλέξτε το αντί να διαγράψετε λογαριασμούς."
#: build/lib/core/models.py:197 core/models.py:197
msgid "first connection status"
msgstr "πρώτη κατάσταση σύνδεσης"
#: build/lib/core/models.py:199 core/models.py:199
msgid "Whether the user has completed the first connection process."
msgstr "Εάν ο χρήστης έχει ολοκληρώσει τη διαδικασία της πρώτης σύνδεσης."
#: build/lib/core/models.py:209 core/models.py:209
msgid "user"
msgstr "χρήστης"
#: build/lib/core/models.py:210 core/models.py:210
msgid "users"
msgstr "χρήστες"
#: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address"
msgstr "Ενεργή διεύθυνση email"
#: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate"
msgstr "Διεύθυνση email για απενεργοποίηση"
#: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file"
msgstr "Μοναδικό αναγνωριστικό στο πηγαίο αρχείο"
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr "Σε εκκρεμότητα"
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr "Έτοιμο"
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710
msgid "Done"
msgstr "Ολοκληρώθηκε"
#: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:711
msgid "Error"
msgstr "Σφάλμα"
#: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation"
msgstr "συμφωνία χρήστη"
#: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations"
msgstr "συμφωνία χρηστών"
#: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:"
msgstr "Έχετε ζητήσει έναν συνδυασμό των λογαριασμών χρήστη σας στα Έγγραφα.\n"
" Για να επιβεβαιώσετε ότι είστε εκείνος που ξεκίνησε το αίτημα\n"
" και ότι αυτό το email ανήκει σε σας:"
#: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation"
msgstr "Επιβεβαιώστε κάνοντας κλικ στο σύνδεσμο για να ξεκινήσει η συμφωνία"
#: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:777
msgid "Click here"
msgstr "Κάντε κλικ εδώ"
#: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm"
msgstr "Επιβεβαίωση"
#: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:"
msgstr "Το αίτημά σας για συμφωνία έχει επεξεργαστεί.\n"
" Νέα έγγραφα είναι πιθανό να σχετίζονται με τον λογαριασμό σας:"
#: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged"
msgstr "Οι λογαριασμοί σας έχουν συγχωνευθεί"
#: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see"
msgstr "Κάντε κλικ εδώ για να δείτε"
#: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents"
msgstr "Δείτε τα έγγραφά μου"
#: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file"
msgstr "Αρχείο CSV"
#: build/lib/core/models.py:709 core/models.py:709
msgid "Running"
msgstr "Εκτελείται"
#: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import"
msgstr "εισαγωγή CSV συμφωνίας χρηστών"
#: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports"
msgstr "εισαγωγές CSV συμφωνίας χρηστών"
#: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n"
" {recipient_email}, {other_email}.\n"
" Please check for typos.\n"
" You can submit another request with the valid email addresses."
msgstr "Το αίτημά σας για επαλήθευση δεν ολοκληρώθηκε με επιτυχία.\n"
" Η επαλήθευση απέτυχε για τις ακόλουθες διευθύνσεις email:\n"
" {recipient_email}, {other_email}.\n"
" Παρακαλούμε ελέγξτε αν υπάρχουν τυπογραφικά λάθη.\n"
" Μπορείτε να υποβάλετε ένα νέο αίτημα με τις σωστές διευθύνσεις email."
#: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed"
msgstr "Η συμφωνία των λογαριασμών σας Docs δεν ολοκληρώθηκε"
#: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request"
msgstr "Κάντε ένα νέο αίτημα"
#: build/lib/core/models.py:877 core/models.py:877
msgid "title"
msgstr "τίτλος"
#: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt"
msgstr "απόσπασμα"
#: build/lib/core/models.py:927 core/models.py:927
msgid "Document"
msgstr "Έγγραφο"
#: build/lib/core/models.py:928 core/models.py:928
msgid "Documents"
msgstr "Έγγραφα"
#: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:940 core/models.py:1345
msgid "Untitled Document"
msgstr "Έγγραφο χωρίς τίτλο"
#: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open"
msgstr "Άνοιγμα"
#: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format
msgid "{name} shared a document with you!"
msgstr "Ο/Η {name} μοιράστηκε ένα έγγραφο μαζί σας!"
#: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "Ο/Η {name} σας προσκάλεσε με τον ρόλο \"{role}\" στο ακόλουθο έγγραφο:"
#: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format
msgid "{name} shared a document with you: {title}"
msgstr "Ο/Η {name} μοιράστηκε ένα έγγραφο μαζί σας: {title}"
#: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace"
msgstr "Ίχνος συνδέσμου εγγράφου/χρήστη"
#: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces"
msgstr "Ίχνη συνδέσμου εγγράφου/χρήστη"
#: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user."
msgstr "Ένα ίχνος συνδέσμου υπάρχει ήδη για αυτό το έγγραφο/χρήστη."
#: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite"
msgstr "Αγαπημένο έγγραφο"
#: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites"
msgstr "Αγαπημένα έγγραφα"
#: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Αυτό το έγγραφο στοχεύεται ήδη από μια σχέση αγαπημένου για τον ίδιο χρήστη."
#: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation"
msgstr "Σχέση εγγράφου/χρήστη"
#: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations"
msgstr "Σχέσεις εγγράφου/χρήστη"
#: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document."
msgstr "Αυτός ο χρήστης συμμετέχει ήδη σε αυτό το έγγραφο."
#: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document."
msgstr "Αυτή η ομάδα συμμετέχει ήδη σε αυτό το έγγραφο."
#: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both."
msgstr "Πρέπει να οριστεί είτε χρήστης είτε ομάδα, όχι και τα δύο."
#: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access"
msgstr "Αίτημα πρόσβασης σε έγγραφο"
#: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses"
msgstr "Αιτήματα πρόσβασης σε έγγραφα"
#: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document."
msgstr "Αυτός ο χρήστης έχει ήδη ζητήσει πρόσβαση σε αυτό το έγγραφο."
#: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format
msgid "{name} would like access to a document!"
msgstr "Ο/Η {name} θα ήθελε πρόσβαση σε ένα έγγραφο!"
#: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format
msgid "{name} would like access to the following document:"
msgstr "Ο/Η {name} θα ήθελε πρόσβαση στο ακόλουθο έγγραφο:"
#: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format
msgid "{name} is asking for access to the document: {title}"
msgstr "Ο/Η {name} ζητά πρόσβαση στο έγγραφο: {title}"
#: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread"
msgstr "Νήμα"
#: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads"
msgstr "Νήματα"
#: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1841 core/models.py:1893
msgid "Anonymous"
msgstr "Ανώνυμος"
#: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment"
msgstr "Σχόλιο"
#: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments"
msgstr "Σχόλια"
#: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment."
msgstr "Αυτό το emoji έχει χρησιμοποιηθεί ήδη ως αντίδραση σε αυτό το σχόλιο."
#: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction"
msgstr "Αντίδραση"
#: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions"
msgstr "Αντιδράσεις"
#: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address"
msgstr "διεύθυνση email"
#: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation"
msgstr "Πρόσκληση σε έγγραφο"
#: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations"
msgstr "Προσκλήσεις εγγράφου"
#: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user."
msgstr "Αυτό το email σχετίζεται ήδη με έναν εγγεγραμμένο χρήστη."
#: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI"
msgstr "Τεχνητή Νοημοσύνη (AI) Docs"
#: core/templates/mail/html/template.html:153
#: core/templates/mail/text/template.txt:3
msgid "Logo email"
msgstr "Λογότυπο email"
#: core/templates/mail/html/template.html:219
#: core/templates/mail/text/template.txt:14
msgid " Docs, your new essential tool for organizing, sharing and collaborating on your documents as a team. "
msgstr " Docs, το νέο απαραίτητο εργαλείο σας για την οργάνωση, τον διαμοιρασμό και τη συνεργασία στα έγγραφά σας ως ομάδα. "
#: core/templates/mail/html/template.html:226
#: core/templates/mail/text/template.txt:16
#, python-format
msgid " Brought to you by %(brandname)s "
msgstr " Σας προσφέρεται από την %(brandname)s "
+87 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: English\n" "Language-Team: English\n"
"Language: en_US\n" "Language: en_US\n"
@@ -46,36 +46,40 @@ msgstr ""
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Creator is me" msgid "Search"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Masked" msgid "Creator is me"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked"
msgstr ""
#: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "" msgstr ""
@@ -247,98 +251,98 @@ msgstr ""
msgid "users" msgid "users"
msgstr "" msgstr ""
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "" msgstr ""
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "" msgstr ""
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "" msgstr ""
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "" msgstr ""
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "" msgstr ""
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "" msgstr ""
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "" msgstr ""
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "" msgstr ""
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "" msgstr ""
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "" msgstr ""
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr ""
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr ""
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr ""
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr ""
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "" msgstr ""
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+106 -102
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"Language: es_ES\n" "Language: es_ES\n"
@@ -46,36 +46,40 @@ msgstr "Estructura en árbol"
msgid "Title" msgid "Title"
msgstr "Título" msgstr "Título"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr "Buscar"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Yo soy el creador" msgstr "Yo soy el creador"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Masked"
msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked"
msgstr "Enmascarado"
#: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Favorito" msgstr "Favorito"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "¡Un nuevo documento se ha creado por ti!" msgstr "¡Un nuevo documento se ha creado por ti!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Se le ha concedido la propiedad de un nuevo documento :" msgstr "Se le ha concedido la propiedad de un nuevo documento :"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "copia de {title}" msgstr "copia de {title}"
@@ -247,98 +251,98 @@ msgstr "usuario"
msgid "users" msgid "users"
msgstr "usuarios" msgstr "usuarios"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr "Pending"
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr "Listo"
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr "Terminado"
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr "Error"
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr "Haga click aquí"
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr "Confirmar"
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr "Haz clic aquí para ver"
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr "Archivo CSV"
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr "En ejecución"
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,177 +351,177 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr "Hacer un nuevo pedido"
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "título" msgstr "título"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "resumen" msgstr "resumen"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Documento" msgstr "Documento"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Documento sin título" msgstr "Documento sin título"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "¡{name} ha compartido un documento contigo!" msgstr "¡{name} ha compartido un documento contigo!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "Te ha invitado {name} al siguiente documento con el rol \"{role}\" :" msgstr "Te ha invitado {name} al siguiente documento con el rol \"{role}\" :"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} ha compartido un documento contigo: {title}" msgstr "{name} ha compartido un documento contigo: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Traza del enlace de documento/usuario" msgstr "Traza del enlace de documento/usuario"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Trazas del enlace de documento/usuario" msgstr "Trazas del enlace de documento/usuario"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Ya existe una traza de enlace para este documento/usuario." msgstr "Ya existe una traza de enlace para este documento/usuario."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Documento favorito" msgstr "Documento favorito"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Documentos favoritos" msgstr "Documentos favoritos"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Este documento ya ha sido marcado como favorito por el usuario." msgstr "Este documento ya ha sido marcado como favorito por el usuario."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Relación documento/usuario" msgstr "Relación documento/usuario"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Relaciones documento/usuario" msgstr "Relaciones documento/usuario"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "Este usuario ya forma parte del documento." msgstr "Este usuario ya forma parte del documento."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Este equipo ya forma parte del documento." msgstr "Este equipo ya forma parte del documento."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "Debe establecerse un usuario o un equipo, no ambos." msgstr "Debe establecerse un usuario o un equipo, no ambos."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "Solicitud de acceso" msgstr "Solicitud de acceso"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "Solicitud de accesos" msgstr "Solicitud de accesos"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "Este usuario ya ha solicitado acceso a este documento." msgstr "Este usuario ya ha solicitado acceso a este documento."
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "¡{name} desea acceder a un documento!" msgstr "¡{name} desea acceder a un documento!"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "{name} desea acceso al siguiente documento:" msgstr "{name} desea acceso al siguiente documento:"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "{name} está pidiendo acceso al documento: {title}" msgstr "{name} está pidiendo acceso al documento: {title}"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr "Thread"
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr "Threads"
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr "Anónimo"
#: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment"
msgstr "Comentario"
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comment"
msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890
msgid "Comments" msgid "Comments"
msgstr "" msgstr "Comentarios"
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr "Reacción"
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr "Reacciones"
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "dirección de correo electrónico" msgstr "dirección de correo electrónico"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Invitación al documento" msgstr "Invitación al documento"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Invitaciones a documentos" msgstr "Invitaciones a documentos"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Este correo electrónico está asociado a un usuario registrado." msgstr "Este correo electrónico está asociado a un usuario registrado."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr "Docs AI"
#: core/templates/mail/html/template.html:153 #: core/templates/mail/html/template.html:153
#: core/templates/mail/text/template.txt:3 #: core/templates/mail/text/template.txt:3
+83 -79
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: French\n" "Language-Team: French\n"
"Language: fr_FR\n" "Language: fr_FR\n"
@@ -46,36 +46,40 @@ msgstr "Arborescence"
msgid "Title" msgid "Title"
msgstr "Titre" msgstr "Titre"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr "Recherche"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Je suis l'auteur" msgstr "Je suis l'auteur"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "Masqué" msgstr "Masqué"
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Favoris" msgstr "Favoris"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Un nouveau document a été créé pour vous !" msgstr "Un nouveau document a été créé pour vous !"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Vous avez été déclaré propriétaire d'un nouveau document :" msgstr "Vous avez été déclaré propriétaire d'un nouveau document :"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "Ce champ est obligatoire." msgstr "Ce champ est obligatoire."
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "La portée du lien '%(link_reach)s' n'est pas autorisée en fonction de la configuration du document parent." msgstr "La portée du lien '%(link_reach)s' n'est pas autorisée en fonction de la configuration du document parent."
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "copie de {title}" msgstr "copie de {title}"
@@ -247,46 +251,46 @@ msgstr "utilisateur"
msgid "users" msgid "users"
msgstr "utilisateurs" msgstr "utilisateurs"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "Adresse email active" msgstr "Adresse email active"
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "Adresse email à désactiver" msgstr "Adresse email à désactiver"
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "Identifiant unique dans le fichier source" msgstr "Identifiant unique dans le fichier source"
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:710 #: core/models.py:708
msgid "Pending" msgid "Pending"
msgstr "En attente" msgstr "En attente"
#: build/lib/core/models.py:413 core/models.py:413 #: build/lib/core/models.py:411 core/models.py:411
msgid "Ready" msgid "Ready"
msgstr "Prêt" msgstr "Prêt"
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:712 #: core/models.py:710
msgid "Done" msgid "Done"
msgstr "Terminé" msgstr "Terminé"
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "Erreur" msgstr "Erreur"
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "rapprochement de l'utilisateur" msgstr "rapprochement de l'utilisateur"
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "rapprochements de l'utilisateur" msgstr "rapprochements de l'utilisateur"
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
@@ -294,54 +298,54 @@ msgstr "Vous avez demandé un rapprochement de vos comptes utilisateur sur Docs.
" Pour confirmer que vous êtes bien à l'origine de cette demande\n" " Pour confirmer que vous êtes bien à l'origine de cette demande\n"
" et que cet e-mail vous appartient :" " et que cet e-mail vous appartient :"
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "Confirmez en cliquant sur le lien pour commencer le rapprochement" msgstr "Confirmez en cliquant sur le lien pour commencer le rapprochement"
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "Cliquez ici" msgstr "Cliquez ici"
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "Confirmer" msgstr "Confirmer"
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "Votre demande de rapprochement a été traitée.\n" msgstr "Votre demande de rapprochement a été traitée.\n"
" De nouveaux documents sont probablement associés à votre compte :" " De nouveaux documents sont probablement associés à votre compte :"
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "Vos comptes ont été fusionnés" msgstr "Vos comptes ont été fusionnés"
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "Cliquez ici pour voir" msgstr "Cliquez ici pour voir"
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "Voir mes documents" msgstr "Voir mes documents"
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "Fichier CSV" msgstr "Fichier CSV"
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "En cours" msgstr "En cours"
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "importation CSV de rapprochement utilisateur" msgstr "importation CSV de rapprochement utilisateur"
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "importations CSV de rapprochement utilisateur" msgstr "importations CSV de rapprochement utilisateur"
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -354,175 +358,175 @@ msgstr "Votre demande de rapprochement n'a pas abouti.\n"
" Veuillez vérifier qu'il n'y a pas de fautes de frappe.\n" " Veuillez vérifier qu'il n'y a pas de fautes de frappe.\n"
" Vous pouvez envoyer une nouvelle demande avec des adresses e-mail valides." " Vous pouvez envoyer une nouvelle demande avec des adresses e-mail valides."
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "Le rapprochement de vos comptes Docs n'est pas terminé" msgstr "Le rapprochement de vos comptes Docs n'est pas terminé"
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "Faire une nouvelle demande" msgstr "Faire une nouvelle demande"
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "titre" msgstr "titre"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "extrait" msgstr "extrait"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Document" msgstr "Document"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Documents" msgstr "Documents"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Document sans titre" msgstr "Document sans titre"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Ouvrir" msgstr "Ouvrir"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} a partagé un document avec vous!" msgstr "{name} a partagé un document avec vous!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} vous a invité avec le rôle \"{role}\" sur le document suivant :" msgstr "{name} vous a invité avec le rôle \"{role}\" sur le document suivant :"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} a partagé un document avec vous : {title}" msgstr "{name} a partagé un document avec vous : {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Trace du lien document/utilisateur" msgstr "Trace du lien document/utilisateur"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Traces du lien document/utilisateur" msgstr "Traces du lien document/utilisateur"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Une trace de lien existe déjà pour ce document/utilisateur." msgstr "Une trace de lien existe déjà pour ce document/utilisateur."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Document favori" msgstr "Document favori"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Documents favoris" msgstr "Documents favoris"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Ce document est déjà un favori de cet utilisateur." msgstr "Ce document est déjà un favori de cet utilisateur."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Relation document/utilisateur" msgstr "Relation document/utilisateur"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Relations document/utilisateur" msgstr "Relations document/utilisateur"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "Cet utilisateur est déjà dans ce document." msgstr "Cet utilisateur est déjà dans ce document."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Cette équipe est déjà dans ce document." msgstr "Cette équipe est déjà dans ce document."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "L'utilisateur ou l'équipe doivent être définis, pas les deux." msgstr "L'utilisateur ou l'équipe doivent être définis, pas les deux."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "Demande d'accès au document" msgstr "Demande d'accès au document"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "Demande d'accès au document" msgstr "Demande d'accès au document"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "Cet utilisateur a déjà demandé l'accès à ce document." msgstr "Cet utilisateur a déjà demandé l'accès à ce document."
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "{name} souhaiterait accéder au document suivant !" msgstr "{name} souhaiterait accéder au document suivant !"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "{name} souhaiterait accéder au document suivant :" msgstr "{name} souhaiterait accéder au document suivant :"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "{name} demande l'accès au document : {title}" msgstr "{name} demande l'accès au document : {title}"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "Conversation" msgstr "Conversation"
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "Conversations" msgstr "Conversations"
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "Anonyme" msgstr "Anonyme"
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "Commentaire" msgstr "Commentaire"
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "Commentaires" msgstr "Commentaires"
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "Cet émoji a déjà été réagi à ce commentaire." msgstr "Cet émoji a déjà été réagi à ce commentaire."
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "Réaction" msgstr "Réaction"
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "Réactions" msgstr "Réactions"
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "adresse e-mail" msgstr "adresse e-mail"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Invitation à un document" msgstr "Invitation à un document"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Invitations à un document" msgstr "Invitations à un document"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Cette adresse email est déjà associée à un utilisateur inscrit." msgstr "Cette adresse email est déjà associée à un utilisateur inscrit."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "Docs IA" msgstr "Docs IA"
+87 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Language: it_IT\n" "Language: it_IT\n"
@@ -46,36 +46,40 @@ msgstr "Struttura ad albero"
msgid "Title" msgid "Title"
msgstr "Titolo" msgstr "Titolo"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Il creatore sono io" msgstr "Il creatore sono io"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Preferiti" msgstr "Preferiti"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Un nuovo documento è stato creato a tuo nome!" msgstr "Un nuovo documento è stato creato a tuo nome!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Sei ora proprietario di un nuovo documento:" msgstr "Sei ora proprietario di un nuovo documento:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "copia di {title}" msgstr "copia di {title}"
@@ -247,98 +251,98 @@ msgstr "utente"
msgid "users" msgid "users"
msgstr "utenti" msgstr "utenti"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "titolo" msgstr "titolo"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "" msgstr ""
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Documento" msgstr "Documento"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Documenti" msgstr "Documenti"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Documento senza titolo" msgstr "Documento senza titolo"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Apri" msgstr "Apri"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} ha condiviso un documento con te!" msgstr "{name} ha condiviso un documento con te!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} ti ha invitato con il ruolo \"{role}\" nel seguente documento:" msgstr "{name} ti ha invitato con il ruolo \"{role}\" nel seguente documento:"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} ha condiviso un documento con te: {title}" msgstr "{name} ha condiviso un documento con te: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "" msgstr ""
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "" msgstr ""
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Documento preferito" msgstr "Documento preferito"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Documenti preferiti" msgstr "Documenti preferiti"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "Questo utente è già presente in questo documento." msgstr "Questo utente è già presente in questo documento."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Questo team è già presente in questo documento." msgstr "Questo team è già presente in questo documento."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "" msgstr ""
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "" msgstr ""
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "" msgstr ""
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr ""
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr ""
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr ""
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr ""
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "indirizzo e-mail" msgstr "indirizzo e-mail"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Invito al documento" msgstr "Invito al documento"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Inviti al documento" msgstr "Inviti al documento"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Questa email è già associata a un utente registrato." msgstr "Questa email è già associata a un utente registrato."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+83 -79
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Language: nl_NL\n" "Language: nl_NL\n"
@@ -46,36 +46,40 @@ msgstr "Boomstructuur"
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Ik ben eigenaar" msgstr "Ik ben eigenaar"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "Gemaskeerd" msgstr "Gemaskeerd"
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Favoriet" msgstr "Favoriet"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Een nieuw document is namens u gemaakt!" msgstr "Een nieuw document is namens u gemaakt!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "U heeft eigenaarschap van een nieuw document gekregen:" msgstr "U heeft eigenaarschap van een nieuw document gekregen:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "Dit veld is verplicht." msgstr "Dit veld is verplicht."
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "Link bereik '%(link_reach)s' is niet toegestaan op basis van bovenliggende documentconfiguratie." msgstr "Link bereik '%(link_reach)s' is niet toegestaan op basis van bovenliggende documentconfiguratie."
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "kopie van {title}" msgstr "kopie van {title}"
@@ -247,46 +251,46 @@ msgstr "gebruiker"
msgid "users" msgid "users"
msgstr "gebruikers" msgstr "gebruikers"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "Actieve e-mail adres" msgstr "Actieve e-mail adres"
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "E-mailadres om te deactiveren" msgstr "E-mailadres om te deactiveren"
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "Unieke ID in het bronbestand" msgstr "Unieke ID in het bronbestand"
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:710 #: core/models.py:708
msgid "Pending" msgid "Pending"
msgstr "In behandeling" msgstr "In behandeling"
#: build/lib/core/models.py:413 core/models.py:413 #: build/lib/core/models.py:411 core/models.py:411
msgid "Ready" msgid "Ready"
msgstr "Klaar" msgstr "Klaar"
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:712 #: core/models.py:710
msgid "Done" msgid "Done"
msgstr "Klaar" msgstr "Klaar"
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "Fout" msgstr "Fout"
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "gebruiker samenvoegen" msgstr "gebruiker samenvoegen"
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "gebruikers samenvoegen" msgstr "gebruikers samenvoegen"
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
@@ -294,54 +298,54 @@ msgstr "Je hebt gevraagd om een samenvoeging van je gebruikersaccounts op Docs.\
" Om te bevestigen dat u degene bent die het verzoek\n" " Om te bevestigen dat u degene bent die het verzoek\n"
" heeft geïnitieerd en dat deze e-mail van u is:" " heeft geïnitieerd en dat deze e-mail van u is:"
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "Bevestig door te klikken op de link om de samenvoeging te starten" msgstr "Bevestig door te klikken op de link om de samenvoeging te starten"
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "Klik hier" msgstr "Klik hier"
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "Bevestig" msgstr "Bevestig"
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "Uw samenvoegingsverzoek is verwerkt.\n" msgstr "Uw samenvoegingsverzoek is verwerkt.\n"
" Nieuwe documenten worden waarschijnlijk geassocieerd met uw account:" " Nieuwe documenten worden waarschijnlijk geassocieerd met uw account:"
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "Je accounts zijn samengevoegd" msgstr "Je accounts zijn samengevoegd"
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "Klik hier om te bekijken" msgstr "Klik hier om te bekijken"
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "Mijn documenten bekijken" msgstr "Mijn documenten bekijken"
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "CSV bestand" msgstr "CSV bestand"
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "Bezig" msgstr "Bezig"
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "gebruiker samenvoeging CSV import" msgstr "gebruiker samenvoeging CSV import"
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "gebruiker reconciliation CSV imports" msgstr "gebruiker reconciliation CSV imports"
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -354,175 +358,175 @@ msgstr "Uw verzoek tot verzoening is mislukt.\n"
" Controleer op typefouten.\n" " Controleer op typefouten.\n"
" U kunt een ander verzoek indienen met de geldige e-mailadressen." " U kunt een ander verzoek indienen met de geldige e-mailadressen."
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "Samenvoeging van je Docs accounts is niet voltooid" msgstr "Samenvoeging van je Docs accounts is niet voltooid"
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "Maak een nieuw verzoek" msgstr "Maak een nieuw verzoek"
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "titel" msgstr "titel"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "uittreksel" msgstr "uittreksel"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Document" msgstr "Document"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Documenten" msgstr "Documenten"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Naamloos Document" msgstr "Naamloos Document"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} heeft een document met u gedeeld!" msgstr "{name} heeft een document met u gedeeld!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} heeft u uitgenodigd met de rol \"{role}\" op het volgende document:" msgstr "{name} heeft u uitgenodigd met de rol \"{role}\" op het volgende document:"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} heeft een document met u gedeeld: {title}" msgstr "{name} heeft een document met u gedeeld: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Document/gebruiker link" msgstr "Document/gebruiker link"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Document/gebruiker link" msgstr "Document/gebruiker link"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Een link bestaat al voor dit document/deze gebruiker." msgstr "Een link bestaat al voor dit document/deze gebruiker."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Document favoriet" msgstr "Document favoriet"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Document favorieten" msgstr "Document favorieten"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Dit document is al in gebruik als favoriet door dezelfde gebruiker." msgstr "Dit document is al in gebruik als favoriet door dezelfde gebruiker."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Document/gebruiker relatie" msgstr "Document/gebruiker relatie"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Document/gebruiker relaties" msgstr "Document/gebruiker relaties"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "De gebruiker bestaat al in dit document." msgstr "De gebruiker bestaat al in dit document."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Dit team bestaat al in dit document." msgstr "Dit team bestaat al in dit document."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "Een gebruiker of team moet gekozen worden, maar niet beide." msgstr "Een gebruiker of team moet gekozen worden, maar niet beide."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "Document verzoekt om toegang" msgstr "Document verzoekt om toegang"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "Document verzoekt om toegangen" msgstr "Document verzoekt om toegangen"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "Deze gebruiker heeft al om toegang tot dit document gevraagd." msgstr "Deze gebruiker heeft al om toegang tot dit document gevraagd."
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "{name} verzoekt toegang tot een document!" msgstr "{name} verzoekt toegang tot een document!"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "{name} verzoekt toegang tot het volgende document:" msgstr "{name} verzoekt toegang tot het volgende document:"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "{name} verzoekt toegang tot het document: {title}" msgstr "{name} verzoekt toegang tot het document: {title}"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "Kanaal" msgstr "Kanaal"
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "Kanalen" msgstr "Kanalen"
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "Anoniem" msgstr "Anoniem"
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "Reactie" msgstr "Reactie"
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "Reacties" msgstr "Reacties"
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "Deze emoji is al op deze opmerking gereageerd." msgstr "Deze emoji is al op deze opmerking gereageerd."
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "Reactie" msgstr "Reactie"
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "Reacties" msgstr "Reacties"
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "e-mailadres" msgstr "e-mailadres"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Document uitnodiging" msgstr "Document uitnodiging"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Document uitnodigingen" msgstr "Document uitnodigingen"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Deze email is al geassocieerd met een geregistreerde gebruiker." msgstr "Deze email is al geassocieerd met een geregistreerde gebruiker."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "Docs AI" msgstr "Docs AI"
+93 -89
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Language: pt_PT\n" "Language: pt_PT\n"
@@ -46,36 +46,40 @@ msgstr "Estrutura de árvore"
msgid "Title" msgid "Title"
msgstr "Título" msgstr "Título"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Eu sou o criador" msgstr "Eu sou o criador"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Favorito" msgstr "Favorito"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Um novo documento foi criado em seu nome!" msgstr "Um novo documento foi criado em seu nome!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "A propriedade de um novo documento foi concedida a você:" msgstr "A propriedade de um novo documento foi concedida a você:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "cópia de {title}" msgstr "cópia de {title}"
@@ -137,7 +141,7 @@ msgstr ""
#: build/lib/core/enums.py:40 core/enums.py:40 #: build/lib/core/enums.py:40 core/enums.py:40
msgid "Left" msgid "Left"
msgstr "" msgstr "Esquerda"
#: build/lib/core/enums.py:41 core/enums.py:41 #: build/lib/core/enums.py:41 core/enums.py:41
msgid "Right" msgid "Right"
@@ -145,7 +149,7 @@ msgstr ""
#: build/lib/core/models.py:80 core/models.py:80 #: build/lib/core/models.py:80 core/models.py:80
msgid "id" msgid "id"
msgstr "" msgstr "id"
#: build/lib/core/models.py:81 core/models.py:81 #: build/lib/core/models.py:81 core/models.py:81
msgid "primary key for the record as UUID" msgid "primary key for the record as UUID"
@@ -173,7 +177,7 @@ msgstr ""
#: build/lib/core/models.py:141 core/models.py:141 #: build/lib/core/models.py:141 core/models.py:141
msgid "sub" msgid "sub"
msgstr "" msgstr "sub"
#: build/lib/core/models.py:142 core/models.py:142 #: build/lib/core/models.py:142 core/models.py:142
msgid "Required. 255 characters or fewer. ASCII characters only." msgid "Required. 255 characters or fewer. ASCII characters only."
@@ -241,104 +245,104 @@ msgstr ""
#: build/lib/core/models.py:209 core/models.py:209 #: build/lib/core/models.py:209 core/models.py:209
msgid "user" msgid "user"
msgstr "" msgstr "utilizador"
#: build/lib/core/models.py:210 core/models.py:210 #: build/lib/core/models.py:210 core/models.py:210
msgid "users" msgid "users"
msgstr "" msgstr ""
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr "Concluído"
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "" msgstr ""
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "" msgstr ""
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "" msgstr "Abrir"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "" msgstr ""
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "" msgstr ""
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "" msgstr ""
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "" msgstr ""
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "" msgstr ""
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "" msgstr ""
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "" msgstr ""
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr ""
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr ""
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr ""
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr ""
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "" msgstr ""
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+83 -79
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"Language: ru_RU\n" "Language: ru_RU\n"
@@ -46,36 +46,40 @@ msgstr "Древовидная структура"
msgid "Title" msgid "Title"
msgstr "Заголовок" msgstr "Заголовок"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr "Поиск"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Создатель - я" msgstr "Создатель - я"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "Скрытый" msgstr "Скрытый"
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Избранное" msgstr "Избранное"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Новый документ был создан от вашего имени!" msgstr "Новый документ был создан от вашего имени!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Вы назначены владельцем для нового документа:" msgstr "Вы назначены владельцем для нового документа:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "Это поле обязательное." msgstr "Это поле обязательное."
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "Доступ по ссылке '%(link_reach)s' запрещён в соответствии с настройками родительского документа." msgstr "Доступ по ссылке '%(link_reach)s' запрещён в соответствии с настройками родительского документа."
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "копия {title}" msgstr "копия {title}"
@@ -247,46 +251,46 @@ msgstr "пользователь"
msgid "users" msgid "users"
msgstr "пользователи" msgstr "пользователи"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "Активный адрес электронной почты" msgstr "Активный адрес электронной почты"
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "Адрес электронной почты для деактивации" msgstr "Адрес электронной почты для деактивации"
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "Уникальный идентификатор в исходном файле" msgstr "Уникальный идентификатор в исходном файле"
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:710 #: core/models.py:708
msgid "Pending" msgid "Pending"
msgstr "В обработке" msgstr "В обработке"
#: build/lib/core/models.py:413 core/models.py:413 #: build/lib/core/models.py:411 core/models.py:411
msgid "Ready" msgid "Ready"
msgstr "Готово" msgstr "Готово"
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:712 #: core/models.py:710
msgid "Done" msgid "Done"
msgstr "Выполнено" msgstr "Выполнено"
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "Ошибка" msgstr "Ошибка"
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "сверка данных пользователя" msgstr "сверка данных пользователя"
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "сверки данных пользователя" msgstr "сверки данных пользователя"
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
@@ -294,54 +298,54 @@ msgstr "Вы запросили сверку учётных записей по
" Чтобы подтвердить факт того, что вы являетесь инициатором запроса\n" " Чтобы подтвердить факт того, что вы являетесь инициатором запроса\n"
" и что этот адрес принадлежит вам:" " и что этот адрес принадлежит вам:"
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "Чтобы начать сверку, подтвердите это, нажав на ссылку" msgstr "Чтобы начать сверку, подтвердите это, нажав на ссылку"
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "Нажмите здесь" msgstr "Нажмите здесь"
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "Подтверждение" msgstr "Подтверждение"
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "Ваш запрос на сверку был обработан.\n" msgstr "Ваш запрос на сверку был обработан.\n"
" Новые документы, вероятно, связаны с вашей учётной записью:" " Новые документы, вероятно, связаны с вашей учётной записью:"
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "Ваши учётные записи были объединены" msgstr "Ваши учётные записи были объединены"
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "Нажмите здесь, чтобы просмотреть" msgstr "Нажмите здесь, чтобы просмотреть"
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "Просмотреть мои документы" msgstr "Просмотреть мои документы"
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "CSV-файл" msgstr "CSV-файл"
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "Выполнение" msgstr "Выполнение"
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "импорт из CSV сверки пользователей" msgstr "импорт из CSV сверки пользователей"
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "импорты из CSV сверки пользователями" msgstr "импорты из CSV сверки пользователями"
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -354,175 +358,175 @@ msgstr "Ваш запрос на сверку не удался.\n"
" Пожалуйста, проверьте, нет ли в них опечаток.\n" " Пожалуйста, проверьте, нет ли в них опечаток.\n"
" Вы можете отправить ещё один запрос с действительными адресами электронной почты." " Вы можете отправить ещё один запрос с действительными адресами электронной почты."
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "Сверка ваших учётных записей Docs не завершена" msgstr "Сверка ваших учётных записей Docs не завершена"
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "Создать новый запрос" msgstr "Создать новый запрос"
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "заголовок" msgstr "заголовок"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "отрывок" msgstr "отрывок"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Документ" msgstr "Документ"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Документы" msgstr "Документы"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Безымянный документ" msgstr "Безымянный документ"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Открыть" msgstr "Открыть"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} делится с вами документом!" msgstr "{name} делится с вами документом!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} приглашает вас присоединиться к следующему документу с ролью \"{role}\":" msgstr "{name} приглашает вас присоединиться к следующему документу с ролью \"{role}\":"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} делится с вами документом: {title}" msgstr "{name} делится с вами документом: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Трассировка связи документ/пользователь" msgstr "Трассировка связи документ/пользователь"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Трассировка связей документ/пользователь" msgstr "Трассировка связей документ/пользователь"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Для этого документа/пользователя уже существует трассировка ссылки." msgstr "Для этого документа/пользователя уже существует трассировка ссылки."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Избранный документ" msgstr "Избранный документ"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Избранные документы" msgstr "Избранные документы"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Этот документ уже помечен как избранный для этого пользователя." msgstr "Этот документ уже помечен как избранный для этого пользователя."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Отношение документ/пользователь" msgstr "Отношение документ/пользователь"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Отношения документ/пользователь" msgstr "Отношения документ/пользователь"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "Этот пользователь уже имеет доступ к этому документу." msgstr "Этот пользователь уже имеет доступ к этому документу."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Эта команда уже имеет доступ к этому документу." msgstr "Эта команда уже имеет доступ к этому документу."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "Может быть выбран либо пользователь, либо команда, но не оба варианта сразу." msgstr "Может быть выбран либо пользователь, либо команда, но не оба варианта сразу."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "Документ запрашивает доступ" msgstr "Документ запрашивает доступ"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "Документ запрашивает доступы" msgstr "Документ запрашивает доступы"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "Этот пользователь уже запросил доступ к этому документу." msgstr "Этот пользователь уже запросил доступ к этому документу."
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "{name} хочет получить доступ к документу!" msgstr "{name} хочет получить доступ к документу!"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "{name} хочет получить доступ к следующему документу:" msgstr "{name} хочет получить доступ к следующему документу:"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "{name} запрашивает доступ к документу: {title}" msgstr "{name} запрашивает доступ к документу: {title}"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "Обсуждение" msgstr "Обсуждение"
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "Обсуждения" msgstr "Обсуждения"
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "Аноним" msgstr "Аноним"
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "Комментарий" msgstr "Комментарий"
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "Комментарии" msgstr "Комментарии"
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "Этот эмодзи уже использован в этом комментарии." msgstr "Этот эмодзи уже использован в этом комментарии."
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "Реакция" msgstr "Реакция"
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "Реакции" msgstr "Реакции"
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "адрес электронной почты" msgstr "адрес электронной почты"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Приглашение для документа" msgstr "Приглашение для документа"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Приглашения для документов" msgstr "Приглашения для документов"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Этот адрес уже связан с зарегистрированным пользователем." msgstr "Этот адрес уже связан с зарегистрированным пользователем."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "Docs ИИ" msgstr "Docs ИИ"
+87 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Slovenian\n" "Language-Team: Slovenian\n"
"Language: sl_SI\n" "Language: sl_SI\n"
@@ -46,36 +46,40 @@ msgstr "Drevesna struktura"
msgid "Title" msgid "Title"
msgstr "Naslov" msgstr "Naslov"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Ustvaril sem jaz" msgstr "Ustvaril sem jaz"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Priljubljena" msgstr "Priljubljena"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Nov dokument je bil ustvarjen v vašem imenu!" msgstr "Nov dokument je bil ustvarjen v vašem imenu!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Dodeljeno vam je bilo lastništvo nad novim dokumentom:" msgstr "Dodeljeno vam je bilo lastništvo nad novim dokumentom:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "" msgstr ""
@@ -247,98 +251,98 @@ msgstr "uporabnik"
msgid "users" msgid "users"
msgstr "uporabniki" msgstr "uporabniki"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "naslov" msgstr "naslov"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "odlomek" msgstr "odlomek"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Dokument" msgstr "Dokument"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Dokument brez naslova" msgstr "Dokument brez naslova"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Odpri" msgstr "Odpri"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} je delil dokument z vami!" msgstr "{name} je delil dokument z vami!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} vas je povabil z vlogo \"{role}\" na naslednjem dokumentu:" msgstr "{name} vas je povabil z vlogo \"{role}\" na naslednjem dokumentu:"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} je delil dokument z vami: {title}" msgstr "{name} je delil dokument z vami: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Dokument/sled povezave uporabnika" msgstr "Dokument/sled povezave uporabnika"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Sledi povezav dokumenta/uporabnika" msgstr "Sledi povezav dokumenta/uporabnika"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Za ta dokument/uporabnika že obstaja sled povezave." msgstr "Za ta dokument/uporabnika že obstaja sled povezave."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Priljubljeni dokument" msgstr "Priljubljeni dokument"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Priljubljeni dokumenti" msgstr "Priljubljeni dokumenti"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Ta dokument je že ciljno usmerjen s priljubljenim primerkom relacije za istega uporabnika." msgstr "Ta dokument je že ciljno usmerjen s priljubljenim primerkom relacije za istega uporabnika."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Odnos dokument/uporabnik" msgstr "Odnos dokument/uporabnik"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Odnosi dokument/uporabnik" msgstr "Odnosi dokument/uporabnik"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "Ta uporabnik je že v tem dokumentu." msgstr "Ta uporabnik je že v tem dokumentu."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Ta ekipa je že v tem dokumentu." msgstr "Ta ekipa je že v tem dokumentu."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "Nastaviti je treba bodisi uporabnika ali ekipo, a ne obojega." msgstr "Nastaviti je treba bodisi uporabnika ali ekipo, a ne obojega."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "" msgstr ""
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "" msgstr ""
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr ""
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr ""
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr ""
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr ""
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "elektronski naslov" msgstr "elektronski naslov"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Vabilo na dokument" msgstr "Vabilo na dokument"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Vabila na dokument" msgstr "Vabila na dokument"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Ta e-poštni naslov je že povezan z registriranim uporabnikom." msgstr "Ta e-poštni naslov je že povezan z registriranim uporabnikom."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+87 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Language: sv_SE\n" "Language: sv_SE\n"
@@ -46,36 +46,40 @@ msgstr ""
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Skaparen är jag" msgstr "Skaparen är jag"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Favoriter" msgstr "Favoriter"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Ett nytt dokument skapades åt dig!" msgstr "Ett nytt dokument skapades åt dig!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Du har beviljats äganderätt till ett nytt dokument:" msgstr "Du har beviljats äganderätt till ett nytt dokument:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "" msgstr ""
@@ -247,98 +251,98 @@ msgstr ""
msgid "users" msgid "users"
msgstr "" msgstr ""
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "" msgstr ""
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "" msgstr ""
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Öppna" msgstr "Öppna"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "" msgstr ""
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "" msgstr ""
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "" msgstr ""
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "" msgstr ""
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "" msgstr ""
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "" msgstr ""
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "" msgstr ""
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr ""
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr ""
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr ""
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr ""
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "e-postadress" msgstr "e-postadress"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Bjud in dokument" msgstr "Bjud in dokument"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Inbjudningar dokument" msgstr "Inbjudningar dokument"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Denna e-postadress är redan associerad med en registrerad användare." msgstr "Denna e-postadress är redan associerad med en registrerad användare."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+87 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Language: tr_TR\n" "Language: tr_TR\n"
@@ -46,36 +46,40 @@ msgstr ""
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Creator is me" msgid "Search"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Masked" msgid "Creator is me"
msgstr "" msgstr ""
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked"
msgstr ""
#: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "" msgstr ""
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "" msgstr ""
@@ -247,98 +251,98 @@ msgstr ""
msgid "users" msgid "users"
msgstr "" msgstr ""
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "" msgstr ""
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "" msgstr ""
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "" msgstr ""
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "" msgstr ""
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "" msgstr ""
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "" msgstr ""
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "" msgstr ""
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "" msgstr ""
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "" msgstr ""
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "" msgstr ""
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "" msgstr ""
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "" msgstr ""
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "" msgstr ""
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "" msgstr ""
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "" msgstr ""
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "" msgstr ""
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "" msgstr ""
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "" msgstr ""
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "" msgstr ""
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "" msgstr ""
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "" msgstr ""
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "" msgstr ""
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "" msgstr ""
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "" msgstr ""
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "" msgstr ""
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+83 -79
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
"Language: uk_UA\n" "Language: uk_UA\n"
@@ -46,36 +46,40 @@ msgstr "Ієрархічна структура"
msgid "Title" msgid "Title"
msgstr "Заголовок" msgstr "Заголовок"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr "Пошук"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "Творець — я" msgstr "Творець — я"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "Приховано" msgstr "Приховано"
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "Обране" msgstr "Обране"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "Новий документ був створений від вашого імені!" msgstr "Новий документ був створений від вашого імені!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "Ви тепер є власником нового документа:" msgstr "Ви тепер є власником нового документа:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "Це поле є обов’язковим." msgstr "Це поле є обов’язковим."
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "Доступ до посилання '%(link_reach)s' заборонено на основі конфігурації батьківського документа." msgstr "Доступ до посилання '%(link_reach)s' заборонено на основі конфігурації батьківського документа."
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "копія {title}" msgstr "копія {title}"
@@ -247,46 +251,46 @@ msgstr "користувач"
msgid "users" msgid "users"
msgstr "користувачі" msgstr "користувачі"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "Активна електронна адреса" msgstr "Активна електронна адреса"
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "Електронна адреса, що буде деактивована" msgstr "Електронна адреса, що буде деактивована"
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "Унікальний ідентифікатор у вихідному файлі" msgstr "Унікальний ідентифікатор у вихідному файлі"
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:710 #: core/models.py:708
msgid "Pending" msgid "Pending"
msgstr "В очікуванні" msgstr "В очікуванні"
#: build/lib/core/models.py:413 core/models.py:413 #: build/lib/core/models.py:411 core/models.py:411
msgid "Ready" msgid "Ready"
msgstr "Готово" msgstr "Готово"
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:712 #: core/models.py:710
msgid "Done" msgid "Done"
msgstr "Виконано" msgstr "Виконано"
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "Помилка" msgstr "Помилка"
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "узгодження користувачів" msgstr "узгодження користувачів"
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "узгодження користувачів" msgstr "узгодження користувачів"
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
@@ -294,54 +298,54 @@ msgstr "Ви запросили узгодження своїх облікови
" Щоб підтвердити, що саме ви ініціювали запит\n" " Щоб підтвердити, що саме ви ініціювали запит\n"
" і що ця електронна адреса належить вам:" " і що ця електронна адреса належить вам:"
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "Підтвердіть, натиснувши на посилання, щоб почати узгодження" msgstr "Підтвердіть, натиснувши на посилання, щоб почати узгодження"
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "Натисніть тут" msgstr "Натисніть тут"
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "Підтвердження" msgstr "Підтвердження"
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "Ваш запит на узгодження оброблено.\n" msgstr "Ваш запит на узгодження оброблено.\n"
" Нові документи, ймовірно, пов'язані з вашим обліковим записом:" " Нові документи, ймовірно, пов'язані з вашим обліковим записом:"
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "Ваші облікові записи були об'єднані" msgstr "Ваші облікові записи були об'єднані"
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "Натисніть тут, щоб переглянути" msgstr "Натисніть тут, щоб переглянути"
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "Переглянути мої документи" msgstr "Переглянути мої документи"
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "CSV-файл" msgstr "CSV-файл"
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "Виконується" msgstr "Виконується"
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "імпорт CSV для узгодження користувачів" msgstr "імпорт CSV для узгодження користувачів"
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "імпорт CSV для узгодження користувачів" msgstr "імпорт CSV для узгодження користувачів"
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -354,175 +358,175 @@ msgstr "Ваш запит на узгодження не був виконани
" Перевірте, чи немає помилок.\n" " Перевірте, чи немає помилок.\n"
" Ви можете надіслати інший запит із дійсними адресами електронної пошти." " Ви можете надіслати інший запит із дійсними адресами електронної пошти."
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "Узгодження ваших облікових записів не завершено" msgstr "Узгодження ваших облікових записів не завершено"
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "Зробити новий запит" msgstr "Зробити новий запит"
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "заголовок" msgstr "заголовок"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "уривок" msgstr "уривок"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "Документ" msgstr "Документ"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "Документи" msgstr "Документи"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "Документ без назви" msgstr "Документ без назви"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "Відкрити" msgstr "Відкрити"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} ділиться з вами документом!" msgstr "{name} ділиться з вами документом!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} запрошує вас для роботи з документом із роллю \"{role}\":" msgstr "{name} запрошує вас для роботи з документом із роллю \"{role}\":"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} ділиться з вами документом: {title}" msgstr "{name} ділиться з вами документом: {title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "Трасування посилання Документ/користувач" msgstr "Трасування посилання Документ/користувач"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "Трасування посилань Документ/користувач" msgstr "Трасування посилань Документ/користувач"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "Відстеження вже існуючих посилань для цього документа/користувача." msgstr "Відстеження вже існуючих посилань для цього документа/користувача."
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "Обраний документ" msgstr "Обраний документ"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "Обрані документи" msgstr "Обрані документи"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "Цей документ вже вказаний як обраний для одного користувача." msgstr "Цей документ вже вказаний як обраний для одного користувача."
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "Відносини документ/користувач" msgstr "Відносини документ/користувач"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "Відносини документ/користувач" msgstr "Відносини документ/користувач"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "Цей користувач вже має доступ до цього документу." msgstr "Цей користувач вже має доступ до цього документу."
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "Ця команда вже має доступ до цього документа." msgstr "Ця команда вже має доступ до цього документа."
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "Вкажіть користувача або команду, а не обох." msgstr "Вкажіть користувача або команду, а не обох."
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "Запит доступу до документа" msgstr "Запит доступу до документа"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "Запит доступу для документа" msgstr "Запит доступу для документа"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "Цей користувач вже попросив доступ до цього документа." msgstr "Цей користувач вже попросив доступ до цього документа."
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "{name} хоче отримати доступ до документа!" msgstr "{name} хоче отримати доступ до документа!"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "{name} бажає отримати доступ до наступного документа:" msgstr "{name} бажає отримати доступ до наступного документа:"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "{name} запитує доступ до документа: {title}" msgstr "{name} запитує доступ до документа: {title}"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "Обговорення" msgstr "Обговорення"
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "Обговорення" msgstr "Обговорення"
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "Анонім" msgstr "Анонім"
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "Коментар" msgstr "Коментар"
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "Коментарі" msgstr "Коментарі"
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "Цим емодзі вже відреагували на цей коментар." msgstr "Цим емодзі вже відреагували на цей коментар."
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "Реакція" msgstr "Реакція"
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "Реакції" msgstr "Реакції"
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "електронна адреса" msgstr "електронна адреса"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "Запрошення до редагування документа" msgstr "Запрошення до редагування документа"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "Запрошення до редагування документів" msgstr "Запрошення до редагування документів"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "Ця електронна пошта вже пов'язана з зареєстрованим користувачем." msgstr "Ця електронна пошта вже пов'язана з зареєстрованим користувачем."
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "Docs ШІ" msgstr "Docs ШІ"
+87 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lasuite-docs\n" "Project-Id-Version: lasuite-docs\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-12 13:31+0000\n" "POT-Creation-Date: 2026-03-25 16:42+0000\n"
"PO-Revision-Date: 2026-03-13 16:53\n" "PO-Revision-Date: 2026-03-25 16:55\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"Language: zh_CN\n" "Language: zh_CN\n"
@@ -46,36 +46,40 @@ msgstr "樹狀結構"
msgid "Title" msgid "Title"
msgstr "標題" msgstr "標題"
#: build/lib/core/api/filters.py:62 core/api/filters.py:62 #: build/lib/core/api/filters.py:51 core/api/filters.py:51
msgid "Search"
msgstr ""
#: build/lib/core/api/filters.py:65 core/api/filters.py:65
msgid "Creator is me" msgid "Creator is me"
msgstr "建立者是我" msgstr "建立者是我"
#: build/lib/core/api/filters.py:65 core/api/filters.py:65 #: build/lib/core/api/filters.py:68 core/api/filters.py:68
msgid "Masked" msgid "Masked"
msgstr "已隱藏" msgstr "已隱藏"
#: build/lib/core/api/filters.py:68 core/api/filters.py:68 #: build/lib/core/api/filters.py:71 core/api/filters.py:71
msgid "Favorite" msgid "Favorite"
msgstr "我的最愛" msgstr "我的最愛"
#: build/lib/core/api/serializers.py:526 core/api/serializers.py:526 #: build/lib/core/api/serializers.py:535 core/api/serializers.py:535
msgid "A new document was created on your behalf!" msgid "A new document was created on your behalf!"
msgstr "已代表您建立新文件!" msgstr "已代表您建立新文件!"
#: build/lib/core/api/serializers.py:530 core/api/serializers.py:530 #: build/lib/core/api/serializers.py:539 core/api/serializers.py:539
msgid "You have been granted ownership of a new document:" msgid "You have been granted ownership of a new document:"
msgstr "您已獲得新文件的所有權:" msgstr "您已獲得新文件的所有權:"
#: build/lib/core/api/serializers.py:566 core/api/serializers.py:566 #: build/lib/core/api/serializers.py:575 core/api/serializers.py:575
msgid "This field is required." msgid "This field is required."
msgstr "此欄位為必填。" msgstr "此欄位為必填。"
#: build/lib/core/api/serializers.py:577 core/api/serializers.py:577 #: build/lib/core/api/serializers.py:586 core/api/serializers.py:586
#, python-format #, python-format
msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration." msgid "Link reach '%(link_reach)s' is not allowed based on parent document configuration."
msgstr "根據父文件設定,不允許連結範圍「%(link_reach)s」。" msgstr "根據父文件設定,不允許連結範圍「%(link_reach)s」。"
#: build/lib/core/api/viewsets.py:1298 core/api/viewsets.py:1298 #: build/lib/core/api/viewsets.py:1315 core/api/viewsets.py:1315
#, python-brace-format #, python-brace-format
msgid "copy of {title}" msgid "copy of {title}"
msgstr "{title} 的副本" msgstr "{title} 的副本"
@@ -247,98 +251,98 @@ msgstr "使用者"
msgid "users" msgid "users"
msgstr "使用者" msgstr "使用者"
#: build/lib/core/models.py:378 core/models.py:378 #: build/lib/core/models.py:376 core/models.py:376
msgid "Active email address" msgid "Active email address"
msgstr "" msgstr ""
#: build/lib/core/models.py:379 core/models.py:379 #: build/lib/core/models.py:377 core/models.py:377
msgid "Email address to deactivate" msgid "Email address to deactivate"
msgstr "" msgstr ""
#: build/lib/core/models.py:406 core/models.py:406 #: build/lib/core/models.py:404 core/models.py:404
msgid "Unique ID in the source file" msgid "Unique ID in the source file"
msgstr "" msgstr ""
#: build/lib/core/models.py:410 build/lib/core/models.py:708 core/models.py:410
#: core/models.py:708
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:411 core/models.py:411
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412 #: build/lib/core/models.py:412 build/lib/core/models.py:710 core/models.py:412
#: core/models.py:710 #: core/models.py:710
msgid "Pending"
msgstr ""
#: build/lib/core/models.py:413 core/models.py:413
msgid "Ready"
msgstr ""
#: build/lib/core/models.py:414 build/lib/core/models.py:712 core/models.py:414
#: core/models.py:712
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: build/lib/core/models.py:415 build/lib/core/models.py:713 core/models.py:415 #: build/lib/core/models.py:413 build/lib/core/models.py:711 core/models.py:413
#: core/models.py:713 #: core/models.py:711
msgid "Error" msgid "Error"
msgstr "" msgstr ""
#: build/lib/core/models.py:423 core/models.py:423 #: build/lib/core/models.py:421 core/models.py:421
msgid "user reconciliation" msgid "user reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:424 core/models.py:424 #: build/lib/core/models.py:422 core/models.py:422
msgid "user reconciliations" msgid "user reconciliations"
msgstr "" msgstr ""
#: build/lib/core/models.py:662 core/models.py:662 #: build/lib/core/models.py:660 core/models.py:660
msgid "You have requested a reconciliation of your user accounts on Docs.\n" msgid "You have requested a reconciliation of your user accounts on Docs.\n"
" To confirm that you are the one who initiated the request\n" " To confirm that you are the one who initiated the request\n"
" and that this email belongs to you:" " and that this email belongs to you:"
msgstr "" msgstr ""
#: build/lib/core/models.py:668 core/models.py:668 #: build/lib/core/models.py:666 core/models.py:666
msgid "Confirm by clicking the link to start the reconciliation" msgid "Confirm by clicking the link to start the reconciliation"
msgstr "" msgstr ""
#: build/lib/core/models.py:673 build/lib/core/models.py:779 core/models.py:673 #: build/lib/core/models.py:671 build/lib/core/models.py:777 core/models.py:671
#: core/models.py:779 #: core/models.py:777
msgid "Click here" msgid "Click here"
msgstr "" msgstr ""
#: build/lib/core/models.py:674 core/models.py:674 #: build/lib/core/models.py:672 core/models.py:672
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: build/lib/core/models.py:685 core/models.py:685 #: build/lib/core/models.py:683 core/models.py:683
msgid "Your reconciliation request has been processed.\n" msgid "Your reconciliation request has been processed.\n"
" New documents are likely associated with your account:" " New documents are likely associated with your account:"
msgstr "" msgstr ""
#: build/lib/core/models.py:690 core/models.py:690 #: build/lib/core/models.py:688 core/models.py:688
msgid "Your accounts have been merged" msgid "Your accounts have been merged"
msgstr "" msgstr ""
#: build/lib/core/models.py:695 core/models.py:695 #: build/lib/core/models.py:693 core/models.py:693
msgid "Click here to see" msgid "Click here to see"
msgstr "" msgstr ""
#: build/lib/core/models.py:696 core/models.py:696 #: build/lib/core/models.py:694 core/models.py:694
msgid "See my documents" msgid "See my documents"
msgstr "" msgstr ""
#: build/lib/core/models.py:706 core/models.py:706 #: build/lib/core/models.py:704 core/models.py:704
msgid "CSV file" msgid "CSV file"
msgstr "" msgstr ""
#: build/lib/core/models.py:711 core/models.py:711 #: build/lib/core/models.py:709 core/models.py:709
msgid "Running" msgid "Running"
msgstr "" msgstr ""
#: build/lib/core/models.py:721 core/models.py:721 #: build/lib/core/models.py:719 core/models.py:719
msgid "user reconciliation CSV import" msgid "user reconciliation CSV import"
msgstr "" msgstr ""
#: build/lib/core/models.py:722 core/models.py:722 #: build/lib/core/models.py:720 core/models.py:720
msgid "user reconciliation CSV imports" msgid "user reconciliation CSV imports"
msgstr "" msgstr ""
#: build/lib/core/models.py:766 core/models.py:766 #: build/lib/core/models.py:764 core/models.py:764
#, python-brace-format #, python-brace-format
msgid "Your request for reconciliation was unsuccessful.\n" msgid "Your request for reconciliation was unsuccessful.\n"
" Reconciliation failed for the following email addresses:\n" " Reconciliation failed for the following email addresses:\n"
@@ -347,175 +351,175 @@ msgid "Your request for reconciliation was unsuccessful.\n"
" You can submit another request with the valid email addresses." " You can submit another request with the valid email addresses."
msgstr "" msgstr ""
#: build/lib/core/models.py:774 core/models.py:774 #: build/lib/core/models.py:772 core/models.py:772
msgid "Reconciliation of your Docs accounts not completed" msgid "Reconciliation of your Docs accounts not completed"
msgstr "" msgstr ""
#: build/lib/core/models.py:780 core/models.py:780 #: build/lib/core/models.py:778 core/models.py:778
msgid "Make a new request" msgid "Make a new request"
msgstr "" msgstr ""
#: build/lib/core/models.py:879 core/models.py:879 #: build/lib/core/models.py:877 core/models.py:877
msgid "title" msgid "title"
msgstr "標題" msgstr "標題"
#: build/lib/core/models.py:880 core/models.py:880 #: build/lib/core/models.py:878 core/models.py:878
msgid "excerpt" msgid "excerpt"
msgstr "摘要" msgstr "摘要"
#: build/lib/core/models.py:929 core/models.py:929 #: build/lib/core/models.py:927 core/models.py:927
msgid "Document" msgid "Document"
msgstr "文件" msgstr "文件"
#: build/lib/core/models.py:930 core/models.py:930 #: build/lib/core/models.py:928 core/models.py:928
msgid "Documents" msgid "Documents"
msgstr "文件" msgstr "文件"
#: build/lib/core/models.py:942 build/lib/core/models.py:1346 #: build/lib/core/models.py:940 build/lib/core/models.py:1345
#: core/models.py:942 core/models.py:1346 #: core/models.py:940 core/models.py:1345
msgid "Untitled Document" msgid "Untitled Document"
msgstr "未命名文件" msgstr "未命名文件"
#: build/lib/core/models.py:1347 core/models.py:1347 #: build/lib/core/models.py:1346 core/models.py:1346
msgid "Open" msgid "Open"
msgstr "開啟" msgstr "開啟"
#: build/lib/core/models.py:1382 core/models.py:1382 #: build/lib/core/models.py:1381 core/models.py:1381
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you!" msgid "{name} shared a document with you!"
msgstr "{name} 與您分享了一份文件!" msgstr "{name} 與您分享了一份文件!"
#: build/lib/core/models.py:1386 core/models.py:1386 #: build/lib/core/models.py:1385 core/models.py:1385
#, python-brace-format #, python-brace-format
msgid "{name} invited you with the role \"{role}\" on the following document:" msgid "{name} invited you with the role \"{role}\" on the following document:"
msgstr "{name} 邀請您以「{role}」角色參與以下文件:" msgstr "{name} 邀請您以「{role}」角色參與以下文件:"
#: build/lib/core/models.py:1392 core/models.py:1392 #: build/lib/core/models.py:1391 core/models.py:1391
#, python-brace-format #, python-brace-format
msgid "{name} shared a document with you: {title}" msgid "{name} shared a document with you: {title}"
msgstr "{name} 與您分享了一份文件:{title}" msgstr "{name} 與您分享了一份文件:{title}"
#: build/lib/core/models.py:1493 core/models.py:1493 #: build/lib/core/models.py:1492 core/models.py:1492
msgid "Document/user link trace" msgid "Document/user link trace"
msgstr "文件/使用者連結追蹤" msgstr "文件/使用者連結追蹤"
#: build/lib/core/models.py:1494 core/models.py:1494 #: build/lib/core/models.py:1493 core/models.py:1493
msgid "Document/user link traces" msgid "Document/user link traces"
msgstr "文件/使用者連結追蹤" msgstr "文件/使用者連結追蹤"
#: build/lib/core/models.py:1500 core/models.py:1500 #: build/lib/core/models.py:1499 core/models.py:1499
msgid "A link trace already exists for this document/user." msgid "A link trace already exists for this document/user."
msgstr "此文件/使用者已存在連結追蹤。" msgstr "此文件/使用者已存在連結追蹤。"
#: build/lib/core/models.py:1523 core/models.py:1523 #: build/lib/core/models.py:1522 core/models.py:1522
msgid "Document favorite" msgid "Document favorite"
msgstr "文件收藏" msgstr "文件收藏"
#: build/lib/core/models.py:1524 core/models.py:1524 #: build/lib/core/models.py:1523 core/models.py:1523
msgid "Document favorites" msgid "Document favorites"
msgstr "文件收藏" msgstr "文件收藏"
#: build/lib/core/models.py:1530 core/models.py:1530 #: build/lib/core/models.py:1529 core/models.py:1529
msgid "This document is already targeted by a favorite relation instance for the same user." msgid "This document is already targeted by a favorite relation instance for the same user."
msgstr "此使用者已將此文件加入收藏。" msgstr "此使用者已將此文件加入收藏。"
#: build/lib/core/models.py:1552 core/models.py:1552 #: build/lib/core/models.py:1551 core/models.py:1551
msgid "Document/user relation" msgid "Document/user relation"
msgstr "文件/使用者關聯" msgstr "文件/使用者關聯"
#: build/lib/core/models.py:1553 core/models.py:1553 #: build/lib/core/models.py:1552 core/models.py:1552
msgid "Document/user relations" msgid "Document/user relations"
msgstr "文件/使用者關聯" msgstr "文件/使用者關聯"
#: build/lib/core/models.py:1559 core/models.py:1559 #: build/lib/core/models.py:1558 core/models.py:1558
msgid "This user is already in this document." msgid "This user is already in this document."
msgstr "此使用者已在此文件中。" msgstr "此使用者已在此文件中。"
#: build/lib/core/models.py:1565 core/models.py:1565 #: build/lib/core/models.py:1564 core/models.py:1564
msgid "This team is already in this document." msgid "This team is already in this document."
msgstr "此團隊已在此文件中。" msgstr "此團隊已在此文件中。"
#: build/lib/core/models.py:1571 core/models.py:1571 #: build/lib/core/models.py:1570 core/models.py:1570
msgid "Either user or team must be set, not both." msgid "Either user or team must be set, not both."
msgstr "必須設定使用者或團隊其中之一,不能同時設定兩者。" msgstr "必須設定使用者或團隊其中之一,不能同時設定兩者。"
#: build/lib/core/models.py:1722 core/models.py:1722 #: build/lib/core/models.py:1721 core/models.py:1721
msgid "Document ask for access" msgid "Document ask for access"
msgstr "要求文件存取權" msgstr "要求文件存取權"
#: build/lib/core/models.py:1723 core/models.py:1723 #: build/lib/core/models.py:1722 core/models.py:1722
msgid "Document ask for accesses" msgid "Document ask for accesses"
msgstr "要求文件存取權" msgstr "要求文件存取權"
#: build/lib/core/models.py:1729 core/models.py:1729 #: build/lib/core/models.py:1728 core/models.py:1728
msgid "This user has already asked for access to this document." msgid "This user has already asked for access to this document."
msgstr "此使用者已要求過存取此文件的權限。" msgstr "此使用者已要求過存取此文件的權限。"
#: build/lib/core/models.py:1786 core/models.py:1786 #: build/lib/core/models.py:1785 core/models.py:1785
#, python-brace-format #, python-brace-format
msgid "{name} would like access to a document!" msgid "{name} would like access to a document!"
msgstr "{name} 想要存取文件!" msgstr "{name} 想要存取文件!"
#: build/lib/core/models.py:1790 core/models.py:1790 #: build/lib/core/models.py:1789 core/models.py:1789
#, python-brace-format #, python-brace-format
msgid "{name} would like access to the following document:" msgid "{name} would like access to the following document:"
msgstr "{name} 想要存取以下文件:" msgstr "{name} 想要存取以下文件:"
#: build/lib/core/models.py:1796 core/models.py:1796 #: build/lib/core/models.py:1795 core/models.py:1795
#, python-brace-format #, python-brace-format
msgid "{name} is asking for access to the document: {title}" msgid "{name} is asking for access to the document: {title}"
msgstr "{name} 正要求存取文件:{title}" msgstr "{name} 正要求存取文件:{title}"
#: build/lib/core/models.py:1838 core/models.py:1838 #: build/lib/core/models.py:1837 core/models.py:1837
msgid "Thread" msgid "Thread"
msgstr "對話串" msgstr "對話串"
#: build/lib/core/models.py:1839 core/models.py:1839 #: build/lib/core/models.py:1838 core/models.py:1838
msgid "Threads" msgid "Threads"
msgstr "對話串" msgstr "對話串"
#: build/lib/core/models.py:1842 build/lib/core/models.py:1894 #: build/lib/core/models.py:1841 build/lib/core/models.py:1893
#: core/models.py:1842 core/models.py:1894 #: core/models.py:1841 core/models.py:1893
msgid "Anonymous" msgid "Anonymous"
msgstr "匿名" msgstr "匿名"
#: build/lib/core/models.py:1889 core/models.py:1889 #: build/lib/core/models.py:1888 core/models.py:1888
msgid "Comment" msgid "Comment"
msgstr "評論" msgstr "評論"
#: build/lib/core/models.py:1890 core/models.py:1890 #: build/lib/core/models.py:1889 core/models.py:1889
msgid "Comments" msgid "Comments"
msgstr "評論" msgstr "評論"
#: build/lib/core/models.py:1939 core/models.py:1939 #: build/lib/core/models.py:1938 core/models.py:1938
msgid "This emoji has already been reacted to this comment." msgid "This emoji has already been reacted to this comment."
msgstr "此評論已標記過此表情符號。" msgstr "此評論已標記過此表情符號。"
#: build/lib/core/models.py:1943 core/models.py:1943 #: build/lib/core/models.py:1942 core/models.py:1942
msgid "Reaction" msgid "Reaction"
msgstr "回應" msgstr "回應"
#: build/lib/core/models.py:1944 core/models.py:1944 #: build/lib/core/models.py:1943 core/models.py:1943
msgid "Reactions" msgid "Reactions"
msgstr "回應" msgstr "回應"
#: build/lib/core/models.py:1954 core/models.py:1954 #: build/lib/core/models.py:1953 core/models.py:1953
msgid "email address" msgid "email address"
msgstr "電子郵件地址" msgstr "電子郵件地址"
#: build/lib/core/models.py:1973 core/models.py:1973 #: build/lib/core/models.py:1972 core/models.py:1972
msgid "Document invitation" msgid "Document invitation"
msgstr "文件邀請" msgstr "文件邀請"
#: build/lib/core/models.py:1974 core/models.py:1974 #: build/lib/core/models.py:1973 core/models.py:1973
msgid "Document invitations" msgid "Document invitations"
msgstr "文件邀請" msgstr "文件邀請"
#: build/lib/core/models.py:1994 core/models.py:1994 #: build/lib/core/models.py:1993 core/models.py:1993
msgid "This email is already associated to a registered user." msgid "This email is already associated to a registered user."
msgstr "此電子郵件地址已與已註冊使用者關聯。" msgstr "此電子郵件地址已與已註冊使用者關聯。"
#: build/lib/impress/settings.py:702 impress/settings.py:702 #: build/lib/impress/settings.py:808 impress/settings.py:808
msgid "Docs AI" msgid "Docs AI"
msgstr "" msgstr ""
+1 -1
View File
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "impress" name = "impress"
version = "4.8.3" version = "4.8.4"
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }] authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
classifiers = [ classifiers = [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "app-e2e", "name": "app-e2e",
"version": "4.8.3", "version": "4.8.4",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "app-impress", "name": "app-impress",
"version": "4.8.3", "version": "4.8.4",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",
@@ -275,7 +275,6 @@ export const DropdownMenu = ({
<Box <Box
$theme="neutral" $theme="neutral"
$variation={isDisabled ? 'tertiary' : 'primary'} $variation={isDisabled ? 'tertiary' : 'primary'}
aria-hidden="true"
> >
{option.icon} {option.icon}
</Box> </Box>
@@ -118,13 +118,13 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
const options: DropdownMenuOption[] = [ const options: DropdownMenuOption[] = [
{ {
label: t('Share'), label: t('Share'),
icon: <GroupSVG width={24} height={24} />, icon: <GroupSVG width={24} height={24} aria-hidden="true" />,
callback: modalShare.open, callback: modalShare.open,
show: isSmallMobile, show: isSmallMobile,
}, },
{ {
label: t('Export'), label: t('Export'),
icon: <DownloadSVG width={24} height={24} />, icon: <DownloadSVG width={24} height={24} aria-hidden="true" />,
callback: () => { callback: () => {
setIsModalExportOpen(true); setIsModalExportOpen(true);
}, },
@@ -133,9 +133,9 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
{ {
label: doc.is_favorite ? t('Unpin') : t('Pin'), label: doc.is_favorite ? t('Unpin') : t('Pin'),
icon: doc.is_favorite ? ( icon: doc.is_favorite ? (
<KeepOffSVG width={24} height={24} /> <KeepOffSVG width={24} height={24} aria-hidden="true" />
) : ( ) : (
<KeepSVG width={24} height={24} /> <KeepSVG width={24} height={24} aria-hidden="true" />
), ),
callback: () => { callback: () => {
if (doc.is_favorite) { if (doc.is_favorite) {
@@ -148,7 +148,7 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
}, },
{ {
label: t('Version history'), label: t('Version history'),
icon: <HistorySVG width={24} height={24} />, icon: <HistorySVG width={24} height={24} aria-hidden="true" />,
disabled: !doc.abilities.versions_list, disabled: !doc.abilities.versions_list,
callback: () => { callback: () => {
selectHistoryModal.open(); selectHistoryModal.open();
@@ -158,7 +158,7 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
}, },
{ {
label: t('Remove emoji'), label: t('Remove emoji'),
icon: <RemoveEmojiSVG width={24} height={24} />, icon: <RemoveEmojiSVG width={24} height={24} aria-hidden="true" />,
callback: () => { callback: () => {
updateDocEmoji(doc.id, doc.title ?? '', ''); updateDocEmoji(doc.id, doc.title ?? '', '');
}, },
@@ -167,7 +167,7 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
}, },
{ {
label: t('Add emoji'), label: t('Add emoji'),
icon: <AddEmojiSVG width={24} height={24} />, icon: <AddEmojiSVG width={24} height={24} aria-hidden="true" />,
callback: () => { callback: () => {
updateDocEmoji(doc.id, doc.title ?? '', '📄'); updateDocEmoji(doc.id, doc.title ?? '', '📄');
}, },
@@ -176,12 +176,12 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
}, },
{ {
label: t('Copy link'), label: t('Copy link'),
icon: <AddLinkSVG width={24} height={24} />, icon: <AddLinkSVG width={24} height={24} aria-hidden="true" />,
callback: copyDocLink, callback: copyDocLink,
}, },
{ {
label: t('Copy as {{format}}', { format: 'Markdown' }), label: t('Copy as {{format}}', { format: 'Markdown' }),
icon: <MarkdownCopySVG width={24} height={24} />, icon: <MarkdownCopySVG width={24} height={24} aria-hidden="true" />,
callback: () => { callback: () => {
void copyCurrentEditorToClipboard('markdown'); void copyCurrentEditorToClipboard('markdown');
}, },
@@ -189,7 +189,7 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
}, },
{ {
label: t('Duplicate'), label: t('Duplicate'),
icon: <ContentCopySVG width={24} height={24} />, icon: <ContentCopySVG width={24} height={24} aria-hidden="true" />,
disabled: !doc.abilities.duplicate, disabled: !doc.abilities.duplicate,
callback: () => { callback: () => {
duplicateDoc({ duplicateDoc({
@@ -202,7 +202,7 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
}, },
{ {
label: isChild ? t('Delete sub-document') : t('Delete document'), label: isChild ? t('Delete sub-document') : t('Delete document'),
icon: <DeleteSVG width={24} height={24} />, icon: <DeleteSVG width={24} height={24} aria-hidden="true" />,
disabled: !doc.abilities.destroy, disabled: !doc.abilities.destroy,
callback: () => { callback: () => {
setIsModalRemoveOpen(true); setIsModalRemoveOpen(true);
@@ -72,9 +72,9 @@ export const DocsGridActions = ({ doc }: DocsGridActionsProps) => {
{ {
label: doc.is_favorite ? t('Unpin') : t('Pin'), label: doc.is_favorite ? t('Unpin') : t('Pin'),
icon: doc.is_favorite ? ( icon: doc.is_favorite ? (
<KeepOffSVG width={24} height={24} /> <KeepOffSVG width={24} height={24} aria-hidden="true" />
) : ( ) : (
<KeepSVG width={24} height={24} /> <KeepSVG width={24} height={24} aria-hidden="true" />
), ),
callback: () => { callback: () => {
if (doc.is_favorite) { if (doc.is_favorite) {
@@ -88,7 +88,7 @@ export const DocsGridActions = ({ doc }: DocsGridActionsProps) => {
}, },
{ {
label: t('Share'), label: t('Share'),
icon: <GroupSVG width={24} height={24} />, icon: <GroupSVG width={24} height={24} aria-hidden="true" />,
callback: () => { callback: () => {
shareModal.open(); shareModal.open();
}, },
@@ -97,7 +97,7 @@ export const DocsGridActions = ({ doc }: DocsGridActionsProps) => {
}, },
{ {
label: t('Move into a doc'), label: t('Move into a doc'),
icon: <DocMoveInSVG width={24} height={24} />, icon: <DocMoveInSVG width={24} height={24} aria-hidden="true" />,
callback: () => { callback: () => {
importModal.open(); importModal.open();
}, },
@@ -106,7 +106,7 @@ export const DocsGridActions = ({ doc }: DocsGridActionsProps) => {
}, },
{ {
label: t('Duplicate'), label: t('Duplicate'),
icon: <ContentCopySVG width={24} height={24} />, icon: <ContentCopySVG width={24} height={24} aria-hidden="true" />,
disabled: !doc.abilities.duplicate, disabled: !doc.abilities.duplicate,
callback: () => { callback: () => {
duplicateDoc({ duplicateDoc({
@@ -119,7 +119,7 @@ export const DocsGridActions = ({ doc }: DocsGridActionsProps) => {
}, },
{ {
label: t('Delete'), label: t('Delete'),
icon: <DeleteSVG width={24} height={24} />, icon: <DeleteSVG width={24} height={24} aria-hidden="true" />,
callback: () => deleteModal.open(), callback: () => deleteModal.open(),
disabled: !doc.abilities.destroy, disabled: !doc.abilities.destroy,
testId: `docs-grid-actions-remove-${doc.id}`, testId: `docs-grid-actions-remove-${doc.id}`,
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "impress", "name": "impress",
"version": "4.8.3", "version": "4.8.4",
"private": true, "private": true,
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
@@ -1,6 +1,6 @@
{ {
"name": "eslint-plugin-docs", "name": "eslint-plugin-docs",
"version": "4.8.3", "version": "4.8.4",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "packages-i18n", "name": "packages-i18n",
"version": "4.8.3", "version": "4.8.4",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",
@@ -51,6 +51,8 @@ RUN NODE_ENV=production yarn install --frozen-lockfile
# Remove npm, contains CVE related to cross-spawn and we don't use it. # Remove npm, contains CVE related to cross-spawn and we don't use it.
RUN rm -rf /usr/local/bin/npm /usr/local/lib/node_modules/npm RUN rm -rf /usr/local/bin/npm /usr/local/lib/node_modules/npm
ENV NODE_OPTIONS="--max-old-space-size=2048"
# Un-privileged user running the application # Un-privileged user running the application
ARG DOCKER_USER ARG DOCKER_USER
USER ${DOCKER_USER} USER ${DOCKER_USER}
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "server-y-provider", "name": "server-y-provider",
"version": "4.8.2", "version": "4.8.4",
"description": "Y.js provider for docs", "description": "Y.js provider for docs",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"license": "MIT", "license": "MIT",
@@ -145,6 +145,7 @@ yProvider:
COLLABORATION_SERVER_ORIGIN: https://{{ .Values.feature }}-docs.{{ .Values.domain }} COLLABORATION_SERVER_ORIGIN: https://{{ .Values.feature }}-docs.{{ .Values.domain }}
COLLABORATION_SERVER_SECRET: my-secret COLLABORATION_SERVER_SECRET: my-secret
Y_PROVIDER_API_KEY: my-secret Y_PROVIDER_API_KEY: my-secret
NODE_OPTIONS: "--max-old-space-size=1024"
docSpec: docSpec:
enabled: true enabled: true
+2 -2
View File
@@ -1,10 +1,10 @@
environments: environments:
dev: dev:
values: values:
- version: 4.8.3 - version: 4.8.4
feature: feature:
values: values:
- version: 4.8.3 - version: 4.8.4
feature: ci feature: ci
domain: example.com domain: example.com
imageTag: demo imageTag: demo
+1 -1
View File
@@ -1,5 +1,5 @@
apiVersion: v2 apiVersion: v2
type: application type: application
name: docs name: docs
version: 4.8.3 version: 4.8.4
appVersion: latest appVersion: latest
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "mail_mjml", "name": "mail_mjml",
"version": "4.8.3", "version": "4.8.4",
"description": "An util to generate html and text django's templates from mjml templates", "description": "An util to generate html and text django's templates from mjml templates",
"type": "module", "type": "module",
"dependencies": { "dependencies": {