diff --git a/crowdin.yml b/crowdin.yml index 0e6a46a31..ddc915f6d 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,4 @@ +commit_message: '[ci skip]' files: - source: /src/locale/en_US/LC_MESSAGES/django.po translation: /src/locale/%locale_with_underscore%/LC_MESSAGES/django.po diff --git a/docs/administration.rst b/docs/administration.rst index 19ab1e73f..5d6367277 100644 --- a/docs/administration.rst +++ b/docs/administration.rst @@ -193,7 +193,7 @@ This table lists the compatible versions for each database migration number. +------------------+-----------------+ | 1012 | 1.1.0 - 1.2.1 | +------------------+-----------------+ -| 1013 | 1.3.0 - current | +| 1014 | 1.3.0 - current | +------------------+-----------------+ Execute the following management command to migrate your database: diff --git a/docs/changelog.rst b/docs/changelog.rst index 0c8056266..11223265d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -10,20 +10,25 @@ paperless-ng 1.3.0 This release contains new database migrations. -* Added a color picker for tag colors. +* Changes -* Added translations into Italian and Romanian. Thank you! + * The REST API is versioned from this point onwards. This will allow me to make changes without breaking existing clients. See the documentation about :ref:`api-versioning` for details. -* Close individual documents from the sidebar. + * Added a color picker for tag colors. -* `BolkoSchreiber `_ added an option to disable/enable thumbnail inversion in dark mode. + * Added the ability to use the filter for searching the document content as well. -* Fixed an issue with the auto matching algorithm when more than 256 tags were used. + * Added translations into Italian and Romanian. Thank you! -* `Simon Taddiken `_ added the ability to customize the header used for remote user authentication with SSO applications. + * Close individual documents from the sidebar. Thanks to `Michael Shamoon`_. -* The REST API is versioned from this point onwards. See the documentation about :ref:`api-versioning` for details. + * `BolkoSchreiber `_ added an option to disable/enable thumbnail inversion in dark mode. + * `Simon Taddiken `_ added the ability to customize the header used for remote user authentication with SSO applications. + +* Bug fixes + + * Fixed an issue with the auto matching algorithm when more than 256 tags were used. paperless-ng 1.2.1 diff --git a/docs/extending.rst b/docs/extending.rst index 54a0d061e..bceeacfd7 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -174,7 +174,7 @@ Front end localization * The translated strings need to be placed in the "src-ui/src/locale/" folder. * In order to extract added or changed strings from the source files, call ``ng xi18n --ivy``. -Adding new languages requires adding the translated files in the "src-ui/src/locale/" fodler and adjusting a couple files. +Adding new languages requires adding the translated files in the "src-ui/src/locale/" folder and adjusting a couple files. 1. Adjust "src-ui/angular.json": @@ -269,6 +269,23 @@ this is how you do it: This will build the HTML documentation, and put the resulting files in the ``_build/html`` directory. +Building the Docker image +========================= + +Building the docker image from source requires the following two steps: + +1. Build the front end. + + .. code:: shell-session + + ./compile-frontend.sh + +2. Build the docker image. + + .. code:: shell-session + + docker build . -t + Extending Paperless =================== diff --git a/scripts/start_services.sh b/scripts/start_services.sh index cbab7ac9e..e2fc740a4 100755 --- a/scripts/start_services.sh +++ b/scripts/start_services.sh @@ -1,4 +1,4 @@ -docker run -p 5432:5432 -v paperless_pgdata:/var/lib/postgresql/data -d postgres:13 +docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -v paperless_pgdata:/var/lib/postgresql/data -d postgres:13 docker run -d -p 6379:6379 redis:latest docker run -p 3000:3000 -d thecodingmachine/gotenberg docker run -p 9998:9998 -d apache/tika diff --git a/src-ui/angular.json b/src-ui/angular.json index 9f53a8fb1..4691fec61 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -16,13 +16,13 @@ "i18n": { "sourceLocale": "en-US", "locales": { - "de": "src/locale/messages.de.xlf", + "de-DE": "src/locale/messages.de_DE.xlf", "nl-NL": "src/locale/messages.nl_NL.xlf", - "fr": "src/locale/messages.fr.xlf", + "fr-FR": "src/locale/messages.fr_FR.xlf", "en-GB": "src/locale/messages.en_GB.xlf", "pt-BR": "src/locale/messages.pt_BR.xlf", - "it": "src/locale/messages.it.xlf", - "ro": "src/locale/messages.ro.xlf" + "it-IT": "src/locale/messages.it_IT.xlf", + "ro-RO": "src/locale/messages.ro_RO.xlf" } }, "architect": { diff --git a/src-ui/package.json b/src-ui/package.json index b005d843a..595228501 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -25,6 +25,7 @@ "bootstrap": "^4.5.0", "file-saver": "^2.0.5", "ng-bootstrap": "^1.6.3", + "ng2-pdf-viewer": "^6.3.2", "ngx-color": "^6.2.0", "ngx-cookie-service": "^10.1.1", "ngx-file-drop": "^10.0.0", diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index dc8b185ea..be7ea2d0b 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -47,6 +47,7 @@ import { SavedViewWidgetComponent } from './components/dashboard/widgets/saved-v import { StatisticsWidgetComponent } from './components/dashboard/widgets/statistics-widget/statistics-widget.component'; import { UploadFileWidgetComponent } from './components/dashboard/widgets/upload-file-widget/upload-file-widget.component'; import { WidgetFrameComponent } from './components/dashboard/widgets/widget-frame/widget-frame.component'; +import { PdfViewerModule } from 'ng2-pdf-viewer'; import { WelcomeWidgetComponent } from './components/dashboard/widgets/welcome-widget/welcome-widget.component'; import { YesNoPipe } from './pipes/yes-no.pipe'; import { FileSizePipe } from './pipes/file-size.pipe'; @@ -143,6 +144,7 @@ registerLocaleData(localeRo) ReactiveFormsModule, NgxFileDropModule, InfiniteScrollModule, + PdfViewerModule, NgSelectModule, ColorSliderModule ], diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html index c59bc3e0a..e17e21e03 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.html +++ b/src-ui/src/app/components/app-frame/app-frame.component.html @@ -99,7 +99,7 @@ - - +
  • Notifications - +

    Document processing

    diff --git a/src-ui/src/app/components/manage/settings/settings.component.ts b/src-ui/src/app/components/manage/settings/settings.component.ts index 0933c2714..ab71b1028 100644 --- a/src-ui/src/app/components/manage/settings/settings.component.ts +++ b/src-ui/src/app/components/manage/settings/settings.component.ts @@ -22,6 +22,7 @@ export class SettingsComponent implements OnInit { 'darkModeUseSystem': new FormControl(this.settings.get(SETTINGS_KEYS.DARK_MODE_USE_SYSTEM)), 'darkModeEnabled': new FormControl(this.settings.get(SETTINGS_KEYS.DARK_MODE_ENABLED)), 'darkModeInvertThumbs': new FormControl(this.settings.get(SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED)), + 'useNativePdfViewer': new FormControl(this.settings.get(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER)), 'savedViews': this.savedViewGroup, 'displayLanguage': new FormControl(this.settings.getLanguage()), 'dateLocale': new FormControl(this.settings.get(SETTINGS_KEYS.DATE_LOCALE)), @@ -75,6 +76,7 @@ export class SettingsComponent implements OnInit { this.settings.set(SETTINGS_KEYS.DARK_MODE_USE_SYSTEM, this.settingsForm.value.darkModeUseSystem) this.settings.set(SETTINGS_KEYS.DARK_MODE_ENABLED, (this.settingsForm.value.darkModeEnabled == true).toString()) this.settings.set(SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED, (this.settingsForm.value.darkModeInvertThumbs == true).toString()) + this.settings.set(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, this.settingsForm.value.useNativePdfViewer) this.settings.set(SETTINGS_KEYS.DATE_LOCALE, this.settingsForm.value.dateLocale) this.settings.set(SETTINGS_KEYS.DATE_FORMAT, this.settingsForm.value.dateFormat) this.settings.set(SETTINGS_KEYS.NOTIFICATIONS_CONSUMER_NEW_DOCUMENT, this.settingsForm.value.notificationsConsumerNewDocument) diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index 01035c2bf..8810cd653 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -27,6 +27,7 @@ export const SETTINGS_KEYS = { DARK_MODE_USE_SYSTEM: 'general-settings:dark-mode:use-system', DARK_MODE_ENABLED: 'general-settings:dark-mode:enabled', DARK_MODE_THUMB_INVERTED: 'general-settings:dark-mode:thumb-inverted', + USE_NATIVE_PDF_VIEWER: 'general-settings:document-details:native-pdf-viewer', DATE_LOCALE: 'general-settings:date-display:date-locale', DATE_FORMAT: 'general-settings:date-display:date-format', NOTIFICATIONS_CONSUMER_NEW_DOCUMENT: 'general-settings:notifications:consumer-new-documents', @@ -42,6 +43,7 @@ const SETTINGS: PaperlessSettings[] = [ {key: SETTINGS_KEYS.DARK_MODE_USE_SYSTEM, type: "boolean", default: true}, {key: SETTINGS_KEYS.DARK_MODE_ENABLED, type: "boolean", default: false}, {key: SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED, type: "boolean", default: true}, + {key: SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, type: "boolean", default: false}, {key: SETTINGS_KEYS.DATE_LOCALE, type: "string", default: ""}, {key: SETTINGS_KEYS.DATE_FORMAT, type: "string", default: "mediumDate"}, {key: SETTINGS_KEYS.NOTIFICATIONS_CONSUMER_NEW_DOCUMENT, type: "boolean", default: true}, diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf new file mode 100644 index 000000000..8bdad274b --- /dev/null +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/locale/messages.it.xlf b/src-ui/src/locale/messages.de_DE.xlf similarity index 62% rename from src-ui/src/locale/messages.it.xlf rename to src-ui/src/locale/messages.de_DE.xlf index b2b49b833..10c96ebf3 100644 --- a/src-ui/src/locale/messages.it.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -1,2281 +1,2282 @@ - - + + + - + Document added - Documento aggiunto src/app/app.component.ts 51 + Dokument hinzugefügt - - Document was added to paperless. - Il documento è stato aggiunto a paperless. + + Document was added to paperless. src/app/app.component.ts 51 + Das Dokument wurde zu Paperless hinzugefügt. - + Open document - Apri documento src/app/app.component.ts 51 + Dokument öffnen - - Could not add : - Impossibile aggiungere : + + Could not add : src/app/app.component.ts 59 + Konnte nicht hinzufügen: - + New document detected - Nuovo documento trovato src/app/app.component.ts 65 + Neues Dokument erkannt - - Document is being processed by paperless. - Paperless sta elaborando il documento . + + Document is being processed by paperless. src/app/app.component.ts 65 + Dokument wird von Paperless verarbeitet. - + Documents - Documenti src/app/components/document-list/document-list.component.ts 49 + Dokumente - - View "" saved successfully. - La vista "" è stata salvata. + + View "" saved successfully. src/app/components/document-list/document-list.component.ts 115 + Ansicht "" erfolgreich gespeichert. - - View "" created successfully. - La vista "" è stata creata. + + View "" created successfully. src/app/components/document-list/document-list.component.ts 136 + Ansicht "" erfolgreich erstellt. - + Select - Selezione src/app/components/document-list/document-list.component.html 7 + Auswählen - + Select none - Seleziona nessuno src/app/components/document-list/document-list.component.html 10 + Nichts auswählen - + Select page - Seleziona pagina src/app/components/document-list/document-list.component.html 11 + Seite auswählen - + Select all - Seleziona tutti src/app/components/document-list/document-list.component.html 12 + Alles auswählen - + Sort - Ordina src/app/components/document-list/document-list.component.html 39 + Sortieren - + Views - Viste src/app/components/document-list/document-list.component.html 64 + Ansicht - + Save as... - Salva come... src/app/components/document-list/document-list.component.html 72 + Speichern als... - - Save "" - Salva "" + + Save "" src/app/components/document-list/document-list.component.html 71 + "" speichern - + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - {VAR_PLURAL, plural, =1 {Selezionato di un documento} other {Selezionati di documenti}} src/app/components/document-list/document-list.component.html 85 + {VAR_PLURAL, plural, =1 { von 1 Dokumente ausgewählt} other { von Dokumente ausgewählt}} - + {VAR_PLURAL, plural, =1 {One document} other { documents}} - {VAR_PLURAL, plural, =1 {Un documento} other { documenti}} src/app/components/document-list/document-list.component.html 86 + {VAR_PLURAL, plural, =1 {Ein Dokument} other { Dokumente}} - + (filtered) - (filtrato) src/app/components/document-list/document-list.component.html 86 + (gefiltert) - + ASN - ASN src/app/components/document-list/document-list.component.html 105 + ASN - + Correspondent - Corrispondente src/app/components/document-list/document-list.component.html 111 + Korrespondent - + Title - Titolo src/app/components/document-list/document-list.component.html 117 + Titel - + Document type - Tipo di documento src/app/components/document-list/document-list.component.html 123 + Dokumenttyp - + Created - Creato src/app/components/document-list/document-list.component.html 129 + Ausgestellt - + Added - Aggiunto src/app/components/document-list/document-list.component.html 135 + Hinzugefügt - + Confirm delete - Conferma eliminazione src/app/components/document-detail/document-detail.component.ts 203 + Löschen bestätigen - - Do you really want to delete document ""? - Vuoi eliminare il documento ""? + + Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts 204 + Möchten Sie das Dokument "" wirklich löschen? - + The files for this document will be deleted permanently. This operation cannot be undone. - I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. src/app/components/document-detail/document-detail.component.ts 205 + Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. - + Delete document - Elimina documento src/app/components/document-detail/document-detail.component.ts 207 + Dokument löschen - - Error deleting document: - Errore nell'eliminazione del documento: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts 214 + Fehler beim Löschen des Dokuments: - + Delete - Elimina src/app/components/document-detail/document-detail.component.html 15 + Löschen - + Download - Scarica src/app/components/document-detail/document-detail.component.html 23 + Herunterladen - + More like this - Altro come questo src/app/components/document-detail/document-detail.component.html 38 + Ähnliche Dokumente - + Close - Chiudi src/app/components/document-detail/document-detail.component.html 44 + Schließen - + Details - Dettagli src/app/components/document-detail/document-detail.component.html 56 + Details - + Content - Contenuto src/app/components/document-detail/document-detail.component.html 72 + Inhalt - + Metadata - Metadati src/app/components/document-detail/document-detail.component.html 81 + Metadaten - + Discard - Scarta src/app/components/document-detail/document-detail.component.html 130 + Verwerfen - + Save - Salva src/app/components/document-detail/document-detail.component.html 132 + Speichern - + Page - Pagina src/app/components/document-detail/document-detail.component.html 4 + Seite - - of - di + + of src/app/components/document-detail/document-detail.component.html 8 + von - + Download original - Scarica originale src/app/components/document-detail/document-detail.component.html 29 + Original herunterladen - + Archive serial number - Numero seriale di archivio src/app/components/document-detail/document-detail.component.html 60 + Archiv-Seriennummer - + Date created - Data creazione src/app/components/document-detail/document-detail.component.html 61 + Ausgestellt am - + Date modified - Data modifica src/app/components/document-detail/document-detail.component.html 87 + Geändert am - + Date added - Data aggiunta src/app/components/document-detail/document-detail.component.html 91 + Hinzugefügt am - + Media filename - Nome del file multimediale src/app/components/document-detail/document-detail.component.html 95 + Media-Dateiname - + Original MD5 checksum - Somma MD5 originale src/app/components/document-detail/document-detail.component.html 99 + MD5-Prüfsumme Original - + Original file size - Dimensione del file originale src/app/components/document-detail/document-detail.component.html 103 + Dateigröße Original - + Original mime type - Tipo mime originale src/app/components/document-detail/document-detail.component.html 107 + MIME-Typ Original - + Archive MD5 checksum - Checksum MD5 dell'archivio src/app/components/document-detail/document-detail.component.html 111 + MD5-Prüfsumme Archiv - + Archive file size - Dimensione dell'archivio src/app/components/document-detail/document-detail.component.html 115 + Dateigröße Archiv - + Original document metadata - Metadati del documento originale src/app/components/document-detail/document-detail.component.html 121 + Metadaten Original - + Archived document metadata - Metadati del documento archiviato src/app/components/document-detail/document-detail.component.html 122 + Metadaten Archiv - + Save & next - Salva e vai al prossimo src/app/components/document-detail/document-detail.component.html 131 + Speichern & weiter - - Hello , welcome to Paperless-ng! - Ciao , benvenuto su Paperless-ng! + + Hello , welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 33 + Hallo , willkommen zu Paperless-ng! - + Welcome to Paperless-ng! - Benvenuto su Paperless-ng! src/app/components/dashboard/dashboard.component.ts 35 + Willkommen zu Paperless-ng! - + Dashboard - Dashboard src/app/components/dashboard/dashboard.component.html 1 + Startseite - - Do you really want to delete the tag ""? - Vuoi eliminare il tag ""? + + Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts 26 + Möchten Sie das Tag "" wirklich löschen? - + Tags - Etichette src/app/components/manage/tag-list/tag-list.component.html 1 + Tags - + Create - Crea src/app/components/manage/tag-list/tag-list.component.html 2 + Erstellen - + Filter by: - Filtra per: src/app/components/manage/tag-list/tag-list.component.html 8 + Filtern nach: - + Name - Nome src/app/components/manage/tag-list/tag-list.component.html 9 + Name - + Color - Colore src/app/components/manage/tag-list/tag-list.component.html 20 + Farbe - + Matching - Corrispondenza src/app/components/manage/tag-list/tag-list.component.html 21 + Zuweisung - + Document count - Numero di documenti src/app/components/manage/tag-list/tag-list.component.html 22 + Anzahl Dokumente - + Actions - Azioni src/app/components/manage/tag-list/tag-list.component.html 23 + Aktionen - + Documents - Documenti src/app/components/manage/tag-list/tag-list.component.html 38 + Dokumente - + Edit - Modifica src/app/components/manage/tag-list/tag-list.component.html 43 + Bearbeiten - - Do you really want to delete the document type ""? - Vuoi eliminare il tipo di documento ""? + + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 + Möchten Sie den Dokumenttyp "" wirklich löschen? - + Document types - Tipi di documento src/app/components/manage/document-type-list/document-type-list.component.html 1 + Dokumenttypen - + Logs - Log src/app/components/manage/logs/logs.component.html 1 + Protokoll - - Saved view "" deleted. - La vista "" è stata eliminata. + + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts 68 + Gespeicherte Ansicht "" gelöscht. - + Settings saved successfully. - Le impostazioni sono state salvate. src/app/components/manage/settings/settings.component.ts 89 + Einstellungen erfolgreich gespeichert. - + Use system language - Usa lingua di sistema src/app/components/manage/settings/settings.component.ts 94 + Benutze Systemsprache - + Use date format of display language - Usa il formato data della lingua di visualizzazione src/app/components/manage/settings/settings.component.ts 100 + Benutze Datumsformat der Anzeigesprache - - Error while storing settings on server: - Errore durante il salvataggio delle impostazioni sul server: + + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts 117 + Fehler beim Speichern der Einstellungen auf dem Server: - + Settings - Impostazioni src/app/components/manage/settings/settings.component.html 1 + Einstellungen - + General settings - Impostazioni generali src/app/components/manage/settings/settings.component.html 10 + Allgemeine Einstellungen - + Notifications - Notifiche src/app/components/manage/settings/settings.component.html 116 + Benachrichtigungen - + Saved views - Viste salvate src/app/components/manage/settings/settings.component.html 134 + Gespeicherte Ansichten - + Appearance - Aspetto src/app/components/manage/settings/settings.component.html 13 + Erscheinungsbild - + Display language - Lingua src/app/components/manage/settings/settings.component.html 17 + Anzeigesprache - + You need to reload the page after applying a new language. - Riavviare la pagina dopo avere impostato la nuova lingua. src/app/components/manage/settings/settings.component.html 25 + Nachdem Sie eine neue Sprache ausgewählt haben, müssen Sie die Seite neu laden. - + Date display - Visualizzazione data src/app/components/manage/settings/settings.component.html 32 + Datumsanzeige - + Date format - Formato data src/app/components/manage/settings/settings.component.html 45 + Datumsformat - - Short: - Breve: + + Short: src/app/components/manage/settings/settings.component.html 51 + Kurz: - - Medium: - Media: + + Medium: src/app/components/manage/settings/settings.component.html 55 + Mittel: - - Long: - Lunga: + + Long: src/app/components/manage/settings/settings.component.html 59 + Lang: - + Items per page - Oggetti per pagina src/app/components/manage/settings/settings.component.html 67 + Dokumente pro Seite - + Document editor - Editor dei documenti src/app/components/manage/settings/settings.component.html 83 + Dokumenteditor - + Use PDF viewer provided by the browser - Usa il visualizzatore PDF fornito dal browser src/app/components/manage/settings/settings.component.html 87 + Benutze PDF-Betrachter des Web Browsers - + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - Di solito è più rapido nel visualizzare documenti PDF grandi, ma potrebbe non funzionare su tutti i browser. src/app/components/manage/settings/settings.component.html 87 + Der integrierte PDF-Betrachter des Web-Browsers ist in der Regel schneller bei der Anzeige besonders großer Dokumente, funktioniert aber nicht in allen Browsern. - + Dark mode - Modalità notte src/app/components/manage/settings/settings.component.html 94 + Dunkler Modus - + Use system settings - Usa impostazioni di sistema src/app/components/manage/settings/settings.component.html 97 + Benutze Systemeinstellungen - + Enable dark mode - Abilita modalità notte src/app/components/manage/settings/settings.component.html 98 + Dunklen Modus aktivieren - + Invert thumbnails in dark mode - Inverti anteptime in modalità notte src/app/components/manage/settings/settings.component.html 99 + Miniaturbilder im dunklen Modus invertieren - + Bulk editing - Modifica in blocco src/app/components/manage/settings/settings.component.html 103 + Massenbearbeitung - + Show confirmation dialogs - Mostra dialoghi di conferma src/app/components/manage/settings/settings.component.html 107 + Bestätigungsdialoge anzeigen - + Deleting documents will always ask for confirmation. - L'eliminazione dei documenti chiederà sempre la conferma. src/app/components/manage/settings/settings.component.html 107 + Beim Löschen von Dokumenten wird immer nach einer Bestätigung gefragt. - + Apply on close - Applica in chiusura src/app/components/manage/settings/settings.component.html 108 + Anwenden beim Schließen - + Document processing - Elaborazione del documento src/app/components/manage/settings/settings.component.html 119 + Dokumentverarbeitung - + Show notifications when new documents are detected - Notifica quando vengono trovati nuovi documenti src/app/components/manage/settings/settings.component.html 123 + Zeige Benachrichtigungen wenn neue Dokumente erkannt werden - + Show notifications when document processing completes successfully - Notifica quando l'elaborazione del documento viene completata con successo. src/app/components/manage/settings/settings.component.html 124 + Zeige Benachrichtigungen wenn neue Dokumente erfolgreich hinzugefügt wurden - + Show notifications when document processing fails - Notifica quando l'elaborazione del documento fallisce src/app/components/manage/settings/settings.component.html 125 + Zeige Benachrichtigungen wenn Dokumente nicht hinzugefügt werden konnten - + Suppress notifications on dashboard - Non mostrare notifiche nella dashboard src/app/components/manage/settings/settings.component.html 126 + Unterdrücke Benachrichtigungen auf der Startseite. - + This will suppress all messages about document processing status on the dashboard. - Verranno interrotte tutte le notifiche nella dashboard riguardo lo stato dell'elaborazione dei documenti. src/app/components/manage/settings/settings.component.html 126 + Dadurch werden alle Benachrichtigungen über die Dokumentenverarbeitung auf der Startseite unterdrückt. - + Appears on - Appare in src/app/components/manage/settings/settings.component.html 146 + Erscheint auf - + Show on dashboard - Mostra nella dashboard src/app/components/manage/settings/settings.component.html 149 + Auf Startseite zeigen - + Show in sidebar - Mostra nella barra laterale src/app/components/manage/settings/settings.component.html 153 + In Seitenleiste zeigen - + No saved views defined. - Nessuna vista salvata. src/app/components/manage/settings/settings.component.html 163 + Keine gespeicherten Ansichten vorhanden. - + 404 Not Found - 404 Non trovato src/app/components/not-found/not-found.component.html 7 + 404 Nicht gefunden - - Do you really want to delete the correspondent ""? - Vuoi eliminare il corrispondente ""? + + Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 + Möchten Sie den Korrespondenten "" wirklich löschen? - + Correspondents - Corrispondenti src/app/components/manage/correspondent-list/correspondent-list.component.html 1 + Korrespondenten - + Last correspondence - Ultrima corrispondenza src/app/components/manage/correspondent-list/correspondent-list.component.html 22 + Letzter Kontakt - + Confirmation - Conferma src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 + Bestätigung - + Confirm - Conferma src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 + Bestätigen - + Cancel - Annulla src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 + Abbrechen - + Create new correspondent - Crea nuovo corrispondente src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 + Neuen Korrespondenten erstellen - + Edit correspondent - Modifica corrispondente src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 + Korrespondenten bearbeiten - + Matching algorithm - Algoritmo di corrispondenza src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 + Zuweisungsalgorithmus - + Matching pattern - Criterio di corrispondenza src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 + Zuweisungsmuster - + Case insensitive - Senza distinzione tra maiuscole e minuscole src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 + Groß-/Kleinschreibung irrelevant - + Create new tag - Crea nuovo tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 + Neues Tag erstellen - + Edit tag - Modifica tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 + Tag bearbeiten - + Inbox tag - Tag di arrivo src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Posteingangs-Tag - + Inbox tags are automatically assigned to all consumed documents. - I tag di arrivo vengono assegnati automaticamente a tutti i documenti elaborati. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Ein Tag mit dieser Option wird automatisch allen neuen Dokumenten zugewiesen. - + Create new document type - Crea nuovo tipo di documento src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 + Neuen Dokumenttyp erstellen - + Edit document type - Modifica tipo di documento src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 + Dokumenttyp bearbeiten - + Search results - Risultati della ricerca src/app/components/search/search.component.html 1 + Suchergebnisse - - Invalid search query: - Query di ricerca non valida: + + Invalid search query: src/app/components/search/search.component.html 4 + Ungültige Suchanfrage: - - Showing documents similar to - Documenti simili a + + Showing documents similar to src/app/components/search/search.component.html 7 + Zeige ähnliche Dokumente zu - - Search query: - Query di ricerca: + + Search query: src/app/components/search/search.component.html 11 + Suchanfrage: - - Did you mean ""? - Forse intendevi ""? + + Did you mean ""? src/app/components/search/search.component.html 13 + Meinten Sie ""? - + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - {VAR_PLURAL, plural, =0 {Nessun risultato} =1 {Un risultato} other { risultati}} src/app/components/search/search.component.html 18 + {VAR_PLURAL, plural, =0 {Keine Ergebnisse} =1 {Ein Ergebnis} other { Ergebnisse}} - + Paperless-ng - Paperless-ng src/app/components/app-frame/app-frame.component.html 11 - app title + app title + Paperless-ng - + Search documents - Cerca documenti src/app/components/app-frame/app-frame.component.html 15 + Dokumente suchen - + Logout - Esci src/app/components/app-frame/app-frame.component.html 45 + Abmelden - + Manage - Gestisci src/app/components/app-frame/app-frame.component.html 112 + Verwalten - + Admin - Amministratore src/app/components/app-frame/app-frame.component.html 154 + Administration - + Info - Informazioni src/app/components/app-frame/app-frame.component.html 160 + Info - + Documentation - Documentazione src/app/components/app-frame/app-frame.component.html 167 + Dokumentation - + GitHub - GitHub src/app/components/app-frame/app-frame.component.html 175 + GitHub - + Suggest an idea - Suggerisci un'idea src/app/components/app-frame/app-frame.component.html 181 + Eine Idee vorschlagen - - Logged in as - Accesso effettuato come + + Logged in as src/app/components/app-frame/app-frame.component.html 34 + Angemeldet als - + Open documents - Apri documenti src/app/components/app-frame/app-frame.component.html 87 + Geöffnete Dokumente - + Close all - Chiudi tutti src/app/components/app-frame/app-frame.component.html 106 + Alle schließen - + Title - Titolo src/app/components/document-list/filter-editor/filter-editor.component.ts 73 + Titel - + Title & content - Titolo & contenuto src/app/components/document-list/filter-editor/filter-editor.component.ts 74 + Titel & Inhalt - - Correspondent: - Corrispondente: + + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts 32 + Korrespondent: - + Without correspondent - Senza corrispondente src/app/components/document-list/filter-editor/filter-editor.component.ts 34 + Ohne Korrespondent - - Type: - Tipo: + + Type: src/app/components/document-list/filter-editor/filter-editor.component.ts 39 + Typ: - + Without document type - Senza tipo di documento src/app/components/document-list/filter-editor/filter-editor.component.ts 41 + Ohne Dokumenttyp - - Tag: - Tag: + + Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts 45 + Tag: - + Without any tag - Senza alcun tag src/app/components/document-list/filter-editor/filter-editor.component.ts 49 + Ohne Tag - - Title: - Titolo: + + Title: src/app/components/document-list/filter-editor/filter-editor.component.ts 53 + Titel: - + Filter tags - Filtra tag src/app/components/document-list/filter-editor/filter-editor.component.html 20 + Tags filtern - + Filter correspondents - Filtra corrispondenti src/app/components/document-list/filter-editor/filter-editor.component.html 28 + Korrespondenten filtern - + Filter document types - Filtra tipi di documento src/app/components/document-list/filter-editor/filter-editor.component.html 35 + Dokumenttypen filtern - + Reset filters - Ripristina filtri src/app/components/document-list/filter-editor/filter-editor.component.html 58 + Filter zurücksetzen - + Not assigned - Non assegnato src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 166 - Filter drop down element to filter for documents with no correspondent/type/tag assigned + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Nicht zugewiesen - + Apply - Applica src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 + Anwenden - + Last 7 days - Ultimi 7 giorni src/app/components/common/date-dropdown/date-dropdown.component.ts 34 + Letzte 7 Tage - + Last month - Ultimo mese src/app/components/common/date-dropdown/date-dropdown.component.ts 35 + Letzten Monat - + Last 3 months - Ultimi 3 mesi src/app/components/common/date-dropdown/date-dropdown.component.ts 36 + Letzte 3 Monate - + Last year - Ultimo anno src/app/components/common/date-dropdown/date-dropdown.component.ts 37 + Letztes Jahr - + After - Dopo src/app/components/common/date-dropdown/date-dropdown.component.html 13 + Nach - + Before - Prima src/app/components/common/date-dropdown/date-dropdown.component.html 38 + Vor - + Clear - Pulisci src/app/components/common/date-dropdown/date-dropdown.component.html 18 + Zurücksetzen - + View - Mostra src/app/components/document-list/document-card-large/document-card-large.component.html 50 + Anzeigen - - Created: - Creato il: + + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 67 + Erstellt: - + Filter by correspondent - Filtra per corrispondente src/app/components/document-list/document-card-large/document-card-large.component.html 20 + Nach Korrespondent filtern - + Filter by tag - Filtra per tag src/app/components/document-list/document-card-large/document-card-large.component.html 24 + Nach Tag filtern - + Score: - Punteggio: src/app/components/document-list/document-card-large/document-card-large.component.html 62 + Relevanz: - + View in browser - Apri nel browser src/app/components/document-list/document-card-small/document-card-small.component.html 40 + Im Browser anzeigen - - Error executing bulk operation: - Errore durante l'operazione di modifica in blocco: + + Error executing bulk operation: src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 + Fehler beim Ausführung der Massenverarbeitung: - - "" - "" + + "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 + "" - - "" and "" - "" e "" + + "" and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 115 - This is for messages like 'modify "tag1" and "tag2"' + This is for messages like 'modify "tag1" and "tag2"' + "" und "" - + , - , src/app/components/document-list/bulk-editor/bulk-editor.component.ts 117 - this is used to separate enumerations and should probably be a comma and a whitespace in most languages + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , - - and "" - e "" + + and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 118 - this is for messages like 'modify "tag1", "tag2" and "tag3"' + this is for messages like 'modify "tag1", "tag2" and "tag3"' + und "" - + Confirm tags assignment - Conferma assegnazione tag src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 + Tag-Zuweisung bestätigen - - This operation will add the tag "" to selected document(s). - Questa operazione aggiungerà il tag "" a documento/i selezionato/i. + + This operation will add the tag "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 + Diese Aktion wird ausgewählten Dokumenten das Tag "" hinzufügen. - - This operation will add the tags to selected document(s). - Questa operazione aggiungerà i tag a documento/i selezionato/i. + + This operation will add the tags to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 + Diese Aktion wird ausgewählten Dokumenten die Tags hinzufügen. - - This operation will remove the tag "" from selected document(s). - Questa operazione rimuoverà il tag "" da documento/i selezionato/i. + + This operation will remove the tag "" from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 + Diese Aktion wird das Tag "" von ausgewählten Dokumenten entfernen. - - This operation will remove the tags from selected document(s). - Questa operazione rimuoverà i tag da documento/i selezionato/i. + + This operation will remove the tags from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 + Diese Aktion wird die Tags von ausgewählten Dokumenten entfernen. - - This operation will add the tags and remove the tags on selected document(s). - Questa operazione aggiungerà i tag e rimuoverà i tag a documento/i selezionato/i. + + This operation will add the tags and remove the tags on selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 + Diese Aktion wird die Tags den ausgewählten Dokumenten hinzufügen und die Tags entfernen. - + Confirm correspondent assignment - Conferma assegnazione corrispondente src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 + Korrespondent-Zuweisung bestätigen - - This operation will assign the correspondent "" to selected document(s). - Questa operazione assegnerà il corrispondente "" a documento/i selezionato/i. + + This operation will assign the correspondent "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 + Diese Aktion wird ausgewählten Dokumenten den Korrespondent "" zuweisen. - - This operation will remove the correspondent from selected document(s). - Questa operazione rimuoverà il corrispondente da documento/i selezionato/i. + + This operation will remove the correspondent from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 + Diese Aktion wird bei ausgewählten Dokumenten den Korrespondent entfernen. - + Confirm document type assignment - Conferma assegnazione tipo di documento src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 + Dokumenttyp-Zuweisung bestätigen - - This operation will assign the document type "" to selected document(s). - Questa operazione assegnerà il tipo di documento "" a documento/i selezionato/i. + + This operation will assign the document type "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 + Diese Aktion wird ausgewählten Dokumenten den Dokumenttyp "" zuweisen. - - This operation will remove the document type from selected document(s). - Questa operazione eliminerà il tipo di documento da documento/i selezionato/i. + + This operation will remove the document type from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 + Diese Aktion wird bei ausgewählten Dokumenten den Dokumenttyp entfernen. - + Delete confirm - Conferma eliminazione src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 + Löschen bestätigen - - This operation will permanently delete selected document(s). - Questa operazione eliminerà definitivamente documento/i selezionato/i. + + This operation will permanently delete selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 + Diese Aktion wird ausgewählte Dokumente unwiderruflich löschen. - + This operation cannot be undone. - Questa operazione non può essere annullata. src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 + Diese Aktion kann nicht rückgängig gemacht werden. - + Delete document(s) - Elimina documento/i src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 + Dokument(e) löschen - + Select: - Seleziona: src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 + Auswählen: - + All - Tutto src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 + Alle - + Edit: - Modifica: src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 + Bearbeiten: - + Download originals - Scarica originali src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 + Originale herunterladen - + Suggestions: - Suggerimenti: src/app/components/common/input/select/select.component.html 26 + Vorschläge: - + Save current view - Salva vista corrente src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 + Aktuelle Ansicht speichern - + Show all - Mostra tutto src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 + Alle anzeigen - + Statistics - Statistiche src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 + Statistiken - - Total documents: - Documenti totali: + + Total documents: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 + Anzahl Dokumente gesamt: - - Documents in inbox: - Documenti taggati in arrivo: + + Documents in inbox: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 + Dokumente im Posteingang: - - Processing: - Elaborazione in corso: + + Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 + Verarbeite: - - Failed: - Falliti: + + Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 + Fehlgeschlagen: - - Added: - Aggiunti: + + Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 + Hinzugefügt: - + Connecting... - Connessione in corso... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 + Verbinde... - + Uploading... - Caricamento in corso... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 + Hochladen... - + Upload complete, waiting... - Caricamento completato, in attesa... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 + Datei hochgeladen, warte... - - HTTP error: - Errore HTTP: + + HTTP error: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 + HTTP-Fehler: - + Upload new documents - Carica nuovi documenti src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 + Neue Dokumente hochladen - + Drop documents here or - Trascina qui i documenti oppure src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Dokumente hier ablegen oder - + Browse files - Sfoglia i file src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Datei auswählen - + Dismiss completed - Messaggi ignorati src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - This button dismisses all status messages about processed documents on the dashboard (failed and successful) + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Fertiggestellte verbergen - + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - {VAR_PLURAL, plural, =1 {Un altro documento} other {altri documenti}} src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 25 - This is shown as a summary line when there are more than 5 document in the processing pipeline. + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {Ein weiteres Dokument} other { weitere Dokumente}} - + Open document - Apri documento src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 + Dokument öffnen - + First steps - Primi passi src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 + Erste Schritte - + Paperless is running! :) - Paperless è in esecuzione! :) src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 + Paperless ist startbereit! :) - - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - Puoi iniziare a caricare documenti trascinandoli nel riquadro per il caricamento posizionato sulla destra, oppure spostarli nella cartella di elaborazione e appariranno nella lista dei documenti. Dopo aver aggiunto i metadati ai tuoi documenti, usa i meccanismi di filtraggio per creare viste personalizzate (come 'Aggiunti di recente' o 'Da taggare') e appariranno sulla dashboard invece di questo messaggio. + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 + Sie können Ihre Dokumente hochladen, indem Sie sie in die Hochladebox auf der rechten Seite ziehen oder in den konfigurierten Ablageordner kopieren/verschieben. Danach werden sie in der Dokumentenliste erscheinen. Nachdem Sie den Dokumenten einige Metadaten zugewiesen haben, können Sie die Filtermechanismen zur Erstellung individueller Ansichten benutzen (zum Beispiel "Kürzlich hinzugefügt" oder "Mit TODO markiert") und die Ansichten werden auf der Startseite anstelle dieser Nachricht erscheinen. - + Paperless offers some more features that try to make your life easier: - Paperless offre alcune funzionalità che cercano di rendere migliore la tua vita: src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 + Paperless bietet darüber hinaus einige erweiterte Funktionen: - - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - Quando avrai caricato qualche documento e aggiunto dei metadati, Paperless potrà assegnare automaticamente quei metadati ai nuovi documenti. + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 + Nachdem Sie einige Dokumente hochgeladen und diesen Korrespondenten, Tags und Dokumenttypen zugewiesen haben, kann Paperless-ng diese Metadaten automatisch passenden neuen Dokumenten zuweisen. - + You can configure paperless to read your mails and add documents from attached files. - Puoi configurare Paperless per leggere le tue mail e aggiungere i documenti che trova negli allegati. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 + Sie können in Paperless Ihre E-Mail-Konten einrichten und Paperless wird automatisch Dokumente aus Dateianhängen hinzufügen. - + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - Controlla la documentazione per capire come usare queste funzioni. La sezione per l'utilizzo base ha anche qualche suggerimento su come usare Paperless in generale. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 + Die Dokumentation enthält mehr Informationen, wie diese Funktionen benutzt werden. Der Abschnitt zur allgemeinen Verwendung enthält zudem wertvolle Informationen zur generellen Verwendung von Paperless. - + Metadata - Metadati src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 + Metadaten - + Select - Seleziona src/app/components/common/select-dialog/select-dialog.component.ts 18 + Auswählen - + Please select an object - Seleziona un elemento src/app/components/common/select-dialog/select-dialog.component.ts 21 + Bitte wählen Sie ein Element aus - + Invalid date. - Data non valida. src/app/components/common/input/date/date.component.html 14 + Ungültiges Datum. - + Yes - src/app/pipes/yes-no.pipe.ts 9 + Ja - + No - No src/app/pipes/yes-no.pipe.ts 9 + Nein - + (no title) - (nessun titolo) src/app/pipes/document-title.pipe.ts 12 + (kein Titel) - + English (US) - Inglese (US) src/app/services/settings.service.ts 90 + Englisch (US) - + English (GB) - Inglese (GB) src/app/services/settings.service.ts 91 + Englisch (UK) - + German - Tedesco src/app/services/settings.service.ts 92 + Deutsch - + Dutch - Olandese src/app/services/settings.service.ts 93 + Niederländisch - + French - Francese src/app/services/settings.service.ts 94 + Französisch - + Portuguese (Brazil) - Portoghese (Brasile) src/app/services/settings.service.ts 95 + Portugiesisch (Brasilien) - + Italian - Italiano src/app/services/settings.service.ts 96 + Italienisch - + Romanian - Rumeno src/app/services/settings.service.ts 97 + Rumänisch - + ISO 8601 - ISO 8601 src/app/services/settings.service.ts 102 + ISO 8601 - + Document already exists. - Il documento esiste già. src/app/services/consumer-status.service.ts 15 + Dokument existiert bereits. - + File not found. - File non trovato. src/app/services/consumer-status.service.ts 16 + Datei nicht gefunden. - + Pre-consume script does not exist. - Lo script di pre-consume (pre elaborazione) non esiste. src/app/services/consumer-status.service.ts 17 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume-Skript existiert nicht. - + Error while executing pre-consume script. - Errore durante l'esecuzione dello script di pre-consume (pre elaborazione). src/app/services/consumer-status.service.ts 18 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Fehler beim Ausführen des Pre-Consume-Skripts. - + Post-consume script does not exist. - Lo script di post-consume (post elaborazione) non esiste. src/app/services/consumer-status.service.ts 19 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume-Skript existiert nicht. - + Error while executing post-consume script. - Errore durante l'esecuzione dello script di post-consume (post elaborazione). src/app/services/consumer-status.service.ts 20 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Fehler beim Ausführen des Post-Consume-Skripts. - + Received new file. - Nuovo file ricevuto. src/app/services/consumer-status.service.ts 21 + Neue Datei erhalten. - + File type not supported. - Tipo di file non supportato. src/app/services/consumer-status.service.ts 22 + Dateityp wird nicht unterstützt. - + Processing document... - Elaborazione documento in corso... src/app/services/consumer-status.service.ts 23 + Verarbeite Dokument... - + Generating thumbnail... - Generazione anteprima in corso... src/app/services/consumer-status.service.ts 24 + Erzeuge Miniaturbild... - + Retrieving date from document... - Recupero della data del documento in corso... src/app/services/consumer-status.service.ts 25 + Ermittle Datum des Dokuments... - + Saving document... - Salvataggio documento in corso... src/app/services/consumer-status.service.ts 26 + Speichere Dokument... - + Finished. - Completato. src/app/services/consumer-status.service.ts 27 + Abgeschlossen. - + Error - Errore src/app/services/toast.service.ts 35 + Fehler - + Information - Informazione src/app/services/toast.service.ts 39 + Information - + ASN - ASN src/app/services/rest/document.service.ts 17 + ASN - + Correspondent - Corrispondente src/app/services/rest/document.service.ts 18 + Korrespondent - + Document type - Tipo di documento src/app/services/rest/document.service.ts 20 + Dokumenttyp - + Created - Creato src/app/services/rest/document.service.ts 21 + Ausgestellt am - + Added - Aggiunto src/app/services/rest/document.service.ts 22 + Hinzugefügt am - + Modified - Modificato src/app/services/rest/document.service.ts 23 + Geändert am - + Create new item - Crea nuovo elemento src/app/components/common/edit-dialog/edit-dialog.component.ts 50 + Neues Element erstellen - + Edit item - Modifica elemento src/app/components/common/edit-dialog/edit-dialog.component.ts 54 + Element bearbeiten - - Could not save element: - Non è possibile salvare l'elemento: + + Could not save element: src/app/components/common/edit-dialog/edit-dialog.component.ts 58 + Konnte Element nicht speichern: - + Automatic - Automatico src/app/components/manage/generic-list/generic-list.component.ts 39 + Automatisch - + Do you really want to delete this element? - Vuoi eliminare questo elemento? src/app/components/manage/generic-list/generic-list.component.ts 97 + Möchten Sie dieses Element wirklich löschen? - + Associated documents will not be deleted. - I documenti associati non verranno eliminati. src/app/components/manage/generic-list/generic-list.component.ts 104 + Assoziierte Dokumente werden nicht gelöscht. - + Delete - Elimina src/app/components/manage/generic-list/generic-list.component.ts 106 + Löschen - - Error while deleting element: - Errore durante l'eliminazione dell'elemento: + + Error while deleting element: src/app/components/manage/generic-list/generic-list.component.ts 114 + Fehler beim Löschen des Elements: - + Any word - Qualsiasi parola src/app/data/matching-model.ts 12 + Irgendein Wort - + Any: Document contains any of these words (space separated) - Qualsiasi: il documento contiene una qualunque di queste parole (separate dallo spazio) src/app/data/matching-model.ts 12 + Irgendein Wort: Dokument enthält eins der folgenden Wörter - + All words - Tutte le parole src/app/data/matching-model.ts 13 + Alle Wörter - + All: Document contains all of these words (space separated) - Tutto: il documento contiene tutte queste parole (separate dallo spazio) src/app/data/matching-model.ts 13 + Alle: Dokument enthält alle folgenden Wörter - + Exact match - Corrispondenza esatta src/app/data/matching-model.ts 14 + Exakte Übereinstimmung - + Exact: Document contains this string - Puntuale: il documento contiene questa stringa src/app/data/matching-model.ts 14 + Exakt: Dokument enthält die folgende Zeichenkette - + Regular expression - Espressione regolare src/app/data/matching-model.ts 15 + Regulärer Ausdruck - + Regular expression: Document matches this regular expression - Espressione regolare: il documento corrisponde a questa espressione regolare src/app/data/matching-model.ts 15 + Regulärer Ausdruck: Dokument passt zum folgenden Ausdruck - + Fuzzy word - Parola fuzzy src/app/data/matching-model.ts 16 + Ungenaues Wort - + Fuzzy: Document contains a word similar to this word - Fuzzy: il documento contiene una parola simile a questa src/app/data/matching-model.ts 16 + Ungenau: Dokument enthält ein zum folgenden Wort ähnliches Wort - + Auto: Learn matching automatically - Automatico: apprende automaticamente la corrispondenza src/app/data/matching-model.ts 17 + Auto: Zuweisung automatisch erlernen - \ No newline at end of file + diff --git a/src-ui/src/locale/messages.en_GB.xlf b/src-ui/src/locale/messages.en_GB.xlf index 4e3f0eccf..bb1800aba 100644 --- a/src-ui/src/locale/messages.en_GB.xlf +++ b/src-ui/src/locale/messages.en_GB.xlf @@ -1,2257 +1,2282 @@ - - + + + - + Document added - Document added src/app/app.component.ts 51 + Document added - - Document was added to paperless. - Document was added to paperless. + + Document was added to paperless. src/app/app.component.ts 51 + Document was added to paperless. - + Open document - Open document src/app/app.component.ts 51 + Open document - - Could not add : - Could not add : + + Could not add : src/app/app.component.ts 59 + Could not add : - + New document detected - New document detected src/app/app.component.ts 65 + New document detected - - Document is being processed by paperless. - Document is being processed by paperless. + + Document is being processed by paperless. src/app/app.component.ts 65 + Document is being processed by paperless. - + Documents - Documents src/app/components/document-list/document-list.component.ts 49 + Documents - - View "" saved successfully. - View "" saved successfully. + + View "" saved successfully. src/app/components/document-list/document-list.component.ts 115 + View "" saved successfully. - - View "" created successfully. - View "" created successfully. + + View "" created successfully. src/app/components/document-list/document-list.component.ts 136 + View "" created successfully. - + Select - Select src/app/components/document-list/document-list.component.html 7 + Select - + Select none - Select none src/app/components/document-list/document-list.component.html 10 + Select none - + Select page - Select page src/app/components/document-list/document-list.component.html 11 + Select page - + Select all - Select all src/app/components/document-list/document-list.component.html 12 + Select all - + Sort - Sort src/app/components/document-list/document-list.component.html 39 + Sort - + Views - Views src/app/components/document-list/document-list.component.html 64 + Views - + Save as... - Save as... src/app/components/document-list/document-list.component.html 72 + Save as... - - Save "" - Save "" + + Save "" src/app/components/document-list/document-list.component.html 71 + Save "" - + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} src/app/components/document-list/document-list.component.html 85 + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - + {VAR_PLURAL, plural, =1 {One document} other { documents}} - {VAR_PLURAL, plural, =1 {One document} other { documents}} src/app/components/document-list/document-list.component.html 86 + {VAR_PLURAL, plural, =1 {One document} other { documents}} - + (filtered) - (filtered) src/app/components/document-list/document-list.component.html 86 + (filtered) - + ASN - ASN src/app/components/document-list/document-list.component.html 105 + ASN - + Correspondent - Correspondent src/app/components/document-list/document-list.component.html 111 + Correspondent - + Title - Title src/app/components/document-list/document-list.component.html 117 + Title - + Document type - Document type src/app/components/document-list/document-list.component.html 123 + Document type - + Created - Created src/app/components/document-list/document-list.component.html 129 + Created - + Added - Added src/app/components/document-list/document-list.component.html 135 + Added - + Confirm delete - Confirm delete src/app/components/document-detail/document-detail.component.ts 203 + Confirm delete - - Do you really want to delete document ""? - Do you really want to delete document ""? + + Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts 204 + Do you really want to delete document ""? - + The files for this document will be deleted permanently. This operation cannot be undone. - The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts 205 + The files for this document will be deleted permanently. This operation cannot be undone. - + Delete document - Delete document src/app/components/document-detail/document-detail.component.ts 207 + Delete document - - Error deleting document: - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts 214 + Error deleting document: - + Delete - Delete src/app/components/document-detail/document-detail.component.html 15 + Delete - + Download - Download src/app/components/document-detail/document-detail.component.html 23 + Download - + More like this - More like this src/app/components/document-detail/document-detail.component.html 38 + More like this - + Close - Close src/app/components/document-detail/document-detail.component.html 44 + Close - + Details - Details src/app/components/document-detail/document-detail.component.html 56 + Details - + Content - Content src/app/components/document-detail/document-detail.component.html 72 + Content - + Metadata - Metadata src/app/components/document-detail/document-detail.component.html 81 + Metadata - + Discard - Discard src/app/components/document-detail/document-detail.component.html 130 + Discard - + Save - Save src/app/components/document-detail/document-detail.component.html 132 + Save - + Page - Page src/app/components/document-detail/document-detail.component.html 4 + Page - - of - of + + of src/app/components/document-detail/document-detail.component.html 8 + of - + Download original - Download original src/app/components/document-detail/document-detail.component.html 29 + Download original - + Archive serial number - Archive serial number src/app/components/document-detail/document-detail.component.html 60 + Archive serial number - + Date created - Date created src/app/components/document-detail/document-detail.component.html 61 + Date created - + Date modified - Date modified src/app/components/document-detail/document-detail.component.html 87 + Date modified - + Date added - Date added src/app/components/document-detail/document-detail.component.html 91 + Date added - + Media filename - Media filename src/app/components/document-detail/document-detail.component.html 95 + Media filename - + Original MD5 checksum - Original MD5 checksum src/app/components/document-detail/document-detail.component.html 99 + Original MD5 checksum - + Original file size - Original file size src/app/components/document-detail/document-detail.component.html 103 + Original file size - + Original mime type - Original mime type src/app/components/document-detail/document-detail.component.html 107 + Original mime type - + Archive MD5 checksum - Archive MD5 checksum src/app/components/document-detail/document-detail.component.html 111 + Archive MD5 checksum - + Archive file size - Archive file size src/app/components/document-detail/document-detail.component.html 115 + Archive file size - + Original document metadata - Original document metadata src/app/components/document-detail/document-detail.component.html 121 + Original document metadata - + Archived document metadata - Archived document metadata src/app/components/document-detail/document-detail.component.html 122 + Archived document metadata - + Save & next - Save & next src/app/components/document-detail/document-detail.component.html 131 + Save & next - - Hello , welcome to Paperless-ng! - Hello , welcome to Paperless-ng! + + Hello , welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 33 + Hello , welcome to Paperless-ng! - + Welcome to Paperless-ng! - Welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 35 + Welcome to Paperless-ng! - + Dashboard - Dashboard src/app/components/dashboard/dashboard.component.html 1 + Dashboard - - Do you really want to delete the tag ""? - Do you really want to delete the tag ""? + + Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts 26 + Do you really want to delete the tag ""? - + Tags - Tags src/app/components/manage/tag-list/tag-list.component.html 1 + Tags - + Create - Create src/app/components/manage/tag-list/tag-list.component.html 2 + Create - + Filter by: - Filter by: src/app/components/manage/tag-list/tag-list.component.html 8 + Filter by: - + Name - Name src/app/components/manage/tag-list/tag-list.component.html 9 + Name - + Color - Colour src/app/components/manage/tag-list/tag-list.component.html 20 + Colour - + Matching - Matching src/app/components/manage/tag-list/tag-list.component.html 21 + Matching - + Document count - Document count src/app/components/manage/tag-list/tag-list.component.html 22 + Document count - + Actions - Actions src/app/components/manage/tag-list/tag-list.component.html 23 + Actions - + Documents - Documents src/app/components/manage/tag-list/tag-list.component.html 38 + Documents - + Edit - Edit src/app/components/manage/tag-list/tag-list.component.html 43 + Edit - - Do you really want to delete the document type ""? - Do you really want to delete the document type ""? + + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 + Do you really want to delete the document type ""? - + Document types - Document types src/app/components/manage/document-type-list/document-type-list.component.html 1 + Document types - + Logs - Logs src/app/components/manage/logs/logs.component.html 1 + Logs - - Saved view "" deleted. - Saved view "" deleted. + + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts - 67 + 68 + Saved view "" deleted. - + Settings saved successfully. - Settings saved successfully. src/app/components/manage/settings/settings.component.ts - 87 + 89 + Settings saved successfully. - + Use system language - Use system language src/app/components/manage/settings/settings.component.ts - 92 + 94 + Use system language - + Use date format of display language - Use date format of display language src/app/components/manage/settings/settings.component.ts - 98 + 100 + Use date format of display language - - Error while storing settings on server: - Error while storing settings on server: + + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts - 115 + 117 + Error while storing settings on server: - + Settings - Settings src/app/components/manage/settings/settings.component.html 1 + Settings - + General settings - General settings src/app/components/manage/settings/settings.component.html 10 + General settings - + Notifications - Notifications src/app/components/manage/settings/settings.component.html - 115 + 116 + Notifications - + Saved views - Saved views src/app/components/manage/settings/settings.component.html - 133 + 134 + Saved views - + Appearance - Appearance src/app/components/manage/settings/settings.component.html 13 + Appearance - + Display language - Display language src/app/components/manage/settings/settings.component.html 17 + Display language - + You need to reload the page after applying a new language. - You need to reload the page after applying a new language. src/app/components/manage/settings/settings.component.html 25 + You need to reload the page after applying a new language. - + Date display - Date display src/app/components/manage/settings/settings.component.html 32 + Date display - + Date format - Date format src/app/components/manage/settings/settings.component.html 45 + Date format - - Short: - Short: + + Short: src/app/components/manage/settings/settings.component.html 51 + Short: - - Medium: - Medium: + + Medium: src/app/components/manage/settings/settings.component.html 55 + Medium: - - Long: - Long: + + Long: src/app/components/manage/settings/settings.component.html 59 + Long: - + Items per page - Items per page src/app/components/manage/settings/settings.component.html 67 + Items per page - + Document editor - Document editor src/app/components/manage/settings/settings.component.html 83 + Document editor - + Use PDF viewer provided by the browser - Use PDF viewer provided by the browser src/app/components/manage/settings/settings.component.html 87 + Use PDF viewer provided by the browser - + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - This is usually faster for displaying large PDF documents, but it might not work on some browsers. src/app/components/manage/settings/settings.component.html 87 + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - + Dark mode - Dark mode src/app/components/manage/settings/settings.component.html 94 + Dark mode - + Use system settings - Use system settings src/app/components/manage/settings/settings.component.html 97 + Use system settings - + Enable dark mode - Enable dark mode src/app/components/manage/settings/settings.component.html 98 + Enable dark mode - + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + Bulk editing - Bulk editing src/app/components/manage/settings/settings.component.html - 102 + 103 + Bulk editing - + Show confirmation dialogs - Show confirmation dialogs - - src/app/components/manage/settings/settings.component.html - 106 - - - - Deleting documents will always ask for confirmation. - Deleting documents will always ask for confirmation. - - src/app/components/manage/settings/settings.component.html - 106 - - - - Apply on close - Apply on close src/app/components/manage/settings/settings.component.html 107 + Show confirmation dialogs - + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + Document processing - Document processing src/app/components/manage/settings/settings.component.html - 118 + 119 + Document processing - + Show notifications when new documents are detected - Show notifications when new documents are detected - - src/app/components/manage/settings/settings.component.html - 122 - - - - Show notifications when document processing completes successfully - Show notifications when document processing completes successfully src/app/components/manage/settings/settings.component.html 123 + Show notifications when new documents are detected - - Show notifications when document processing fails - Show notifications when document processing fails + + Show notifications when document processing completes successfully src/app/components/manage/settings/settings.component.html 124 + Show notifications when document processing completes successfully - + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + Suppress notifications on dashboard - Suppress notifications on dashboard src/app/components/manage/settings/settings.component.html - 125 + 126 + Suppress notifications on dashboard - + This will suppress all messages about document processing status on the dashboard. - This will suppress all messages about document processing status on the dashboard. src/app/components/manage/settings/settings.component.html - 125 + 126 + This will suppress all messages about document processing status on the dashboard. - + Appears on - Appears on src/app/components/manage/settings/settings.component.html - 145 + 146 + Appears on - + Show on dashboard - Show on dashboard src/app/components/manage/settings/settings.component.html - 148 + 149 + Show on dashboard - + Show in sidebar - Show in sidebar src/app/components/manage/settings/settings.component.html - 152 + 153 + Show in sidebar - + No saved views defined. - No saved views defined. src/app/components/manage/settings/settings.component.html - 162 + 163 + No saved views defined. - + 404 Not Found - 404 Not Found src/app/components/not-found/not-found.component.html 7 + 404 Not Found - - Do you really want to delete the correspondent ""? - Do you really want to delete the correspondent ""? + + Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 + Do you really want to delete the correspondent ""? - + Correspondents - Correspondents src/app/components/manage/correspondent-list/correspondent-list.component.html 1 + Correspondents - + Last correspondence - Last correspondence src/app/components/manage/correspondent-list/correspondent-list.component.html 22 + Last correspondence - + Confirmation - Confirmation src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 + Confirmation - + Confirm - Confirm src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 + Confirm - + Cancel - Cancel src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 + Cancel - + Create new correspondent - Create new correspondent src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 + Create new correspondent - + Edit correspondent - Edit correspondent src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 + Edit correspondent - + Matching algorithm - Matching algorithm src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 + Matching algorithm - + Matching pattern - Matching pattern src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 + Matching pattern - + Case insensitive - Case insensitive src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 + Case insensitive - + Create new tag - Create new tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 + Create new tag - + Edit tag - Edit tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 + Edit tag - + Inbox tag - Inbox tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Inbox tag - + Inbox tags are automatically assigned to all consumed documents. - Inbox tags are automatically assigned to all consumed documents. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Inbox tags are automatically assigned to all consumed documents. - + Create new document type - Create new document type src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 + Create new document type - + Edit document type - Edit document type src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 + Edit document type - + Search results - Search results src/app/components/search/search.component.html 1 + Search results - - Invalid search query: - Invalid search query: + + Invalid search query: src/app/components/search/search.component.html 4 + Invalid search query: - - Showing documents similar to - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html 7 + Showing documents similar to - - Search query: - Search query: + + Search query: src/app/components/search/search.component.html 11 + Search query: - - Did you mean ""? - Did you mean ""? + + Did you mean ""? src/app/components/search/search.component.html 13 + Did you mean ""? - + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html 18 + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - + Paperless-ng - Paperless-ng src/app/components/app-frame/app-frame.component.html 11 - app title + app title + Paperless-ng - + Search documents - Search documents src/app/components/app-frame/app-frame.component.html 15 + Search documents - + Logout - Logout src/app/components/app-frame/app-frame.component.html 45 + Logout - + Manage - Manage src/app/components/app-frame/app-frame.component.html - 107 + 112 + Manage - + Admin - Admin src/app/components/app-frame/app-frame.component.html - 149 + 154 + Admin - + Info - Info src/app/components/app-frame/app-frame.component.html - 155 + 160 + Info - + Documentation - Documentation src/app/components/app-frame/app-frame.component.html - 162 + 167 + Documentation - + GitHub - GitHub src/app/components/app-frame/app-frame.component.html - 170 + 175 + GitHub - + Suggest an idea - Suggest an idea src/app/components/app-frame/app-frame.component.html - 176 + 181 + Suggest an idea - - Logged in as - Logged in as + + Logged in as src/app/components/app-frame/app-frame.component.html 34 + Logged in as - + Open documents - Open documents src/app/components/app-frame/app-frame.component.html 87 + Open documents - + Close all - Close all src/app/components/app-frame/app-frame.component.html - 101 + 106 + Close all - - Correspondent: - Correspondent: + + Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 29 + 73 + Title - + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + Without correspondent - Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 31 + 34 + Without correspondent - - Type: - Type: + + Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 36 + 39 + Type: - + Without document type - Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 38 + 41 + Without document type - - Tag: - Tag: + + Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 45 + Tag: - + Without any tag - Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 49 + Without any tag - - Title: - Title: + + Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 53 + Title: - + Filter tags - Filter tags - - src/app/components/document-list/filter-editor/filter-editor.component.html - 12 - - - - Filter correspondents - Filter correspondents src/app/components/document-list/filter-editor/filter-editor.component.html 20 + Filter tags - + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + Filter document types - Filter document types src/app/components/document-list/filter-editor/filter-editor.component.html - 27 + 35 + Filter document types - + Reset filters - Reset filters src/app/components/document-list/filter-editor/filter-editor.component.html - 50 + 58 + Reset filters - + Not assigned - Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 166 - Filter drop down element to filter for documents with no correspondent/type/tag assigned + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned - + Apply - Apply src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 + Apply - + Last 7 days - Last 7 days src/app/components/common/date-dropdown/date-dropdown.component.ts 34 + Last 7 days - + Last month - Last month src/app/components/common/date-dropdown/date-dropdown.component.ts 35 + Last month - + Last 3 months - Last 3 months src/app/components/common/date-dropdown/date-dropdown.component.ts 36 + Last 3 months - + Last year - Last year src/app/components/common/date-dropdown/date-dropdown.component.ts 37 + Last year - + After - After src/app/components/common/date-dropdown/date-dropdown.component.html 13 + After - + Before - Before src/app/components/common/date-dropdown/date-dropdown.component.html 38 + Before - + Clear - Clear src/app/components/common/date-dropdown/date-dropdown.component.html 18 + Clear - + View - View src/app/components/document-list/document-card-large/document-card-large.component.html 50 + View - - Created: - Created: + + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 67 + Created: - + Filter by correspondent - Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html 20 + Filter by correspondent - + Filter by tag - Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html 24 + Filter by tag - + Score: - Score: src/app/components/document-list/document-card-large/document-card-large.component.html 62 + Score: - + View in browser - View in browser src/app/components/document-list/document-card-small/document-card-small.component.html 40 + View in browser - - Error executing bulk operation: - Error executing bulk operation: + + Error executing bulk operation: src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 + Error executing bulk operation: - - "" - "" + + "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 + "" - - "" and "" - "" and "" + + "" and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 115 - This is for messages like 'modify "tag1" and "tag2"' + This is for messages like 'modify "tag1" and "tag2"' + "" and "" - + , - , src/app/components/document-list/bulk-editor/bulk-editor.component.ts 117 - this is used to separate enumerations and should probably be a comma and a whitespace in most languages + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , - - and "" - and "" + + and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 118 - this is for messages like 'modify "tag1", "tag2" and "tag3"' + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" - + Confirm tags assignment - Confirm tags assignment src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 + Confirm tags assignment - - This operation will add the tag "" to selected document(s). - This operation will add the tag "" to selected document(s). + + This operation will add the tag "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 + This operation will add the tag "" to selected document(s). - - This operation will add the tags to selected document(s). - This operation will add the tags to selected document(s). + + This operation will add the tags to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 + This operation will add the tags to selected document(s). - - This operation will remove the tag "" from selected document(s). - This operation will remove the tag "" from selected document(s). + + This operation will remove the tag "" from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 + This operation will remove the tag "" from selected document(s). - - This operation will remove the tags from selected document(s). - This operation will remove the tags from selected document(s). + + This operation will remove the tags from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 + This operation will remove the tags from selected document(s). - - This operation will add the tags and remove the tags on selected document(s). - This operation will add the tags and remove the tags on selected document(s). + + This operation will add the tags and remove the tags on selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 + This operation will add the tags and remove the tags on selected document(s). - + Confirm correspondent assignment - Confirm correspondent assignment src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 + Confirm correspondent assignment - - This operation will assign the correspondent "" to selected document(s). - This operation will assign the correspondent "" to selected document(s). + + This operation will assign the correspondent "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 + This operation will assign the correspondent "" to selected document(s). - - This operation will remove the correspondent from selected document(s). - This operation will remove the correspondent from selected document(s). + + This operation will remove the correspondent from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 + This operation will remove the correspondent from selected document(s). - + Confirm document type assignment - Confirm document type assignment src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 + Confirm document type assignment - - This operation will assign the document type "" to selected document(s). - This operation will assign the document type "" to selected document(s). + + This operation will assign the document type "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 + This operation will assign the document type "" to selected document(s). - - This operation will remove the document type from selected document(s). - This operation will remove the document type from selected document(s). + + This operation will remove the document type from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 + This operation will remove the document type from selected document(s). - + Delete confirm - Delete confirm src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 + Delete confirm - - This operation will permanently delete selected document(s). - This operation will permanently delete selected document(s). + + This operation will permanently delete selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 + This operation will permanently delete selected document(s). - + This operation cannot be undone. - This operation cannot be undone. src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 + This operation cannot be undone. - + Delete document(s) - Delete document(s) src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 + Delete document(s) - + Select: - Select: src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 + Select: - + All - All src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 + All - + Edit: - Edit: src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 + Edit: - + Download originals - Download originals src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 + Download originals - + Suggestions: - Suggestions: src/app/components/common/input/select/select.component.html 26 + Suggestions: - + Save current view - Save current view src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 + Save current view - + Show all - Show all src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 + Show all - + Statistics - Statistics src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 + Statistics - - Total documents: - Total documents: + + Total documents: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 + Total documents: - - Documents in inbox: - Documents in inbox: + + Documents in inbox: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 + Documents in inbox: - - Processing: - Processing: + + Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 + Processing: - - Failed: - Failed: + + Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 + Failed: - - Added: - Added: + + Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 + Added: - + Connecting... - Connecting... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 + Connecting... - + Uploading... - Uploading... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 + Uploading... - + Upload complete, waiting... - Upload complete, waiting... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 + Upload complete, waiting... - - HTTP error: - HTTP error: + + HTTP error: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 + HTTP error: - + Upload new documents - Upload new documents src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 + Upload new documents - + Drop documents here or - Drop documents here or src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Drop documents here or - + Browse files - Browse files src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Browse files - + Dismiss completed - Dismiss completed src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - This button dismisses all status messages about processed documents on the dashboard (failed and successful) + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed - + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 25 - This is shown as a summary line when there are more than 5 document in the processing pipeline. + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - + Open document - Open document src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 + Open document - + First steps - First steps src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 + First steps - + Paperless is running! :) - Paperless is running! :) src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 + Paperless is running! :) - - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - + Paperless offers some more features that try to make your life easier: - Paperless offers some more features that try to make your life easier: src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 + Paperless offers some more features that try to make your life easier: - - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - + You can configure paperless to read your mails and add documents from attached files. - You can configure paperless to read your mails and add documents from attached files. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 + You can configure paperless to read your mails and add documents from attached files. - + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - + Metadata - Metadata src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 + Metadata - + Select - Select src/app/components/common/select-dialog/select-dialog.component.ts 18 + Select - + Please select an object - Please select an object src/app/components/common/select-dialog/select-dialog.component.ts 21 + Please select an object - + Invalid date. - Invalid date. src/app/components/common/input/date/date.component.html 14 + Invalid date. - + Yes - Yes src/app/pipes/yes-no.pipe.ts 9 + Yes - + No - No src/app/pipes/yes-no.pipe.ts 9 + No - + (no title) - (no title) src/app/pipes/document-title.pipe.ts 12 + (no title) - + English (US) - English (US) - - src/app/services/settings.service.ts - 88 - - - - English (GB) - English (GB) - - src/app/services/settings.service.ts - 89 - - - - German - German src/app/services/settings.service.ts 90 + English (US) - - Dutch - Dutch + + English (GB) src/app/services/settings.service.ts 91 + English (GB) - - French - French + + German src/app/services/settings.service.ts 92 + German - - Portuguese (Brazil) - Portuguese (Brazil) + + Dutch src/app/services/settings.service.ts 93 + Dutch - - Italian - Italian + + French src/app/services/settings.service.ts 94 + French - - ISO 8601 - ISO 8601 + + Portuguese (Brazil) src/app/services/settings.service.ts - 99 + 95 + Portuguese (Brazil) - + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + Document already exists. - Document already exists. src/app/services/consumer-status.service.ts 15 + Document already exists. - + File not found. - File not found. src/app/services/consumer-status.service.ts 16 + File not found. - + Pre-consume script does not exist. - Pre-consume script does not exist. src/app/services/consumer-status.service.ts 17 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. - + Error while executing pre-consume script. - Error while executing pre-consume script. src/app/services/consumer-status.service.ts 18 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. - + Post-consume script does not exist. - Post-consume script does not exist. src/app/services/consumer-status.service.ts 19 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. - + Error while executing post-consume script. - Error while executing post-consume script. src/app/services/consumer-status.service.ts 20 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. - + Received new file. - Received new file. src/app/services/consumer-status.service.ts 21 + Received new file. - + File type not supported. - File type not supported. src/app/services/consumer-status.service.ts 22 + File type not supported. - + Processing document... - Processing document... src/app/services/consumer-status.service.ts 23 + Processing document... - + Generating thumbnail... - Generating thumbnail... src/app/services/consumer-status.service.ts 24 + Generating thumbnail... - + Retrieving date from document... - Retrieving date from document... src/app/services/consumer-status.service.ts 25 + Retrieving date from document... - + Saving document... - Saving document... src/app/services/consumer-status.service.ts 26 + Saving document... - + Finished. - Finished. src/app/services/consumer-status.service.ts 27 + Finished. - + Error - Error src/app/services/toast.service.ts 35 + Error - + Information - Information src/app/services/toast.service.ts 39 + Information - + ASN - ASN src/app/services/rest/document.service.ts 17 + ASN - + Correspondent - Correspondent src/app/services/rest/document.service.ts 18 + Correspondent - - Title - Title - - src/app/services/rest/document.service.ts - 19 - - - + Document type - Document type src/app/services/rest/document.service.ts 20 + Document type - + Created - Created src/app/services/rest/document.service.ts 21 + Created - + Added - Added src/app/services/rest/document.service.ts 22 + Added - + Modified - Modified src/app/services/rest/document.service.ts 23 + Modified - + Create new item - Create new item src/app/components/common/edit-dialog/edit-dialog.component.ts 50 + Create new item - + Edit item - Edit item src/app/components/common/edit-dialog/edit-dialog.component.ts 54 + Edit item - - Could not save element: - Could not save element: + + Could not save element: src/app/components/common/edit-dialog/edit-dialog.component.ts 58 + Could not save element: - + Automatic - Automatic src/app/components/manage/generic-list/generic-list.component.ts 39 + Automatic - + Do you really want to delete this element? - Do you really want to delete this element? src/app/components/manage/generic-list/generic-list.component.ts 97 + Do you really want to delete this element? - + Associated documents will not be deleted. - Associated documents will not be deleted. src/app/components/manage/generic-list/generic-list.component.ts 104 + Associated documents will not be deleted. - + Delete - Delete src/app/components/manage/generic-list/generic-list.component.ts 106 + Delete - - Error while deleting element: - Error while deleting element: + + Error while deleting element: src/app/components/manage/generic-list/generic-list.component.ts 114 + Error while deleting element: - + Any word - Any word src/app/data/matching-model.ts 12 + Any word - + Any: Document contains any of these words (space separated) - Any: Document contains any of these words (space separated) src/app/data/matching-model.ts 12 + Any: Document contains any of these words (space separated) - + All words - All words src/app/data/matching-model.ts 13 + All words - + All: Document contains all of these words (space separated) - All: Document contains all of these words (space separated) src/app/data/matching-model.ts 13 + All: Document contains all of these words (space separated) - + Exact match - Exact match src/app/data/matching-model.ts 14 + Exact match - + Exact: Document contains this string - Exact: Document contains this string src/app/data/matching-model.ts 14 + Exact: Document contains this string - + Regular expression - Regular expression src/app/data/matching-model.ts 15 + Regular expression - + Regular expression: Document matches this regular expression - Regular expression: Document matches this regular expression src/app/data/matching-model.ts 15 + Regular expression: Document matches this regular expression - + Fuzzy word - Fuzzy word src/app/data/matching-model.ts 16 + Fuzzy word - + Fuzzy: Document contains a word similar to this word - Fuzzy: Document contains a word similar to this word src/app/data/matching-model.ts 16 + Fuzzy: Document contains a word similar to this word - + Auto: Learn matching automatically - Auto: Learn matching automatically src/app/data/matching-model.ts 17 + Auto: Learn matching automatically - \ No newline at end of file + diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf new file mode 100644 index 000000000..bea646011 --- /dev/null +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf new file mode 100644 index 000000000..bbc97753e --- /dev/null +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document ajouté + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Le document a été ajouté à Paperless-ng. + + + Open document + + src/app/app.component.ts + 51 + + Ouvrir le document + + + Could not add : + + src/app/app.component.ts + 59 + + Impossible d'ajouter : + + + New document detected + + src/app/app.component.ts + 65 + + Nouveau document détecté + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Le document est en cours de traitement par Paperless-ng. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + Vue "" enregistrée avec succès. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + Vue "" créée avec succès. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Sélectionner + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Sélectionner aucun + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Sélectionner la page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Sélectionner tout + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Trier + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Vues + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Enregistrer sous... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Enregistrer "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 { document sélectionné sur 1} other { documents sélectionnés sur }} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {Un document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtré) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + NSA + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondant + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Titre + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Type de document + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Date de création + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Date d'ajout + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirmer la suppression + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Voulez-vous vraiment supprimer le document "" ? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Supprimer le document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Une erreur s'est produite lors de la suppression du document : + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Supprimer + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Télécharger + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + Documents relatifs + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Fermer + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Détails + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Contenu + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Métadonnées + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Abandonner + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Enregistrer + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + sur + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Télécharger l'original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Numéro de série de l'archive + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date de création + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Modifié le + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date d'ajout + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Nom de fichier du média + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Somme de contrôle MD5 de l'original + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Taille de fichier de l'original + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Type mime de l'original + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Somme de contrôle MD5 de l'archive + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Taille de fichier de l'archive + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Métadonnées du document original + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Métadonnées du document archivé + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Enregistrer & suivant + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Bonjour , bienvenue dans Paperless-ng ! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Bienvenue dans Paperless-ng ! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Tableau de bord + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Voulez-vous vraiment supprimer l'étiquette "" ? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Étiquettes + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Créer + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filtrer par : + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Nom + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Couleur + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Rapprochement + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Nombre de documents + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Éditer + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Voulez-vous vraiment supprimer le type de document "" ? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Types de document + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Rapports + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Vue "" supprimée. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Paramètres enregistrés avec succès. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Utiliser la langue du système + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Utiliser le format de date de la langue d'affichage + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Une erreur s'est produite lors de l'enregistrement des paramètres sur le serveur : + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Paramètres + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + Paramètres généraux + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Vues enregistrées + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Affichage + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Langue d'affichage + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + Vous devez recharger la page après avoir sélectionné une nouvelle langue. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Affichage de la date + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Format de date + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Court : + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Moyen : + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long : + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Éléments par page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Visionneuse de documents + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Utiliser la visionneuse PDF fournie par le navigateur + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + Cette option est généralement plus rapide pour l'affichage de grands documents PDF, mais elle peut ne pas fonctionner sur certains navigateurs. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Mode sombre + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Utiliser les paramètres du système + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Activer le mode sombre + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Inverser les vignettes en mode sombre + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Edition en masse + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Afficher les messages de confirmation + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + La suppression de documents requiert toujours une confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Appliquer lors de la fermeture + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Traitement de documents + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Afficher des notifications lorsque de nouveaux documents sont détectés + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Afficher des notifications lorsque le traitement des documents se termine avec succès + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Afficher des notifications en cas d'échec du traitement des documents + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Supprimer les notifications du tableau de bord + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + Cela supprimera tous les messages liés au traitement de documents sur le tableau de bord. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Apparaît sur + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Montrer sur le tableau de bord + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Montrer dans la barre latérale + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + Aucune vue sauvegardée n'est définie. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Non trouvé + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Voulez-vous vraiment supprimer le correspondant "" ? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondants + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Dernière correspondance + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirmer + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Annuler + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Créer un nouveau correspondant + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Éditer le correspondant + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Algorithme de rapprochement + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Modèle de rapprochement + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Insensible à la casse + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Créer une nouvelle étiquette + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Éditer l'étiquette + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Étiquette de boîte de réception + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Les étiquettes de boîte de réception sont automatiquement affectées à tous les documents traités. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Créer un nouveau type de document + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Éditer le type de document + + + Search results + + src/app/components/search/search.component.html + 1 + + Résultats de la recherche + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Requête de recherche invalide : + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Présentation des documents similaires à + + + Search query: + + src/app/components/search/search.component.html + 11 + + Requête de recherche : + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Vouliez-vous dire "" ? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {Aucun résultat} =1 {Un résultat} other { résultats}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Rechercher des documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Déconnexion + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Gestion + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Administration + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggérer une idée + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Connexion en tant que + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Documents ouverts + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Fermer tout + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Titre + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Titre & contenu + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondant : + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Sans correspondant + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type : + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Sans type de document + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Étiquette : + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Sans étiquette + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Titre : + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filtrer les étiquettes + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filtrer les correspondants + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filtrer les types de documents + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Réinitialiser les filtres + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Non affecté + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Appliquer + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Les 7 derniers jours + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Le mois dernier + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Les 3 derniers mois + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + L'année passée + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + Après + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Avant + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Réinitialiser + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + Vue + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Créé le : + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filtrer par correspondant + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filtrer par étiquette + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score : + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + Afficher dans le navigateur + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Une erreur s'est produite lors de l'exécution de l'opération de masse : + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" et "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + et "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirmer l'affectation des étiquettes + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + Cette action affectera l'étiquette "" au(x) document(s) sélectionné(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + Cette action affectera les étiquettes au(x) document(s) sélectionné(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + Cette action supprimera l'étiquette "" de(s) document(s) sélectionné(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + Cette action supprimera les étiquettes de(s) document(s) sélectionné(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + Cette action affectera les étiquettes et supprimera les étiquettes de(s) document(s) sélectionné(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirmer l'affectation du correspondant + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + Cette action affectera le correspondant "" au(x) document(s) sélectionné(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + Cette action supprimera le correspondant de(s) document(s) sélectionné(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirmer l'affectation du type de document + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + Cette action affectera le type de document "" au(x) document(s) sélectionné(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + Cette action supprimera le type de document de(s) document(s) sélectionné(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Confirmer la suppression + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + Cette action supprimera définitivement document(s) sélectionné(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + Cette action est irréversible. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Supprimer le(s) document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Sélectionner : + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + Tout + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Éditer : + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Télécharger les originaux + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions : + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Enregistrer la vue actuelle + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Tout afficher + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistiques + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Nombre total de documents : + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents dans la boîte de réception : + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Traitement : + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Échec : + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Ajout : + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connexion... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Téléchargement... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Chargement terminé, en attente... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + Erreur HTTP : + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Charger de nouveaux documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Déposer des documents ici ou + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Parcourir les fichiers + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Masquer lorsque terminé + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {Un document supplémentaire} other { documents supplémentaires}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Ouvrir le document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + Premiers pas + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless-ng fonctionne ! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + Vous pouvez commencer par télécharger des documents en les déposant dans la boîte de téléchargement de fichiers à droite ou en les déposant dans le dossier de traitement configuré, et ils commenceront à apparaître dans la liste des documents. Une fois que vous avez ajouté des métadonnées à vos documents, utilisez les mécanismes de filtrage de Paperless-ng pour créer des vues personnalisées (telles que "Récemment ajouté", "Marqué À FAIRE") et elles apparaîtront sur le tableau de bord à la place de ce message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless-ng offre quelques fonctionnalités supplémentaires qui tendent à vous faciliter la vie : + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Une fois que vous avez quelques documents dans Paperless-ng et que vous y avez ajouté des métadonnées, Paperless-ng peut attribuer automatiquement ces métadonnées à de nouveaux documents. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + Vous pouvez configurer Paperless-ng pour lire vos courriels et ajouter des documents à partir des pièces jointes. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consultez la documentation sur l'utilisation de ces fonctionnalités. La section sur l'utilisation de base contient également des informations sur la manière d'utiliser Paperless-ng en général. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Métadonnées + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Sélectionner + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Veuillez sélectionner un objet + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Date incorrecte. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Oui + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + Non + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (sans titre) + + + English (US) + + src/app/services/settings.service.ts + 90 + + Anglais (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + Anglais (GB) + + + German + + src/app/services/settings.service.ts + 92 + + Allemand + + + Dutch + + src/app/services/settings.service.ts + 93 + + Néerlandais + + + French + + src/app/services/settings.service.ts + 94 + + Français + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portugais (Brésil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italien + + + Romanian + + src/app/services/settings.service.ts + 97 + + Roumain + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Le document existe déjà. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + Fichier non trouvé. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Le script de pré-traitement n'existe pas. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Erreur lors de l'exécution du script de pré-traitement. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Le script de post-traitement n'existe pas. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Erreur lors de l'exécution du script de post-traitement. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Réception d'un nouveau fichier. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + Type de fichier non pris en charge. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Traitement du document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Génération de vignette... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Extraction de la date du document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Enregistrement du document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Terminé. + + + Error + + src/app/services/toast.service.ts + 35 + + Erreur + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + NSA + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondant + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Type de document + + + Created + + src/app/services/rest/document.service.ts + 21 + + Date de création + + + Added + + src/app/services/rest/document.service.ts + 22 + + Date d'ajout + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Date de modification + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Créer un nouvel élément + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Éditer l'élément + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Impossible d'enregistrer l'élément : + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatique + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Voulez-vous vraiment supprimer cet élément ? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Les documents associés ne seront pas supprimés. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Supprimer + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Une erreur s'est produite lors de la suppression de l'élément : + + + Any word + + src/app/data/matching-model.ts + 12 + + Un des mots + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Un des mots : contient l'un de ces mots (séparés par des espaces) + + + All words + + src/app/data/matching-model.ts + 13 + + Tous les mots + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + Tous les mots : contient tous ces mots (séparés par des espaces) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Concordance exacte + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Concordance exacte : contient cette chaîne de caractères + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Expression régulière + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Expression régulière : correspond à cette expression régulière + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Mot approximatif + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Mot approximatif : contient un mot similaire à ce mot + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Automatique : apprentissage automatique du rapprochement + + + + diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf new file mode 100644 index 000000000..909b1b104 --- /dev/null +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/locale/messages.de.xlf b/src-ui/src/locale/messages.it_IT.xlf similarity index 62% rename from src-ui/src/locale/messages.de.xlf rename to src-ui/src/locale/messages.it_IT.xlf index 21c94b91c..19821f8b3 100644 --- a/src-ui/src/locale/messages.de.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -1,2281 +1,2282 @@ - - + + + - + Document added - Dokument hinzugefügt src/app/app.component.ts 51 + Documento aggiunto - - Document was added to paperless. - Das Dokument wurde zu Paperless hinzugefügt. + + Document was added to paperless. src/app/app.component.ts 51 + Il documento è stato aggiunto a paperless. - + Open document - Dokument öffnen src/app/app.component.ts 51 + Apri documento - - Could not add : - Konnte nicht hinzufügen: + + Could not add : src/app/app.component.ts 59 + Impossibile aggiungere : - + New document detected - Neues Dokument erkannt src/app/app.component.ts 65 + Nuovo documento trovato - - Document is being processed by paperless. - Dokument wird von Paperless verarbeitet. + + Document is being processed by paperless. src/app/app.component.ts 65 + Paperless sta elaborando il documento . - + Documents - Dokumente src/app/components/document-list/document-list.component.ts 49 + Documenti - - View "" saved successfully. - Ansicht "" erfolgreich gespeichert. + + View "" saved successfully. src/app/components/document-list/document-list.component.ts 115 + La vista "" è stata salvata. - - View "" created successfully. - Ansicht "" erfolgreich erstellt. + + View "" created successfully. src/app/components/document-list/document-list.component.ts 136 + La vista "" è stata creata. - + Select - Auswählen src/app/components/document-list/document-list.component.html 7 + Selezione - + Select none - Nichts auswählen src/app/components/document-list/document-list.component.html 10 + Seleziona nessuno - + Select page - Seite auswählen src/app/components/document-list/document-list.component.html 11 + Seleziona pagina - + Select all - Alles auswählen src/app/components/document-list/document-list.component.html 12 + Seleziona tutti - + Sort - Sortieren src/app/components/document-list/document-list.component.html 39 + Ordina - + Views - Ansicht src/app/components/document-list/document-list.component.html 64 + Viste - + Save as... - Speichern als... src/app/components/document-list/document-list.component.html 72 + Salva come... - - Save "" - "" speichern + + Save "" src/app/components/document-list/document-list.component.html 71 + Salva "" - + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - {VAR_PLURAL, plural, =1 { von 1 Dokumente ausgewählt} other { von Dokumente ausgewählt}} src/app/components/document-list/document-list.component.html 85 + {VAR_PLURAL, plural, =1 {Selezionato di un documento} other {Selezionati di documenti}} - + {VAR_PLURAL, plural, =1 {One document} other { documents}} - {VAR_PLURAL, plural, =1 {Ein Dokument} other { Dokumente}} src/app/components/document-list/document-list.component.html 86 + {VAR_PLURAL, plural, =1 {Un documento} other { documenti}} - + (filtered) - (gefiltert) src/app/components/document-list/document-list.component.html 86 + (filtrato) - + ASN - ASN src/app/components/document-list/document-list.component.html 105 + ASN - + Correspondent - Korrespondent src/app/components/document-list/document-list.component.html 111 + Corrispondente - + Title - Titel src/app/components/document-list/document-list.component.html 117 + Titolo - + Document type - Dokumenttyp src/app/components/document-list/document-list.component.html 123 + Tipo di documento - + Created - Ausgestellt src/app/components/document-list/document-list.component.html 129 + Creato - + Added - Hinzugefügt src/app/components/document-list/document-list.component.html 135 + Aggiunto - + Confirm delete - Löschen bestätigen src/app/components/document-detail/document-detail.component.ts 203 + Conferma eliminazione - - Do you really want to delete document ""? - Möchten Sie das Dokument "" wirklich löschen? + + Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts 204 + Vuoi eliminare il documento ""? - + The files for this document will be deleted permanently. This operation cannot be undone. - Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. src/app/components/document-detail/document-detail.component.ts 205 + I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. - + Delete document - Dokument löschen src/app/components/document-detail/document-detail.component.ts 207 + Elimina documento - - Error deleting document: - Fehler beim Löschen des Dokuments: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts 214 + Errore nell'eliminazione del documento: - + Delete - Löschen src/app/components/document-detail/document-detail.component.html 15 + Elimina - + Download - Herunterladen src/app/components/document-detail/document-detail.component.html 23 + Scarica - + More like this - Ähnliche Dokumente src/app/components/document-detail/document-detail.component.html 38 + Altro come questo - + Close - Schließen src/app/components/document-detail/document-detail.component.html 44 + Chiudi - + Details - Details src/app/components/document-detail/document-detail.component.html 56 + Dettagli - + Content - Inhalt src/app/components/document-detail/document-detail.component.html 72 + Contenuto - + Metadata - Metadaten src/app/components/document-detail/document-detail.component.html 81 + Metadati - + Discard - Verwerfen src/app/components/document-detail/document-detail.component.html 130 + Scarta - + Save - Speichern src/app/components/document-detail/document-detail.component.html 132 + Salva - + Page - Seite src/app/components/document-detail/document-detail.component.html 4 + Pagina - - of - von + + of src/app/components/document-detail/document-detail.component.html 8 + di - + Download original - Original herunterladen src/app/components/document-detail/document-detail.component.html 29 + Scarica originale - + Archive serial number - Archiv-Seriennummer src/app/components/document-detail/document-detail.component.html 60 + Numero seriale di archivio - + Date created - Ausgestellt am src/app/components/document-detail/document-detail.component.html 61 + Data creazione - + Date modified - Geändert am src/app/components/document-detail/document-detail.component.html 87 + Data modifica - + Date added - Hinzugefügt am src/app/components/document-detail/document-detail.component.html 91 + Data aggiunta - + Media filename - Media-Dateiname src/app/components/document-detail/document-detail.component.html 95 + Nome del file multimediale - + Original MD5 checksum - MD5-Prüfsumme Original src/app/components/document-detail/document-detail.component.html 99 + Somma MD5 originale - + Original file size - Dateigröße Original src/app/components/document-detail/document-detail.component.html 103 + Dimensione del file originale - + Original mime type - MIME-Typ Original src/app/components/document-detail/document-detail.component.html 107 + Tipo mime originale - + Archive MD5 checksum - MD5-Prüfsumme Archiv src/app/components/document-detail/document-detail.component.html 111 + Checksum MD5 dell'archivio - + Archive file size - Dateigröße Archiv src/app/components/document-detail/document-detail.component.html 115 + Dimensione dell'archivio - + Original document metadata - Metadaten Original src/app/components/document-detail/document-detail.component.html 121 + Metadati del documento originale - + Archived document metadata - Metadaten Archiv src/app/components/document-detail/document-detail.component.html 122 + Metadati del documento archiviato - + Save & next - Speichern & weiter src/app/components/document-detail/document-detail.component.html 131 + Salva e vai al prossimo - - Hello , welcome to Paperless-ng! - Hallo , willkommen zu Paperless-ng! + + Hello , welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 33 + Ciao , benvenuto su Paperless-ng! - + Welcome to Paperless-ng! - Willkommen zu Paperless-ng! src/app/components/dashboard/dashboard.component.ts 35 + Benvenuto su Paperless-ng! - + Dashboard - Startseite src/app/components/dashboard/dashboard.component.html 1 + Dashboard - - Do you really want to delete the tag ""? - Möchten Sie das Tag "" wirklich löschen? + + Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts 26 + Vuoi eliminare il tag ""? - + Tags - Tags src/app/components/manage/tag-list/tag-list.component.html 1 + Etichette - + Create - Erstellen src/app/components/manage/tag-list/tag-list.component.html 2 + Crea - + Filter by: - Filtern nach: src/app/components/manage/tag-list/tag-list.component.html 8 + Filtra per: - + Name - Name src/app/components/manage/tag-list/tag-list.component.html 9 + Nome - + Color - Farbe src/app/components/manage/tag-list/tag-list.component.html 20 + Colore - + Matching - Zuweisung src/app/components/manage/tag-list/tag-list.component.html 21 + Corrispondenza - + Document count - Anzahl Dokumente src/app/components/manage/tag-list/tag-list.component.html 22 + Numero di documenti - + Actions - Aktionen src/app/components/manage/tag-list/tag-list.component.html 23 + Azioni - + Documents - Dokumente src/app/components/manage/tag-list/tag-list.component.html 38 + Documenti - + Edit - Bearbeiten src/app/components/manage/tag-list/tag-list.component.html 43 + Modifica - - Do you really want to delete the document type ""? - Möchten Sie den Dokumenttyp "" wirklich löschen? + + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 + Vuoi eliminare il tipo di documento ""? - + Document types - Dokumenttypen src/app/components/manage/document-type-list/document-type-list.component.html 1 + Tipi di documento - + Logs - Protokoll src/app/components/manage/logs/logs.component.html 1 + Log - - Saved view "" deleted. - Gespeicherte Ansicht "" gelöscht. + + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts 68 + La vista "" è stata eliminata. - + Settings saved successfully. - Einstellungen erfolgreich gespeichert. src/app/components/manage/settings/settings.component.ts 89 + Le impostazioni sono state salvate. - + Use system language - Benutze Systemsprache src/app/components/manage/settings/settings.component.ts 94 + Usa lingua di sistema - + Use date format of display language - Benutze Datumsformat der Anzeigesprache src/app/components/manage/settings/settings.component.ts 100 + Usa il formato data della lingua di visualizzazione - - Error while storing settings on server: - Fehler beim Speichern der Einstellungen auf dem Server: + + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts 117 + Errore durante il salvataggio delle impostazioni sul server: - + Settings - Einstellungen src/app/components/manage/settings/settings.component.html 1 + Impostazioni - + General settings - Allgemeine Einstellungen src/app/components/manage/settings/settings.component.html 10 + Impostazioni generali - + Notifications - Benachrichtigungen src/app/components/manage/settings/settings.component.html 116 + Notifiche - + Saved views - Gespeicherte Ansichten src/app/components/manage/settings/settings.component.html 134 + Viste salvate - + Appearance - Erscheinungsbild src/app/components/manage/settings/settings.component.html 13 + Aspetto - + Display language - Anzeigesprache src/app/components/manage/settings/settings.component.html 17 + Lingua - + You need to reload the page after applying a new language. - Nachdem Sie eine neue Sprache ausgewählt haben, müssen Sie die Seite neu laden. src/app/components/manage/settings/settings.component.html 25 + Riavviare la pagina dopo avere impostato la nuova lingua. - + Date display - Datumsanzeige src/app/components/manage/settings/settings.component.html 32 + Visualizzazione data - + Date format - Datumsformat src/app/components/manage/settings/settings.component.html 45 + Formato data - - Short: - Kurz: + + Short: src/app/components/manage/settings/settings.component.html 51 + Breve: - - Medium: - Mittel: + + Medium: src/app/components/manage/settings/settings.component.html 55 + Media: - - Long: - Lang: + + Long: src/app/components/manage/settings/settings.component.html 59 + Lunga: - + Items per page - Dokumente pro Seite src/app/components/manage/settings/settings.component.html 67 + Oggetti per pagina - + Document editor - Dokumenteditor src/app/components/manage/settings/settings.component.html 83 + Editor dei documenti - + Use PDF viewer provided by the browser - Benutze PDF-Betrachter des Web Browsers src/app/components/manage/settings/settings.component.html 87 + Usa il visualizzatore PDF fornito dal browser - + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - Der integrierte PDF-Betrachter des Web-Browsers ist in der Regel schneller bei der Anzeige besonders großer Dokumente, funktioniert aber nicht in allen Browsern. src/app/components/manage/settings/settings.component.html 87 + Di solito è più rapido nel visualizzare documenti PDF grandi, ma potrebbe non funzionare su tutti i browser. - + Dark mode - Dunkler Modus src/app/components/manage/settings/settings.component.html 94 + Modalità notte - + Use system settings - Benutze Systemeinstellungen src/app/components/manage/settings/settings.component.html 97 + Usa impostazioni di sistema - + Enable dark mode - Dunklen Modus aktivieren src/app/components/manage/settings/settings.component.html 98 + Abilita modalità notte - + Invert thumbnails in dark mode - Miniaturbilder im dunklen Modus invertieren src/app/components/manage/settings/settings.component.html 99 + Inverti anteptime in modalità notte - + Bulk editing - Massenbearbeitung src/app/components/manage/settings/settings.component.html 103 + Modifica in blocco - + Show confirmation dialogs - Bestätigungsdialoge anzeigen src/app/components/manage/settings/settings.component.html 107 + Mostra dialoghi di conferma - + Deleting documents will always ask for confirmation. - Beim Löschen von Dokumenten wird immer nach einer Bestätigung gefragt. src/app/components/manage/settings/settings.component.html 107 + L'eliminazione dei documenti chiederà sempre la conferma. - + Apply on close - Anwenden beim Schließen src/app/components/manage/settings/settings.component.html 108 + Applica in chiusura - + Document processing - Dokumentverarbeitung src/app/components/manage/settings/settings.component.html 119 + Elaborazione del documento - + Show notifications when new documents are detected - Zeige Benachrichtigungen wenn neue Dokumente erkannt werden src/app/components/manage/settings/settings.component.html 123 + Notifica quando vengono trovati nuovi documenti - + Show notifications when document processing completes successfully - Zeige Benachrichtigungen wenn neue Dokumente erfolgreich hinzugefügt wurden src/app/components/manage/settings/settings.component.html 124 + Notifica quando l'elaborazione del documento viene completata con successo. - + Show notifications when document processing fails - Zeige Benachrichtigungen wenn Dokumente nicht hinzugefügt werden konnten src/app/components/manage/settings/settings.component.html 125 + Notifica quando l'elaborazione del documento fallisce - + Suppress notifications on dashboard - Unterdrücke Benachrichtigungen auf der Startseite. src/app/components/manage/settings/settings.component.html 126 + Non mostrare notifiche nella dashboard - + This will suppress all messages about document processing status on the dashboard. - Dadurch werden alle Benachrichtigungen über die Dokumentenverarbeitung auf der Startseite unterdrückt. src/app/components/manage/settings/settings.component.html 126 + Verranno interrotte tutte le notifiche nella dashboard riguardo lo stato dell'elaborazione dei documenti. - + Appears on - Erscheint auf src/app/components/manage/settings/settings.component.html 146 + Appare in - + Show on dashboard - Auf Startseite zeigen src/app/components/manage/settings/settings.component.html 149 + Mostra nella dashboard - + Show in sidebar - In Seitenleiste zeigen src/app/components/manage/settings/settings.component.html 153 + Mostra nella barra laterale - + No saved views defined. - Keine gespeicherten Ansichten vorhanden. src/app/components/manage/settings/settings.component.html 163 + Nessuna vista salvata. - + 404 Not Found - 404 Nicht gefunden src/app/components/not-found/not-found.component.html 7 + 404 Non trovato - - Do you really want to delete the correspondent ""? - Möchten Sie den Korrespondenten "" wirklich löschen? + + Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 + Vuoi eliminare il corrispondente ""? - + Correspondents - Korrespondenten src/app/components/manage/correspondent-list/correspondent-list.component.html 1 + Corrispondenti - + Last correspondence - Letzter Kontakt src/app/components/manage/correspondent-list/correspondent-list.component.html 22 + Ultrima corrispondenza - + Confirmation - Bestätigung src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 + Conferma - + Confirm - Bestätigen src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 + Conferma - + Cancel - Abbrechen src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 + Annulla - + Create new correspondent - Neuen Korrespondenten erstellen src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 + Crea nuovo corrispondente - + Edit correspondent - Korrespondenten bearbeiten src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 + Modifica corrispondente - + Matching algorithm - Zuweisungsalgorithmus src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 + Algoritmo di corrispondenza - + Matching pattern - Zuweisungsmuster src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 + Criterio di corrispondenza - + Case insensitive - Groß-/Kleinschreibung irrelevant src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 + Senza distinzione tra maiuscole e minuscole - + Create new tag - Neues Tag erstellen src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 + Crea nuovo tag - + Edit tag - Tag bearbeiten src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 + Modifica tag - + Inbox tag - Posteingangs-Tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Tag di arrivo - + Inbox tags are automatically assigned to all consumed documents. - Ein Tag mit dieser Option wird automatisch allen neuen Dokumenten zugewiesen. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + I tag di arrivo vengono assegnati automaticamente a tutti i documenti elaborati. - + Create new document type - Neuen Dokumenttyp erstellen src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 + Crea nuovo tipo di documento - + Edit document type - Dokumenttyp bearbeiten src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 + Modifica tipo di documento - + Search results - Suchergebnisse src/app/components/search/search.component.html 1 + Risultati della ricerca - - Invalid search query: - Ungültige Suchanfrage: + + Invalid search query: src/app/components/search/search.component.html 4 + Query di ricerca non valida: - - Showing documents similar to - Zeige ähnliche Dokumente zu + + Showing documents similar to src/app/components/search/search.component.html 7 + Documenti simili a - - Search query: - Suchanfrage: + + Search query: src/app/components/search/search.component.html 11 + Query di ricerca: - - Did you mean ""? - Meinten Sie ""? + + Did you mean ""? src/app/components/search/search.component.html 13 + Forse intendevi ""? - + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - {VAR_PLURAL, plural, =0 {Keine Ergebnisse} =1 {Ein Ergebnis} other { Ergebnisse}} src/app/components/search/search.component.html 18 + {VAR_PLURAL, plural, =0 {Nessun risultato} =1 {Un risultato} other { risultati}} - + Paperless-ng - Paperless-ng src/app/components/app-frame/app-frame.component.html 11 - app title + app title + Paperless-ng - + Search documents - Dokumente suchen src/app/components/app-frame/app-frame.component.html 15 + Cerca documenti - + Logout - Abmelden src/app/components/app-frame/app-frame.component.html 45 + Esci - + Manage - Verwalten src/app/components/app-frame/app-frame.component.html 112 + Gestisci - + Admin - Administration src/app/components/app-frame/app-frame.component.html 154 + Amministratore - + Info - Info src/app/components/app-frame/app-frame.component.html 160 + Informazioni - + Documentation - Dokumentation src/app/components/app-frame/app-frame.component.html 167 + Documentazione - + GitHub - GitHub src/app/components/app-frame/app-frame.component.html 175 + GitHub - + Suggest an idea - Eine Idee vorschlagen src/app/components/app-frame/app-frame.component.html 181 + Suggerisci un'idea - - Logged in as - Angemeldet als + + Logged in as src/app/components/app-frame/app-frame.component.html 34 + Accesso effettuato come - + Open documents - Geöffnete Dokumente src/app/components/app-frame/app-frame.component.html 87 + Apri documenti - + Close all - Alle schließen src/app/components/app-frame/app-frame.component.html 106 + Chiudi tutti - + Title - Titel src/app/components/document-list/filter-editor/filter-editor.component.ts 73 + Titolo - + Title & content - Titel & Inhalt src/app/components/document-list/filter-editor/filter-editor.component.ts 74 + Titolo & contenuto - - Correspondent: - Korrespondent: + + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts 32 + Corrispondente: - + Without correspondent - Ohne Korrespondent src/app/components/document-list/filter-editor/filter-editor.component.ts 34 + Senza corrispondente - - Type: - Typ: + + Type: src/app/components/document-list/filter-editor/filter-editor.component.ts 39 + Tipo: - + Without document type - Ohne Dokumenttyp src/app/components/document-list/filter-editor/filter-editor.component.ts 41 + Senza tipo di documento - - Tag: - Tag: + + Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts 45 + Tag: - + Without any tag - Ohne Tag src/app/components/document-list/filter-editor/filter-editor.component.ts 49 + Senza alcun tag - - Title: - Titel: + + Title: src/app/components/document-list/filter-editor/filter-editor.component.ts 53 + Titolo: - + Filter tags - Tags filtern src/app/components/document-list/filter-editor/filter-editor.component.html 20 + Filtra tag - + Filter correspondents - Korrespondenten filtern src/app/components/document-list/filter-editor/filter-editor.component.html 28 + Filtra corrispondenti - + Filter document types - Dokumenttypen filtern src/app/components/document-list/filter-editor/filter-editor.component.html 35 + Filtra tipi di documento - + Reset filters - Filter zurücksetzen src/app/components/document-list/filter-editor/filter-editor.component.html 58 + Ripristina filtri - + Not assigned - Nicht zugewiesen src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 166 - Filter drop down element to filter for documents with no correspondent/type/tag assigned + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Non assegnato - + Apply - Anwenden src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 + Applica - + Last 7 days - Letzte 7 Tage src/app/components/common/date-dropdown/date-dropdown.component.ts 34 + Ultimi 7 giorni - + Last month - Letzten Monat src/app/components/common/date-dropdown/date-dropdown.component.ts 35 + Ultimo mese - + Last 3 months - Letzte 3 Monate src/app/components/common/date-dropdown/date-dropdown.component.ts 36 + Ultimi 3 mesi - + Last year - Letztes Jahr src/app/components/common/date-dropdown/date-dropdown.component.ts 37 + Ultimo anno - + After - Nach src/app/components/common/date-dropdown/date-dropdown.component.html 13 + Dopo - + Before - Vor src/app/components/common/date-dropdown/date-dropdown.component.html 38 + Prima - + Clear - Zurücksetzen src/app/components/common/date-dropdown/date-dropdown.component.html 18 + Pulisci - + View - Anzeigen src/app/components/document-list/document-card-large/document-card-large.component.html 50 + Mostra - - Created: - Erstellt: + + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 67 + Creato il: - + Filter by correspondent - Nach Korrespondent filtern src/app/components/document-list/document-card-large/document-card-large.component.html 20 + Filtra per corrispondente - + Filter by tag - Nach Tag filtern src/app/components/document-list/document-card-large/document-card-large.component.html 24 + Filtra per tag - + Score: - Relevanz: src/app/components/document-list/document-card-large/document-card-large.component.html 62 + Punteggio: - + View in browser - Im Browser anzeigen src/app/components/document-list/document-card-small/document-card-small.component.html 40 + Apri nel browser - - Error executing bulk operation: - Fehler beim Ausführung der Massenverarbeitung: + + Error executing bulk operation: src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 + Errore durante l'operazione di modifica in blocco: - - "" - "" + + "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 + "" - - "" and "" - "" und "" + + "" and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 115 - This is for messages like 'modify "tag1" and "tag2"' + This is for messages like 'modify "tag1" and "tag2"' + "" e "" - + , - , src/app/components/document-list/bulk-editor/bulk-editor.component.ts 117 - this is used to separate enumerations and should probably be a comma and a whitespace in most languages + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , - - and "" - und "" + + and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 118 - this is for messages like 'modify "tag1", "tag2" and "tag3"' + this is for messages like 'modify "tag1", "tag2" and "tag3"' + e "" - + Confirm tags assignment - Tag-Zuweisung bestätigen src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 + Conferma assegnazione tag - - This operation will add the tag "" to selected document(s). - Diese Aktion wird ausgewählten Dokumenten das Tag "" hinzufügen. + + This operation will add the tag "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 + Questa operazione aggiungerà il tag "" a documento/i selezionato/i. - - This operation will add the tags to selected document(s). - Diese Aktion wird ausgewählten Dokumenten die Tags hinzufügen. + + This operation will add the tags to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 + Questa operazione aggiungerà i tag a documento/i selezionato/i. - - This operation will remove the tag "" from selected document(s). - Diese Aktion wird das Tag "" von ausgewählten Dokumenten entfernen. + + This operation will remove the tag "" from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 + Questa operazione rimuoverà il tag "" da documento/i selezionato/i. - - This operation will remove the tags from selected document(s). - Diese Aktion wird die Tags von ausgewählten Dokumenten entfernen. + + This operation will remove the tags from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 + Questa operazione rimuoverà i tag da documento/i selezionato/i. - - This operation will add the tags and remove the tags on selected document(s). - Diese Aktion wird die Tags den ausgewählten Dokumenten hinzufügen und die Tags entfernen. + + This operation will add the tags and remove the tags on selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 + Questa operazione aggiungerà i tag e rimuoverà i tag a documento/i selezionato/i. - + Confirm correspondent assignment - Korrespondent-Zuweisung bestätigen src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 + Conferma assegnazione corrispondente - - This operation will assign the correspondent "" to selected document(s). - Diese Aktion wird ausgewählten Dokumenten den Korrespondent "" zuweisen. + + This operation will assign the correspondent "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 + Questa operazione assegnerà il corrispondente "" a documento/i selezionato/i. - - This operation will remove the correspondent from selected document(s). - Diese Aktion wird bei ausgewählten Dokumenten den Korrespondent entfernen. + + This operation will remove the correspondent from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 + Questa operazione rimuoverà il corrispondente da documento/i selezionato/i. - + Confirm document type assignment - Dokumenttyp-Zuweisung bestätigen src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 + Conferma assegnazione tipo di documento - - This operation will assign the document type "" to selected document(s). - Diese Aktion wird ausgewählten Dokumenten den Dokumenttyp "" zuweisen. + + This operation will assign the document type "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 + Questa operazione assegnerà il tipo di documento "" a documento/i selezionato/i. - - This operation will remove the document type from selected document(s). - Diese Aktion wird bei ausgewählten Dokumenten den Dokumenttyp entfernen. + + This operation will remove the document type from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 + Questa operazione eliminerà il tipo di documento da documento/i selezionato/i. - + Delete confirm - Löschen bestätigen src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 + Conferma eliminazione - - This operation will permanently delete selected document(s). - Diese Aktion wird ausgewählte Dokumente unwiderruflich löschen. + + This operation will permanently delete selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 + Questa operazione eliminerà definitivamente documento/i selezionato/i. - + This operation cannot be undone. - Diese Aktion kann nicht rückgängig gemacht werden. src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 + Questa operazione non può essere annullata. - + Delete document(s) - Dokument(e) löschen src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 + Elimina documento/i - + Select: - Auswählen: src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 + Seleziona: - + All - Alle src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 + Tutto - + Edit: - Bearbeiten: src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 + Modifica: - + Download originals - Originale herunterladen src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 + Scarica originali - + Suggestions: - Vorschläge: src/app/components/common/input/select/select.component.html 26 + Suggerimenti: - + Save current view - Aktuelle Ansicht speichern src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 + Salva vista corrente - + Show all - Alle anzeigen src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 + Mostra tutto - + Statistics - Statistiken src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 + Statistiche - - Total documents: - Anzahl Dokumente gesamt: + + Total documents: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 + Documenti totali: - - Documents in inbox: - Dokumente im Posteingang: + + Documents in inbox: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 + Documenti taggati in arrivo: - - Processing: - Verarbeite: + + Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 + Elaborazione in corso: - - Failed: - Fehlgeschlagen: + + Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 + Falliti: - - Added: - Hinzugefügt: + + Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 + Aggiunti: - + Connecting... - Verbinde... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 + Connessione in corso... - + Uploading... - Hochladen... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 + Caricamento in corso... - + Upload complete, waiting... - Datei hochgeladen, warte... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 + Caricamento completato, in attesa... - - HTTP error: - HTTP-Fehler: + + HTTP error: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 + Errore HTTP: - + Upload new documents - Neue Dokumente hochladen src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 + Carica nuovi documenti - + Drop documents here or - Dokumente hier ablegen oder src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Trascina qui i documenti oppure - + Browse files - Datei auswählen src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Sfoglia i file - + Dismiss completed - Fertiggestellte verbergen src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - This button dismisses all status messages about processed documents on the dashboard (failed and successful) + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Ignora completati - + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - {VAR_PLURAL, plural, =1 {Ein weiteres Dokument} other { weitere Dokumente}} src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 25 - This is shown as a summary line when there are more than 5 document in the processing pipeline. + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {Un altro documento} other {altri documenti}} - + Open document - Dokument öffnen src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 + Apri documento - + First steps - Erste Schritte src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 + Primi passi - + Paperless is running! :) - Paperless ist startbereit! :) src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 + Paperless è in esecuzione! :) - - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - Sie können Ihre Dokumente hochladen, indem Sie sie in die Hochladebox auf der rechten Seite ziehen oder in den konfigurierten Ablageordner kopieren/verschieben. Danach werden sie in der Dokumentenliste erscheinen. Nachdem Sie den Dokumenten einige Metadaten zugewiesen haben, können Sie die Filtermechanismen zur Erstellung individueller Ansichten benutzen (zum Beispiel "Kürzlich hinzugefügt" oder "Mit TODO markiert") und die Ansichten werden auf der Startseite anstelle dieser Nachricht erscheinen. + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 + Puoi iniziare a caricare documenti trascinandoli nel riquadro per il caricamento posizionato sulla destra, oppure spostarli nella cartella di elaborazione e appariranno nella lista dei documenti. Dopo aver aggiunto i metadati ai tuoi documenti, usa i meccanismi di filtraggio per creare viste personalizzate (come 'Aggiunti di recente' o 'Da taggare') e appariranno sulla dashboard invece di questo messaggio. - + Paperless offers some more features that try to make your life easier: - Paperless bietet darüber hinaus einige erweiterte Funktionen: src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 + Paperless offre alcune funzionalità che cercano di rendere migliore la tua vita: - - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - Nachdem Sie einige Dokumente hochgeladen und diesen Korrespondenten, Tags und Dokumenttypen zugewiesen haben, kann Paperless-ng diese Metadaten automatisch passenden neuen Dokumenten zuweisen. + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 + Quando avrai caricato qualche documento e aggiunto dei metadati, Paperless potrà assegnare automaticamente quei metadati ai nuovi documenti. - + You can configure paperless to read your mails and add documents from attached files. - Sie können in Paperless Ihre E-Mail-Konten einrichten und Paperless wird automatisch Dokumente aus Dateianhängen hinzufügen. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 + Puoi configurare Paperless per leggere le tue mail e aggiungere i documenti che trova negli allegati. - + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - Die Dokumentation enthält mehr Informationen, wie diese Funktionen benutzt werden. Der Abschnitt zur allgemeinen Verwendung enthält zudem wertvolle Informationen zur generellen Verwendung von Paperless. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 + Controlla la documentazione per capire come usare queste funzioni. La sezione per l'utilizzo base ha anche qualche suggerimento su come usare Paperless in generale. - + Metadata - Metadaten src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 + Metadati - + Select - Auswählen src/app/components/common/select-dialog/select-dialog.component.ts 18 + Seleziona - + Please select an object - Bitte wählen Sie ein Element aus src/app/components/common/select-dialog/select-dialog.component.ts 21 + Seleziona un elemento - + Invalid date. - Ungültiges Datum. src/app/components/common/input/date/date.component.html 14 + Data non valida. - + Yes - Ja src/app/pipes/yes-no.pipe.ts 9 + - + No - Nein src/app/pipes/yes-no.pipe.ts 9 + No - + (no title) - (kein Titel) src/app/pipes/document-title.pipe.ts 12 + (nessun titolo) - + English (US) - Englisch (US) src/app/services/settings.service.ts 90 + Inglese (US) - + English (GB) - Englisch (UK) src/app/services/settings.service.ts 91 + Inglese (GB) - + German - Deutsch src/app/services/settings.service.ts 92 + Tedesco - + Dutch - Niederländisch src/app/services/settings.service.ts 93 + Olandese - + French - Französisch src/app/services/settings.service.ts 94 + Francese - + Portuguese (Brazil) - Portugiesisch (Brasilien) src/app/services/settings.service.ts 95 + Portoghese (Brasile) - + Italian - Italienisch src/app/services/settings.service.ts 96 + Italiano - + Romanian - Rumänisch src/app/services/settings.service.ts 97 + Rumeno - + ISO 8601 - ISO 8601 src/app/services/settings.service.ts 102 + ISO 8601 - + Document already exists. - Dokument existiert bereits. src/app/services/consumer-status.service.ts 15 + Il documento esiste già. - + File not found. - Datei nicht gefunden. src/app/services/consumer-status.service.ts 16 + File non trovato. - + Pre-consume script does not exist. - Pre-Consume-Skript existiert nicht. src/app/services/consumer-status.service.ts 17 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Lo script di pre-consume (pre elaborazione) non esiste. - + Error while executing pre-consume script. - Fehler beim Ausführen des Pre-Consume-Skripts. src/app/services/consumer-status.service.ts 18 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Errore durante l'esecuzione dello script di pre-consume (pre elaborazione). - + Post-consume script does not exist. - Post-Consume-Skript existiert nicht. src/app/services/consumer-status.service.ts 19 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Lo script di post-consume (post elaborazione) non esiste. - + Error while executing post-consume script. - Fehler beim Ausführen des Post-Consume-Skripts. src/app/services/consumer-status.service.ts 20 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Errore durante l'esecuzione dello script di post-consume (post elaborazione). - + Received new file. - Neue Datei erhalten. src/app/services/consumer-status.service.ts 21 + Nuovo file ricevuto. - + File type not supported. - Dateityp wird nicht unterstützt. src/app/services/consumer-status.service.ts 22 + Tipo di file non supportato. - + Processing document... - Verarbeite Dokument... src/app/services/consumer-status.service.ts 23 + Elaborazione documento in corso... - + Generating thumbnail... - Erzeuge Miniaturbild... src/app/services/consumer-status.service.ts 24 + Generazione anteprima in corso... - + Retrieving date from document... - Ermittle Datum des Dokuments... src/app/services/consumer-status.service.ts 25 + Recupero della data del documento in corso... - + Saving document... - Speichere Dokument... src/app/services/consumer-status.service.ts 26 + Salvataggio documento in corso... - + Finished. - Abgeschlossen. src/app/services/consumer-status.service.ts 27 + Completato. - + Error - Fehler src/app/services/toast.service.ts 35 + Errore - + Information - Information src/app/services/toast.service.ts 39 + Informazione - + ASN - ASN src/app/services/rest/document.service.ts 17 + ASN - + Correspondent - Korrespondent src/app/services/rest/document.service.ts 18 + Corrispondente - + Document type - Dokumenttyp src/app/services/rest/document.service.ts 20 + Tipo di documento - + Created - Ausgestellt am src/app/services/rest/document.service.ts 21 + Creato - + Added - Hinzugefügt am src/app/services/rest/document.service.ts 22 + Aggiunto - + Modified - Geändert am src/app/services/rest/document.service.ts 23 + Modificato - + Create new item - Neues Element erstellen src/app/components/common/edit-dialog/edit-dialog.component.ts 50 + Crea nuovo elemento - + Edit item - Element bearbeiten src/app/components/common/edit-dialog/edit-dialog.component.ts 54 + Modifica elemento - - Could not save element: - Konnte Element nicht speichern: + + Could not save element: src/app/components/common/edit-dialog/edit-dialog.component.ts 58 + Non è possibile salvare l'elemento: - + Automatic - Automatisch src/app/components/manage/generic-list/generic-list.component.ts 39 + Automatico - + Do you really want to delete this element? - Möchten Sie dieses Element wirklich löschen? src/app/components/manage/generic-list/generic-list.component.ts 97 + Vuoi eliminare questo elemento? - + Associated documents will not be deleted. - Assoziierte Dokumente werden nicht gelöscht. src/app/components/manage/generic-list/generic-list.component.ts 104 + I documenti associati non verranno eliminati. - + Delete - Löschen src/app/components/manage/generic-list/generic-list.component.ts 106 + Elimina - - Error while deleting element: - Fehler beim Löschen des Elements: + + Error while deleting element: src/app/components/manage/generic-list/generic-list.component.ts 114 + Errore durante l'eliminazione dell'elemento: - + Any word - Irgendein Wort src/app/data/matching-model.ts 12 + Qualsiasi parola - + Any: Document contains any of these words (space separated) - Irgendein Wort: Dokument enthält eins der folgenden Wörter src/app/data/matching-model.ts 12 + Qualsiasi: il documento contiene una qualunque di queste parole (separate dallo spazio) - + All words - Alle Wörter src/app/data/matching-model.ts 13 + Tutte le parole - + All: Document contains all of these words (space separated) - Alle: Dokument enthält alle folgenden Wörter src/app/data/matching-model.ts 13 + Tutto: il documento contiene tutte queste parole (separate dallo spazio) - + Exact match - Exakte Übereinstimmung src/app/data/matching-model.ts 14 + Corrispondenza esatta - + Exact: Document contains this string - Exakt: Dokument enthält die folgende Zeichenkette src/app/data/matching-model.ts 14 + Puntuale: il documento contiene questa stringa - + Regular expression - Regulärer Ausdruck src/app/data/matching-model.ts 15 + Espressione regolare - + Regular expression: Document matches this regular expression - Regulärer Ausdruck: Dokument passt zum folgenden Ausdruck src/app/data/matching-model.ts 15 + Espressione regolare: il documento corrisponde a questa espressione regolare - + Fuzzy word - Ungenaues Wort src/app/data/matching-model.ts 16 + Parola fuzzy - + Fuzzy: Document contains a word similar to this word - Ungenau: Dokument enthält ein zum folgenden Wort ähnliches Wort src/app/data/matching-model.ts 16 + Fuzzy: il documento contiene una parola simile a questa - + Auto: Learn matching automatically - Auto: Zuweisung automatisch erlernen src/app/data/matching-model.ts 17 + Automatico: apprende automaticamente la corrispondenza - \ No newline at end of file + diff --git a/src-ui/src/locale/messages.la_LA.xlf b/src-ui/src/locale/messages.la_LA.xlf new file mode 100644 index 000000000..21f16eb92 --- /dev/null +++ b/src-ui/src/locale/messages.la_LA.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 2a2c1eaee..f969efcdb 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -1,2257 +1,2282 @@ - - + + + - + Document added - Document toegevoegd src/app/app.component.ts 51 + Document toegevoegd - - Document was added to paperless. - Document werd toegevoegd aan paperless. + + Document was added to paperless. src/app/app.component.ts 51 + Document werd toegevoegd aan paperless. - + Open document - Open document src/app/app.component.ts 51 + Open document - - Could not add : - Kon niet toevoegen : + + Could not add : src/app/app.component.ts 59 + Kon niet toevoegen : - + New document detected - Nieuw document gedetecteerd src/app/app.component.ts 65 + Nieuw document gedetecteerd - - Document is being processed by paperless. - Document wordt verwerkt door paperless. + + Document is being processed by paperless. src/app/app.component.ts 65 + Document wordt verwerkt door paperless. - + Documents - Documenten src/app/components/document-list/document-list.component.ts 49 + Documenten - - View "" saved successfully. - View "" met succes opgeslagen. + + View "" saved successfully. src/app/components/document-list/document-list.component.ts 115 + View "" met succes opgeslagen. - - View "" created successfully. - View "" met succes gemaakt. + + View "" created successfully. src/app/components/document-list/document-list.component.ts 136 + View "" met succes gemaakt. - + Select - Selecteer src/app/components/document-list/document-list.component.html 7 + Selecteer - + Select none - Niets selecteren src/app/components/document-list/document-list.component.html 10 + Niets selecteren - + Select page - Selecteer pagina src/app/components/document-list/document-list.component.html 11 + Selecteer pagina - + Select all - Alles selecteren src/app/components/document-list/document-list.component.html 12 + Alles selecteren - + Sort - Sorteren src/app/components/document-list/document-list.component.html 39 + Sorteren - + Views - Views src/app/components/document-list/document-list.component.html 64 + Views - + Save as... - Opslaan als... src/app/components/document-list/document-list.component.html 72 + Opslaan als... - - Save "" - Opslaan "" + + Save "" src/app/components/document-list/document-list.component.html 71 + Opslaan "" - + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - {VAR_PLURAL, plural, =1 { van één document geselecteerd} other { van documenten geselecteerd}} src/app/components/document-list/document-list.component.html 85 + {VAR_PLURAL, plural, =1 { van één document geselecteerd} other { van documenten geselecteerd}} - + {VAR_PLURAL, plural, =1 {One document} other { documents}} - {VAR_PLURAL, plural, =1 {Eén document} other { documenten}} src/app/components/document-list/document-list.component.html 86 + {VAR_PLURAL, plural, =1 {Eén document} other { documenten}} - + (filtered) - (gefilterd) src/app/components/document-list/document-list.component.html 86 + (gefilterd) - + ASN - ASN src/app/components/document-list/document-list.component.html 105 + ASN - + Correspondent - Correspondent src/app/components/document-list/document-list.component.html 111 + Correspondent - + Title - Titel src/app/components/document-list/document-list.component.html 117 + Titel - + Document type - Documenttype src/app/components/document-list/document-list.component.html 123 + Documenttype - + Created - Aangemaakt src/app/components/document-list/document-list.component.html 129 + Aangemaakt - + Added - Toegevoegd src/app/components/document-list/document-list.component.html 135 + Toegevoegd - + Confirm delete - Bevestig het verwijderen src/app/components/document-detail/document-detail.component.ts 203 + Bevestig het verwijderen - - Do you really want to delete document ""? - Wilt u het document echt verwijderen ""? + + Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts 204 + Wilt u het document echt verwijderen ""? - + The files for this document will be deleted permanently. This operation cannot be undone. - De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt. src/app/components/document-detail/document-detail.component.ts 205 + De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt. - + Delete document - Verwijder document src/app/components/document-detail/document-detail.component.ts 207 + Verwijder document - - Error deleting document: - Fout bij het verwijderen van het document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts 214 + Fout bij het verwijderen van het document: - + Delete - Verwijderen src/app/components/document-detail/document-detail.component.html 15 + Verwijderen - + Download - Download src/app/components/document-detail/document-detail.component.html 23 + Download - + More like this - Meer zoals dit src/app/components/document-detail/document-detail.component.html 38 + Meer zoals dit - + Close - Sluiten src/app/components/document-detail/document-detail.component.html 44 + Sluiten - + Details - Details src/app/components/document-detail/document-detail.component.html 56 + Details - + Content - Inhoud src/app/components/document-detail/document-detail.component.html 72 + Inhoud - + Metadata - Metadata src/app/components/document-detail/document-detail.component.html 81 + Metadata - + Discard - Negeren src/app/components/document-detail/document-detail.component.html 130 + Negeren - + Save - Opslaan src/app/components/document-detail/document-detail.component.html 132 + Opslaan - + Page - Pagina src/app/components/document-detail/document-detail.component.html 4 + Pagina - - of - van + + of src/app/components/document-detail/document-detail.component.html 8 + van - + Download original - Download origineel src/app/components/document-detail/document-detail.component.html 29 + Download origineel - + Archive serial number - Archief serienummer src/app/components/document-detail/document-detail.component.html 60 + Archief serienummer - + Date created - Aanmaakdatum src/app/components/document-detail/document-detail.component.html 61 + Aanmaakdatum - + Date modified - Wijzigingsdatum src/app/components/document-detail/document-detail.component.html 87 + Wijzigingsdatum - + Date added - Datum toegevoegd src/app/components/document-detail/document-detail.component.html 91 + Datum toegevoegd - + Media filename - Media bestandsnaam src/app/components/document-detail/document-detail.component.html 95 + Media bestandsnaam - + Original MD5 checksum - Originele MD5 checksum src/app/components/document-detail/document-detail.component.html 99 + Originele MD5 checksum - + Original file size - Originele bestandsgrootte src/app/components/document-detail/document-detail.component.html 103 + Originele bestandsgrootte - + Original mime type - Oorspronkelijke mime-type src/app/components/document-detail/document-detail.component.html 107 + Oorspronkelijke mime-type - + Archive MD5 checksum - Archief MD5 checksum src/app/components/document-detail/document-detail.component.html 111 + Archief MD5 checksum - + Archive file size - Archief bestandsgrootte src/app/components/document-detail/document-detail.component.html 115 + Archief bestandsgrootte - + Original document metadata - Originele document metadata src/app/components/document-detail/document-detail.component.html 121 + Originele document metadata - + Archived document metadata - Gearchiveerde document metadata src/app/components/document-detail/document-detail.component.html 122 + Gearchiveerde document metadata - + Save & next - Opslaan & volgende src/app/components/document-detail/document-detail.component.html 131 + Opslaan & volgende - - Hello , welcome to Paperless-ng! - Hallo , welkom bij Paperless-ng! + + Hello , welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 33 + Hallo , welkom bij Paperless-ng! - + Welcome to Paperless-ng! - Welkom bij Paperless-ng! src/app/components/dashboard/dashboard.component.ts 35 + Welkom bij Paperless-ng! - + Dashboard - Dashboard src/app/components/dashboard/dashboard.component.html 1 + Dashboard - - Do you really want to delete the tag ""? - Wil je het etiket echt verwijderen ""? + + Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts 26 + Wil je het etiket echt verwijderen ""? - + Tags - Etiketten src/app/components/manage/tag-list/tag-list.component.html 1 + Etiketten - + Create - Maak src/app/components/manage/tag-list/tag-list.component.html 2 + Maak - + Filter by: - Filter op: src/app/components/manage/tag-list/tag-list.component.html 8 + Filter op: - + Name - Naam src/app/components/manage/tag-list/tag-list.component.html 9 + Naam - + Color - Kleur src/app/components/manage/tag-list/tag-list.component.html 20 + Kleur - + Matching - Overeenkomend src/app/components/manage/tag-list/tag-list.component.html 21 + Overeenkomend - + Document count - Aantal documenten src/app/components/manage/tag-list/tag-list.component.html 22 + Aantal documenten - + Actions - Acties src/app/components/manage/tag-list/tag-list.component.html 23 + Acties - + Documents - Documenten src/app/components/manage/tag-list/tag-list.component.html 38 + Documenten - + Edit - Bewerk src/app/components/manage/tag-list/tag-list.component.html 43 + Bewerk - - Do you really want to delete the document type ""? - Wilt u het documenttype echt verwijderen ""? + + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 + Wilt u het documenttype echt verwijderen ""? - + Document types - Documenttypen src/app/components/manage/document-type-list/document-type-list.component.html 1 + Documenttypen - + Logs - Logs src/app/components/manage/logs/logs.component.html 1 + Logs - - Saved view "" deleted. - Opgeslagen view "" verwijderd. + + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts - 67 + 68 + Opgeslagen view "" verwijderd. - + Settings saved successfully. - Instellingen succesvol opgeslagen. src/app/components/manage/settings/settings.component.ts - 87 + 89 + Instellingen succesvol opgeslagen. - + Use system language - Gebruik de systeemtaal src/app/components/manage/settings/settings.component.ts - 92 + 94 + Gebruik de systeemtaal - + Use date format of display language - Datumopmaak van weergavetaal gebruiken src/app/components/manage/settings/settings.component.ts - 98 + 100 + Datumopmaak van weergavetaal gebruiken - - Error while storing settings on server: - Fout bij het opslaan van de instellingen: + + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts - 115 + 117 + Fout bij het opslaan van de instellingen: - + Settings - Instellingen src/app/components/manage/settings/settings.component.html 1 + Instellingen - + General settings - Algemene instellingen src/app/components/manage/settings/settings.component.html 10 + Algemene instellingen - + Notifications - Meldingen src/app/components/manage/settings/settings.component.html - 115 + 116 + Meldingen - + Saved views - Opgeslagen views src/app/components/manage/settings/settings.component.html - 133 + 134 + Opgeslagen views - + Appearance - Uiterlijk src/app/components/manage/settings/settings.component.html 13 + Uiterlijk - + Display language - Taal src/app/components/manage/settings/settings.component.html 17 + Taal - + You need to reload the page after applying a new language. - De pagina moet herladen worden nadat een andere taal werd gekozen. src/app/components/manage/settings/settings.component.html 25 + De pagina moet herladen worden nadat een andere taal werd gekozen. - + Date display - Datumweergave src/app/components/manage/settings/settings.component.html 32 + Datumweergave - + Date format - Datumopmaak src/app/components/manage/settings/settings.component.html 45 + Datumopmaak - - Short: - Kort: + + Short: src/app/components/manage/settings/settings.component.html 51 + Kort: - - Medium: - Medium: + + Medium: src/app/components/manage/settings/settings.component.html 55 + Medium: - - Long: - Lang: + + Long: src/app/components/manage/settings/settings.component.html 59 + Lang: - + Items per page - Resultaten per pagina src/app/components/manage/settings/settings.component.html 67 + Resultaten per pagina - + Document editor - Documentbewerker src/app/components/manage/settings/settings.component.html 83 + Documentbewerker - + Use PDF viewer provided by the browser - Gebruik de PDF lezer ingebouwd in uw browser src/app/components/manage/settings/settings.component.html 87 + Gebruik de PDF lezer ingebouwd in uw browser - + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - Dit is gewoonlijk sneller om grote PDF's te tonen, maar werkt niet bij elke browser. src/app/components/manage/settings/settings.component.html 87 + Dit is gewoonlijk sneller om grote PDF's te tonen, maar werkt niet bij elke browser. - + Dark mode - Nachtmodus src/app/components/manage/settings/settings.component.html 94 + Nachtmodus - + Use system settings - Gebruik systeeminstellingen src/app/components/manage/settings/settings.component.html 97 + Gebruik systeeminstellingen - + Enable dark mode - Gebruik nachtmodus src/app/components/manage/settings/settings.component.html 98 + Gebruik nachtmodus - + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Toon negatief van previews in nachtmodus + + Bulk editing - Massabewerking src/app/components/manage/settings/settings.component.html - 102 + 103 + Massabewerking - + Show confirmation dialogs - Toon dialoogvenster ter bevestiging - - src/app/components/manage/settings/settings.component.html - 106 - - - - Deleting documents will always ask for confirmation. - Er zal altijd om bevestiging gevraagd worden voor het verwijderen van documenten. - - src/app/components/manage/settings/settings.component.html - 106 - - - - Apply on close - Toepassen bij het sluiten src/app/components/manage/settings/settings.component.html 107 + Toon dialoogvenster ter bevestiging - + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Er zal altijd om bevestiging gevraagd worden voor het verwijderen van documenten. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Toepassen bij het sluiten + + Document processing - Verwerking van documenten src/app/components/manage/settings/settings.component.html - 118 + 119 + Verwerking van documenten - + Show notifications when new documents are detected - Toon meldingen wanneer nieuwe documenten worden gedetecteerd - - src/app/components/manage/settings/settings.component.html - 122 - - - - Show notifications when document processing completes successfully - Toon een melding wanneer documenten met succes zijn verwerkt src/app/components/manage/settings/settings.component.html 123 + Toon meldingen wanneer nieuwe documenten worden gedetecteerd - - Show notifications when document processing fails - Toon meldingen wanneer het verwerken van documenten faalt + + Show notifications when document processing completes successfully src/app/components/manage/settings/settings.component.html 124 + Toon een melding wanneer documenten met succes zijn verwerkt - + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Toon meldingen wanneer het verwerken van documenten faalt + + Suppress notifications on dashboard - Onderdruk meldingen op het dashboard src/app/components/manage/settings/settings.component.html - 125 + 126 + Onderdruk meldingen op het dashboard - + This will suppress all messages about document processing status on the dashboard. - Dit verbergt alle statusberichten op het dashboard die met het verwerken van documenten te maken hebben. src/app/components/manage/settings/settings.component.html - 125 + 126 + Dit verbergt alle statusberichten op het dashboard die met het verwerken van documenten te maken hebben. - + Appears on - Komt voor bij src/app/components/manage/settings/settings.component.html - 145 + 146 + Komt voor bij - + Show on dashboard - Toon op het dashboard src/app/components/manage/settings/settings.component.html - 148 + 149 + Toon op het dashboard - + Show in sidebar - Toon in de zijbalk src/app/components/manage/settings/settings.component.html - 152 + 153 + Toon in de zijbalk - + No saved views defined. - Geen opgeslagen views gedefinieerd. src/app/components/manage/settings/settings.component.html - 162 + 163 + Geen opgeslagen views gedefinieerd. - + 404 Not Found - 404 Niet Gevonden src/app/components/not-found/not-found.component.html 7 + 404 Niet Gevonden - - Do you really want to delete the correspondent ""? - Bent u zeker dat u correspondent "" wilt verwijderen? + + Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 + Bent u zeker dat u correspondent "" wilt verwijderen? - + Correspondents - Correspondenten src/app/components/manage/correspondent-list/correspondent-list.component.html 1 + Correspondenten - + Last correspondence - Laatste correspondentie src/app/components/manage/correspondent-list/correspondent-list.component.html 22 + Laatste correspondentie - + Confirmation - Bevestiging src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 + Bevestiging - + Confirm - Bevestig src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 + Bevestig - + Cancel - Annuleren src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 + Annuleren - + Create new correspondent - Nieuwe correspondent maken src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 + Nieuwe correspondent maken - + Edit correspondent - Correspondent bewerken src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 + Correspondent bewerken - + Matching algorithm - Algoritme voor het bepalen van de overeenkomst src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 + Algoritme voor het bepalen van de overeenkomst - + Matching pattern - Patroon voor overeenkomst src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 + Patroon voor overeenkomst - + Case insensitive - Niet hoofdlettergevoelig src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 + Niet hoofdlettergevoelig - + Create new tag - Nieuw etiket maken src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 + Nieuw etiket maken - + Edit tag - Etiket bewerken src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 + Etiket bewerken - + Inbox tag - "Postvak in"-etiket src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + "Postvak in"-etiket - + Inbox tags are automatically assigned to all consumed documents. - "Postvak in"-etiketten worden automatisch toegewezen aan alle verwerkte documenten." src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + "Postvak in"-etiketten worden automatisch toegewezen aan alle verwerkte documenten." - + Create new document type - Nieuw documenttype maken src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 + Nieuw documenttype maken - + Edit document type - Documenttype bewerken src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 + Documenttype bewerken - + Search results - Zoekresultaten src/app/components/search/search.component.html 1 + Zoekresultaten - - Invalid search query: - Ongeldige zoekopdracht: + + Invalid search query: src/app/components/search/search.component.html 4 + Ongeldige zoekopdracht: - - Showing documents similar to - Toon documenten die lijken op + + Showing documents similar to src/app/components/search/search.component.html 7 + Toon documenten die lijken op - - Search query: - Zoekopdracht: + + Search query: src/app/components/search/search.component.html 11 + Zoekopdracht: - - Did you mean ""? - Bedoelde u ""? + + Did you mean ""? src/app/components/search/search.component.html 13 + Bedoelde u ""? - + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - {VAR_PLURAL, plural, =0 {Geen resultaten} =1 {Eén resultaat} other { resultaten}} src/app/components/search/search.component.html 18 + {VAR_PLURAL, plural, =0 {Geen resultaten} =1 {Eén resultaat} other { resultaten}} - + Paperless-ng - Paperless-ng src/app/components/app-frame/app-frame.component.html 11 - app title + app title + Paperless-ng - + Search documents - Documenten doorzoeken src/app/components/app-frame/app-frame.component.html 15 + Documenten doorzoeken - + Logout - Afmelden src/app/components/app-frame/app-frame.component.html 45 + Afmelden - + Manage - Beheren src/app/components/app-frame/app-frame.component.html - 107 + 112 + Beheren - + Admin - Beheer src/app/components/app-frame/app-frame.component.html - 149 + 154 + Beheer - + Info - Informatie src/app/components/app-frame/app-frame.component.html - 155 + 160 + Informatie - + Documentation - Handleiding src/app/components/app-frame/app-frame.component.html - 162 + 167 + Handleiding - + GitHub - GitHub src/app/components/app-frame/app-frame.component.html - 170 + 175 + GitHub - + Suggest an idea - Ideeënbus src/app/components/app-frame/app-frame.component.html - 176 + 181 + Ideeënbus - - Logged in as - Aangemeld als + + Logged in as src/app/components/app-frame/app-frame.component.html 34 + Aangemeld als - + Open documents - Open documenten src/app/components/app-frame/app-frame.component.html 87 + Open documenten - + Close all - Alles sluiten src/app/components/app-frame/app-frame.component.html - 101 + 106 + Alles sluiten - - Correspondent: - Correspondent: + + Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 29 + 73 + Titel - + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Titel en inhoud + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + Without correspondent - Zonder correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 31 + 34 + Zonder correspondent - - Type: - Type: + + Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 36 + 39 + Type: - + Without document type - Zonder documenttype src/app/components/document-list/filter-editor/filter-editor.component.ts - 38 + 41 + Zonder documenttype - - Tag: - Etiket: + + Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 45 + Etiket: - + Without any tag - Zonder enig etiket src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 49 + Zonder enig etiket - - Title: - Titel: + + Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 53 + Titel: - + Filter tags - Etiketten filteren - - src/app/components/document-list/filter-editor/filter-editor.component.html - 12 - - - - Filter correspondents - Correspondenten filteren src/app/components/document-list/filter-editor/filter-editor.component.html 20 + Etiketten filteren - + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Correspondenten filteren + + Filter document types - Documenttypes filteren src/app/components/document-list/filter-editor/filter-editor.component.html - 27 + 35 + Documenttypes filteren - + Reset filters - Filters terug zetten src/app/components/document-list/filter-editor/filter-editor.component.html - 50 + 58 + Filters terug zetten - + Not assigned - Niet toegekend src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 166 - Filter drop down element to filter for documents with no correspondent/type/tag assigned + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Niet toegekend - + Apply - Toepassen src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 + Toepassen - + Last 7 days - Afgelopen 7 dagen src/app/components/common/date-dropdown/date-dropdown.component.ts 34 + Afgelopen 7 dagen - + Last month - Afgelopen maand src/app/components/common/date-dropdown/date-dropdown.component.ts 35 + Afgelopen maand - + Last 3 months - Afgelopen 3 maanden src/app/components/common/date-dropdown/date-dropdown.component.ts 36 + Afgelopen 3 maanden - + Last year - Afgelopen jaar src/app/components/common/date-dropdown/date-dropdown.component.ts 37 + Afgelopen jaar - + After - Na src/app/components/common/date-dropdown/date-dropdown.component.html 13 + Na - + Before - Voor src/app/components/common/date-dropdown/date-dropdown.component.html 38 + Voor - + Clear - Leegmaken src/app/components/common/date-dropdown/date-dropdown.component.html 18 + Leegmaken - + View - Bekijken src/app/components/document-list/document-card-large/document-card-large.component.html 50 + Bekijken - - Created: - Aangemaakt op: + + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 67 + Aangemaakt op: - + Filter by correspondent - Op correspondent filteren src/app/components/document-list/document-card-large/document-card-large.component.html 20 + Op correspondent filteren - + Filter by tag - Op etiket filteren src/app/components/document-list/document-card-large/document-card-large.component.html 24 + Op etiket filteren - + Score: - Score: src/app/components/document-list/document-card-large/document-card-large.component.html 62 + Score: - + View in browser - In uw browser bekijken src/app/components/document-list/document-card-small/document-card-small.component.html 40 + In uw browser bekijken - - Error executing bulk operation: - Fout bij het uitvoeren van een massabewerking: + + Error executing bulk operation: src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 + Fout bij het uitvoeren van een massabewerking: - - "" - "" + + "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 + "" - - "" and "" - "" en "" + + "" and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 115 - This is for messages like 'modify "tag1" and "tag2"' + This is for messages like 'modify "tag1" and "tag2"' + "" en "" - + , - , src/app/components/document-list/bulk-editor/bulk-editor.component.ts 117 - this is used to separate enumerations and should probably be a comma and a whitespace in most languages + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , - - and "" - en "" + + and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 118 - this is for messages like 'modify "tag1", "tag2" and "tag3"' + this is for messages like 'modify "tag1", "tag2" and "tag3"' + en "" - + Confirm tags assignment - Bevestig toewijzen van etiketten src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 + Bevestig toewijzen van etiketten - - This operation will add the tag "" to selected document(s). - Het etiket "" zal aan geselecteerd(e) document(en) worden toegewezen. + + This operation will add the tag "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 + Het etiket "" zal aan geselecteerd(e) document(en) worden toegewezen. - - This operation will add the tags to selected document(s). - De etiketten zullen aan geselecteerd(e) document(en) worden toegewezen. + + This operation will add the tags to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 + De etiketten zullen aan geselecteerd(e) document(en) worden toegewezen. - - This operation will remove the tag "" from selected document(s). - Het etiket "" zal verwijderd worden van geselecteerd(e) document(en). + + This operation will remove the tag "" from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 + Het etiket "" zal verwijderd worden van geselecteerd(e) document(en). - - This operation will remove the tags from selected document(s). - De etiketten zullen verwijderd worden van geselecteerd(e) document(en). + + This operation will remove the tags from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 + De etiketten zullen verwijderd worden van geselecteerd(e) document(en). - - This operation will add the tags and remove the tags on selected document(s). - De etiketten zullen toegevoegd worden aan, en de etiketten zullen verwijderd worden van geselecteerd(e) document(en). + + This operation will add the tags and remove the tags on selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 + De etiketten zullen toegevoegd worden aan, en de etiketten zullen verwijderd worden van geselecteerd(e) document(en). - + Confirm correspondent assignment - Bevestig toewijzen van correspondent src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 + Bevestig toewijzen van correspondent - - This operation will assign the correspondent "" to selected document(s). - De correspondent "" zal aan geselecteerd(e) document(en) worden toegewezen. + + This operation will assign the correspondent "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 + De correspondent "" zal aan geselecteerd(e) document(en) worden toegewezen. - - This operation will remove the correspondent from selected document(s). - De correspondent zal verwijderd worden van geselecteerd(e) document(en). + + This operation will remove the correspondent from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 + De correspondent zal verwijderd worden van geselecteerd(e) document(en). - + Confirm document type assignment - Bevestig toewijzen van documenttype src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 + Bevestig toewijzen van documenttype - - This operation will assign the document type "" to selected document(s). - Het documenttype "" zal aan geselecteerd(e) document(en) worden toegewezen. + + This operation will assign the document type "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 + Het documenttype "" zal aan geselecteerd(e) document(en) worden toegewezen. - - This operation will remove the document type from selected document(s). - Het documenttype zal verwijderd worden van geselecteerd(e) document(en). + + This operation will remove the document type from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 + Het documenttype zal verwijderd worden van geselecteerd(e) document(en). - + Delete confirm - Bevestig verwijderen src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 + Bevestig verwijderen - - This operation will permanently delete selected document(s). - geselecteerd(e) document(en) zullen permanent worden verwijderd. + + This operation will permanently delete selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 + geselecteerd(e) document(en) zullen permanent worden verwijderd. - + This operation cannot be undone. - Deze actie kan niet ongedaan worden gemaakt. src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 + Deze actie kan niet ongedaan worden gemaakt. - + Delete document(s) - Verwijder document(en) src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 + Verwijder document(en) - + Select: - Selecteer: src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 + Selecteer: - + All - Alles src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 + Alles - + Edit: - Bewerk: src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 + Bewerk: - + Download originals - Originelen downloaden src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 + Originelen downloaden - + Suggestions: - Suggesties: src/app/components/common/input/select/select.component.html 26 + Suggesties: - + Save current view - Huidige view opslaan src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 + Huidige view opslaan - + Show all - Toon alles src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 + Toon alles - + Statistics - Statistieken src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 + Statistieken - - Total documents: - Totaal aantal documenten: + + Total documents: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 + Totaal aantal documenten: - - Documents in inbox: - Documenten in "Postvak in": + + Documents in inbox: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 + Documenten in "Postvak in": - - Processing: - Bezig met verwerken: + + Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 + Bezig met verwerken: - - Failed: - Gefaald: + + Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 + Gefaald: - - Added: - Toegevoegd: + + Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 + Toegevoegd: - + Connecting... - Bezig met verbinden... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 + Bezig met verbinden... - + Uploading... - Bezig met opladen... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 + Bezig met opladen... - + Upload complete, waiting... - Upload voltooid, klaar voor meer... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 + Upload voltooid, klaar voor meer... - - HTTP error: - HTTP fout: + + HTTP error: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 + HTTP fout: - + Upload new documents - Nieuwe documenten opladen src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 + Nieuwe documenten opladen - + Drop documents here or - Sleep documenten hierheen, of src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Sleep documenten hierheen, of - + Browse files - Kies bestanden src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Kies bestanden - + Dismiss completed - Verberg verwerkte documenten src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - This button dismisses all status messages about processed documents on the dashboard (failed and successful) + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Verberg verwerkte documenten - + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - {VAR_PLURAL, plural, =1 {Nog één document} other {Nog documenten}} src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 25 - This is shown as a summary line when there are more than 5 document in the processing pipeline. + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {Nog één document} other {Nog documenten}} - + Open document - Open document src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 + Open document - + First steps - Laten we aan de slag gaan src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 + Laten we aan de slag gaan - + Paperless is running! :) - Paperless is gestart! :) src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 + Paperless is gestart! :) - - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - Je kunt documenten uploaden door bestanden in het oplaadvak rechts te slepen of door ze in de map te kopiëren die geconfigureerd werd als consumptiemap. Ze zullen vervolgens beginnen verschijnen in de lijst met documenten. Nadat je metadata hebt toegevoegd aan je documenten, kun je de filters in Paperless gebruiken om eigen views te maken (zoals 'Recent toegevoegd', 'Te bekijken'). Deze views zullen hier verschijnen in plaats van dit bericht. + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 + Je kunt documenten uploaden door bestanden in het oplaadvak rechts te slepen of door ze in de map te kopiëren die geconfigureerd werd als consumptiemap. Ze zullen vervolgens beginnen verschijnen in de lijst met documenten. Nadat je metadata hebt toegevoegd aan je documenten, kun je de filters in Paperless gebruiken om eigen views te maken (zoals 'Recent toegevoegd', 'Te bekijken'). Deze views zullen hier verschijnen in plaats van dit bericht. - + Paperless offers some more features that try to make your life easier: - Paperless heeft nog meer in petto om jouw leven makkelijker te maken: src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 + Paperless heeft nog meer in petto om jouw leven makkelijker te maken: - - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - Eenmaal je documenten hebt toegevoegd en metadata hebt toegewezen, kan Paperless automatisch die metadata aan nieuwe documenten toewijzen. + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 + Eenmaal je documenten hebt toegevoegd en metadata hebt toegewezen, kan Paperless automatisch die metadata aan nieuwe documenten toewijzen. - + You can configure paperless to read your mails and add documents from attached files. - Je kunt Paperless configureren om mails te lezen en documenten toe te voegen vanuit bijlagen. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 + Je kunt Paperless configureren om mails te lezen en documenten toe te voegen vanuit bijlagen. - + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - Lees de documentatie na om deze functies te ontdekken. Het hoofdstuk over basisgebruik biedt ook inzichten over het gebruik van Paperless in het algemeen. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 + Lees de documentatie na om deze functies te ontdekken. Het hoofdstuk over basisgebruik biedt ook inzichten over het gebruik van Paperless in het algemeen. - + Metadata - Metadata src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 + Metadata - + Select - Selecteer src/app/components/common/select-dialog/select-dialog.component.ts 18 + Selecteer - + Please select an object - Selecteer een object src/app/components/common/select-dialog/select-dialog.component.ts 21 + Selecteer een object - + Invalid date. - Ongeldige datum. src/app/components/common/input/date/date.component.html 14 + Ongeldige datum. - + Yes - Ja src/app/pipes/yes-no.pipe.ts 9 + Ja - + No - Nee src/app/pipes/yes-no.pipe.ts 9 + Nee - + (no title) - (geen titel) src/app/pipes/document-title.pipe.ts 12 + (geen titel) - + English (US) - Engels (US) - - src/app/services/settings.service.ts - 88 - - - - English (GB) - Engels (Brits) - - src/app/services/settings.service.ts - 89 - - - - German - Duits src/app/services/settings.service.ts 90 + Engels (US) - - Dutch - Nederlands + + English (GB) src/app/services/settings.service.ts 91 + Engels (Brits) - - French - Frans + + German src/app/services/settings.service.ts 92 + Duits - - Portuguese (Brazil) - Portugees (Brazilië) + + Dutch src/app/services/settings.service.ts 93 + Nederlands - - Italian - Italiaans + + French src/app/services/settings.service.ts 94 + Frans - - ISO 8601 - ISO 8601 + + Portuguese (Brazil) src/app/services/settings.service.ts - 99 + 95 + Portugees (Brazilië) - + + Italian + + src/app/services/settings.service.ts + 96 + + Italiaans + + + Romanian + + src/app/services/settings.service.ts + 97 + + Roemeens + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + Document already exists. - Document bestaat al. src/app/services/consumer-status.service.ts 15 + Document bestaat al. - + File not found. - Bestand niet gevonden. src/app/services/consumer-status.service.ts 16 + Bestand niet gevonden. - + Pre-consume script does not exist. - Pre-verwerkingsscript bestaat niet. src/app/services/consumer-status.service.ts 17 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-verwerkingsscript bestaat niet. - + Error while executing pre-consume script. - Fout tijdens het uitvoeren van het pre-verwerkingsscript src/app/services/consumer-status.service.ts 18 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Fout tijdens het uitvoeren van het pre-verwerkingsscript - + Post-consume script does not exist. - Post-verwerkingsscript bestaat niet. src/app/services/consumer-status.service.ts 19 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-verwerkingsscript bestaat niet. - + Error while executing post-consume script. - Fout tijdens het uitvoeren van het post-verwerkingsscript src/app/services/consumer-status.service.ts 20 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Fout tijdens het uitvoeren van het post-verwerkingsscript - + Received new file. - Nieuw bestand ontvangen. src/app/services/consumer-status.service.ts 21 + Nieuw bestand ontvangen. - + File type not supported. - Bestandstype niet ondersteund. src/app/services/consumer-status.service.ts 22 + Bestandstype niet ondersteund. - + Processing document... - Document wordt verwerkt... src/app/services/consumer-status.service.ts 23 + Document wordt verwerkt... - + Generating thumbnail... - Voorbeeldweergave wordt gemaakt... src/app/services/consumer-status.service.ts 24 + Voorbeeldweergave wordt gemaakt... - + Retrieving date from document... - Datum wordt gezocht in document... src/app/services/consumer-status.service.ts 25 + Datum wordt gezocht in document... - + Saving document... - Document wordt opgeslagen... src/app/services/consumer-status.service.ts 26 + Document wordt opgeslagen... - + Finished. - Klaar. src/app/services/consumer-status.service.ts 27 + Klaar. - + Error - Fout src/app/services/toast.service.ts 35 + Fout - + Information - Informatie src/app/services/toast.service.ts 39 + Informatie - + ASN - ASN src/app/services/rest/document.service.ts 17 + ASN - + Correspondent - Correspondent src/app/services/rest/document.service.ts 18 + Correspondent - - Title - Titel - - src/app/services/rest/document.service.ts - 19 - - - + Document type - Documenttype src/app/services/rest/document.service.ts 20 + Documenttype - + Created - Aangemaakt src/app/services/rest/document.service.ts 21 + Aangemaakt - + Added - Toegevoegd src/app/services/rest/document.service.ts 22 + Toegevoegd - + Modified - Gewijzigd src/app/services/rest/document.service.ts 23 + Gewijzigd - + Create new item - Maak nieuw item src/app/components/common/edit-dialog/edit-dialog.component.ts 50 + Maak nieuw item - + Edit item - Item bewerken src/app/components/common/edit-dialog/edit-dialog.component.ts 54 + Item bewerken - - Could not save element: - Kon het element niet opslaan: + + Could not save element: src/app/components/common/edit-dialog/edit-dialog.component.ts 58 + Kon het element niet opslaan: - + Automatic - Automatisch src/app/components/manage/generic-list/generic-list.component.ts 39 + Automatisch - + Do you really want to delete this element? - Wil je dit element echt verwijderen? src/app/components/manage/generic-list/generic-list.component.ts 97 + Wil je dit element echt verwijderen? - + Associated documents will not be deleted. - Geassocieerde documenten zullen niet verwijderd worden. src/app/components/manage/generic-list/generic-list.component.ts 104 + Geassocieerde documenten zullen niet verwijderd worden. - + Delete - Verwijderen src/app/components/manage/generic-list/generic-list.component.ts 106 + Verwijderen - - Error while deleting element: - Fout bij het verwijderen van het element: + + Error while deleting element: src/app/components/manage/generic-list/generic-list.component.ts 114 + Fout bij het verwijderen van het element: - + Any word - Eender welk woord src/app/data/matching-model.ts 12 + Eender welk woord - + Any: Document contains any of these words (space separated) - Eender welk: Documenten die eender welk van deze woorden bevatten (gescheiden door spaties) src/app/data/matching-model.ts 12 + Eender welk: Documenten die eender welk van deze woorden bevatten (gescheiden door spaties) - + All words - Alle woorden src/app/data/matching-model.ts 13 + Alle woorden - + All: Document contains all of these words (space separated) - Alle: Documenten die elk van deze woorden bevatten (gescheiden door spaties) src/app/data/matching-model.ts 13 + Alle: Documenten die elk van deze woorden bevatten (gescheiden door spaties) - + Exact match - Exacte overeenkomst src/app/data/matching-model.ts 14 + Exacte overeenkomst - + Exact: Document contains this string - Exact: Document bevat deze tekenreeks src/app/data/matching-model.ts 14 + Exact: Document bevat deze tekenreeks - + Regular expression - Reguliere expressie src/app/data/matching-model.ts 15 + Reguliere expressie - + Regular expression: Document matches this regular expression - Reguliere expressie: Document voldoet aan deze reguliere expressie src/app/data/matching-model.ts 15 + Reguliere expressie: Document voldoet aan deze reguliere expressie - + Fuzzy word - Gelijkaardig woord src/app/data/matching-model.ts 16 + Gelijkaardig woord - + Fuzzy: Document contains a word similar to this word - Gelijkaardig: Document bevat een woord dat lijkt op dit woord src/app/data/matching-model.ts 16 + Gelijkaardig: Document bevat een woord dat lijkt op dit woord - + Auto: Learn matching automatically - Auto: Automatisch overeenkomsten aanleren src/app/data/matching-model.ts 17 + Auto: Automatisch overeenkomsten aanleren - \ No newline at end of file + diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index ec6fb02d9..b12cabcef 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -1,2281 +1,2282 @@ - - + + + - + Document added - Documento adicionado src/app/app.component.ts 51 + Documento adicionado - - Document was added to paperless. - Documento foi adicionado ao paperless. + + Document was added to paperless. src/app/app.component.ts 51 + Documento foi adicionado ao paperless. - + Open document - Abrir documento src/app/app.component.ts 51 + Abrir documento - - Could not add : - Não foi possível adicionar : + + Could not add : src/app/app.component.ts 59 + Não foi possível adicionar : - + New document detected - Novo documento detectado src/app/app.component.ts 65 + Novo documento detectado - - Document is being processed by paperless. - Documento está sendo processado pelo paperless. + + Document is being processed by paperless. src/app/app.component.ts 65 + Documento está sendo processado pelo paperless. - + Documents - Documentos src/app/components/document-list/document-list.component.ts 49 + Documentos - - View "" saved successfully. - Visualização "" salva com sucesso. + + View "" saved successfully. src/app/components/document-list/document-list.component.ts 115 + Visualização "" salva com sucesso. - - View "" created successfully. - Visualização "" criada com sucesso. + + View "" created successfully. src/app/components/document-list/document-list.component.ts 136 + Visualização "" criada com sucesso. - + Select - Selecionar src/app/components/document-list/document-list.component.html 7 + Selecionar - + Select none - Selecionar nenhum src/app/components/document-list/document-list.component.html 10 + Selecionar nenhum - + Select page - Selecionar página src/app/components/document-list/document-list.component.html 11 + Selecionar página - + Select all - Selecionar todos src/app/components/document-list/document-list.component.html 12 + Selecionar todos - + Sort - Ordenar src/app/components/document-list/document-list.component.html 39 + Ordenar - + Views - Visualizações src/app/components/document-list/document-list.component.html 64 + Visualizações - + Save as... - Salvar como... src/app/components/document-list/document-list.component.html 72 + Salvar como... - - Save "" - Salvar "" + + Save "" src/app/components/document-list/document-list.component.html 71 + Salvar "" - + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - {VAR_PLURAL, plural, =1 {Selecionado de um documento} other {Selecionado of documentos}} src/app/components/document-list/document-list.component.html 85 + {VAR_PLURAL, plural, =1 {Selecionado de um documento} other {Selecionado of documentos}} - + {VAR_PLURAL, plural, =1 {One document} other { documents}} - {VAR_PLURAL, plural, =1 {Um documento} other { documentos}} src/app/components/document-list/document-list.component.html 86 + {VAR_PLURAL, plural, =1 {Um documento} other { documentos}} - + (filtered) - (filtrado) src/app/components/document-list/document-list.component.html 86 + (filtrado) - + ASN - NSA src/app/components/document-list/document-list.component.html 105 + NSA - + Correspondent - Correspondente src/app/components/document-list/document-list.component.html 111 + Correspondente - + Title - Título src/app/components/document-list/document-list.component.html 117 + Título - + Document type - Tipo de Documento src/app/components/document-list/document-list.component.html 123 + Tipo de Documento - + Created - Criado src/app/components/document-list/document-list.component.html 129 + Criado - + Added - Adicionado src/app/components/document-list/document-list.component.html 135 + Adicionado - + Confirm delete - Confirmar exclusão src/app/components/document-detail/document-detail.component.ts 203 + Confirmar exclusão - - Do you really want to delete document ""? - Você realmente deseja excluir o documento ""? + + Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts 204 + Você realmente deseja excluir o documento ""? - + The files for this document will be deleted permanently. This operation cannot be undone. - Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. src/app/components/document-detail/document-detail.component.ts 205 + Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. - + Delete document - Excluir documento src/app/components/document-detail/document-detail.component.ts 207 + Excluir documento - - Error deleting document: - Erro ao excluir documento: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts 214 + Erro ao excluir documento: - + Delete - Excluir src/app/components/document-detail/document-detail.component.html 15 + Excluir - + Download - Baixar src/app/components/document-detail/document-detail.component.html 23 + Baixar - + More like this - Mais como este src/app/components/document-detail/document-detail.component.html 38 + Mais como este - + Close - Fechar src/app/components/document-detail/document-detail.component.html 44 + Fechar - + Details - Detalhes src/app/components/document-detail/document-detail.component.html 56 + Detalhes - + Content - Conteúdo src/app/components/document-detail/document-detail.component.html 72 + Conteúdo - + Metadata - Metadados src/app/components/document-detail/document-detail.component.html 81 + Metadados - + Discard - Descartar src/app/components/document-detail/document-detail.component.html 130 + Descartar - + Save - Salvar src/app/components/document-detail/document-detail.component.html 132 + Salvar - + Page - Página src/app/components/document-detail/document-detail.component.html 4 + Página - - of - de + + of src/app/components/document-detail/document-detail.component.html 8 + de - + Download original - Baixar original src/app/components/document-detail/document-detail.component.html 29 + Baixar original - + Archive serial number - Número de série de arquivamento src/app/components/document-detail/document-detail.component.html 60 + Número de série de arquivamento - + Date created - Data de criação src/app/components/document-detail/document-detail.component.html 61 + Data de criação - + Date modified - Data de modificação src/app/components/document-detail/document-detail.component.html 87 + Data de modificação - + Date added - Data de adição src/app/components/document-detail/document-detail.component.html 91 + Data de adição - + Media filename - Nome do arquivo src/app/components/document-detail/document-detail.component.html 95 + Nome do arquivo - + Original MD5 checksum - Soma de verificação MD5 original src/app/components/document-detail/document-detail.component.html 99 + Soma de verificação MD5 original - + Original file size - Tamanho do arquivo original src/app/components/document-detail/document-detail.component.html 103 + Tamanho do arquivo original - + Original mime type - Tipo mime original src/app/components/document-detail/document-detail.component.html 107 + Tipo mime original - + Archive MD5 checksum - Soma de verificação MD5 de arquivamento src/app/components/document-detail/document-detail.component.html 111 + Soma de verificação MD5 de arquivamento - + Archive file size - Tamanho arquivado src/app/components/document-detail/document-detail.component.html 115 + Tamanho arquivado - + Original document metadata - Metadados do documento original src/app/components/document-detail/document-detail.component.html 121 + Metadados do documento original - + Archived document metadata - Metadados do documento arquivado src/app/components/document-detail/document-detail.component.html 122 + Metadados do documento arquivado - + Save & next - Salvar & próximo src/app/components/document-detail/document-detail.component.html 131 + Salvar & próximo - - Hello , welcome to Paperless-ng! - Olá , bem-vindo ao Paperless-ng! + + Hello , welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 33 + Olá , bem-vindo ao Paperless-ng! - + Welcome to Paperless-ng! - Bem-vindo ao Paperless-ng! src/app/components/dashboard/dashboard.component.ts 35 + Bem-vindo ao Paperless-ng! - + Dashboard - Painel de controle src/app/components/dashboard/dashboard.component.html 1 + Painel de controle - - Do you really want to delete the tag ""? - Você realmente deseja excluir a etiqueta ""? + + Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts 26 + Você realmente deseja excluir a etiqueta ""? - + Tags - Etiquetas src/app/components/manage/tag-list/tag-list.component.html 1 + Etiquetas - + Create - Criar src/app/components/manage/tag-list/tag-list.component.html 2 + Criar - + Filter by: - Filtrar por: src/app/components/manage/tag-list/tag-list.component.html 8 + Filtrar por: - + Name - Nome src/app/components/manage/tag-list/tag-list.component.html 9 + Nome - + Color - Cor src/app/components/manage/tag-list/tag-list.component.html 20 + Cor - + Matching - Detecção src/app/components/manage/tag-list/tag-list.component.html 21 + Detecção - + Document count - Número de documentos src/app/components/manage/tag-list/tag-list.component.html 22 + Número de documentos - + Actions - Ações src/app/components/manage/tag-list/tag-list.component.html 23 + Ações - + Documents - Documentos src/app/components/manage/tag-list/tag-list.component.html 38 + Documentos - + Edit - Editar src/app/components/manage/tag-list/tag-list.component.html 43 + Editar - - Do you really want to delete the document type ""? - Você realmente deseja excluir o tipo de documento ""? + + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 + Você realmente deseja excluir o tipo de documento ""? - + Document types - Tipos de documento src/app/components/manage/document-type-list/document-type-list.component.html 1 + Tipos de documento - + Logs - Logs src/app/components/manage/logs/logs.component.html 1 + Logs - - Saved view "" deleted. - Visualização "" excluída. + + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts 68 + Visualização "" excluída. - + Settings saved successfully. - Configurações salvas com sucesso. src/app/components/manage/settings/settings.component.ts 89 + Configurações salvas com sucesso. - + Use system language - Usar linguagem do sistema src/app/components/manage/settings/settings.component.ts 94 + Usar linguagem do sistema - + Use date format of display language - Usar formato de data da linguagem de exibição src/app/components/manage/settings/settings.component.ts 100 + Usar formato de data da linguagem de exibição - - Error while storing settings on server: - Erro ao salvar configurações: + + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts 117 + Erro ao salvar configurações: - + Settings - Configurações src/app/components/manage/settings/settings.component.html 1 + Configurações - + General settings - Configurações gerais src/app/components/manage/settings/settings.component.html 10 + Configurações gerais - + Notifications - Notificações src/app/components/manage/settings/settings.component.html 116 + Notificações - + Saved views - Visualizações src/app/components/manage/settings/settings.component.html 134 + Visualizações - + Appearance - Aparência src/app/components/manage/settings/settings.component.html 13 + Aparência - + Display language - Linguagem de exibição src/app/components/manage/settings/settings.component.html 17 + Linguagem de exibição - + You need to reload the page after applying a new language. - Você precisar recarregar a página depois de escolher uma nova linguagem. src/app/components/manage/settings/settings.component.html 25 + Você precisar recarregar a página depois de escolher uma nova linguagem. - + Date display - Exibição de data src/app/components/manage/settings/settings.component.html 32 + Exibição de data - + Date format - Formato de data src/app/components/manage/settings/settings.component.html 45 + Formato de data - - Short: - Curto: + + Short: src/app/components/manage/settings/settings.component.html 51 + Curto: - - Medium: - Médio: + + Medium: src/app/components/manage/settings/settings.component.html 55 + Médio: - - Long: - Longo: + + Long: src/app/components/manage/settings/settings.component.html 59 + Longo: - + Items per page - Itens por página src/app/components/manage/settings/settings.component.html 67 + Itens por página - + Document editor - Editor de documentos src/app/components/manage/settings/settings.component.html 83 + Editor de documentos - + Use PDF viewer provided by the browser - Usar visualizador de PDF do navegador src/app/components/manage/settings/settings.component.html 87 + Usar visualizador de PDF do navegador - + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - Isso é geralmente mais rápido para exibir grandes documentos PDF, mas poderá não funcionar em alguns navegadores. src/app/components/manage/settings/settings.component.html 87 + Isso é geralmente mais rápido para exibir grandes documentos PDF, mas poderá não funcionar em alguns navegadores. - + Dark mode - Modo noturno src/app/components/manage/settings/settings.component.html 94 + Modo noturno - + Use system settings - Usar configurações do sistema src/app/components/manage/settings/settings.component.html 97 + Usar configurações do sistema - + Enable dark mode - Habilitar modo noturno src/app/components/manage/settings/settings.component.html 98 + Habilitar modo noturno - + Invert thumbnails in dark mode - Inverter imagens em modo noturno src/app/components/manage/settings/settings.component.html 99 + Inverter imagens em modo noturno - + Bulk editing - Edição em massa src/app/components/manage/settings/settings.component.html 103 + Edição em massa - + Show confirmation dialogs - Mostrar janelas de confirmação src/app/components/manage/settings/settings.component.html 107 + Mostrar janelas de confirmação - + Deleting documents will always ask for confirmation. - Ao excluir um documento, sempre será pedido uma confirmação. src/app/components/manage/settings/settings.component.html 107 + Ao excluir um documento, sempre será pedido uma confirmação. - + Apply on close - Aplicar ao fechar src/app/components/manage/settings/settings.component.html 108 + Aplicar ao fechar - + Document processing - Processamento de documentos src/app/components/manage/settings/settings.component.html 119 + Processamento de documentos - + Show notifications when new documents are detected - Exibir notificações quando novos documentos forem detectados src/app/components/manage/settings/settings.component.html 123 + Exibir notificações quando novos documentos forem detectados - + Show notifications when document processing completes successfully - Exibir notificações quando o processamento de um documento concluir com sucesso src/app/components/manage/settings/settings.component.html 124 + Exibir notificações quando o processamento de um documento concluir com sucesso - + Show notifications when document processing fails - Exibir notificações quando o processamento de um documento falhar src/app/components/manage/settings/settings.component.html 125 + Exibir notificações quando o processamento de um documento falhar - + Suppress notifications on dashboard - Não exibir notificações no painel de controle src/app/components/manage/settings/settings.component.html 126 + Não exibir notificações no painel de controle - + This will suppress all messages about document processing status on the dashboard. - Isso esconderá todas as mensagens sobre o status de processamento de documentos no painel de controle. src/app/components/manage/settings/settings.component.html 126 + Isso esconderá todas as mensagens sobre o status de processamento de documentos no painel de controle. - + Appears on - Aparece em src/app/components/manage/settings/settings.component.html 146 + Aparece em - + Show on dashboard - Exibir no painel de controle src/app/components/manage/settings/settings.component.html 149 + Exibir no painel de controle - + Show in sidebar - Mostrar na navegação lateral src/app/components/manage/settings/settings.component.html 153 + Mostrar na navegação lateral - + No saved views defined. - Nenhuma visualização definida. src/app/components/manage/settings/settings.component.html 163 + Nenhuma visualização definida. - + 404 Not Found - 404 Não Encontrado src/app/components/not-found/not-found.component.html 7 + 404 Não Encontrado - - Do you really want to delete the correspondent ""? - Você realmente deseja excluir o correspondente ""? + + Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 + Você realmente deseja excluir o correspondente ""? - + Correspondents - Correspondentes src/app/components/manage/correspondent-list/correspondent-list.component.html 1 + Correspondentes - + Last correspondence - Última correspondência src/app/components/manage/correspondent-list/correspondent-list.component.html 22 + Última correspondência - + Confirmation - Confirmação src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 + Confirmação - + Confirm - Confirmar src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 + Confirmar - + Cancel - Cancelar src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 + Cancelar - + Create new correspondent - Criar novo correspondente src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 + Criar novo correspondente - + Edit correspondent - Editar correspondente src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 + Editar correspondente - + Matching algorithm - Algoritmo de detecção src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 + Algoritmo de detecção - + Matching pattern - Padrão de detecção src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 + Padrão de detecção - + Case insensitive - Não diferenciar maiúsculas de minúsculas src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 + Não diferenciar maiúsculas de minúsculas - + Create new tag - Criar nova etiqueta src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 + Criar nova etiqueta - + Edit tag - Editar etiqueta src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 + Editar etiqueta - + Inbox tag - Etiqueta caixa de entrada src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Etiqueta caixa de entrada - + Inbox tags are automatically assigned to all consumed documents. - Etiquetas de caixa de entrada são atribuídas automaticamente para todos os documentos consumidos. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Etiquetas de caixa de entrada são atribuídas automaticamente para todos os documentos consumidos. - + Create new document type - Criar novo tipo de documento src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 + Criar novo tipo de documento - + Edit document type - Editar tipo de documento src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 + Editar tipo de documento - + Search results - Resultados da busca src/app/components/search/search.component.html 1 + Resultados da busca - - Invalid search query: - Termo de pesquisa inválido: + + Invalid search query: src/app/components/search/search.component.html 4 + Termo de pesquisa inválido: - - Showing documents similar to - Exibindo documentos similares a + + Showing documents similar to src/app/components/search/search.component.html 7 + Exibindo documentos similares a - - Search query: - Termo de pesquisa: + + Search query: src/app/components/search/search.component.html 11 + Termo de pesquisa: - - Did you mean ""? - Você quis dizer ""? + + Did you mean ""? src/app/components/search/search.component.html 13 + Você quis dizer ""? - + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - {VAR_PLURAL, plural, =0 {Sem resultados} =1 {Um resultado} other { resultados}} src/app/components/search/search.component.html 18 + {VAR_PLURAL, plural, =0 {Sem resultados} =1 {Um resultado} other { resultados}} - + Paperless-ng - Paperless-ng src/app/components/app-frame/app-frame.component.html 11 - app title + app title + Paperless-ng - + Search documents - Procurar documentos src/app/components/app-frame/app-frame.component.html 15 + Procurar documentos - + Logout - Encerrar sessão src/app/components/app-frame/app-frame.component.html 45 + Encerrar sessão - + Manage - Gerenciar src/app/components/app-frame/app-frame.component.html 112 + Gerenciar - + Admin - Admin src/app/components/app-frame/app-frame.component.html 154 + Admin - + Info - Informação src/app/components/app-frame/app-frame.component.html 160 + Informação - + Documentation - Documentação src/app/components/app-frame/app-frame.component.html 167 + Documentação - + GitHub - GitHub src/app/components/app-frame/app-frame.component.html 175 + GitHub - + Suggest an idea - Sugerir uma idéia src/app/components/app-frame/app-frame.component.html 181 + Sugerir uma idéia - - Logged in as - Sessão iniciada como + + Logged in as src/app/components/app-frame/app-frame.component.html 34 + Sessão iniciada como - + Open documents - Abrir documentos src/app/components/app-frame/app-frame.component.html 87 + Abrir documentos - + Close all - Fechar todos src/app/components/app-frame/app-frame.component.html 106 + Fechar todos - + Title - Título src/app/components/document-list/filter-editor/filter-editor.component.ts 73 + Título - + Title & content - Título & conteúdo src/app/components/document-list/filter-editor/filter-editor.component.ts 74 + Título & conteúdo - - Correspondent: - Correspondente: + + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts 32 + Correspondente: - + Without correspondent - Sem correspondente src/app/components/document-list/filter-editor/filter-editor.component.ts 34 + Sem correspondente - - Type: - Tipo: + + Type: src/app/components/document-list/filter-editor/filter-editor.component.ts 39 + Tipo: - + Without document type - Sem tipo de documento src/app/components/document-list/filter-editor/filter-editor.component.ts 41 + Sem tipo de documento - - Tag: - Etiqueta: + + Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts 45 + Etiqueta: - + Without any tag - Sem etiquetas src/app/components/document-list/filter-editor/filter-editor.component.ts 49 + Sem etiquetas - - Title: - Título: + + Title: src/app/components/document-list/filter-editor/filter-editor.component.ts 53 + Título: - + Filter tags - Filtrar etiquetas src/app/components/document-list/filter-editor/filter-editor.component.html 20 + Filtrar etiquetas - + Filter correspondents - Filtrar correspondentes src/app/components/document-list/filter-editor/filter-editor.component.html 28 + Filtrar correspondentes - + Filter document types - Filtrar tipos de documento src/app/components/document-list/filter-editor/filter-editor.component.html 35 + Filtrar tipos de documento - + Reset filters - Limpar filtros src/app/components/document-list/filter-editor/filter-editor.component.html 58 + Limpar filtros - + Not assigned - Não atribuído src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 166 - Filter drop down element to filter for documents with no correspondent/type/tag assigned + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Não atribuído - + Apply - Aplicar src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 + Aplicar - + Last 7 days - Últimos 7 dias src/app/components/common/date-dropdown/date-dropdown.component.ts 34 + Últimos 7 dias - + Last month - Último mês src/app/components/common/date-dropdown/date-dropdown.component.ts 35 + Último mês - + Last 3 months - Últimos 3 meses src/app/components/common/date-dropdown/date-dropdown.component.ts 36 + Últimos 3 meses - + Last year - Último ano src/app/components/common/date-dropdown/date-dropdown.component.ts 37 + Último ano - + After - Antes src/app/components/common/date-dropdown/date-dropdown.component.html 13 + Antes - + Before - Depois src/app/components/common/date-dropdown/date-dropdown.component.html 38 + Depois - + Clear - Limpar src/app/components/common/date-dropdown/date-dropdown.component.html 18 + Limpar - + View - Ver src/app/components/document-list/document-card-large/document-card-large.component.html 50 + Ver - - Created: - Criado: + + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 67 + Criado: - + Filter by correspondent - Filtrar por correspondente src/app/components/document-list/document-card-large/document-card-large.component.html 20 + Filtrar por correspondente - + Filter by tag - Filtrar por etiqueta src/app/components/document-list/document-card-large/document-card-large.component.html 24 + Filtrar por etiqueta - + Score: - Nota: src/app/components/document-list/document-card-large/document-card-large.component.html 62 + Nota: - + View in browser - Visualizar no navegador src/app/components/document-list/document-card-small/document-card-small.component.html 40 + Visualizar no navegador - - Error executing bulk operation: - Erro ao executar operação em massa: + + Error executing bulk operation: src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 + Erro ao executar operação em massa: - - "" - "" + + "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 + "" - - "" and "" - "" e "" + + "" and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 115 - This is for messages like 'modify "tag1" and "tag2"' + This is for messages like 'modify "tag1" and "tag2"' + "" e "" - + , - , src/app/components/document-list/bulk-editor/bulk-editor.component.ts 117 - this is used to separate enumerations and should probably be a comma and a whitespace in most languages + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , - - and "" - e "" + + and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 118 - this is for messages like 'modify "tag1", "tag2" and "tag3"' + this is for messages like 'modify "tag1", "tag2" and "tag3"' + e "" - + Confirm tags assignment - Confirmar atribuição de etiqueta src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 + Confirmar atribuição de etiqueta - - This operation will add the tag "" to selected document(s). - Essa operação irá adicionar a etiqueta "" em documento(s) selecionado(s). + + This operation will add the tag "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 + Essa operação irá adicionar a etiqueta "" em documento(s) selecionado(s). - - This operation will add the tags to selected document(s). - Essa operação irá adicionar as etiquetas em documento(s) selecionado(s). + + This operation will add the tags to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 + Essa operação irá adicionar as etiquetas em documento(s) selecionado(s). - - This operation will remove the tag "" from selected document(s). - Essa operação irá remover a etiqueta "" de documento(s) selecionado(s). + + This operation will remove the tag "" from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 + Essa operação irá remover a etiqueta "" de documento(s) selecionado(s). - - This operation will remove the tags from selected document(s). - Essa operação irá remover as etiquetas de documento(s) selecionado(s). + + This operation will remove the tags from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 + Essa operação irá remover as etiquetas de documento(s) selecionado(s). - - This operation will add the tags and remove the tags on selected document(s). - Essa operação irá adicionar as etiquetas e remover as etiquetas de documento(s) selecionado(s). + + This operation will add the tags and remove the tags on selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 + Essa operação irá adicionar as etiquetas e remover as etiquetas de documento(s) selecionado(s). - + Confirm correspondent assignment - Confirmar atribuição de correspondente src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 + Confirmar atribuição de correspondente - - This operation will assign the correspondent "" to selected document(s). - Essa operação irá atribuir o correspondente "" para documento(s) selecionado(s). + + This operation will assign the correspondent "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 + Essa operação irá atribuir o correspondente "" para documento(s) selecionado(s). - - This operation will remove the correspondent from selected document(s). - Essa operação irá remover o correspondente de documento(s) selecionado(s). + + This operation will remove the correspondent from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 + Essa operação irá remover o correspondente de documento(s) selecionado(s). - + Confirm document type assignment - Confirmar atribuição de tipo de documento src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 + Confirmar atribuição de tipo de documento - - This operation will assign the document type "" to selected document(s). - Essa operação irá atribuir o tipo de documento "" para documento(s) selecionado(s). + + This operation will assign the document type "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 + Essa operação irá atribuir o tipo de documento "" para documento(s) selecionado(s). - - This operation will remove the document type from selected document(s). - Essa operação irá remover o tipo de documento de documento(s) selecionado(s). + + This operation will remove the document type from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 + Essa operação irá remover o tipo de documento de documento(s) selecionado(s). - + Delete confirm - Confirmar exlcusão src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 + Confirmar exlcusão - - This operation will permanently delete selected document(s). - Essa operação irá excluir permanentemente documento(s) selecionado(s). + + This operation will permanently delete selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 + Essa operação irá excluir permanentemente documento(s) selecionado(s). - + This operation cannot be undone. - Essa operação não pode ser revertida. src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 + Essa operação não pode ser revertida. - + Delete document(s) - Apagar documento(s) src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 + Apagar documento(s) - + Select: - Selecionar: src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 + Selecionar: - + All - Todos src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 + Todos - + Edit: - Editar: src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 + Editar: - + Download originals - Descarregar originais src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 + Descarregar originais - + Suggestions: - Sugestões: src/app/components/common/input/select/select.component.html 26 + Sugestões: - + Save current view - Salvar visualização atual src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 + Salvar visualização atual - + Show all - Mostrar todos src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 + Mostrar todos - + Statistics - Estatísticas src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 + Estatísticas - - Total documents: - Total de documentos: + + Total documents: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 + Total de documentos: - - Documents in inbox: - Documentos na caixa de entrada: + + Documents in inbox: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 + Documentos na caixa de entrada: - - Processing: - Processando: + + Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 + Processando: - - Failed: - Falha: + + Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 + Falha: - - Added: - Adicionado: + + Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 + Adicionado: - + Connecting... - Conectando... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 + Conectando... - + Uploading... - Enviando... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 + Enviando... - + Upload complete, waiting... - Envio concluído, esperando... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 + Envio concluído, esperando... - - HTTP error: - Erro HTTP: + + HTTP error: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 + Erro HTTP: - + Upload new documents - Enviar novos documentos src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 + Enviar novos documentos - + Drop documents here or - Solte documentos aqui ou src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Solte documentos aqui ou - + Browse files - Navegar arquivos src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Navegar arquivos - + Dismiss completed - Esconder completos src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - This button dismisses all status messages about processed documents on the dashboard (failed and successful) + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Esconder completos - + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - {VAR_PLURAL, plural, =1 {Mais um documento} other {Mais documentos}} src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 25 - This is shown as a summary line when there are more than 5 document in the processing pipeline. + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {Mais um documento} other {Mais documentos}} - + Open document - Abrir documento src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 + Abrir documento - + First steps - Primeiros passos src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 + Primeiros passos - + Paperless is running! :) - O Paperless está a correr! :) src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 + O Paperless está a correr! :) - - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - Pode começar a carregar documentos deixando-os na caixa de carregamento de ficheiros à direita, ou deixando-os na pasta de consumo pré-configurada, que eles depois aparecem na lista de documentos. Depois de ter adicionado alguns meta-dados aos seus documentos, utilize os mecanismos de filtragem do Paperless para criar visualizações personalizadas (tais como 'Adicionados recentemente', 'Etiquetados com PARAFAZER'). Posteriormente estes aparecerão no painel em vez desta mensagem. + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 + Pode começar a carregar documentos deixando-os na caixa de carregamento de ficheiros à direita, ou deixando-os na pasta de consumo pré-configurada, que eles depois aparecem na lista de documentos. Depois de ter adicionado alguns meta-dados aos seus documentos, utilize os mecanismos de filtragem do Paperless para criar visualizações personalizadas (tais como 'Adicionados recentemente', 'Etiquetados com PARAFAZER'). Posteriormente estes aparecerão no painel em vez desta mensagem. - + Paperless offers some more features that try to make your life easier: - O Paperless oferece algumas funcionalidades para tentar tornar a sua vida mais fácil: src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 + O Paperless oferece algumas funcionalidades para tentar tornar a sua vida mais fácil: - - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - Assim que já tenha alguns documentos previamente adicionados com os respetivos meta-dados, o Paperless consegue adicionar automaticamente meta-dados aos novos documentos. + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 + Assim que já tenha alguns documentos previamente adicionados com os respetivos meta-dados, o Paperless consegue adicionar automaticamente meta-dados aos novos documentos. - + You can configure paperless to read your mails and add documents from attached files. - Pode configurar o Paperless para ler os seus e-mails e adicionar os documentos em anexo à plataforma. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 + Pode configurar o Paperless para ler os seus e-mails e adicionar os documentos em anexo à plataforma. - + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - Consulte a documentação para saber como utilizar estas funcionalidades. A secção sobre utilização básica têm informação para o ajudar a utilizar a plataforma de uma forma geral. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 + Consulte a documentação para saber como utilizar estas funcionalidades. A secção sobre utilização básica têm informação para o ajudar a utilizar a plataforma de uma forma geral. - + Metadata - Metadados src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 + Metadados - + Select - Selecione src/app/components/common/select-dialog/select-dialog.component.ts 18 + Selecione - + Please select an object - Por favor selecione um objeto src/app/components/common/select-dialog/select-dialog.component.ts 21 + Por favor selecione um objeto - + Invalid date. - Data inválida. src/app/components/common/input/date/date.component.html 14 + Data inválida. - + Yes - Sim src/app/pipes/yes-no.pipe.ts 9 + Sim - + No - Não src/app/pipes/yes-no.pipe.ts 9 + Não - + (no title) - (sem título) src/app/pipes/document-title.pipe.ts 12 + (sem título) - + English (US) - Inglês (US) src/app/services/settings.service.ts 90 + Inglês (US) - + English (GB) - Inglês (GB) src/app/services/settings.service.ts 91 + Inglês (GB) - + German - Alemão src/app/services/settings.service.ts 92 + Alemão - + Dutch - Holandês src/app/services/settings.service.ts 93 + Holandês - + French - Francês src/app/services/settings.service.ts 94 + Francês - + Portuguese (Brazil) - Português (Brasil) src/app/services/settings.service.ts 95 + Português (Brasil) - + Italian - Italiano src/app/services/settings.service.ts 96 + Italiano - + Romanian - Romeno src/app/services/settings.service.ts 97 + Romeno - + ISO 8601 - ISO 8601 src/app/services/settings.service.ts 102 + ISO 8601 - + Document already exists. - Documento já existente. src/app/services/consumer-status.service.ts 15 + Documento já existente. - + File not found. - Arquivo não encontrado. src/app/services/consumer-status.service.ts 16 + Arquivo não encontrado. - + Pre-consume script does not exist. - Script pré-consumo não existe. src/app/services/consumer-status.service.ts 17 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Script pré-consumo não existe. - + Error while executing pre-consume script. - Erro ao executar script pré-consumo. src/app/services/consumer-status.service.ts 18 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Erro ao executar script pré-consumo. - + Post-consume script does not exist. - Script pós-consumo não existe. src/app/services/consumer-status.service.ts 19 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Script pós-consumo não existe. - + Error while executing post-consume script. - Erro ao executar script pós-consumo. src/app/services/consumer-status.service.ts 20 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Erro ao executar script pós-consumo. - + Received new file. - Novo arquivo recebido. src/app/services/consumer-status.service.ts 21 + Novo arquivo recebido. - + File type not supported. - Tipo de arquivo não suportado. src/app/services/consumer-status.service.ts 22 + Tipo de arquivo não suportado. - + Processing document... - Processando documento... src/app/services/consumer-status.service.ts 23 + Processando documento... - + Generating thumbnail... - Gerando imagem... src/app/services/consumer-status.service.ts 24 + Gerando imagem... - + Retrieving date from document... - Buscando data do documento... src/app/services/consumer-status.service.ts 25 + Buscando data do documento... - + Saving document... - Salvando documento... src/app/services/consumer-status.service.ts 26 + Salvando documento... - + Finished. - Encerrado. src/app/services/consumer-status.service.ts 27 + Encerrado. - + Error - Erro src/app/services/toast.service.ts 35 + Erro - + Information - Informação src/app/services/toast.service.ts 39 + Informação - + ASN - NSA src/app/services/rest/document.service.ts 17 + NSA - + Correspondent - Correspondente src/app/services/rest/document.service.ts 18 + Correspondente - + Document type - Tipo de Documento src/app/services/rest/document.service.ts 20 + Tipo de Documento - + Created - Criado src/app/services/rest/document.service.ts 21 + Criado - + Added - Adicionado src/app/services/rest/document.service.ts 22 + Adicionado - + Modified - Modificado src/app/services/rest/document.service.ts 23 + Modificado - + Create new item - Criar novo item src/app/components/common/edit-dialog/edit-dialog.component.ts 50 + Criar novo item - + Edit item - Editar item src/app/components/common/edit-dialog/edit-dialog.component.ts 54 + Editar item - - Could not save element: - Não podemos salvar elemento: + + Could not save element: src/app/components/common/edit-dialog/edit-dialog.component.ts 58 + Não podemos salvar elemento: - + Automatic - Automático src/app/components/manage/generic-list/generic-list.component.ts 39 + Automático - + Do you really want to delete this element? - Você realmente quer excluir esse elemento? src/app/components/manage/generic-list/generic-list.component.ts 97 + Você realmente quer excluir esse elemento? - + Associated documents will not be deleted. - Documentos associados não serão excluidos. src/app/components/manage/generic-list/generic-list.component.ts 104 + Documentos associados não serão excluidos. - + Delete - Excluir src/app/components/manage/generic-list/generic-list.component.ts 106 + Excluir - - Error while deleting element: - Erro ao excluir elemento: + + Error while deleting element: src/app/components/manage/generic-list/generic-list.component.ts 114 + Erro ao excluir elemento: - + Any word - Qualquer palavra src/app/data/matching-model.ts 12 + Qualquer palavra - + Any: Document contains any of these words (space separated) - Qualquer: Documento contém qualquer uma dessas palavras (separadas por espaço) src/app/data/matching-model.ts 12 + Qualquer: Documento contém qualquer uma dessas palavras (separadas por espaço) - + All words - Todas as palavras src/app/data/matching-model.ts 13 + Todas as palavras - + All: Document contains all of these words (space separated) - Todas: Documento contém todas essas palavras (separadas por espaço) src/app/data/matching-model.ts 13 + Todas: Documento contém todas essas palavras (separadas por espaço) - + Exact match - Detecção exata src/app/data/matching-model.ts 14 + Detecção exata - + Exact: Document contains this string - Exata: Documento contém essa palavra src/app/data/matching-model.ts 14 + Exata: Documento contém essa palavra - + Regular expression - Expressão regular src/app/data/matching-model.ts 15 + Expressão regular - + Regular expression: Document matches this regular expression - Expressão regular: Documento condiz com essa expressão regular src/app/data/matching-model.ts 15 + Expressão regular: Documento condiz com essa expressão regular - + Fuzzy word - Palavra difusa src/app/data/matching-model.ts 16 + Palavra difusa - + Fuzzy: Document contains a word similar to this word - Fuzzy: Documento contém uma palavra similar à essa. src/app/data/matching-model.ts 16 + Fuzzy: Documento contém uma palavra similar à essa. - + Auto: Learn matching automatically - Auto: Aprender detecção automaticamente src/app/data/matching-model.ts 17 + Auto: Aprender detecção automaticamente - \ No newline at end of file + diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf new file mode 100644 index 000000000..c608fc3f6 --- /dev/null +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/locale/messages.fr.xlf b/src-ui/src/locale/messages.ro_RO.xlf similarity index 63% rename from src-ui/src/locale/messages.fr.xlf rename to src-ui/src/locale/messages.ro_RO.xlf index b1f820e2e..712527fb4 100644 --- a/src-ui/src/locale/messages.fr.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -1,2281 +1,2282 @@ - - + + + - + Document added - Document ajouté src/app/app.component.ts 51 + Document adaugat - - Document was added to paperless. - Le document a été ajouté à Paperless-ng. + + Document was added to paperless. src/app/app.component.ts 51 + Documentul a fost adaugat - + Open document - Ouvrir le document src/app/app.component.ts 51 + Deschide document - - Could not add : - Impossible d'ajouter : + + Could not add : src/app/app.component.ts 59 + Nu s-a putut adauga : - + New document detected - Nouveau document détecté src/app/app.component.ts 65 + Document nou detectat - - Document is being processed by paperless. - Le document est en cours de traitement par Paperless-ng. + + Document is being processed by paperless. src/app/app.component.ts 65 + Documentul este in procesare - + Documents - Documents src/app/components/document-list/document-list.component.ts 49 + Documente - - View "" saved successfully. - Vue "" enregistrée avec succès. + + View "" saved successfully. src/app/components/document-list/document-list.component.ts 115 + Vizualizarea "" a fost salvata - - View "" created successfully. - Vue "" créée avec succès. + + View "" created successfully. src/app/components/document-list/document-list.component.ts 136 + Vizualizarea "" a fost creata - + Select - Sélectionner src/app/components/document-list/document-list.component.html 7 + Selecteaza - + Select none - Sélectionner aucun src/app/components/document-list/document-list.component.html 10 + Deselecteaza tot - + Select page - Sélectionner la page src/app/components/document-list/document-list.component.html 11 + Selecteaza pagina - + Select all - Sélectionner tout src/app/components/document-list/document-list.component.html 12 + Selecteaza tot - + Sort - Trier src/app/components/document-list/document-list.component.html 39 + Sorteaza - + Views - Vues src/app/components/document-list/document-list.component.html 64 + Vizualizari - + Save as... - Enregistrer sous... src/app/components/document-list/document-list.component.html 72 + Salveaza ca... - - Save "" - Enregistrer "" + + Save "" src/app/components/document-list/document-list.component.html 71 + Salveaza "" - + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - {VAR_PLURAL, plural, =1 { document sélectionné sur 1} other { documents sélectionnés sur }} src/app/components/document-list/document-list.component.html 85 + {VAR_PLURAL, plural, =1 {Am selectat din 1 document} other {Am selectat din documente}} - + {VAR_PLURAL, plural, =1 {One document} other { documents}} - {VAR_PLURAL, plural, =1 {Un document} other { documents}} src/app/components/document-list/document-list.component.html 86 + {VAR_PLURAL, plural, =1 {Un document} other { documente}} - + (filtered) - (filtré) src/app/components/document-list/document-list.component.html 86 + (filtrat) - + ASN - NSA src/app/components/document-list/document-list.component.html 105 + ASN - + Correspondent - Correspondant src/app/components/document-list/document-list.component.html 111 + Corespondent - + Title - Titre src/app/components/document-list/document-list.component.html 117 + Titlu - + Document type - Type de document src/app/components/document-list/document-list.component.html 123 + Tipul documentului - + Created - Date de création src/app/components/document-list/document-list.component.html 129 + Creat - + Added - Date d'ajout src/app/components/document-list/document-list.component.html 135 + Adaugat - + Confirm delete - Confirmer la suppression src/app/components/document-detail/document-detail.component.ts 203 + Confirma stergerea - - Do you really want to delete document ""? - Voulez-vous vraiment supprimer le document "" ? + + Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts 204 + Sunteti sigur ca doriti sa stergeti documentul ""? - + The files for this document will be deleted permanently. This operation cannot be undone. - Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible. src/app/components/document-detail/document-detail.component.ts 205 + Fisierele pentru acest document vor fi sterse permanent. Operatiunea este ireversibila. - + Delete document - Supprimer le document src/app/components/document-detail/document-detail.component.ts 207 + Sterge document - - Error deleting document: - Une erreur s'est produite lors de la suppression du document : + + Error deleting document: src/app/components/document-detail/document-detail.component.ts 214 + Eroare la stergerea documentului: - + Delete - Supprimer src/app/components/document-detail/document-detail.component.html 15 + Sterge - + Download - Télécharger src/app/components/document-detail/document-detail.component.html 23 + Descarca - + More like this - Documents relatifs src/app/components/document-detail/document-detail.component.html 38 + Similare - + Close - Fermer src/app/components/document-detail/document-detail.component.html 44 + Inchide - + Details - Détails src/app/components/document-detail/document-detail.component.html 56 + Detalii - + Content - Contenu src/app/components/document-detail/document-detail.component.html 72 + Continut - + Metadata - Métadonnées src/app/components/document-detail/document-detail.component.html 81 + Metadate - + Discard - Abandonner src/app/components/document-detail/document-detail.component.html 130 + Renunta - + Save - Enregistrer src/app/components/document-detail/document-detail.component.html 132 + Salveaza - + Page - Page src/app/components/document-detail/document-detail.component.html 4 + Pagina - - of - sur + + of src/app/components/document-detail/document-detail.component.html 8 + din - + Download original - Télécharger l'original src/app/components/document-detail/document-detail.component.html 29 + Descarca originalul - + Archive serial number - Numéro de série de l'archive src/app/components/document-detail/document-detail.component.html 60 + Numar de arhiva - + Date created - Date de création src/app/components/document-detail/document-detail.component.html 61 + Data crearii - + Date modified - Modifié le src/app/components/document-detail/document-detail.component.html 87 + Data ultimei modificari - + Date added - Date d'ajout src/app/components/document-detail/document-detail.component.html 91 + Data adaugarii - + Media filename - Nom de fichier du média src/app/components/document-detail/document-detail.component.html 95 + Numele fisierului media - + Original MD5 checksum - Somme de contrôle MD5 de l'original src/app/components/document-detail/document-detail.component.html 99 + MD5 original - + Original file size - Taille de fichier de l'original src/app/components/document-detail/document-detail.component.html 103 + Marimea fisierului original - + Original mime type - Type mime de l'original src/app/components/document-detail/document-detail.component.html 107 + Tipul fisierului original - + Archive MD5 checksum - Somme de contrôle MD5 de l'archive src/app/components/document-detail/document-detail.component.html 111 + MD5 arhiva - + Archive file size - Taille de fichier de l'archive src/app/components/document-detail/document-detail.component.html 115 + Marimea arhivei - + Original document metadata - Métadonnées du document original src/app/components/document-detail/document-detail.component.html 121 + Metadatele documentului original - + Archived document metadata - Métadonnées du document archivé src/app/components/document-detail/document-detail.component.html 122 + Metadatele documentului arhivat - + Save & next - Enregistrer & suivant src/app/components/document-detail/document-detail.component.html 131 + Salveaza si continua - - Hello , welcome to Paperless-ng! - Bonjour , bienvenue dans Paperless-ng ! + + Hello , welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 33 + Salut, , bine ai venit la Paperless-ng! - + Welcome to Paperless-ng! - Bienvenue dans Paperless-ng ! src/app/components/dashboard/dashboard.component.ts 35 + Bine ai venit la Paperless-ng! - + Dashboard - Tableau de bord src/app/components/dashboard/dashboard.component.html 1 + Tablou de bord - - Do you really want to delete the tag ""? - Voulez-vous vraiment supprimer l'étiquette "" ? + + Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts 26 + Sunteti sigur ca doriti sa stergeti eticheta ""? - + Tags - Étiquettes src/app/components/manage/tag-list/tag-list.component.html 1 + Etichete - + Create - Créer src/app/components/manage/tag-list/tag-list.component.html 2 + Creeaza - + Filter by: - Filtrer par : src/app/components/manage/tag-list/tag-list.component.html 8 + Filtreaza dupa: - + Name - Nom src/app/components/manage/tag-list/tag-list.component.html 9 + Nume - + Color - Couleur src/app/components/manage/tag-list/tag-list.component.html 20 + Culoare - + Matching - Rapprochement src/app/components/manage/tag-list/tag-list.component.html 21 + Potrivire - + Document count - Nombre de documents src/app/components/manage/tag-list/tag-list.component.html 22 + Numar de documente - + Actions - Actions src/app/components/manage/tag-list/tag-list.component.html 23 + Acțiuni - + Documents - Documents src/app/components/manage/tag-list/tag-list.component.html 38 + Documente - + Edit - Éditer src/app/components/manage/tag-list/tag-list.component.html 43 + Editează - - Do you really want to delete the document type ""? - Voulez-vous vraiment supprimer le type de document "" ? + + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 + Sunteti sigur ca doriti sa stergeti tipul de document ""? - + Document types - Types de document src/app/components/manage/document-type-list/document-type-list.component.html 1 + Tipuri de documente - + Logs - Rapports src/app/components/manage/logs/logs.component.html 1 + Jurnale - - Saved view "" deleted. - Vue "" supprimée. + + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts 68 + Vizualizarea "" a fost stearsa. - + Settings saved successfully. - Paramètres enregistrés avec succès. src/app/components/manage/settings/settings.component.ts 89 + Setarile au fost salvate. - + Use system language - Utiliser la langue du système src/app/components/manage/settings/settings.component.ts 94 + Foloseste limba sistemului - + Use date format of display language - Utiliser le format de date de la langue d'affichage src/app/components/manage/settings/settings.component.ts 100 + Foloseste formatul datei corespunzator limbii de afisare - - Error while storing settings on server: - Une erreur s'est produite lors de l'enregistrement des paramètres sur le serveur : + + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts 117 + Eroare la stocarea setarilor pe server: - + Settings - Paramètres src/app/components/manage/settings/settings.component.html 1 + Setari - + General settings - Paramètres généraux src/app/components/manage/settings/settings.component.html 10 + Setari generale - + Notifications - Notifications src/app/components/manage/settings/settings.component.html 116 + Notificari - + Saved views - Vues enregistrées src/app/components/manage/settings/settings.component.html 134 + Vizualizari - + Appearance - Affichage src/app/components/manage/settings/settings.component.html 13 + Afisare - + Display language - Langue d'affichage src/app/components/manage/settings/settings.component.html 17 + Limba de afisare - + You need to reload the page after applying a new language. - Vous devez recharger la page après avoir sélectionné une nouvelle langue. src/app/components/manage/settings/settings.component.html 25 + Trebuie sa reincarcati pagina dupa schimbarea limbii. - + Date display - Affichage de la date src/app/components/manage/settings/settings.component.html 32 + Afisarea datei - + Date format - Format de date src/app/components/manage/settings/settings.component.html 45 + Formatul datei - - Short: - Court : + + Short: src/app/components/manage/settings/settings.component.html 51 + Scurt: - - Medium: - Moyen : + + Medium: src/app/components/manage/settings/settings.component.html 55 + Mediu: - - Long: - Long : + + Long: src/app/components/manage/settings/settings.component.html 59 + Lung: - + Items per page - Éléments par page src/app/components/manage/settings/settings.component.html 67 + Articole pe pagina - + Document editor - Visionneuse de documents src/app/components/manage/settings/settings.component.html 83 + Editor de documente - + Use PDF viewer provided by the browser - Utiliser la visionneuse PDF fournie par le navigateur src/app/components/manage/settings/settings.component.html 87 + Folositi browserul pentru a deschide PDF-uri - + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - Cette option est généralement plus rapide pour l'affichage de grands documents PDF, mais elle peut ne pas fonctionner sur certains navigateurs. src/app/components/manage/settings/settings.component.html 87 + Aceasta optiune este mai rapida pentru PDF-uri mari, dar nu este compatibila cu toate browserele. - + Dark mode - Mode sombre src/app/components/manage/settings/settings.component.html 94 + Mod intunecat - + Use system settings - Utiliser les paramètres du système src/app/components/manage/settings/settings.component.html 97 + Folositi setarile sistemului - + Enable dark mode - Activer le mode sombre src/app/components/manage/settings/settings.component.html 98 + Activati modul intunecat - + Invert thumbnails in dark mode - Inverser les vignettes en mode sombre src/app/components/manage/settings/settings.component.html 99 + Inverseaza miniaturile in modul intunecat - + Bulk editing - Edition en masse src/app/components/manage/settings/settings.component.html 103 + Editare in bloc - + Show confirmation dialogs - Afficher les messages de confirmation src/app/components/manage/settings/settings.component.html 107 + Afisati dialoguri de confirmare - + Deleting documents will always ask for confirmation. - La suppression de documents requiert toujours une confirmation. src/app/components/manage/settings/settings.component.html 107 + Stergerea documentelor necesita intotdeauna confirmare. - + Apply on close - Appliquer lors de la fermeture src/app/components/manage/settings/settings.component.html 108 + Aplica la iesire - + Document processing - Traitement de documents src/app/components/manage/settings/settings.component.html 119 + Procesarea documentelor - + Show notifications when new documents are detected - Afficher des notifications lorsque de nouveaux documents sont détectés src/app/components/manage/settings/settings.component.html 123 + Afisati notificari cand sunt detectate documente noi - + Show notifications when document processing completes successfully - Afficher des notifications lorsque le traitement des documents se termine avec succès src/app/components/manage/settings/settings.component.html 124 + Afisati notificari cand procesarea unui document este completa - + Show notifications when document processing fails - Afficher des notifications en cas d'échec du traitement des documents src/app/components/manage/settings/settings.component.html 125 + Afisati notificari cand procesarea unui document esueaza - + Suppress notifications on dashboard - Supprimer les notifications du tableau de bord src/app/components/manage/settings/settings.component.html 126 + Ascundeti notificarile pe tabloul de bord - + This will suppress all messages about document processing status on the dashboard. - Cela supprimera tous les messages liés au traitement de documents sur le tableau de bord. src/app/components/manage/settings/settings.component.html 126 + Aceasta setare va opri mesajele despre procesarea documentelor pe tabloul de bord - + Appears on - Apparaît sur src/app/components/manage/settings/settings.component.html 146 + Apare pe - + Show on dashboard - Montrer sur le tableau de bord src/app/components/manage/settings/settings.component.html 149 + Afiseaza pe tabloul de bord - + Show in sidebar - Montrer dans la barre latérale src/app/components/manage/settings/settings.component.html 153 + Afiseaza in bara laterala - + No saved views defined. - Aucune vue sauvegardée n'est définie. src/app/components/manage/settings/settings.component.html 163 + Nu sunt definite vizualizari. - + 404 Not Found - 404 Non trouvé src/app/components/not-found/not-found.component.html 7 + 404 Pagina nu a fost gasita - - Do you really want to delete the correspondent ""? - Voulez-vous vraiment supprimer le correspondant "" ? + + Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 + Sunteti sigur ca doriti sa stergeti corespondentul ""? - + Correspondents - Correspondants src/app/components/manage/correspondent-list/correspondent-list.component.html 1 + Corespondenti - + Last correspondence - Dernière correspondance src/app/components/manage/correspondent-list/correspondent-list.component.html 22 + Ultima corespondenta - + Confirmation - Confirmation src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 + Confirmare - + Confirm - Confirmer src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 + Confirma - + Cancel - Annuler src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 + Anuleaza - + Create new correspondent - Créer un nouveau correspondant src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 + Creeaza un nou corespondent - + Edit correspondent - Éditer le correspondant src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 + Modifica un corespondent - + Matching algorithm - Algorithme de rapprochement src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 + Algoritm de potrivire - + Matching pattern - Modèle de rapprochement src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 + Model de potrivire - + Case insensitive - Insensible à la casse src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 + Ignora majusculele - + Create new tag - Créer une nouvelle étiquette src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 + Creeaza o noua eticheta - + Edit tag - Éditer l'étiquette src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 + Modifica o eticheta - + Inbox tag - Étiquette de boîte de réception src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Eticheta inbox - + Inbox tags are automatically assigned to all consumed documents. - Les étiquettes de boîte de réception sont automatiquement affectées à tous les documents traités. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + Etichetele inbox sunt atribuite automat documentelor consumate. - + Create new document type - Créer un nouveau type de document src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 + Creeaza un nou tip de document - + Edit document type - Éditer le type de document src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 + Modifica un tip de document - + Search results - Résultats de la recherche src/app/components/search/search.component.html 1 + Rezultatele cautarii - - Invalid search query: - Requête de recherche invalide : + + Invalid search query: src/app/components/search/search.component.html 4 + Interogare invalida: - - Showing documents similar to - Présentation des documents similaires à + + Showing documents similar to src/app/components/search/search.component.html 7 + Documente similare cu - - Search query: - Requête de recherche : + + Search query: src/app/components/search/search.component.html 11 + Interogare: - - Did you mean ""? - Vouliez-vous dire "" ? + + Did you mean ""? src/app/components/search/search.component.html 13 + Ati vrut sa scrieti ""? - + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - {VAR_PLURAL, plural, =0 {Aucun résultat} =1 {Un résultat} other { résultats}} src/app/components/search/search.component.html 18 + {VAR_PLURAL, plural, =0 {Niciun rezultat} =1 {Un rezultat} other { rezultate}} - + Paperless-ng - Paperless-ng src/app/components/app-frame/app-frame.component.html 11 - app title + app title + Paperless-ng - + Search documents - Rechercher des documents src/app/components/app-frame/app-frame.component.html 15 + Cauta documente - + Logout - Déconnexion src/app/components/app-frame/app-frame.component.html 45 + Deconectare - + Manage - Gestion src/app/components/app-frame/app-frame.component.html 112 + Administreaza - + Admin - Administration src/app/components/app-frame/app-frame.component.html 154 + Administrator - + Info - Info src/app/components/app-frame/app-frame.component.html 160 + Informatii - + Documentation - Documentation src/app/components/app-frame/app-frame.component.html 167 + Documentatie - + GitHub - GitHub src/app/components/app-frame/app-frame.component.html 175 + GitHub - + Suggest an idea - Suggérer une idée src/app/components/app-frame/app-frame.component.html 181 + Sugestii - - Logged in as - Connexion en tant que + + Logged in as src/app/components/app-frame/app-frame.component.html 34 + Autentificat ca - + Open documents - Documents ouverts src/app/components/app-frame/app-frame.component.html 87 + Deschide documente - + Close all - Fermer tout src/app/components/app-frame/app-frame.component.html 106 + Inchide tot - + Title - Titre src/app/components/document-list/filter-editor/filter-editor.component.ts 73 + Titlu - + Title & content - Titre & contenu src/app/components/document-list/filter-editor/filter-editor.component.ts 74 + Titlu si continut - - Correspondent: - Correspondant : + + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts 32 + Corespondent: - + Without correspondent - Sans correspondant src/app/components/document-list/filter-editor/filter-editor.component.ts 34 + Fara corespondent - - Type: - Type : + + Type: src/app/components/document-list/filter-editor/filter-editor.component.ts 39 + Tip: - + Without document type - Sans type de document src/app/components/document-list/filter-editor/filter-editor.component.ts 41 + Fara tip - - Tag: - Étiquette : + + Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts 45 + Eticheta: - + Without any tag - Sans étiquette src/app/components/document-list/filter-editor/filter-editor.component.ts 49 + Fara etichete - - Title: - Titre : + + Title: src/app/components/document-list/filter-editor/filter-editor.component.ts 53 + Titlu: - + Filter tags - Filtrer les étiquettes src/app/components/document-list/filter-editor/filter-editor.component.html 20 + Filtreaza etichete - + Filter correspondents - Filtrer les correspondants src/app/components/document-list/filter-editor/filter-editor.component.html 28 + Filtreaza corespondenti - + Filter document types - Filtrer les types de documents src/app/components/document-list/filter-editor/filter-editor.component.html 35 + Filtreaza tipuri de documente - + Reset filters - Réinitialiser les filtres src/app/components/document-list/filter-editor/filter-editor.component.html 58 + Resetati filtrele - + Not assigned - Non affecté src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 166 - Filter drop down element to filter for documents with no correspondent/type/tag assigned + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Neasignate - + Apply - Appliquer src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 + Aplica - + Last 7 days - Les 7 derniers jours src/app/components/common/date-dropdown/date-dropdown.component.ts 34 + Ultimele 7 zile - + Last month - Le mois dernier src/app/components/common/date-dropdown/date-dropdown.component.ts 35 + Ultima luna - + Last 3 months - Les 3 derniers mois src/app/components/common/date-dropdown/date-dropdown.component.ts 36 + Ultimele 3 luni - + Last year - L'année passée src/app/components/common/date-dropdown/date-dropdown.component.ts 37 + Ultimul an - + After - Après src/app/components/common/date-dropdown/date-dropdown.component.html 13 + Dupa - + Before - Avant src/app/components/common/date-dropdown/date-dropdown.component.html 38 + Inainte - + Clear - Réinitialiser src/app/components/common/date-dropdown/date-dropdown.component.html 18 + Goleste - + View - Vue src/app/components/document-list/document-card-large/document-card-large.component.html 50 + Vizualizare - - Created: - Créé le : + + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 67 + Creat: - + Filter by correspondent - Filtrer par correspondant src/app/components/document-list/document-card-large/document-card-large.component.html 20 + Filtreaza dupa corespondent - + Filter by tag - Filtrer par étiquette src/app/components/document-list/document-card-large/document-card-large.component.html 24 + Filtreaza dupa eticheta - + Score: - Score : src/app/components/document-list/document-card-large/document-card-large.component.html 62 + Scor: - + View in browser - Afficher dans le navigateur src/app/components/document-list/document-card-small/document-card-small.component.html 40 + Vizualizeaza in browser - - Error executing bulk operation: - Une erreur s'est produite lors de l'exécution de l'opération de masse : + + Error executing bulk operation: src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 + Eroare la executarea operatiunii in bloc: - - "" - "" + + "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 + "" - - "" and "" - "" et "" + + "" and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 115 - This is for messages like 'modify "tag1" and "tag2"' + This is for messages like 'modify "tag1" and "tag2"' + "" si "" - + , - , src/app/components/document-list/bulk-editor/bulk-editor.component.ts 117 - this is used to separate enumerations and should probably be a comma and a whitespace in most languages + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , - - and "" - et "" + + and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 118 - this is for messages like 'modify "tag1", "tag2" and "tag3"' + this is for messages like 'modify "tag1", "tag2" and "tag3"' + si "" - + Confirm tags assignment - Confirmer l'affectation des étiquettes src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 + Confirmati atribuirea etichetelor - - This operation will add the tag "" to selected document(s). - Cette action affectera l'étiquette "" au(x) document(s) sélectionné(s). + + This operation will add the tag "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 + Va fi adaugata eticheta "" la document(e) selectat(e). - - This operation will add the tags to selected document(s). - Cette action affectera les étiquettes au(x) document(s) sélectionné(s). + + This operation will add the tags to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 + Vor fi adaugate etichetele la document(e) selectat(e). - - This operation will remove the tag "" from selected document(s). - Cette action supprimera l'étiquette "" de(s) document(s) sélectionné(s). + + This operation will remove the tag "" from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 + Va fi eliminata eticheta "" din document(e) selectat(e). - - This operation will remove the tags from selected document(s). - Cette action supprimera les étiquettes de(s) document(s) sélectionné(s). + + This operation will remove the tags from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 + Vor fi eliminate etichetele din document(e) selectat(e). - - This operation will add the tags and remove the tags on selected document(s). - Cette action affectera les étiquettes et supprimera les étiquettes de(s) document(s) sélectionné(s). + + This operation will add the tags and remove the tags on selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 + Vor fi adaugate etichetele si vor fi eliminate etichetele pentru document(e) selectat(e). - + Confirm correspondent assignment - Confirmer l'affectation du correspondant src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 + Confirmati atribuirea corespondentului - - This operation will assign the correspondent "" to selected document(s). - Cette action affectera le correspondant "" au(x) document(s) sélectionné(s). + + This operation will assign the correspondent "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 + Va fi adaugat corespondentul "" la document(e) selectat(e). - - This operation will remove the correspondent from selected document(s). - Cette action supprimera le correspondant de(s) document(s) sélectionné(s). + + This operation will remove the correspondent from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 + Va fi eliminat corespondentul din document(e) selectat(e). - + Confirm document type assignment - Confirmer l'affectation du type de document src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 + Confirmati atribuirea tipului de document - - This operation will assign the document type "" to selected document(s). - Cette action affectera le type de document "" au(x) document(s) sélectionné(s). + + This operation will assign the document type "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 + Va fi atribuit tipul "" pentru document(e) selectat(e). - - This operation will remove the document type from selected document(s). - Cette action supprimera le type de document de(s) document(s) sélectionné(s). + + This operation will remove the document type from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 + Va fi eliminat tipul pentru document(e) selectat(e). - + Delete confirm - Confirmer la suppression src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 + Confirmati stergerea - - This operation will permanently delete selected document(s). - Cette action supprimera définitivement document(s) sélectionné(s). + + This operation will permanently delete selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 + document(e) selectat(e) vor fi sterse permanent. - + This operation cannot be undone. - Cette action est irréversible. src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 + Aceasta operatiune este ireversibila. - + Delete document(s) - Supprimer le(s) document(s) src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 + Sterge document(e) - + Select: - Sélectionner : src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 + Selecteaza: - + All - Tout src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 + Tot - + Edit: - Éditer : src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 + Editeaza: - + Download originals - Télécharger les originaux src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 + Descarca originalele - + Suggestions: - Suggestions : src/app/components/common/input/select/select.component.html 26 + Sugestii: - + Save current view - Enregistrer la vue actuelle src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 + Salveaza vizualizarea curenta - + Show all - Tout afficher src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 + Arata tot - + Statistics - Statistiques src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 + Statistici - - Total documents: - Nombre total de documents : + + Total documents: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 + Total documente: - - Documents in inbox: - Documents dans la boîte de réception : + + Documents in inbox: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 + Documente in inbox: - - Processing: - Traitement : + + Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 + In procesare: - - Failed: - Échec : + + Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 + Esuate: - - Added: - Ajout : + + Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 + Adaugate: - + Connecting... - Connexion... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 + Conectare... - + Uploading... - Téléchargement... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 + Incarcare... - + Upload complete, waiting... - Chargement terminé, en attente... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 + Incarcare completa, in asteptare... - - HTTP error: - Erreur HTTP : + + HTTP error: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 + Eroare HTTP: - + Upload new documents - Charger de nouveaux documents src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 + Incarca documente noi - + Drop documents here or - Déposer des documents ici ou src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Trageti documentele aici sau - + Browse files - Parcourir les fichiers src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + Rasfoiti fisiere - + Dismiss completed - Masquer lorsque terminé src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - This button dismisses all status messages about processed documents on the dashboard (failed and successful) + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Inlatura operatiunile finalizate - + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - {VAR_PLURAL, plural, =1 {Un document supplémentaire} other { documents supplémentaires}} src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 25 - This is shown as a summary line when there are more than 5 document in the processing pipeline. + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {Inca un document} other {Inca documente}} - + Open document - Ouvrir le document src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 + Deschide document - + First steps - Premiers pas src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 + Primii pasi - + Paperless is running! :) - Paperless-ng fonctionne ! :) src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 + Paperless ruleaza! :) - - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - Vous pouvez commencer par télécharger des documents en les déposant dans la boîte de téléchargement de fichiers à droite ou en les déposant dans le dossier de traitement configuré, et ils commenceront à apparaître dans la liste des documents. Une fois que vous avez ajouté des métadonnées à vos documents, utilisez les mécanismes de filtrage de Paperless-ng pour créer des vues personnalisées (telles que "Récemment ajouté", "Marqué À FAIRE") et elles apparaîtront sur le tableau de bord à la place de ce message. + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 + Puteti incepe sa incarcati fisiere tragandu-le in casuta din dreapta sau in directorul configurat de consum, si vor incepe sa apara in lista de documente. Dupa ce ati adaugat metadate documentelor, folositi mecanismele de filtrare pentru a crea vizualizari personalizate (cum ar fi "Adaugate recent", "Etichetate URGENT"), ce vor aparea in locul acestui mesaj. - + Paperless offers some more features that try to make your life easier: - Paperless-ng offre quelques fonctionnalités supplémentaires qui tendent à vous faciliter la vie : src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 + Paperless mai ofera urmatoarele functii pentru a va face viata mai usoara: - - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - Une fois que vous avez quelques documents dans Paperless-ng et que vous y avez ajouté des métadonnées, Paperless-ng peut attribuer automatiquement ces métadonnées à de nouveaux documents. + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 + Dupa ce aveti cateva documente si le adaugati metadate, Paperless poate atribui acele metadate in mod automat pentru documente noi. - + You can configure paperless to read your mails and add documents from attached files. - Vous pouvez configurer Paperless-ng pour lire vos courriels et ajouter des documents à partir des pièces jointes. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 + Puteti configura Paperless sa va citeasca email-urile si sa adauge documentele atasate. - + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - Consultez la documentation sur l'utilisation de ces fonctionnalités. La section sur l'utilisation de base contient également des informations sur la manière d'utiliser Paperless-ng en général. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 + Consultati documentatia pentru a afla cum sa folositi aceste functii. Sectiunea de baza contine informatii despre cum sa folositi Paperless in general. - + Metadata - Métadonnées src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 + Metadate - + Select - Sélectionner src/app/components/common/select-dialog/select-dialog.component.ts 18 + Selecteaza - + Please select an object - Veuillez sélectionner un objet src/app/components/common/select-dialog/select-dialog.component.ts 21 + Selectati un obiect - + Invalid date. - Date incorrecte. src/app/components/common/input/date/date.component.html 14 + Data invalida. - + Yes - Oui src/app/pipes/yes-no.pipe.ts 9 + Da - + No - Non src/app/pipes/yes-no.pipe.ts 9 + Nu - + (no title) - (sans titre) src/app/pipes/document-title.pipe.ts 12 + (fara titlu) - + English (US) - Anglais (US) src/app/services/settings.service.ts 90 + Engleza (SUA) - + English (GB) - Anglais (GB) src/app/services/settings.service.ts 91 + Engleza (UK) - + German - Allemand src/app/services/settings.service.ts 92 + Germana - + Dutch - Néerlandais src/app/services/settings.service.ts 93 + Olandeza - + French - Français src/app/services/settings.service.ts 94 + Franceza - + Portuguese (Brazil) - Portugais (Brésil) src/app/services/settings.service.ts 95 + Portugheza (Brazilia) - + Italian - Italien src/app/services/settings.service.ts 96 + Italiana - + Romanian - Roumain src/app/services/settings.service.ts 97 + Romana - + ISO 8601 - ISO 8601 src/app/services/settings.service.ts 102 + ISO 8601 - + Document already exists. - Le document existe déjà. src/app/services/consumer-status.service.ts 15 + Documentul exista deja. - + File not found. - Fichier non trouvé. src/app/services/consumer-status.service.ts 16 + Fisierul nu a fost gasit. - + Pre-consume script does not exist. - Le script de pré-traitement n'existe pas. src/app/services/consumer-status.service.ts 17 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Scriptul pre-consum nu exista. - + Error while executing pre-consume script. - Erreur lors de l'exécution du script de pré-traitement. src/app/services/consumer-status.service.ts 18 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Eroare la executia scriptului pre-consum. - + Post-consume script does not exist. - Le script de post-traitement n'existe pas. src/app/services/consumer-status.service.ts 19 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Scriptul post-consum nu exista. - + Error while executing post-consume script. - Erreur lors de l'exécution du script de post-traitement. src/app/services/consumer-status.service.ts 20 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Eroare la executia scriptului post-consum. - + Received new file. - Réception d'un nouveau fichier. src/app/services/consumer-status.service.ts 21 + Fisier nou primit. - + File type not supported. - Type de fichier non pris en charge. src/app/services/consumer-status.service.ts 22 + Tip de fisier nesuportat. - + Processing document... - Traitement du document... src/app/services/consumer-status.service.ts 23 + Se proceseaza documentul... - + Generating thumbnail... - Génération de vignette... src/app/services/consumer-status.service.ts 24 + Se genereaza miniatura... - + Retrieving date from document... - Extraction de la date du document... src/app/services/consumer-status.service.ts 25 + Se extrage data din document... - + Saving document... - Enregistrement du document... src/app/services/consumer-status.service.ts 26 + Se salveaza documentul... - + Finished. - Terminé. src/app/services/consumer-status.service.ts 27 + Terminat. - + Error - Erreur src/app/services/toast.service.ts 35 + Eroare - + Information - Information src/app/services/toast.service.ts 39 + Informatii - + ASN - NSA src/app/services/rest/document.service.ts 17 + ASN - + Correspondent - Correspondant src/app/services/rest/document.service.ts 18 + Corespondent - + Document type - Type de document src/app/services/rest/document.service.ts 20 + Tipul documentului - + Created - Date de création src/app/services/rest/document.service.ts 21 + Creat - + Added - Date d'ajout src/app/services/rest/document.service.ts 22 + Adaugat - + Modified - Date de modification src/app/services/rest/document.service.ts 23 + Modificat - + Create new item - Créer un nouvel élément src/app/components/common/edit-dialog/edit-dialog.component.ts 50 + Creeaza articol nou - + Edit item - Éditer l'élément src/app/components/common/edit-dialog/edit-dialog.component.ts 54 + Modifica articol - - Could not save element: - Impossible d'enregistrer l'élément : + + Could not save element: src/app/components/common/edit-dialog/edit-dialog.component.ts 58 + Nu s-a putut salva elementul: - + Automatic - Automatique src/app/components/manage/generic-list/generic-list.component.ts 39 + Automat - + Do you really want to delete this element? - Voulez-vous vraiment supprimer cet élément ? src/app/components/manage/generic-list/generic-list.component.ts 97 + Sunteti sigur ca doriti sa stergeti acest element? - + Associated documents will not be deleted. - Les documents associés ne seront pas supprimés. src/app/components/manage/generic-list/generic-list.component.ts 104 + Documentele asociate nu vor fi sterse. - + Delete - Supprimer src/app/components/manage/generic-list/generic-list.component.ts 106 + Sterge - - Error while deleting element: - Une erreur s'est produite lors de la suppression de l'élément : + + Error while deleting element: src/app/components/manage/generic-list/generic-list.component.ts 114 + Eroare la stergerea elementului: - + Any word - Un des mots src/app/data/matching-model.ts 12 + Oricare cuvant - + Any: Document contains any of these words (space separated) - Un des mots : contient l'un de ces mots (séparés par des espaces) src/app/data/matching-model.ts 12 + Oricare: Documentul contine oricare dintre aceste cuvinte (separate prin spatiu) - + All words - Tous les mots src/app/data/matching-model.ts 13 + Toate cuvintele - + All: Document contains all of these words (space separated) - Tous les mots : contient tous ces mots (séparés par des espaces) src/app/data/matching-model.ts 13 + Toate: Documentul contine toate aceste cuvinte (separate prin spatiu) - + Exact match - Concordance exacte src/app/data/matching-model.ts 14 + Potrivire exacta - + Exact: Document contains this string - Concordance exacte : contient cette chaîne de caractères src/app/data/matching-model.ts 14 + Exact: Documentul contine acest sir de caractere - + Regular expression - Expression régulière src/app/data/matching-model.ts 15 + Expresie regulata - + Regular expression: Document matches this regular expression - Expression régulière : correspond à cette expression régulière src/app/data/matching-model.ts 15 + Expresie regulata: Documentul se potriveste cu aceasta expresie regulata - + Fuzzy word - Mot approximatif src/app/data/matching-model.ts 16 + Cuvant neclar - + Fuzzy: Document contains a word similar to this word - Mot approximatif : contient un mot similaire à ce mot src/app/data/matching-model.ts 16 + Neclar: Documentul contine un cuvant similar cu acesta - + Auto: Learn matching automatically - Automatique : apprentissage automatique du rapprochement src/app/data/matching-model.ts 17 + Auto: Invata potrivirile automat - \ No newline at end of file + diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf new file mode 100644 index 000000000..f018f5f31 --- /dev/null +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf new file mode 100644 index 000000000..d5b3de020 --- /dev/null +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/locale/messages.ro.xlf b/src-ui/src/locale/messages.xh_ZA.xlf similarity index 65% rename from src-ui/src/locale/messages.ro.xlf rename to src-ui/src/locale/messages.xh_ZA.xlf index c016b41a1..f17fd8941 100644 --- a/src-ui/src/locale/messages.ro.xlf +++ b/src-ui/src/locale/messages.xh_ZA.xlf @@ -1,2281 +1,2282 @@ - - + + + - + Document added - Document adaugat src/app/app.component.ts 51 + crwdns2838:0crwdne2838:0 - - Document was added to paperless. - Documentul a fost adaugat + + Document was added to paperless. src/app/app.component.ts 51 + crwdns2840:0crwdne2840:0 - + Open document - Deschide document src/app/app.component.ts 51 + crwdns2842:0crwdne2842:0 - - Could not add : - Nu s-a putut adauga : + + Could not add : src/app/app.component.ts 59 + crwdns2844:0crwdne2844:0 - + New document detected - Document nou detectat src/app/app.component.ts 65 + crwdns2846:0crwdne2846:0 - - Document is being processed by paperless. - Documentul este in procesare + + Document is being processed by paperless. src/app/app.component.ts 65 + crwdns2848:0crwdne2848:0 - + Documents - Documente src/app/components/document-list/document-list.component.ts 49 + crwdns2850:0crwdne2850:0 - - View "" saved successfully. - Vizualizarea "" a fost salvata + + View "" saved successfully. src/app/components/document-list/document-list.component.ts 115 + crwdns2852:0crwdne2852:0 - - View "" created successfully. - Vizualizarea "" a fost creata + + View "" created successfully. src/app/components/document-list/document-list.component.ts 136 + crwdns2854:0crwdne2854:0 - + Select - Selecteaza src/app/components/document-list/document-list.component.html 7 + crwdns2856:0crwdne2856:0 - + Select none - Deselecteaza tot src/app/components/document-list/document-list.component.html 10 + crwdns2858:0crwdne2858:0 - + Select page - Selecteaza pagina src/app/components/document-list/document-list.component.html 11 + crwdns2860:0crwdne2860:0 - + Select all - Selecteaza tot src/app/components/document-list/document-list.component.html 12 + crwdns2862:0crwdne2862:0 - + Sort - Sorteaza src/app/components/document-list/document-list.component.html 39 + crwdns2864:0crwdne2864:0 - + Views - Vizualizari src/app/components/document-list/document-list.component.html 64 + crwdns2866:0crwdne2866:0 - + Save as... - Salveaza ca... src/app/components/document-list/document-list.component.html 72 + crwdns2868:0crwdne2868:0 - - Save "" - Salveaza "" + + Save "" src/app/components/document-list/document-list.component.html 71 + crwdns2870:0{{list.activeSavedViewTitle}}crwdne2870:0 - + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} - {VAR_PLURAL, plural, =1 {Am selectat din 1 document} other {Am selectat din documente}} src/app/components/document-list/document-list.component.html 85 + crwdns2872:0VAR_PLURAL={VAR_PLURAL}crwdne2872:0 - + {VAR_PLURAL, plural, =1 {One document} other { documents}} - {VAR_PLURAL, plural, =1 {Un document} other { documente}} src/app/components/document-list/document-list.component.html 86 + crwdns2874:0VAR_PLURAL={VAR_PLURAL}crwdne2874:0 - + (filtered) - (filtrat) src/app/components/document-list/document-list.component.html 86 + crwdns2876:0crwdne2876:0 - + ASN - ASN src/app/components/document-list/document-list.component.html 105 + crwdns2878:0crwdne2878:0 - + Correspondent - Corespondent src/app/components/document-list/document-list.component.html 111 + crwdns2880:0crwdne2880:0 - + Title - Titlu src/app/components/document-list/document-list.component.html 117 + crwdns2882:0crwdne2882:0 - + Document type - Tipul documentului src/app/components/document-list/document-list.component.html 123 + crwdns2884:0crwdne2884:0 - + Created - Creat src/app/components/document-list/document-list.component.html 129 + crwdns2886:0crwdne2886:0 - + Added - Adaugat src/app/components/document-list/document-list.component.html 135 + crwdns2888:0crwdne2888:0 - + Confirm delete - Confirma stergerea src/app/components/document-detail/document-detail.component.ts 203 + crwdns2890:0crwdne2890:0 - - Do you really want to delete document ""? - Sunteti sigur ca doriti sa stergeti documentul ""? + + Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts 204 + crwdns2892:0crwdne2892:0 - + The files for this document will be deleted permanently. This operation cannot be undone. - Fisierele pentru acest document vor fi sterse permanent. Operatiunea este ireversibila. src/app/components/document-detail/document-detail.component.ts 205 + crwdns2894:0crwdne2894:0 - + Delete document - Sterge document src/app/components/document-detail/document-detail.component.ts 207 + crwdns2896:0crwdne2896:0 - - Error deleting document: - Eroare la stergerea documentului: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts 214 + crwdns2898:0crwdne2898:0 - + Delete - Sterge src/app/components/document-detail/document-detail.component.html 15 + crwdns2900:0crwdne2900:0 - + Download - Descarca src/app/components/document-detail/document-detail.component.html 23 + crwdns2902:0crwdne2902:0 - + More like this - Similare src/app/components/document-detail/document-detail.component.html 38 + crwdns2904:0crwdne2904:0 - + Close - Inchide src/app/components/document-detail/document-detail.component.html 44 + crwdns2906:0crwdne2906:0 - + Details - Detalii src/app/components/document-detail/document-detail.component.html 56 + crwdns2908:0crwdne2908:0 - + Content - Continut src/app/components/document-detail/document-detail.component.html 72 + crwdns2910:0crwdne2910:0 - + Metadata - Metadate src/app/components/document-detail/document-detail.component.html 81 + crwdns2912:0crwdne2912:0 - + Discard - Renunta src/app/components/document-detail/document-detail.component.html 130 + crwdns2914:0crwdne2914:0 - + Save - Salveaza src/app/components/document-detail/document-detail.component.html 132 + crwdns2916:0crwdne2916:0 - + Page - Pagina src/app/components/document-detail/document-detail.component.html 4 + crwdns2918:0crwdne2918:0 - - of - din + + of src/app/components/document-detail/document-detail.component.html 8 + crwdns2920:0{{previewNumPages}}crwdne2920:0 - + Download original - Descarca originalul src/app/components/document-detail/document-detail.component.html 29 + crwdns2922:0crwdne2922:0 - + Archive serial number - Numar de arhiva src/app/components/document-detail/document-detail.component.html 60 + crwdns2924:0crwdne2924:0 - + Date created - Data crearii src/app/components/document-detail/document-detail.component.html 61 + crwdns2926:0crwdne2926:0 - + Date modified - Data ultimei modificari src/app/components/document-detail/document-detail.component.html 87 + crwdns2928:0crwdne2928:0 - + Date added - Data adaugarii src/app/components/document-detail/document-detail.component.html 91 + crwdns2930:0crwdne2930:0 - + Media filename - Numele fisierului media src/app/components/document-detail/document-detail.component.html 95 + crwdns2932:0crwdne2932:0 - + Original MD5 checksum - MD5 original src/app/components/document-detail/document-detail.component.html 99 + crwdns2934:0crwdne2934:0 - + Original file size - Marimea fisierului original src/app/components/document-detail/document-detail.component.html 103 + crwdns2936:0crwdne2936:0 - + Original mime type - Tipul fisierului original src/app/components/document-detail/document-detail.component.html 107 + crwdns2938:0crwdne2938:0 - + Archive MD5 checksum - MD5 arhiva src/app/components/document-detail/document-detail.component.html 111 + crwdns2940:0crwdne2940:0 - + Archive file size - Marimea arhivei src/app/components/document-detail/document-detail.component.html 115 + crwdns2942:0crwdne2942:0 - + Original document metadata - Metadatele documentului original src/app/components/document-detail/document-detail.component.html 121 + crwdns2944:0crwdne2944:0 - + Archived document metadata - Metadatele documentului arhivat src/app/components/document-detail/document-detail.component.html 122 + crwdns2946:0crwdne2946:0 - + Save & next - Salveaza si continua src/app/components/document-detail/document-detail.component.html 131 + crwdns2948:0crwdne2948:0 - - Hello , welcome to Paperless-ng! - Salut, , bine ai venit la Paperless-ng! + + Hello , welcome to Paperless-ng! src/app/components/dashboard/dashboard.component.ts 33 + crwdns2950:0crwdne2950:0 - + Welcome to Paperless-ng! - Bine ai venit la Paperless-ng! src/app/components/dashboard/dashboard.component.ts 35 + crwdns2952:0crwdne2952:0 - + Dashboard - Tablou de bord src/app/components/dashboard/dashboard.component.html 1 + crwdns2954:0crwdne2954:0 - - Do you really want to delete the tag ""? - Sunteti sigur ca doriti sa stergeti eticheta ""? + + Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts 26 + crwdns2956:0crwdne2956:0 - + Tags - Etichete src/app/components/manage/tag-list/tag-list.component.html 1 + crwdns2958:0crwdne2958:0 - + Create - Creeaza src/app/components/manage/tag-list/tag-list.component.html 2 + crwdns2960:0crwdne2960:0 - + Filter by: - Filtreaza dupa: src/app/components/manage/tag-list/tag-list.component.html 8 + crwdns2962:0crwdne2962:0 - + Name - Nume src/app/components/manage/tag-list/tag-list.component.html 9 + crwdns2964:0crwdne2964:0 - + Color - Culoare src/app/components/manage/tag-list/tag-list.component.html 20 + crwdns2966:0crwdne2966:0 - + Matching - Potrivire src/app/components/manage/tag-list/tag-list.component.html 21 + crwdns2968:0crwdne2968:0 - + Document count - Numar de documente src/app/components/manage/tag-list/tag-list.component.html 22 + crwdns2970:0crwdne2970:0 - + Actions - Acțiuni src/app/components/manage/tag-list/tag-list.component.html 23 + crwdns2972:0crwdne2972:0 - + Documents - Documente src/app/components/manage/tag-list/tag-list.component.html 38 + crwdns2974:0crwdne2974:0 - + Edit - Editează src/app/components/manage/tag-list/tag-list.component.html 43 + crwdns2976:0crwdne2976:0 - - Do you really want to delete the document type ""? - Sunteti sigur ca doriti sa stergeti tipul de document ""? + + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 + crwdns2978:0crwdne2978:0 - + Document types - Tipuri de documente src/app/components/manage/document-type-list/document-type-list.component.html 1 + crwdns2980:0crwdne2980:0 - + Logs - Jurnale src/app/components/manage/logs/logs.component.html 1 + crwdns2982:0crwdne2982:0 - - Saved view "" deleted. - Vizualizarea "" a fost stearsa. + + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts 68 + crwdns2984:0crwdne2984:0 - + Settings saved successfully. - Setarile au fost salvate. src/app/components/manage/settings/settings.component.ts 89 + crwdns2986:0crwdne2986:0 - + Use system language - Foloseste limba sistemului src/app/components/manage/settings/settings.component.ts 94 + crwdns2988:0crwdne2988:0 - + Use date format of display language - Foloseste formatul datei corespunzator limbii de afisare src/app/components/manage/settings/settings.component.ts 100 + crwdns2990:0crwdne2990:0 - - Error while storing settings on server: - Eroare la stocarea setarilor pe server: + + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts 117 + crwdns2992:0crwdne2992:0 - + Settings - Setari src/app/components/manage/settings/settings.component.html 1 + crwdns2994:0crwdne2994:0 - + General settings - Setari generale src/app/components/manage/settings/settings.component.html 10 + crwdns2996:0crwdne2996:0 - + Notifications - Notificari src/app/components/manage/settings/settings.component.html 116 + crwdns2998:0crwdne2998:0 - + Saved views - Vizualizari src/app/components/manage/settings/settings.component.html 134 + crwdns3000:0crwdne3000:0 - + Appearance - Afisare src/app/components/manage/settings/settings.component.html 13 + crwdns3002:0crwdne3002:0 - + Display language - Limba de afisare src/app/components/manage/settings/settings.component.html 17 + crwdns3004:0crwdne3004:0 - + You need to reload the page after applying a new language. - Trebuie sa reincarcati pagina dupa schimbarea limbii. src/app/components/manage/settings/settings.component.html 25 + crwdns3006:0crwdne3006:0 - + Date display - Afisarea datei src/app/components/manage/settings/settings.component.html 32 + crwdns3008:0crwdne3008:0 - + Date format - Formatul datei src/app/components/manage/settings/settings.component.html 45 + crwdns3010:0crwdne3010:0 - - Short: - Scurt: + + Short: src/app/components/manage/settings/settings.component.html 51 + crwdns3012:0{today | customDate:'shortDate':null:computedDateLocale}crwdne3012:0 - - Medium: - Mediu: + + Medium: src/app/components/manage/settings/settings.component.html 55 + crwdns3014:0{today | customDate:'mediumDate':null:computedDateLocale}crwdne3014:0 - - Long: - Lung: + + Long: src/app/components/manage/settings/settings.component.html 59 + crwdns3016:0{today | customDate:'longDate':null:computedDateLocale}crwdne3016:0 - + Items per page - Articole pe pagina src/app/components/manage/settings/settings.component.html 67 + crwdns3018:0crwdne3018:0 - + Document editor - Editor de documente src/app/components/manage/settings/settings.component.html 83 + crwdns3020:0crwdne3020:0 - + Use PDF viewer provided by the browser - Folositi browserul pentru a deschide PDF-uri src/app/components/manage/settings/settings.component.html 87 + crwdns3022:0crwdne3022:0 - + This is usually faster for displaying large PDF documents, but it might not work on some browsers. - Aceasta optiune este mai rapida pentru PDF-uri mari, dar nu este compatibila cu toate browserele. src/app/components/manage/settings/settings.component.html 87 + crwdns3024:0crwdne3024:0 - + Dark mode - Mod intunecat src/app/components/manage/settings/settings.component.html 94 + crwdns3026:0crwdne3026:0 - + Use system settings - Folositi setarile sistemului src/app/components/manage/settings/settings.component.html 97 + crwdns3028:0crwdne3028:0 - + Enable dark mode - Activati modul intunecat src/app/components/manage/settings/settings.component.html 98 + crwdns3030:0crwdne3030:0 - + Invert thumbnails in dark mode - Inverseaza miniaturile in modul intunecat src/app/components/manage/settings/settings.component.html 99 + crwdns3032:0crwdne3032:0 - + Bulk editing - Editare in bloc src/app/components/manage/settings/settings.component.html 103 + crwdns3034:0crwdne3034:0 - + Show confirmation dialogs - Afisati dialoguri de confirmare src/app/components/manage/settings/settings.component.html 107 + crwdns3036:0crwdne3036:0 - + Deleting documents will always ask for confirmation. - Stergerea documentelor necesita intotdeauna confirmare. src/app/components/manage/settings/settings.component.html 107 + crwdns3038:0crwdne3038:0 - + Apply on close - Aplica la iesire src/app/components/manage/settings/settings.component.html 108 + crwdns3040:0crwdne3040:0 - + Document processing - Procesarea documentelor src/app/components/manage/settings/settings.component.html 119 + crwdns3042:0crwdne3042:0 - + Show notifications when new documents are detected - Afisati notificari cand sunt detectate documente noi src/app/components/manage/settings/settings.component.html 123 + crwdns3044:0crwdne3044:0 - + Show notifications when document processing completes successfully - Afisati notificari cand procesarea unui document este completa src/app/components/manage/settings/settings.component.html 124 + crwdns3046:0crwdne3046:0 - + Show notifications when document processing fails - Afisati notificari cand procesarea unui document esueaza src/app/components/manage/settings/settings.component.html 125 + crwdns3048:0crwdne3048:0 - + Suppress notifications on dashboard - Ascundeti notificarile pe tabloul de bord src/app/components/manage/settings/settings.component.html 126 + crwdns3050:0crwdne3050:0 - + This will suppress all messages about document processing status on the dashboard. - Aceasta setare va opri mesajele despre procesarea documentelor pe tabloul de bord src/app/components/manage/settings/settings.component.html 126 + crwdns3052:0crwdne3052:0 - + Appears on - Apare pe src/app/components/manage/settings/settings.component.html 146 + crwdns3054:0crwdne3054:0 - + Show on dashboard - Afiseaza pe tabloul de bord src/app/components/manage/settings/settings.component.html 149 + crwdns3056:0crwdne3056:0 - + Show in sidebar - Afiseaza in bara laterala src/app/components/manage/settings/settings.component.html 153 + crwdns3058:0crwdne3058:0 - + No saved views defined. - Nu sunt definite vizualizari. src/app/components/manage/settings/settings.component.html 163 + crwdns3060:0crwdne3060:0 - + 404 Not Found - 404 Pagina nu a fost gasita src/app/components/not-found/not-found.component.html 7 + crwdns3062:0crwdne3062:0 - - Do you really want to delete the correspondent ""? - Sunteti sigur ca doriti sa stergeti corespondentul ""? + + Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 + crwdns3064:0crwdne3064:0 - + Correspondents - Corespondenti src/app/components/manage/correspondent-list/correspondent-list.component.html 1 + crwdns3066:0crwdne3066:0 - + Last correspondence - Ultima corespondenta src/app/components/manage/correspondent-list/correspondent-list.component.html 22 + crwdns3068:0crwdne3068:0 - + Confirmation - Confirmare src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 + crwdns3070:0crwdne3070:0 - + Confirm - Confirma src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 + crwdns3072:0crwdne3072:0 - + Cancel - Anuleaza src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 + crwdns3074:0crwdne3074:0 - + Create new correspondent - Creeaza un nou corespondent src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 + crwdns3076:0crwdne3076:0 - + Edit correspondent - Modifica un corespondent src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 + crwdns3078:0crwdne3078:0 - + Matching algorithm - Algoritm de potrivire src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 + crwdns3080:0crwdne3080:0 - + Matching pattern - Model de potrivire src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 + crwdns3082:0crwdne3082:0 - + Case insensitive - Ignora majusculele src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 + crwdns3084:0crwdne3084:0 - + Create new tag - Creeaza o noua eticheta src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 + crwdns3086:0crwdne3086:0 - + Edit tag - Modifica o eticheta src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 + crwdns3088:0crwdne3088:0 - + Inbox tag - Eticheta inbox src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + crwdns3090:0crwdne3090:0 - + Inbox tags are automatically assigned to all consumed documents. - Etichetele inbox sunt atribuite automat documentelor consumate. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 + crwdns3092:0crwdne3092:0 - + Create new document type - Creeaza un nou tip de document src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 + crwdns3094:0crwdne3094:0 - + Edit document type - Modifica un tip de document src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 + crwdns3096:0crwdne3096:0 - + Search results - Rezultatele cautarii src/app/components/search/search.component.html 1 + crwdns3098:0crwdne3098:0 - - Invalid search query: - Interogare invalida: + + Invalid search query: src/app/components/search/search.component.html 4 + crwdns3100:0{{errorMessage}}crwdne3100:0 - - Showing documents similar to - Documente similare cu + + Showing documents similar to src/app/components/search/search.component.html 7 + crwdns3102:0{{more_like}}crwdnd3102:0{{more_like_doc?.original_file_name}}crwdnd3102:0{{more_like_doc?.original_file_name}}crwdne3102:0 - - Search query: - Interogare: + + Search query: src/app/components/search/search.component.html 11 + crwdns3104:0{{query}}crwdnd3104:0{{query}}crwdne3104:0 - - Did you mean ""? - Ati vrut sa scrieti ""? + + Did you mean ""? src/app/components/search/search.component.html 13 + crwdns3106:0[routerLink]crwdnd3106:0{{correctedQuery}}crwdnd3106:0{{correctedQuery}}crwdne3106:0 - + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - {VAR_PLURAL, plural, =0 {Niciun rezultat} =1 {Un rezultat} other { rezultate}} src/app/components/search/search.component.html 18 + crwdns3108:0VAR_PLURAL={VAR_PLURAL}crwdne3108:0 - + Paperless-ng - Paperless-ng src/app/components/app-frame/app-frame.component.html 11 - app title + app title + crwdns3110:0crwdne3110:0 - + Search documents - Cauta documente src/app/components/app-frame/app-frame.component.html 15 + crwdns3112:0crwdne3112:0 - + Logout - Deconectare src/app/components/app-frame/app-frame.component.html 45 + crwdns3114:0crwdne3114:0 - + Manage - Administreaza src/app/components/app-frame/app-frame.component.html 112 + crwdns3116:0crwdne3116:0 - + Admin - Administrator src/app/components/app-frame/app-frame.component.html 154 + crwdns3118:0crwdne3118:0 - + Info - Informatii src/app/components/app-frame/app-frame.component.html 160 + crwdns3120:0crwdne3120:0 - + Documentation - Documentatie src/app/components/app-frame/app-frame.component.html 167 + crwdns3122:0crwdne3122:0 - + GitHub - GitHub src/app/components/app-frame/app-frame.component.html 175 + crwdns3124:0crwdne3124:0 - + Suggest an idea - Sugestii src/app/components/app-frame/app-frame.component.html 181 + crwdns3126:0crwdne3126:0 - - Logged in as - Autentificat ca + + Logged in as src/app/components/app-frame/app-frame.component.html 34 + crwdns3128:0{{displayName}}crwdne3128:0 - + Open documents - Deschide documente src/app/components/app-frame/app-frame.component.html 87 + crwdns3130:0crwdne3130:0 - + Close all - Inchide tot src/app/components/app-frame/app-frame.component.html 106 + crwdns3132:0crwdne3132:0 - + Title - Titlu src/app/components/document-list/filter-editor/filter-editor.component.ts 73 + crwdns3134:0crwdne3134:0 - + Title & content - Titlu si continut src/app/components/document-list/filter-editor/filter-editor.component.ts 74 + crwdns3136:0crwdne3136:0 - - Correspondent: - Corespondent: + + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts 32 + crwdns3138:0crwdne3138:0 - + Without correspondent - Fara corespondent src/app/components/document-list/filter-editor/filter-editor.component.ts 34 + crwdns3140:0crwdne3140:0 - - Type: - Tip: + + Type: src/app/components/document-list/filter-editor/filter-editor.component.ts 39 + crwdns3142:0crwdne3142:0 - + Without document type - Fara tip src/app/components/document-list/filter-editor/filter-editor.component.ts 41 + crwdns3144:0crwdne3144:0 - - Tag: - Eticheta: + + Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts 45 + crwdns3146:0crwdne3146:0 - + Without any tag - Fara etichete src/app/components/document-list/filter-editor/filter-editor.component.ts 49 + crwdns3148:0crwdne3148:0 - - Title: - Titlu: + + Title: src/app/components/document-list/filter-editor/filter-editor.component.ts 53 + crwdns3150:0crwdne3150:0 - + Filter tags - Filtreaza etichete src/app/components/document-list/filter-editor/filter-editor.component.html 20 + crwdns3152:0crwdne3152:0 - + Filter correspondents - Filtreaza corespondenti src/app/components/document-list/filter-editor/filter-editor.component.html 28 + crwdns3154:0crwdne3154:0 - + Filter document types - Filtreaza tipuri de documente src/app/components/document-list/filter-editor/filter-editor.component.html 35 + crwdns3156:0crwdne3156:0 - + Reset filters - Resetati filtrele src/app/components/document-list/filter-editor/filter-editor.component.html 58 + crwdns3158:0crwdne3158:0 - + Not assigned - Neasignate src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 166 - Filter drop down element to filter for documents with no correspondent/type/tag assigned + Filter drop down element to filter for documents with no correspondent/type/tag assigned + crwdns3160:0crwdne3160:0 - + Apply - Aplica src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 + crwdns3162:0crwdne3162:0 - + Last 7 days - Ultimele 7 zile src/app/components/common/date-dropdown/date-dropdown.component.ts 34 + crwdns3164:0crwdne3164:0 - + Last month - Ultima luna src/app/components/common/date-dropdown/date-dropdown.component.ts 35 + crwdns3166:0crwdne3166:0 - + Last 3 months - Ultimele 3 luni src/app/components/common/date-dropdown/date-dropdown.component.ts 36 + crwdns3168:0crwdne3168:0 - + Last year - Ultimul an src/app/components/common/date-dropdown/date-dropdown.component.ts 37 + crwdns3170:0crwdne3170:0 - + After - Dupa src/app/components/common/date-dropdown/date-dropdown.component.html 13 + crwdns3172:0crwdne3172:0 - + Before - Inainte src/app/components/common/date-dropdown/date-dropdown.component.html 38 + crwdns3174:0crwdne3174:0 - + Clear - Goleste src/app/components/common/date-dropdown/date-dropdown.component.html 18 + crwdns3176:0crwdne3176:0 - + View - Vizualizare src/app/components/document-list/document-card-large/document-card-large.component.html 50 + crwdns3178:0crwdne3178:0 - - Created: - Creat: + + Created: src/app/components/document-list/document-card-large/document-card-large.component.html 67 + crwdns3180:0{{document.created | customDate}}crwdne3180:0 - + Filter by correspondent - Filtreaza dupa corespondent src/app/components/document-list/document-card-large/document-card-large.component.html 20 + crwdns3182:0crwdne3182:0 - + Filter by tag - Filtreaza dupa eticheta src/app/components/document-list/document-card-large/document-card-large.component.html 24 + crwdns3184:0crwdne3184:0 - + Score: - Scor: src/app/components/document-list/document-card-large/document-card-large.component.html 62 + crwdns3186:0crwdne3186:0 - + View in browser - Vizualizeaza in browser src/app/components/document-list/document-card-small/document-card-small.component.html 40 + crwdns3188:0crwdne3188:0 - - Error executing bulk operation: - Eroare la executarea operatiunii in bloc: + + Error executing bulk operation: src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 + crwdns3190:0crwdne3190:0 - - "" - "" + + "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 + crwdns3192:0[0]crwdne3192:0 - - "" and "" - "" si "" + + "" and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 115 - This is for messages like 'modify "tag1" and "tag2"' + This is for messages like 'modify "tag1" and "tag2"' + crwdns3194:0[0]crwdnd3194:0[1]crwdne3194:0 - + , - , src/app/components/document-list/bulk-editor/bulk-editor.component.ts 117 - this is used to separate enumerations and should probably be a comma and a whitespace in most languages + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + crwdns3196:0crwdne3196:0 - - and "" - si "" + + and "" src/app/components/document-list/bulk-editor/bulk-editor.component.ts 118 - this is for messages like 'modify "tag1", "tag2" and "tag3"' + this is for messages like 'modify "tag1", "tag2" and "tag3"' + crwdns3198:0crwdne3198:0 - + Confirm tags assignment - Confirmati atribuirea etichetelor src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 + crwdns3200:0crwdne3200:0 - - This operation will add the tag "" to selected document(s). - Va fi adaugata eticheta "" la document(e) selectat(e). + + This operation will add the tag "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 + crwdns3202:0crwdne3202:0 - - This operation will add the tags to selected document(s). - Vor fi adaugate etichetele la document(e) selectat(e). + + This operation will add the tags to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 + crwdns3204:0crwdne3204:0 - - This operation will remove the tag "" from selected document(s). - Va fi eliminata eticheta "" din document(e) selectat(e). + + This operation will remove the tag "" from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 + crwdns3206:0crwdne3206:0 - - This operation will remove the tags from selected document(s). - Vor fi eliminate etichetele din document(e) selectat(e). + + This operation will remove the tags from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 + crwdns3208:0crwdne3208:0 - - This operation will add the tags and remove the tags on selected document(s). - Vor fi adaugate etichetele si vor fi eliminate etichetele pentru document(e) selectat(e). + + This operation will add the tags and remove the tags on selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 + crwdns3210:0crwdne3210:0 - + Confirm correspondent assignment - Confirmati atribuirea corespondentului src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 + crwdns3212:0crwdne3212:0 - - This operation will assign the correspondent "" to selected document(s). - Va fi adaugat corespondentul "" la document(e) selectat(e). + + This operation will assign the correspondent "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 + crwdns3214:0crwdne3214:0 - - This operation will remove the correspondent from selected document(s). - Va fi eliminat corespondentul din document(e) selectat(e). + + This operation will remove the correspondent from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 + crwdns3216:0crwdne3216:0 - + Confirm document type assignment - Confirmati atribuirea tipului de document src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 + crwdns3218:0crwdne3218:0 - - This operation will assign the document type "" to selected document(s). - Va fi atribuit tipul "" pentru document(e) selectat(e). + + This operation will assign the document type "" to selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 + crwdns3220:0crwdne3220:0 - - This operation will remove the document type from selected document(s). - Va fi eliminat tipul pentru document(e) selectat(e). + + This operation will remove the document type from selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 + crwdns3222:0crwdne3222:0 - + Delete confirm - Confirmati stergerea src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 + crwdns3224:0crwdne3224:0 - - This operation will permanently delete selected document(s). - document(e) selectat(e) vor fi sterse permanent. + + This operation will permanently delete selected document(s). src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 + crwdns3226:0crwdne3226:0 - + This operation cannot be undone. - Aceasta operatiune este ireversibila. src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 + crwdns3228:0crwdne3228:0 - + Delete document(s) - Sterge document(e) src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 + crwdns3230:0crwdne3230:0 - + Select: - Selecteaza: src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 + crwdns3232:0crwdne3232:0 - + All - Tot src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 + crwdns3234:0crwdne3234:0 - + Edit: - Editeaza: src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 + crwdns3236:0crwdne3236:0 - + Download originals - Descarca originalele src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 + crwdns3238:0crwdne3238:0 - + Suggestions: - Sugestii: src/app/components/common/input/select/select.component.html 26 + crwdns3240:0crwdne3240:0 - + Save current view - Salveaza vizualizarea curenta src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 + crwdns3242:0crwdne3242:0 - + Show all - Arata tot src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 + crwdns3244:0crwdne3244:0 - + Statistics - Statistici src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 + crwdns3246:0crwdne3246:0 - - Total documents: - Total documente: + + Total documents: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 + crwdns3248:0{{statistics?.documents_total}}crwdne3248:0 - - Documents in inbox: - Documente in inbox: + + Documents in inbox: src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 + crwdns3250:0{{statistics?.documents_inbox}}crwdne3250:0 - - Processing: - In procesare: + + Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 + crwdns3252:0crwdne3252:0 - - Failed: - Esuate: + + Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 + crwdns3254:0crwdne3254:0 - - Added: - Adaugate: + + Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 + crwdns3256:0crwdne3256:0 - + Connecting... - Conectare... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 + crwdns3258:0crwdne3258:0 - + Uploading... - Incarcare... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 + crwdns3260:0crwdne3260:0 - + Upload complete, waiting... - Incarcare completa, in asteptare... src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 + crwdns3262:0crwdne3262:0 - - HTTP error: - Eroare HTTP: + + HTTP error: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 + crwdns3264:0crwdne3264:0 - + Upload new documents - Incarca documente noi src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 + crwdns3266:0crwdne3266:0 - + Drop documents here or - Trageti documentele aici sau src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + crwdns3268:0crwdne3268:0 - + Browse files - Rasfoiti fisiere src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 + crwdns3270:0crwdne3270:0 - + Dismiss completed - Inlatura operatiunile finalizate src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - This button dismisses all status messages about processed documents on the dashboard (failed and successful) + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + crwdns3272:0crwdne3272:0 - + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - {VAR_PLURAL, plural, =1 {Inca un document} other {Inca documente}} src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 25 - This is shown as a summary line when there are more than 5 document in the processing pipeline. + This is shown as a summary line when there are more than 5 document in the processing pipeline. + crwdns3274:0VAR_PLURAL={VAR_PLURAL}crwdne3274:0 - + Open document - Deschide document src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 + crwdns3276:0crwdne3276:0 - + First steps - Primii pasi src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 + crwdns3278:0crwdne3278:0 - + Paperless is running! :) - Paperless ruleaza! :) src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 + crwdns3280:0crwdne3280:0 - - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. - Puteti incepe sa incarcati fisiere tragandu-le in casuta din dreapta sau in directorul configurat de consum, si vor incepe sa apara in lista de documente. Dupa ce ati adaugat metadate documentelor, folositi mecanismele de filtrare pentru a crea vizualizari personalizate (cum ar fi "Adaugate recent", "Etichetate URGENT"), ce vor aparea in locul acestui mesaj. + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 + crwdns3282:0crwdne3282:0 - + Paperless offers some more features that try to make your life easier: - Paperless mai ofera urmatoarele functii pentru a va face viata mai usoara: src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 + crwdns3284:0crwdne3284:0 - - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. - Dupa ce aveti cateva documente si le adaugati metadate, Paperless poate atribui acele metadate in mod automat pentru documente noi. + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 + crwdns3286:0crwdne3286:0 - + You can configure paperless to read your mails and add documents from attached files. - Puteti configura Paperless sa va citeasca email-urile si sa adauge documentele atasate. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 + crwdns3288:0crwdne3288:0 - + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. - Consultati documentatia pentru a afla cum sa folositi aceste functii. Sectiunea de baza contine informatii despre cum sa folositi Paperless in general. src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 + crwdns3290:0crwdne3290:0 - + Metadata - Metadate src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 + crwdns3292:0crwdne3292:0 - + Select - Selecteaza src/app/components/common/select-dialog/select-dialog.component.ts 18 + crwdns3294:0crwdne3294:0 - + Please select an object - Selectati un obiect src/app/components/common/select-dialog/select-dialog.component.ts 21 + crwdns3296:0crwdne3296:0 - + Invalid date. - Data invalida. src/app/components/common/input/date/date.component.html 14 + crwdns3298:0crwdne3298:0 - + Yes - Da src/app/pipes/yes-no.pipe.ts 9 + crwdns3300:0crwdne3300:0 - + No - Nu src/app/pipes/yes-no.pipe.ts 9 + crwdns3302:0crwdne3302:0 - + (no title) - (fara titlu) src/app/pipes/document-title.pipe.ts 12 + crwdns3304:0crwdne3304:0 - + English (US) - Engleza (SUA) src/app/services/settings.service.ts 90 + crwdns3306:0crwdne3306:0 - + English (GB) - Engleza (UK) src/app/services/settings.service.ts 91 + crwdns3308:0crwdne3308:0 - + German - Germana src/app/services/settings.service.ts 92 + crwdns3310:0crwdne3310:0 - + Dutch - Olandeza src/app/services/settings.service.ts 93 + crwdns3312:0crwdne3312:0 - + French - Franceza src/app/services/settings.service.ts 94 + crwdns3314:0crwdne3314:0 - + Portuguese (Brazil) - Portugheza (Brazilia) src/app/services/settings.service.ts 95 + crwdns3316:0crwdne3316:0 - + Italian - Italiana src/app/services/settings.service.ts 96 + crwdns3318:0crwdne3318:0 - + Romanian - Romana src/app/services/settings.service.ts 97 + crwdns3320:0crwdne3320:0 - + ISO 8601 - ISO 8601 src/app/services/settings.service.ts 102 + crwdns3322:0crwdne3322:0 - + Document already exists. - Documentul exista deja. src/app/services/consumer-status.service.ts 15 + crwdns3324:0crwdne3324:0 - + File not found. - Fisierul nu a fost gasit. src/app/services/consumer-status.service.ts 16 + crwdns3326:0crwdne3326:0 - + Pre-consume script does not exist. - Scriptul pre-consum nu exista. src/app/services/consumer-status.service.ts 17 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + crwdns3328:0crwdne3328:0 - + Error while executing pre-consume script. - Eroare la executia scriptului pre-consum. src/app/services/consumer-status.service.ts 18 - Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + crwdns3330:0crwdne3330:0 - + Post-consume script does not exist. - Scriptul post-consum nu exista. src/app/services/consumer-status.service.ts 19 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + crwdns3332:0crwdne3332:0 - + Error while executing post-consume script. - Eroare la executia scriptului post-consum. src/app/services/consumer-status.service.ts 20 - Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + crwdns3334:0crwdne3334:0 - + Received new file. - Fisier nou primit. src/app/services/consumer-status.service.ts 21 + crwdns3336:0crwdne3336:0 - + File type not supported. - Tip de fisier nesuportat. src/app/services/consumer-status.service.ts 22 + crwdns3338:0crwdne3338:0 - + Processing document... - Se proceseaza documentul... src/app/services/consumer-status.service.ts 23 + crwdns3340:0crwdne3340:0 - + Generating thumbnail... - Se genereaza miniatura... src/app/services/consumer-status.service.ts 24 + crwdns3342:0crwdne3342:0 - + Retrieving date from document... - Se extrage data din document... src/app/services/consumer-status.service.ts 25 + crwdns3344:0crwdne3344:0 - + Saving document... - Se salveaza documentul... src/app/services/consumer-status.service.ts 26 + crwdns3346:0crwdne3346:0 - + Finished. - Terminat. src/app/services/consumer-status.service.ts 27 + crwdns3348:0crwdne3348:0 - + Error - Eroare src/app/services/toast.service.ts 35 + crwdns3350:0crwdne3350:0 - + Information - Informatii src/app/services/toast.service.ts 39 + crwdns3352:0crwdne3352:0 - + ASN - ASN src/app/services/rest/document.service.ts 17 + crwdns3354:0crwdne3354:0 - + Correspondent - Corespondent src/app/services/rest/document.service.ts 18 + crwdns3356:0crwdne3356:0 - + Document type - Tipul documentului src/app/services/rest/document.service.ts 20 + crwdns3358:0crwdne3358:0 - + Created - Creat src/app/services/rest/document.service.ts 21 + crwdns3360:0crwdne3360:0 - + Added - Adaugat src/app/services/rest/document.service.ts 22 + crwdns3362:0crwdne3362:0 - + Modified - Modificat src/app/services/rest/document.service.ts 23 + crwdns3364:0crwdne3364:0 - + Create new item - Creeaza articol nou src/app/components/common/edit-dialog/edit-dialog.component.ts 50 + crwdns3366:0crwdne3366:0 - + Edit item - Modifica articol src/app/components/common/edit-dialog/edit-dialog.component.ts 54 + crwdns3368:0crwdne3368:0 - - Could not save element: - Nu s-a putut salva elementul: + + Could not save element: src/app/components/common/edit-dialog/edit-dialog.component.ts 58 + crwdns3370:0crwdne3370:0 - + Automatic - Automat src/app/components/manage/generic-list/generic-list.component.ts 39 + crwdns3372:0crwdne3372:0 - + Do you really want to delete this element? - Sunteti sigur ca doriti sa stergeti acest element? src/app/components/manage/generic-list/generic-list.component.ts 97 + crwdns3374:0crwdne3374:0 - + Associated documents will not be deleted. - Documentele asociate nu vor fi sterse. src/app/components/manage/generic-list/generic-list.component.ts 104 + crwdns3376:0crwdne3376:0 - + Delete - Sterge src/app/components/manage/generic-list/generic-list.component.ts 106 + crwdns3378:0crwdne3378:0 - - Error while deleting element: - Eroare la stergerea elementului: + + Error while deleting element: src/app/components/manage/generic-list/generic-list.component.ts 114 + crwdns3380:0crwdne3380:0 - + Any word - Oricare cuvant src/app/data/matching-model.ts 12 + crwdns3382:0crwdne3382:0 - + Any: Document contains any of these words (space separated) - Oricare: Documentul contine oricare dintre aceste cuvinte (separate prin spatiu) src/app/data/matching-model.ts 12 + crwdns3384:0crwdne3384:0 - + All words - Toate cuvintele src/app/data/matching-model.ts 13 + crwdns3386:0crwdne3386:0 - + All: Document contains all of these words (space separated) - Toate: Documentul contine toate aceste cuvinte (separate prin spatiu) src/app/data/matching-model.ts 13 + crwdns3388:0crwdne3388:0 - + Exact match - Potrivire exacta src/app/data/matching-model.ts 14 + crwdns3390:0crwdne3390:0 - + Exact: Document contains this string - Exact: Documentul contine acest sir de caractere src/app/data/matching-model.ts 14 + crwdns3392:0crwdne3392:0 - + Regular expression - Expresie regulata src/app/data/matching-model.ts 15 + crwdns3394:0crwdne3394:0 - + Regular expression: Document matches this regular expression - Expresie regulata: Documentul se potriveste cu aceasta expresie regulata src/app/data/matching-model.ts 15 + crwdns3396:0crwdne3396:0 - + Fuzzy word - Cuvant neclar src/app/data/matching-model.ts 16 + crwdns3398:0crwdne3398:0 - + Fuzzy: Document contains a word similar to this word - Neclar: Documentul contine un cuvant similar cu acesta src/app/data/matching-model.ts 16 + crwdns3400:0crwdne3400:0 - + Auto: Learn matching automatically - Auto: Invata potrivirile automat src/app/data/matching-model.ts 17 + crwdns3402:0crwdne3402:0 - \ No newline at end of file + diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf new file mode 100644 index 000000000..b8eaa1c53 --- /dev/null +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -0,0 +1,2282 @@ + + + + + + Document added + + src/app/app.component.ts + 51 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 51 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 51 + + Open document + + + Could not add : + + src/app/app.component.ts + 59 + + Could not add : + + + New document detected + + src/app/app.component.ts + 65 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 65 + + Document is being processed by paperless. + + + Documents + + src/app/components/document-list/document-list.component.ts + 49 + + Documents + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 115 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 136 + + View "" created successfully. + + + Select + + src/app/components/document-list/document-list.component.html + 7 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 10 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 11 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 12 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 39 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + Views + + + Save as... + + src/app/components/document-list/document-list.component.html + 72 + + Save as... + + + Save "" + + src/app/components/document-list/document-list.component.html + 71 + + Save "" + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 85 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 86 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 86 + + (filtered) + + + ASN + + src/app/components/document-list/document-list.component.html + 105 + + ASN + + + Correspondent + + src/app/components/document-list/document-list.component.html + 111 + + Correspondent + + + Title + + src/app/components/document-list/document-list.component.html + 117 + + Title + + + Document type + + src/app/components/document-list/document-list.component.html + 123 + + Document type + + + Created + + src/app/components/document-list/document-list.component.html + 129 + + Created + + + Added + + src/app/components/document-list/document-list.component.html + 135 + + Added + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 203 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 204 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 205 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 207 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 214 + + Error deleting document: + + + Delete + + src/app/components/document-detail/document-detail.component.html + 15 + + Delete + + + Download + + src/app/components/document-detail/document-detail.component.html + 23 + + Download + + + More like this + + src/app/components/document-detail/document-detail.component.html + 38 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 44 + + Close + + + Details + + src/app/components/document-detail/document-detail.component.html + 56 + + Details + + + Content + + src/app/components/document-detail/document-detail.component.html + 72 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 81 + + Metadata + + + Discard + + src/app/components/document-detail/document-detail.component.html + 130 + + Discard + + + Save + + src/app/components/document-detail/document-detail.component.html + 132 + + Save + + + Page + + src/app/components/document-detail/document-detail.component.html + 4 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 8 + + of + + + Download original + + src/app/components/document-detail/document-detail.component.html + 29 + + Download original + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 60 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 61 + + Date created + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 87 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 91 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 95 + + Media filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 99 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 103 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 107 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 111 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 115 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 121 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 122 + + Archived document metadata + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 131 + + Save & next + + + Hello , welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + Hello , welcome to Paperless-ng! + + + Welcome to Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + Welcome to Paperless-ng! + + + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 26 + + Do you really want to delete the tag ""? + + + Tags + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + Tags + + + Create + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + Filter by: + + + Name + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + Name + + + Color + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + Color + + + Matching + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + Matching + + + Document count + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + Document count + + + Actions + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + Actions + + + Documents + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + Documents + + + Edit + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + Edit + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + Do you really want to delete the document type ""? + + + Document types + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + Document types + + + Logs + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 68 + + Saved view "" deleted. + + + Settings saved successfully. + + src/app/components/manage/settings/settings.component.ts + 89 + + Settings saved successfully. + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 94 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 100 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 117 + + Error while storing settings on server: + + + Settings + + src/app/components/manage/settings/settings.component.html + 1 + + Settings + + + General settings + + src/app/components/manage/settings/settings.component.html + 10 + + General settings + + + Notifications + + src/app/components/manage/settings/settings.component.html + 116 + + Notifications + + + Saved views + + src/app/components/manage/settings/settings.component.html + 134 + + Saved views + + + Appearance + + src/app/components/manage/settings/settings.component.html + 13 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 17 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 25 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 32 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 45 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 51 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 55 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 59 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 67 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 83 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 87 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 87 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 94 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 97 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 98 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 99 + + Invert thumbnails in dark mode + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 103 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 107 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 107 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 108 + + Apply on close + + + Document processing + + src/app/components/manage/settings/settings.component.html + 119 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 123 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 124 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 125 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 126 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 126 + + This will suppress all messages about document processing status on the dashboard. + + + Appears on + + src/app/components/manage/settings/settings.component.html + 146 + + Appears on + + + Show on dashboard + + src/app/components/manage/settings/settings.component.html + 149 + + Show on dashboard + + + Show in sidebar + + src/app/components/manage/settings/settings.component.html + 153 + + Show in sidebar + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 163 + + No saved views defined. + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + Do you really want to delete the correspondent ""? + + + Correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + Correspondents + + + Last correspondence + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + Last correspondence + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + Confirm + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Create new correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + Create new correspondent + + + Edit correspondent + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Edit correspondent + + + Matching algorithm + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + Matching algorithm + + + Matching pattern + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + Matching pattern + + + Case insensitive + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + Case insensitive + + + Create new tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 22 + + Create new tag + + + Edit tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Edit tag + + + Inbox tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + Create new document type + + + Edit document type + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Edit document type + + + Search results + + src/app/components/search/search.component.html + 1 + + Search results + + + Invalid search query: + + src/app/components/search/search.component.html + 4 + + Invalid search query: + + + Showing documents similar to + + src/app/components/search/search.component.html + 7 + + Showing documents similar to + + + Search query: + + src/app/components/search/search.component.html + 11 + + Search query: + + + Did you mean ""? + + src/app/components/search/search.component.html + 13 + + Did you mean ""? + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + src/app/components/search/search.component.html + 18 + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + + + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ng + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 15 + + Search documents + + + Logout + + src/app/components/app-frame/app-frame.component.html + 45 + + Logout + + + Manage + + src/app/components/app-frame/app-frame.component.html + 112 + + Manage + + + Admin + + src/app/components/app-frame/app-frame.component.html + 154 + + Admin + + + Info + + src/app/components/app-frame/app-frame.component.html + 160 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 167 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 175 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 181 + + Suggest an idea + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 34 + + Logged in as + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 87 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 106 + + Close all + + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 73 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 74 + + Title & content + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 32 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 34 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 39 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 41 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 45 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 49 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 53 + + Title: + + + Filter tags + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/filter-editor/filter-editor.component.html + 35 + + Filter document types + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 58 + + Reset filters + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Apply + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 34 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 35 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 36 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 37 + + Last year + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 38 + + Before + + + Clear + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + Clear + + + View + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + View + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + Created: + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + Filter by tag + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + Score: + + + View in browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + View in browser + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + , + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + This operation will remove the document type from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + This operation will permanently delete selected document(s). + + + This operation cannot be undone. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + This operation cannot be undone. + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + Delete document(s) + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + All + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Download originals + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + Download originals + + + Suggestions: + + src/app/components/common/input/select/select.component.html + 26 + + Suggestions: + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + Show all + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Total documents: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Total documents: + + + Documents in inbox: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + Documents in inbox: + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + Added: + + + Connecting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + Connecting... + + + Uploading... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + Uploading... + + + Upload complete, waiting... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + Upload complete, waiting... + + + HTTP error: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + HTTP error: + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Open document + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + Open document + + + First steps + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + First steps + + + Paperless is running! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + Paperless is running! :) + + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + + + Paperless offers some more features that try to make your life easier: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Paperless offers some more features that try to make your life easier: + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + + + You can configure paperless to read your mails and add documents from attached files. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + You can configure paperless to read your mails and add documents from attached files. + + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + + + Metadata + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + Metadata + + + Select + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + Please select an object + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 14 + + Invalid date. + + + Yes + + src/app/pipes/yes-no.pipe.ts + 9 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 9 + + No + + + (no title) + + src/app/pipes/document-title.pipe.ts + 12 + + (no title) + + + English (US) + + src/app/services/settings.service.ts + 90 + + English (US) + + + English (GB) + + src/app/services/settings.service.ts + 91 + + English (GB) + + + German + + src/app/services/settings.service.ts + 92 + + German + + + Dutch + + src/app/services/settings.service.ts + 93 + + Dutch + + + French + + src/app/services/settings.service.ts + 94 + + French + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 95 + + Portuguese (Brazil) + + + Italian + + src/app/services/settings.service.ts + 96 + + Italian + + + Romanian + + src/app/services/settings.service.ts + 97 + + Romanian + + + ISO 8601 + + src/app/services/settings.service.ts + 102 + + ISO 8601 + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 16 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 21 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 22 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 23 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 24 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 25 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 26 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 27 + + Finished. + + + Error + + src/app/services/toast.service.ts + 35 + + Error + + + Information + + src/app/services/toast.service.ts + 39 + + Information + + + ASN + + src/app/services/rest/document.service.ts + 17 + + ASN + + + Correspondent + + src/app/services/rest/document.service.ts + 18 + + Correspondent + + + Document type + + src/app/services/rest/document.service.ts + 20 + + Document type + + + Created + + src/app/services/rest/document.service.ts + 21 + + Created + + + Added + + src/app/services/rest/document.service.ts + 22 + + Added + + + Modified + + src/app/services/rest/document.service.ts + 23 + + Modified + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + Could not save element: + + + Automatic + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + Automatic + + + Do you really want to delete this element? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + Do you really want to delete this element? + + + Associated documents will not be deleted. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + Associated documents will not be deleted. + + + Delete + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + Delete + + + Error while deleting element: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + Error while deleting element: + + + Any word + + src/app/data/matching-model.ts + 12 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 12 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 13 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 13 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 14 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 14 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 15 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 16 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 16 + + Fuzzy: Document contains a word similar to this word + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 17 + + Auto: Learn matching automatically + + + + diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index f3336cc1a..9419974f2 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -392,7 +392,7 @@ $border-color-dark-mode: #47494f; border-color: $border-color-dark-mode; } } - + $placements: 'top', 'right', 'bottom', 'left'; @each $placement in $placements { diff --git a/src/documents/tests/test_api.py b/src/documents/tests/test_api.py index 770562ba8..853131db2 100644 --- a/src/documents/tests/test_api.py +++ b/src/documents/tests/test_api.py @@ -270,6 +270,30 @@ class TestDocumentApi(DirectoriesMixin, APITestCase): results = response.data['results'] self.assertEqual(len(results), 0) + def test_documents_title_content_filter(self): + + doc1 = Document.objects.create(title="title A", content="content A", checksum="A", mime_type="application/pdf") + doc2 = Document.objects.create(title="title B", content="content A", checksum="B", mime_type="application/pdf") + doc3 = Document.objects.create(title="title A", content="content B", checksum="C", mime_type="application/pdf") + doc4 = Document.objects.create(title="title B", content="content B", checksum="D", mime_type="application/pdf") + + response = self.client.get("/api/documents/?title_content=A") + self.assertEqual(response.status_code, 200) + results = response.data['results'] + self.assertEqual(len(results), 3) + self.assertCountEqual([results[0]['id'], results[1]['id'], results[2]['id']], [doc1.id, doc2.id, doc3.id]) + + response = self.client.get("/api/documents/?title_content=B") + self.assertEqual(response.status_code, 200) + results = response.data['results'] + self.assertEqual(len(results), 3) + self.assertCountEqual([results[0]['id'], results[1]['id'], results[2]['id']], [doc2.id, doc3.id, doc4.id]) + + response = self.client.get("/api/documents/?title_content=X") + self.assertEqual(response.status_code, 200) + results = response.data['results'] + self.assertEqual(len(results), 0) + def test_search_no_query(self): response = self.client.get("/api/search/") results = response.data['results'] diff --git a/src/locale/cs/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po similarity index 66% rename from src/locale/cs/LC_MESSAGES/django.po rename to src/locale/cs_CZ/LC_MESSAGES/django.po index 959246aab..ff7098536 100644 --- a/src/locale/cs/LC_MESSAGES/django.po +++ b/src/locale/cs_CZ/LC_MESSAGES/django.po @@ -1,357 +1,362 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Štěpán Šebestian , 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-28 22:02+0100\n" -"PO-Revision-Date: 2020-12-30 19:27+0000\n" -"Last-Translator: Štěpán Šebestian , 2021\n" -"Language-Team: Czech (https://www.transifex.com/paperless/teams/115905/cs/)\n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Czech\n" +"Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: cs\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" msgstr "Dokumenty" -#: documents/models.py:33 +#: documents/models.py:32 msgid "Any word" msgstr "Jakékoliv slovo" -#: documents/models.py:34 +#: documents/models.py:33 msgid "All words" msgstr "Všechna slova" -#: documents/models.py:35 +#: documents/models.py:34 msgid "Exact match" msgstr "Přesná shoda" -#: documents/models.py:36 +#: documents/models.py:35 msgid "Regular expression" msgstr "Regulární výraz" -#: documents/models.py:37 +#: documents/models.py:36 msgid "Fuzzy word" msgstr "Fuzzy slovo" -#: documents/models.py:38 +#: documents/models.py:37 msgid "Automatic" msgstr "Automatický" -#: documents/models.py:42 documents/models.py:352 paperless_mail/models.py:25 +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" msgstr "název" -#: documents/models.py:46 +#: documents/models.py:45 msgid "match" msgstr "shoda" -#: documents/models.py:50 +#: documents/models.py:49 msgid "matching algorithm" msgstr "algoritmus pro shodu" -#: documents/models.py:56 +#: documents/models.py:55 msgid "is insensitive" msgstr "je ignorováno" -#: documents/models.py:75 documents/models.py:135 +#: documents/models.py:74 documents/models.py:120 msgid "correspondent" msgstr "korespondent" -#: documents/models.py:76 +#: documents/models.py:75 msgid "correspondents" msgstr "korespondenti" -#: documents/models.py:98 +#: documents/models.py:81 msgid "color" msgstr "barva" -#: documents/models.py:102 +#: documents/models.py:87 msgid "is inbox tag" msgstr "tag přichozí" -#: documents/models.py:104 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." -msgstr "" -"Označí tento tag jako tag pro příchozí: Všechny nově zkonzumované dokumenty " -"budou označeny tagem pro přichozí" +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Označí tento tag jako tag pro příchozí: Všechny nově zkonzumované dokumenty budou označeny tagem pro přichozí" -#: documents/models.py:109 +#: documents/models.py:94 msgid "tag" -msgstr "tag" +msgstr "" -#: documents/models.py:110 documents/models.py:166 +#: documents/models.py:95 documents/models.py:151 msgid "tags" msgstr "tagy" -#: documents/models.py:116 documents/models.py:148 +#: documents/models.py:101 documents/models.py:133 msgid "document type" msgstr "typ dokumentu" -#: documents/models.py:117 +#: documents/models.py:102 msgid "document types" msgstr "typy dokumentu" -#: documents/models.py:125 +#: documents/models.py:110 msgid "Unencrypted" msgstr "Nešifrované" -#: documents/models.py:126 +#: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" msgstr "Šifrované pomocí GNU Privacy Guard" -#: documents/models.py:139 +#: documents/models.py:124 msgid "title" msgstr "titulek" -#: documents/models.py:152 +#: documents/models.py:137 msgid "content" msgstr "obsah" -#: documents/models.py:154 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." -msgstr "" -"Nezpracovaná, pouze textová data dokumentu. Toto pole je používáno především" -" pro vyhledávání." +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "Nezpracovaná, pouze textová data dokumentu. Toto pole je používáno především pro vyhledávání." -#: documents/models.py:159 +#: documents/models.py:144 msgid "mime type" msgstr "mime typ" -#: documents/models.py:170 +#: documents/models.py:155 msgid "checksum" msgstr "kontrolní součet" -#: documents/models.py:174 +#: documents/models.py:159 msgid "The checksum of the original document." msgstr "Kontrolní součet původního dokumentu" -#: documents/models.py:178 +#: documents/models.py:163 msgid "archive checksum" msgstr "kontrolní součet archivu" -#: documents/models.py:183 +#: documents/models.py:168 msgid "The checksum of the archived document." msgstr "Kontrolní součet archivovaného dokumentu." -#: documents/models.py:187 documents/models.py:330 +#: documents/models.py:172 documents/models.py:328 msgid "created" msgstr "vytvořeno" -#: documents/models.py:191 +#: documents/models.py:176 msgid "modified" msgstr "upraveno" -#: documents/models.py:195 +#: documents/models.py:180 msgid "storage type" msgstr "typ úložiště" -#: documents/models.py:203 +#: documents/models.py:188 msgid "added" msgstr "přidáno" -#: documents/models.py:207 +#: documents/models.py:192 msgid "filename" msgstr "název souboru" -#: documents/models.py:212 +#: documents/models.py:198 msgid "Current filename in storage" msgstr "Aktuální název souboru v úložišti" -#: documents/models.py:216 +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 msgid "archive serial number" msgstr "sériové číslo archivu" -#: documents/models.py:221 +#: documents/models.py:217 msgid "The position of this document in your physical document archive." msgstr "Pozice dokumentu ve vašem archivu fyzických dokumentů" -#: documents/models.py:227 +#: documents/models.py:223 msgid "document" msgstr "dokument" -#: documents/models.py:228 +#: documents/models.py:224 msgid "documents" msgstr "dokumenty" -#: documents/models.py:313 +#: documents/models.py:311 msgid "debug" -msgstr "debug" +msgstr "" -#: documents/models.py:314 +#: documents/models.py:312 msgid "information" msgstr "informace" -#: documents/models.py:315 +#: documents/models.py:313 msgid "warning" msgstr "varování" -#: documents/models.py:316 +#: documents/models.py:314 msgid "error" msgstr "chyba" -#: documents/models.py:317 +#: documents/models.py:315 msgid "critical" msgstr "kritická" -#: documents/models.py:321 +#: documents/models.py:319 msgid "group" msgstr "skupina" -#: documents/models.py:324 +#: documents/models.py:322 msgid "message" msgstr "zpráva" -#: documents/models.py:327 +#: documents/models.py:325 msgid "level" msgstr "úroveň" -#: documents/models.py:334 +#: documents/models.py:332 msgid "log" msgstr "záznam" -#: documents/models.py:335 +#: documents/models.py:333 msgid "logs" msgstr "záznamy" -#: documents/models.py:346 documents/models.py:396 +#: documents/models.py:344 documents/models.py:394 msgid "saved view" msgstr "uložený pohled" -#: documents/models.py:347 +#: documents/models.py:345 msgid "saved views" msgstr "uložené pohledy" -#: documents/models.py:350 +#: documents/models.py:348 msgid "user" msgstr "uživatel" -#: documents/models.py:356 +#: documents/models.py:354 msgid "show on dashboard" msgstr "zobrazit v dashboardu" -#: documents/models.py:359 +#: documents/models.py:357 msgid "show in sidebar" msgstr "zobrazit v postranním menu" -#: documents/models.py:363 +#: documents/models.py:361 msgid "sort field" msgstr "pole na řazení" -#: documents/models.py:366 +#: documents/models.py:364 msgid "sort reverse" msgstr "třídit opačně" -#: documents/models.py:372 +#: documents/models.py:370 msgid "title contains" msgstr "titulek obsahuje" -#: documents/models.py:373 +#: documents/models.py:371 msgid "content contains" msgstr "obsah obsahuje" -#: documents/models.py:374 +#: documents/models.py:372 msgid "ASN is" msgstr "ASN je" -#: documents/models.py:375 +#: documents/models.py:373 msgid "correspondent is" msgstr "korespondent je" -#: documents/models.py:376 +#: documents/models.py:374 msgid "document type is" msgstr "typ dokumentu je" -#: documents/models.py:377 +#: documents/models.py:375 msgid "is in inbox" msgstr "je v příchozích" -#: documents/models.py:378 +#: documents/models.py:376 msgid "has tag" msgstr "má tag" -#: documents/models.py:379 +#: documents/models.py:377 msgid "has any tag" msgstr "má jakýkoliv tag" -#: documents/models.py:380 +#: documents/models.py:378 msgid "created before" msgstr "vytvořeno před" -#: documents/models.py:381 +#: documents/models.py:379 msgid "created after" msgstr "vytvořeno po" -#: documents/models.py:382 +#: documents/models.py:380 msgid "created year is" msgstr "rok vytvoření je" -#: documents/models.py:383 +#: documents/models.py:381 msgid "created month is" msgstr "měsíc vytvoření je" -#: documents/models.py:384 +#: documents/models.py:382 msgid "created day is" msgstr "den vytvoření je" -#: documents/models.py:385 +#: documents/models.py:383 msgid "added before" msgstr "přidáno před" -#: documents/models.py:386 +#: documents/models.py:384 msgid "added after" msgstr "přidáno po" -#: documents/models.py:387 +#: documents/models.py:385 msgid "modified before" msgstr "upraveno před" -#: documents/models.py:388 +#: documents/models.py:386 msgid "modified after" msgstr "upraveno po" -#: documents/models.py:389 +#: documents/models.py:387 msgid "does not have tag" msgstr "nemá tag" -#: documents/models.py:400 +#: documents/models.py:398 msgid "rule type" msgstr "typ pravidla" -#: documents/models.py:404 +#: documents/models.py:402 msgid "value" msgstr "hodnota" -#: documents/models.py:410 +#: documents/models.py:408 msgid "filter rule" msgstr "filtrovací pravidlo" -#: documents/models.py:411 +#: documents/models.py:409 msgid "filter rules" msgstr "filtrovací pravidla" -#: documents/serialisers.py:383 +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" msgstr "Typ souboru %(type)s není podporován" -#: documents/templates/index.html:20 +#: documents/templates/index.html:21 msgid "Paperless-ng is loading..." msgstr "Paperless-ng se načítá..." @@ -391,23 +396,39 @@ msgstr "Heslo" msgid "Sign in" msgstr "Přihlásit se" -#: paperless/settings.py:286 -msgid "English" -msgstr "Angličtina" +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" -#: paperless/settings.py:287 +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 msgid "German" msgstr "Němčina" -#: paperless/settings.py:288 +#: paperless/settings.py:300 msgid "Dutch" msgstr "Holandština" -#: paperless/settings.py:289 +#: paperless/settings.py:301 msgid "French" msgstr "Francouzština" -#: paperless/urls.py:114 +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Správa Paperless-ng" @@ -416,37 +437,24 @@ msgid "Filter" msgstr "Filtr" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." -msgstr "" -"Paperless zpracuje pouze emaily které odpovídají VŠEM níže zadaným filtrům." +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Paperless zpracuje pouze emaily které odpovídají VŠEM níže zadaným filtrům." #: paperless_mail/admin.py:37 msgid "Actions" msgstr "Akce" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." -msgstr "" -"Akce provedena na emailu. Tato akce je provedena jen pokud byly dokumenty " -"zkonzumovány z emailu. Emaily bez příloh zůstanou nedotčeny." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "Akce provedena na emailu. Tato akce je provedena jen pokud byly dokumenty zkonzumovány z emailu. Emaily bez příloh zůstanou nedotčeny." #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "Metadata" +msgstr "" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." -msgstr "" -"Automaticky přiřadit metadata dokumentům zkonzumovaných z tohoto pravidla. " -"Pokud zde nepřiřadíte tagy, typy nebo korespondenty, paperless stále " -"zpracuje všechna shodující-se pravidla které jste definovali." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Automaticky přiřadit metadata dokumentům zkonzumovaných z tohoto pravidla. Pokud zde nepřiřadíte tagy, typy nebo korespondenty, paperless stále zpracuje všechna shodující-se pravidla které jste definovali." #: paperless_mail/apps.py:9 msgid "Paperless mail" @@ -474,19 +482,15 @@ msgstr "Používat STARTTLS" #: paperless_mail/models.py:29 msgid "IMAP server" -msgstr "IMAP server" +msgstr "" #: paperless_mail/models.py:33 msgid "IMAP port" -msgstr "IMAP port" +msgstr "" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." -msgstr "" -"Toto je většinou 143 pro nešifrovaná připojení/připojení používající " -"STARTTLS a 993 pro SSL připojení." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "Toto je většinou 143 pro nešifrovaná připojení/připojení používající STARTTLS a 993 pro SSL připojení." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -585,13 +589,8 @@ msgid "filter attachment filename" msgstr "název souboru u přílohy filtru" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" -"Konzumovat jen dokumenty které přesně odpovídají tomuto názvu souboru pokud " -"specifikováno. Zástupné znaky jako *.pdf nebo *invoice* jsou povoleny. " -"Nezáleží na velikosti písmen." +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "Konzumovat jen dokumenty které přesně odpovídají tomuto názvu souboru pokud specifikováno. Zástupné znaky jako *.pdf nebo *invoice* jsou povoleny. Nezáleží na velikosti písmen." #: paperless_mail/models.py:146 msgid "maximum age" @@ -606,12 +605,8 @@ msgid "attachment type" msgstr "typ přílohy" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." -msgstr "" -"Vložené přílohy zahrnují vložené obrázky, takže je nejlepší tuto možnost " -"kombinovat s filtrem na název souboru" +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "Vložené přílohy zahrnují vložené obrázky, takže je nejlepší tuto možnost kombinovat s filtrem na název souboru" #: paperless_mail/models.py:159 msgid "action" @@ -622,12 +617,8 @@ msgid "action parameter" msgstr "parametr akce" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." -msgstr "" -"Další parametr pro výše vybranou akci, napříkad cílová složka akce přesunutí" -" do složky." +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "Další parametr pro výše vybranou akci, napříkad cílová složka akce přesunutí do složky." #: paperless_mail/models.py:173 msgid "assign title from" @@ -648,3 +639,4 @@ msgstr "přiřadit korespondenta z" #: paperless_mail/models.py:205 msgid "assign this correspondent" msgstr "přiřadit tohoto korespondenta" + diff --git a/src/locale/de/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po similarity index 80% rename from src/locale/de/LC_MESSAGES/django.po rename to src/locale/de_DE/LC_MESSAGES/django.po index 55d2b0989..120dcd1a8 100644 --- a/src/locale/de/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -1,25 +1,21 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Jonas Winkler, 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-02-16 18:37+0000\n" -"Last-Translator: Jonas Winkler, 2021\n" -"Language-Team: German (https://www.transifex.com/paperless/teams/115905/de/)\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: German\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: de\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" @@ -83,12 +79,8 @@ msgid "is inbox tag" msgstr "Posteingangs-Tag" #: documents/models.py:89 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." -msgstr "" -"Markiert das Tag als Posteingangs-Tag. Neue Dokumente werden immer mit " -"diesem Tag versehen." +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Markiert das Tag als Posteingangs-Tag. Neue Dokumente werden immer mit diesem Tag versehen." #: documents/models.py:94 msgid "tag" @@ -123,12 +115,8 @@ msgid "content" msgstr "Inhalt" #: documents/models.py:139 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." -msgstr "" -"Der Inhalt des Dokuments in Textform. Dieses Feld wird primär für die Suche " -"verwendet." +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "Der Inhalt des Dokuments in Textform. Dieses Feld wird primär für die Suche verwendet." #: documents/models.py:144 msgid "mime type" @@ -394,9 +382,7 @@ msgstr "Bitte melden Sie sich an." #: documents/templates/registration/login.html:45 msgid "Your username and password didn't match. Please try again." -msgstr "" -"Ihr Benutzername und Passwort stimmen nicht überein. Bitte versuchen Sie es " -"erneut." +msgstr "Ihr Benutzername und Passwort stimmen nicht überein. Bitte versuchen Sie es erneut." #: documents/templates/registration/login.html:48 msgid "Username" @@ -448,43 +434,27 @@ msgstr "Paperless-ng Administration" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "Filter" +msgstr "" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." -msgstr "" -"Paperless wird nur E-Mails verarbeiten, für die alle der hier angegebenen " -"Filter zutreffen." +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Paperless wird nur E-Mails verarbeiten, für die alle der hier angegebenen Filter zutreffen." #: paperless_mail/admin.py:37 msgid "Actions" msgstr "Aktionen" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." -msgstr "" -"Die Aktion, die auf E-Mails angewendet werden soll. Diese Aktion wird nur " -"auf E-Mails angewendet, aus denen Anhänge verarbeitet wurden. E-Mails ohne " -"Anhänge werden vollständig ignoriert." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "Die Aktion, die auf E-Mails angewendet werden soll. Diese Aktion wird nur auf E-Mails angewendet, aus denen Anhänge verarbeitet wurden. E-Mails ohne Anhänge werden vollständig ignoriert." #: paperless_mail/admin.py:46 msgid "Metadata" msgstr "Metadaten" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." -msgstr "" -"Folgende Metadaten werden Dokumenten dieser Regel automatisch zugewiesen. " -"Wenn Sie hier nichts auswählen wird Paperless weiterhin alle " -"Zuweisungsalgorithmen ausführen und Metadaten auf Basis des Dokumentinhalts " -"zuweisen." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Folgende Metadaten werden Dokumenten dieser Regel automatisch zugewiesen. Wenn Sie hier nichts auswählen wird Paperless weiterhin alle Zuweisungsalgorithmen ausführen und Metadaten auf Basis des Dokumentinhalts zuweisen." #: paperless_mail/apps.py:9 msgid "Paperless mail" @@ -519,12 +489,8 @@ msgid "IMAP port" msgstr "IMAP-Port" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." -msgstr "" -"Dies ist in der Regel 143 für unverschlüsselte und STARTTLS-Verbindungen und" -" 993 für SSL-Verbindungen." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "Dies ist in der Regel 143 für unverschlüsselte und STARTTLS-Verbindungen und 993 für SSL-Verbindungen." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -623,13 +589,8 @@ msgid "filter attachment filename" msgstr "Anhang-Dateiname filtern" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" -"Wenn angegeben werden nur Dateien verarbeitet, die diesem Dateinamen exakt " -"entsprechen. Platzhalter wie *.pdf oder *rechnung* sind erlaubt. Groß- und " -"Kleinschreibung ist irrelevant." +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "Wenn angegeben werden nur Dateien verarbeitet, die diesem Dateinamen exakt entsprechen. Platzhalter wie *.pdf oder *rechnung* sind erlaubt. Groß- und Kleinschreibung ist irrelevant." #: paperless_mail/models.py:146 msgid "maximum age" @@ -644,12 +605,8 @@ msgid "attachment type" msgstr "Dateianhangstyp" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." -msgstr "" -"'Inline'-Anhänge schließen eingebettete Bilder mit ein, daher sollte diese " -"Einstellung mit einem Dateinamenfilter kombiniert werden." +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "'Inline'-Anhänge schließen eingebettete Bilder mit ein, daher sollte diese Einstellung mit einem Dateinamenfilter kombiniert werden." #: paperless_mail/models.py:159 msgid "action" @@ -660,12 +617,8 @@ msgid "action parameter" msgstr "Parameter für Aktion" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." -msgstr "" -"Zusätzlicher Parameter für die oben ausgewählte Aktion, zum Beispiel der " -"Zielordner für die Aktion \"In angegebenen Ordner verschieben\"" +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "Zusätzlicher Parameter für die oben ausgewählte Aktion, zum Beispiel der Zielordner für die Aktion \"In angegebenen Ordner verschieben\"" #: paperless_mail/models.py:173 msgid "assign title from" @@ -686,3 +639,4 @@ msgstr "Korrespondent zuweisen von" #: paperless_mail/models.py:205 msgid "assign this correspondent" msgstr "Diesen Korrespondent zuweisen" + diff --git a/src/locale/en_GB/LC_MESSAGES/django.po b/src/locale/en_GB/LC_MESSAGES/django.po index 7e775cc08..5ae2832b0 100644 --- a/src/locale/en_GB/LC_MESSAGES/django.po +++ b/src/locale/en_GB/LC_MESSAGES/django.po @@ -1,79 +1,74 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ali Bates, 2021 -# Jonas Winkler, 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-26 12:56+0100\n" -"PO-Revision-Date: 2021-02-16 18:37+0000\n" -"Last-Translator: Jonas Winkler, 2021\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/paperless/teams/115905/en_GB/)\n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:39\n" +"Last-Translator: \n" +"Language-Team: English, United Kingdom\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: en-GB\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" -msgstr "Documents" +msgstr "" #: documents/models.py:32 msgid "Any word" -msgstr "Any word" +msgstr "" #: documents/models.py:33 msgid "All words" -msgstr "All words" +msgstr "" #: documents/models.py:34 msgid "Exact match" -msgstr "Exact match" +msgstr "" #: documents/models.py:35 msgid "Regular expression" -msgstr "Regular expression" +msgstr "" #: documents/models.py:36 msgid "Fuzzy word" -msgstr "Fuzzy word" +msgstr "" #: documents/models.py:37 msgid "Automatic" -msgstr "Automatic" +msgstr "" #: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" -msgstr "name" +msgstr "" #: documents/models.py:45 msgid "match" -msgstr "match" +msgstr "" #: documents/models.py:49 msgid "matching algorithm" -msgstr "matching algorithm" +msgstr "" #: documents/models.py:55 msgid "is insensitive" -msgstr "is insensitive" +msgstr "" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" -msgstr "correspondent" +msgstr "" #: documents/models.py:75 msgid "correspondents" -msgstr "correspondents" +msgstr "" #: documents/models.py:81 msgid "color" @@ -81,284 +76,276 @@ msgstr "colour" #: documents/models.py:87 msgid "is inbox tag" -msgstr "is inbox tag" +msgstr "" #: documents/models.py:89 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." #: documents/models.py:94 msgid "tag" -msgstr "tag" +msgstr "" #: documents/models.py:95 documents/models.py:151 msgid "tags" -msgstr "tags" +msgstr "" #: documents/models.py:101 documents/models.py:133 msgid "document type" -msgstr "document type" +msgstr "" #: documents/models.py:102 msgid "document types" -msgstr "document types" +msgstr "" #: documents/models.py:110 msgid "Unencrypted" -msgstr "Unencrypted" +msgstr "" #: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" -msgstr "Encrypted with GNU Privacy Guard" +msgstr "" #: documents/models.py:124 msgid "title" -msgstr "title" +msgstr "" #: documents/models.py:137 msgid "content" -msgstr "content" +msgstr "" #: documents/models.py:139 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." +msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." #: documents/models.py:144 msgid "mime type" -msgstr "mime type" +msgstr "" #: documents/models.py:155 msgid "checksum" -msgstr "checksum" +msgstr "" #: documents/models.py:159 msgid "The checksum of the original document." -msgstr "The checksum of the original document." +msgstr "" #: documents/models.py:163 msgid "archive checksum" -msgstr "archive checksum" +msgstr "" #: documents/models.py:168 msgid "The checksum of the archived document." -msgstr "The checksum of the archived document." +msgstr "" #: documents/models.py:172 documents/models.py:328 msgid "created" -msgstr "created" +msgstr "" #: documents/models.py:176 msgid "modified" -msgstr "modified" +msgstr "" #: documents/models.py:180 msgid "storage type" -msgstr "storage type" +msgstr "" #: documents/models.py:188 msgid "added" -msgstr "added" +msgstr "" #: documents/models.py:192 msgid "filename" -msgstr "filename" +msgstr "" #: documents/models.py:198 msgid "Current filename in storage" -msgstr "Current filename in storage" +msgstr "" #: documents/models.py:202 msgid "archive filename" -msgstr "archive filename" +msgstr "" #: documents/models.py:208 msgid "Current archive filename in storage" -msgstr "Current archive filename in storage" +msgstr "" #: documents/models.py:212 msgid "archive serial number" -msgstr "archive serial number" +msgstr "" #: documents/models.py:217 msgid "The position of this document in your physical document archive." -msgstr "The position of this document in your physical document archive." +msgstr "" #: documents/models.py:223 msgid "document" -msgstr "document" +msgstr "" #: documents/models.py:224 msgid "documents" -msgstr "documents" +msgstr "" #: documents/models.py:311 msgid "debug" -msgstr "debug" +msgstr "" #: documents/models.py:312 msgid "information" -msgstr "information" +msgstr "" #: documents/models.py:313 msgid "warning" -msgstr "warning" +msgstr "" #: documents/models.py:314 msgid "error" -msgstr "error" +msgstr "" #: documents/models.py:315 msgid "critical" -msgstr "critical" +msgstr "" #: documents/models.py:319 msgid "group" -msgstr "group" +msgstr "" #: documents/models.py:322 msgid "message" -msgstr "message" +msgstr "" #: documents/models.py:325 msgid "level" -msgstr "level" +msgstr "" #: documents/models.py:332 msgid "log" -msgstr "log" +msgstr "" #: documents/models.py:333 msgid "logs" -msgstr "logs" +msgstr "" #: documents/models.py:344 documents/models.py:394 msgid "saved view" -msgstr "saved view" +msgstr "" #: documents/models.py:345 msgid "saved views" -msgstr "saved views" +msgstr "" #: documents/models.py:348 msgid "user" -msgstr "user" +msgstr "" #: documents/models.py:354 msgid "show on dashboard" -msgstr "show on dashboard" +msgstr "" #: documents/models.py:357 msgid "show in sidebar" -msgstr "show in sidebar" +msgstr "" #: documents/models.py:361 msgid "sort field" -msgstr "sort field" +msgstr "" #: documents/models.py:364 msgid "sort reverse" -msgstr "sort reverse" +msgstr "" #: documents/models.py:370 msgid "title contains" -msgstr "title contains" +msgstr "" #: documents/models.py:371 msgid "content contains" -msgstr "content contains" +msgstr "" #: documents/models.py:372 msgid "ASN is" -msgstr "ASN is" +msgstr "" #: documents/models.py:373 msgid "correspondent is" -msgstr "correspondent is" +msgstr "" #: documents/models.py:374 msgid "document type is" -msgstr "document type is" +msgstr "" #: documents/models.py:375 msgid "is in inbox" -msgstr "is in inbox" +msgstr "" #: documents/models.py:376 msgid "has tag" -msgstr "has tag" +msgstr "" #: documents/models.py:377 msgid "has any tag" -msgstr "has any tag" +msgstr "" #: documents/models.py:378 msgid "created before" -msgstr "created before" +msgstr "" #: documents/models.py:379 msgid "created after" -msgstr "created after" +msgstr "" #: documents/models.py:380 msgid "created year is" -msgstr "created year is" +msgstr "" #: documents/models.py:381 msgid "created month is" -msgstr "created month is" +msgstr "" #: documents/models.py:382 msgid "created day is" -msgstr "created day is" +msgstr "" #: documents/models.py:383 msgid "added before" -msgstr "added before" +msgstr "" #: documents/models.py:384 msgid "added after" -msgstr "added after" +msgstr "" #: documents/models.py:385 msgid "modified before" -msgstr "modified before" +msgstr "" #: documents/models.py:386 msgid "modified after" -msgstr "modified after" +msgstr "" #: documents/models.py:387 msgid "does not have tag" -msgstr "does not have tag" +msgstr "" #: documents/models.py:398 msgid "rule type" -msgstr "rule type" +msgstr "" #: documents/models.py:402 msgid "value" -msgstr "value" +msgstr "" #: documents/models.py:408 msgid "filter rule" -msgstr "filter rule" +msgstr "" #: documents/models.py:409 msgid "filter rules" -msgstr "filter rules" +msgstr "" #: documents/serialisers.py:53 #, python-format msgid "Invalid regular expresssion: %(error)s" -msgstr "Invalid regular expresssion: %(error)s" +msgstr "" #: documents/serialisers.py:177 msgid "Invalid color." @@ -367,314 +354,289 @@ msgstr "Invalid colour." #: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" -msgstr "File type %(type)s not supported" +msgstr "" #: documents/templates/index.html:21 msgid "Paperless-ng is loading..." -msgstr "Paperless-ng is loading..." +msgstr "" #: documents/templates/registration/logged_out.html:13 msgid "Paperless-ng signed out" -msgstr "Paperless-ng signed out" +msgstr "" #: documents/templates/registration/logged_out.html:41 msgid "You have been successfully logged out. Bye!" -msgstr "You have been successfully logged out. Bye!" +msgstr "" #: documents/templates/registration/logged_out.html:42 msgid "Sign in again" -msgstr "Sign in again" +msgstr "" #: documents/templates/registration/login.html:13 msgid "Paperless-ng sign in" -msgstr "Paperless-ng sign in" +msgstr "" #: documents/templates/registration/login.html:42 msgid "Please sign in." -msgstr "Please sign in." +msgstr "" #: documents/templates/registration/login.html:45 msgid "Your username and password didn't match. Please try again." -msgstr "Your username and password didn't match. Please try again." +msgstr "" #: documents/templates/registration/login.html:48 msgid "Username" -msgstr "Username" +msgstr "" #: documents/templates/registration/login.html:49 msgid "Password" -msgstr "Password" +msgstr "" #: documents/templates/registration/login.html:54 msgid "Sign in" -msgstr "Sign in" +msgstr "" #: paperless/settings.py:297 msgid "English (US)" -msgstr "English (US)" +msgstr "" #: paperless/settings.py:298 msgid "English (GB)" -msgstr "English (GB)" +msgstr "" #: paperless/settings.py:299 msgid "German" -msgstr "German" +msgstr "" #: paperless/settings.py:300 msgid "Dutch" -msgstr "Dutch" +msgstr "" #: paperless/settings.py:301 msgid "French" -msgstr "French" +msgstr "" #: paperless/settings.py:302 msgid "Portuguese (Brazil)" -msgstr "Portuguese (Brazil)" +msgstr "" #: paperless/settings.py:303 msgid "Italian" -msgstr "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" #: paperless/urls.py:118 msgid "Paperless-ng administration" -msgstr "Paperless-ng administration" +msgstr "" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "Filter" +msgstr "" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." +msgid "Paperless will only process mails that match ALL of the filters given below." msgstr "" -"Paperless will only process mails that match ALL of the filters given below." #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "Actions" +msgstr "" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." msgstr "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "Metadata" +msgstr "" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." msgstr "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." #: paperless_mail/apps.py:9 msgid "Paperless mail" -msgstr "Paperless mail" +msgstr "" #: paperless_mail/models.py:11 msgid "mail account" -msgstr "mail account" +msgstr "" #: paperless_mail/models.py:12 msgid "mail accounts" -msgstr "mail accounts" +msgstr "" #: paperless_mail/models.py:19 msgid "No encryption" -msgstr "No encryption" +msgstr "" #: paperless_mail/models.py:20 msgid "Use SSL" -msgstr "Use SSL" +msgstr "" #: paperless_mail/models.py:21 msgid "Use STARTTLS" -msgstr "Use STARTTLS" +msgstr "" #: paperless_mail/models.py:29 msgid "IMAP server" -msgstr "IMAP server" +msgstr "" #: paperless_mail/models.py:33 msgid "IMAP port" -msgstr "IMAP port" +msgstr "" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." msgstr "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." #: paperless_mail/models.py:40 msgid "IMAP security" -msgstr "IMAP security" +msgstr "" #: paperless_mail/models.py:46 msgid "username" -msgstr "username" +msgstr "" #: paperless_mail/models.py:50 msgid "password" -msgstr "password" +msgstr "" #: paperless_mail/models.py:60 msgid "mail rule" -msgstr "mail rule" +msgstr "" #: paperless_mail/models.py:61 msgid "mail rules" -msgstr "mail rules" +msgstr "" #: paperless_mail/models.py:67 msgid "Only process attachments." -msgstr "Only process attachments." +msgstr "" #: paperless_mail/models.py:68 msgid "Process all files, including 'inline' attachments." -msgstr "Process all files, including 'inline' attachments." +msgstr "" #: paperless_mail/models.py:78 msgid "Mark as read, don't process read mails" -msgstr "Mark as read, don't process read mails" +msgstr "" #: paperless_mail/models.py:79 msgid "Flag the mail, don't process flagged mails" -msgstr "Flag the mail, don't process flagged mails" +msgstr "" #: paperless_mail/models.py:80 msgid "Move to specified folder" -msgstr "Move to specified folder" +msgstr "" #: paperless_mail/models.py:81 msgid "Delete" -msgstr "Delete" +msgstr "" #: paperless_mail/models.py:88 msgid "Use subject as title" -msgstr "Use subject as title" +msgstr "" #: paperless_mail/models.py:89 msgid "Use attachment filename as title" -msgstr "Use attachment filename as title" +msgstr "" #: paperless_mail/models.py:99 msgid "Do not assign a correspondent" -msgstr "Do not assign a correspondent" +msgstr "" #: paperless_mail/models.py:101 msgid "Use mail address" -msgstr "Use mail address" +msgstr "" #: paperless_mail/models.py:103 msgid "Use name (or mail address if not available)" -msgstr "Use name (or mail address if not available)" +msgstr "" #: paperless_mail/models.py:105 msgid "Use correspondent selected below" -msgstr "Use correspondent selected below" +msgstr "" #: paperless_mail/models.py:113 msgid "order" -msgstr "order" +msgstr "" #: paperless_mail/models.py:120 msgid "account" -msgstr "account" +msgstr "" #: paperless_mail/models.py:124 msgid "folder" -msgstr "folder" +msgstr "" #: paperless_mail/models.py:128 msgid "filter from" -msgstr "filter from" +msgstr "" #: paperless_mail/models.py:131 msgid "filter subject" -msgstr "filter subject" +msgstr "" #: paperless_mail/models.py:134 msgid "filter body" -msgstr "filter body" +msgstr "" #: paperless_mail/models.py:138 msgid "filter attachment filename" -msgstr "filter attachment filename" +msgstr "" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." #: paperless_mail/models.py:146 msgid "maximum age" -msgstr "maximum age" +msgstr "" #: paperless_mail/models.py:148 msgid "Specified in days." -msgstr "Specified in days." +msgstr "" #: paperless_mail/models.py:151 msgid "attachment type" -msgstr "attachment type" +msgstr "" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." #: paperless_mail/models.py:159 msgid "action" -msgstr "action" +msgstr "" #: paperless_mail/models.py:165 msgid "action parameter" -msgstr "action parameter" +msgstr "" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." msgstr "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." #: paperless_mail/models.py:173 msgid "assign title from" -msgstr "assign title from" +msgstr "" #: paperless_mail/models.py:183 msgid "assign this tag" -msgstr "assign this tag" +msgstr "" #: paperless_mail/models.py:191 msgid "assign this document type" -msgstr "assign this document type" +msgstr "" #: paperless_mail/models.py:195 msgid "assign correspondent from" -msgstr "assign correspondent from" +msgstr "" #: paperless_mail/models.py:205 msgid "assign this correspondent" -msgstr "assign this correspondent" +msgstr "" + diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po new file mode 100644 index 000000000..e13ab0ef1 --- /dev/null +++ b/src/locale/es_ES/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Spanish\n" +"Language: es_ES\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: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: es-ES\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "" + +#: documents/models.py:32 +msgid "Any word" +msgstr "" + +#: documents/models.py:33 +msgid "All words" +msgstr "" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "" + +#: documents/models.py:45 +msgid "match" +msgstr "" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "" + +#: documents/models.py:81 +msgid "color" +msgstr "" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:94 +msgid "tag" +msgstr "" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "" + +#: documents/models.py:102 +msgid "document types" +msgstr "" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:124 +msgid "title" +msgstr "" + +#: documents/models.py:137 +msgid "content" +msgstr "" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:144 +msgid "mime type" +msgstr "" + +#: documents/models.py:155 +msgid "checksum" +msgstr "" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "" + +#: documents/models.py:176 +msgid "modified" +msgstr "" + +#: documents/models.py:180 +msgid "storage type" +msgstr "" + +#: documents/models.py:188 +msgid "added" +msgstr "" + +#: documents/models.py:192 +msgid "filename" +msgstr "" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:223 +msgid "document" +msgstr "" + +#: documents/models.py:224 +msgid "documents" +msgstr "" + +#: documents/models.py:311 +msgid "debug" +msgstr "" + +#: documents/models.py:312 +msgid "information" +msgstr "" + +#: documents/models.py:313 +msgid "warning" +msgstr "" + +#: documents/models.py:314 +msgid "error" +msgstr "" + +#: documents/models.py:315 +msgid "critical" +msgstr "" + +#: documents/models.py:319 +msgid "group" +msgstr "" + +#: documents/models.py:322 +msgid "message" +msgstr "" + +#: documents/models.py:325 +msgid "level" +msgstr "" + +#: documents/models.py:332 +msgid "log" +msgstr "" + +#: documents/models.py:333 +msgid "logs" +msgstr "" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "" + +#: documents/models.py:345 +msgid "saved views" +msgstr "" + +#: documents/models.py:348 +msgid "user" +msgstr "" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:361 +msgid "sort field" +msgstr "" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:370 +msgid "title contains" +msgstr "" + +#: documents/models.py:371 +msgid "content contains" +msgstr "" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:374 +msgid "document type is" +msgstr "" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:376 +msgid "has tag" +msgstr "" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "" + +#: documents/models.py:378 +msgid "created before" +msgstr "" + +#: documents/models.py:379 +msgid "created after" +msgstr "" + +#: documents/models.py:380 +msgid "created year is" +msgstr "" + +#: documents/models.py:381 +msgid "created month is" +msgstr "" + +#: documents/models.py:382 +msgid "created day is" +msgstr "" + +#: documents/models.py:383 +msgid "added before" +msgstr "" + +#: documents/models.py:384 +msgid "added after" +msgstr "" + +#: documents/models.py:385 +msgid "modified before" +msgstr "" + +#: documents/models.py:386 +msgid "modified after" +msgstr "" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:398 +msgid "rule type" +msgstr "" + +#: documents/models.py:402 +msgid "value" +msgstr "" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 +msgid "German" +msgstr "" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:301 +msgid "French" +msgstr "" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "" + diff --git a/src/locale/fr/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po similarity index 79% rename from src/locale/fr/LC_MESSAGES/django.po rename to src/locale/fr_FR/LC_MESSAGES/django.po index 755dbba9d..f97e275d2 100644 --- a/src/locale/fr/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -1,30 +1,25 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Jonas Winkler, 2021 -# Philmo67, 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-02-16 18:37+0000\n" -"Last-Translator: Philmo67, 2021\n" -"Language-Team: French (https://www.transifex.com/paperless/teams/115905/fr/)\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: French\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: fr\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" -msgstr "Documents" +msgstr "" #: documents/models.py:32 msgid "Any word" @@ -84,12 +79,8 @@ msgid "is inbox tag" msgstr "est une étiquette de boîte de réception" #: documents/models.py:89 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." -msgstr "" -"Marque cette étiquette comme étiquette de boîte de réception : ces " -"étiquettes sont affectées à tous les documents nouvellement traités." +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Marque cette étiquette comme étiquette de boîte de réception : ces étiquettes sont affectées à tous les documents nouvellement traités." #: documents/models.py:94 msgid "tag" @@ -124,12 +115,8 @@ msgid "content" msgstr "contenu" #: documents/models.py:139 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." -msgstr "" -"Les données brutes du document, en format texte uniquement. Ce champ est " -"principalement utilisé pour la recherche." +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "Les données brutes du document, en format texte uniquement. Ce champ est principalement utilisé pour la recherche." #: documents/models.py:144 msgid "mime type" @@ -189,16 +176,15 @@ msgstr "numéro de série de l'archive" #: documents/models.py:217 msgid "The position of this document in your physical document archive." -msgstr "" -"Le classement de ce document dans votre archive de documents physiques." +msgstr "Le classement de ce document dans votre archive de documents physiques." #: documents/models.py:223 msgid "document" -msgstr "document" +msgstr "" #: documents/models.py:224 msgid "documents" -msgstr "documents" +msgstr "" #: documents/models.py:311 msgid "debug" @@ -206,7 +192,7 @@ msgstr "débogage" #: documents/models.py:312 msgid "information" -msgstr "information" +msgstr "" #: documents/models.py:313 msgid "warning" @@ -226,7 +212,7 @@ msgstr "groupe" #: documents/models.py:322 msgid "message" -msgstr "message" +msgstr "" #: documents/models.py:325 msgid "level" @@ -396,9 +382,7 @@ msgstr "Veuillez vous connecter." #: documents/templates/registration/login.html:45 msgid "Your username and password didn't match. Please try again." -msgstr "" -"Votre nom d'utilisateur et votre mot de passe ne correspondent pas. Veuillez" -" réessayer." +msgstr "Votre nom d'utilisateur et votre mot de passe ne correspondent pas. Veuillez réessayer." #: documents/templates/registration/login.html:48 msgid "Username" @@ -453,40 +437,24 @@ msgid "Filter" msgstr "Filtrage" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." -msgstr "" -"Paperless-ng ne traitera que les courriers qui correspondent à TOUS les " -"filtres ci-dessous." +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Paperless-ng ne traitera que les courriers qui correspondent à TOUS les filtres ci-dessous." #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "Actions" +msgstr "" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." -msgstr "" -"Action appliquée au courriel. Cette action n'est exécutée que lorsque les " -"documents ont été traités depuis des courriels. Les courriels sans pièces " -"jointes demeurent totalement inchangés." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "Action appliquée au courriel. Cette action n'est exécutée que lorsque les documents ont été traités depuis des courriels. Les courriels sans pièces jointes demeurent totalement inchangés." #: paperless_mail/admin.py:46 msgid "Metadata" msgstr "Métadonnées" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." -msgstr "" -"Affecter automatiquement des métadonnées aux documents traités à partir de " -"cette règle. Si vous n'affectez pas d'étiquette, de type ou de correspondant" -" ici, Paperless-ng appliquera toutes les autres règles de rapprochement que " -"vous avez définies." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Affecter automatiquement des métadonnées aux documents traités à partir de cette règle. Si vous n'affectez pas d'étiquette, de type ou de correspondant ici, Paperless-ng appliquera toutes les autres règles de rapprochement que vous avez définies." #: paperless_mail/apps.py:9 msgid "Paperless mail" @@ -521,12 +489,8 @@ msgid "IMAP port" msgstr "Port IMAP" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." -msgstr "" -"Généralement 143 pour les connexions non chiffrées et STARTTLS, et 993 pour " -"les connexions SSL." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "Généralement 143 pour les connexions non chiffrées et STARTTLS, et 993 pour les connexions SSL." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -625,13 +589,8 @@ msgid "filter attachment filename" msgstr "filtrer le nom de fichier de la pièce jointe" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" -"Ne traiter que les documents correspondant intégralement à ce nom de fichier" -" s'il est spécifié. Les jokers tels que *.pdf ou *facture* sont autorisés. " -"La casse n'est pas prise en compte." +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "Ne traiter que les documents correspondant intégralement à ce nom de fichier s'il est spécifié. Les jokers tels que *.pdf ou *facture* sont autorisés. La casse n'est pas prise en compte." #: paperless_mail/models.py:146 msgid "maximum age" @@ -646,28 +605,20 @@ msgid "attachment type" msgstr "type de pièce jointe" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." -msgstr "" -"Les pièces jointes en ligne comprennent les images intégrées, il est donc " -"préférable de combiner cette option avec un filtre de nom de fichier." +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "Les pièces jointes en ligne comprennent les images intégrées, il est donc préférable de combiner cette option avec un filtre de nom de fichier." #: paperless_mail/models.py:159 msgid "action" -msgstr "action" +msgstr "" #: paperless_mail/models.py:165 msgid "action parameter" msgstr "paramètre d'action" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." -msgstr "" -"Paramètre supplémentaire pour l'action sélectionnée ci-dessus, par exemple " -"le dossier cible de l'action de déplacement vers un dossier." +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "Paramètre supplémentaire pour l'action sélectionnée ci-dessus, par exemple le dossier cible de l'action de déplacement vers un dossier." #: paperless_mail/models.py:173 msgid "assign title from" @@ -688,3 +639,4 @@ msgstr "affecter le correspondant depuis" #: paperless_mail/models.py:205 msgid "assign this correspondent" msgstr "affecter ce correspondant" + diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po new file mode 100644 index 000000000..29fb985aa --- /dev/null +++ b/src/locale/hu_HU/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Hungarian\n" +"Language: hu_HU\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: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: hu\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "" + +#: documents/models.py:32 +msgid "Any word" +msgstr "" + +#: documents/models.py:33 +msgid "All words" +msgstr "" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "" + +#: documents/models.py:45 +msgid "match" +msgstr "" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "" + +#: documents/models.py:81 +msgid "color" +msgstr "" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:94 +msgid "tag" +msgstr "" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "" + +#: documents/models.py:102 +msgid "document types" +msgstr "" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:124 +msgid "title" +msgstr "" + +#: documents/models.py:137 +msgid "content" +msgstr "" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:144 +msgid "mime type" +msgstr "" + +#: documents/models.py:155 +msgid "checksum" +msgstr "" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "" + +#: documents/models.py:176 +msgid "modified" +msgstr "" + +#: documents/models.py:180 +msgid "storage type" +msgstr "" + +#: documents/models.py:188 +msgid "added" +msgstr "" + +#: documents/models.py:192 +msgid "filename" +msgstr "" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:223 +msgid "document" +msgstr "" + +#: documents/models.py:224 +msgid "documents" +msgstr "" + +#: documents/models.py:311 +msgid "debug" +msgstr "" + +#: documents/models.py:312 +msgid "information" +msgstr "" + +#: documents/models.py:313 +msgid "warning" +msgstr "" + +#: documents/models.py:314 +msgid "error" +msgstr "" + +#: documents/models.py:315 +msgid "critical" +msgstr "" + +#: documents/models.py:319 +msgid "group" +msgstr "" + +#: documents/models.py:322 +msgid "message" +msgstr "" + +#: documents/models.py:325 +msgid "level" +msgstr "" + +#: documents/models.py:332 +msgid "log" +msgstr "" + +#: documents/models.py:333 +msgid "logs" +msgstr "" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "" + +#: documents/models.py:345 +msgid "saved views" +msgstr "" + +#: documents/models.py:348 +msgid "user" +msgstr "" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:361 +msgid "sort field" +msgstr "" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:370 +msgid "title contains" +msgstr "" + +#: documents/models.py:371 +msgid "content contains" +msgstr "" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:374 +msgid "document type is" +msgstr "" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:376 +msgid "has tag" +msgstr "" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "" + +#: documents/models.py:378 +msgid "created before" +msgstr "" + +#: documents/models.py:379 +msgid "created after" +msgstr "" + +#: documents/models.py:380 +msgid "created year is" +msgstr "" + +#: documents/models.py:381 +msgid "created month is" +msgstr "" + +#: documents/models.py:382 +msgid "created day is" +msgstr "" + +#: documents/models.py:383 +msgid "added before" +msgstr "" + +#: documents/models.py:384 +msgid "added after" +msgstr "" + +#: documents/models.py:385 +msgid "modified before" +msgstr "" + +#: documents/models.py:386 +msgid "modified after" +msgstr "" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:398 +msgid "rule type" +msgstr "" + +#: documents/models.py:402 +msgid "value" +msgstr "" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 +msgid "German" +msgstr "" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:301 +msgid "French" +msgstr "" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "" + diff --git a/src/locale/it/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po similarity index 80% rename from src/locale/it/LC_MESSAGES/django.po rename to src/locale/it_IT/LC_MESSAGES/django.po index c1b29608d..8e9118139 100644 --- a/src/locale/it/LC_MESSAGES/django.po +++ b/src/locale/it_IT/LC_MESSAGES/django.po @@ -1,28 +1,21 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ioma Taani, 2021 -# Jonas Winkler, 2021 -# Oliver Thomas Cervera , 2021 -# Alex Camilleri , 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-02-16 18:37+0000\n" -"Last-Translator: Alex Camilleri , 2021\n" -"Language-Team: Italian (https://www.transifex.com/paperless/teams/115905/it/)\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Italian\n" +"Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: it\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" @@ -86,16 +79,12 @@ msgid "is inbox tag" msgstr "è tag di arrivo" #: documents/models.py:89 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." -msgstr "" -"Contrassegna questo tag come tag in arrivo: tutti i documenti elaborati " -"verranno taggati con questo tag." +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Contrassegna questo tag come tag in arrivo: tutti i documenti elaborati verranno taggati con questo tag." #: documents/models.py:94 msgid "tag" -msgstr "tag" +msgstr "" #: documents/models.py:95 documents/models.py:151 msgid "tags" @@ -126,12 +115,8 @@ msgid "content" msgstr "contenuto" #: documents/models.py:139 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." -msgstr "" -"I dati grezzi o solo testo del documento. Questo campo è usato " -"principalmente per la ricerca." +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "I dati grezzi o solo testo del documento. Questo campo è usato principalmente per la ricerca." #: documents/models.py:144 msgid "mime type" @@ -139,7 +124,7 @@ msgstr "tipo mime" #: documents/models.py:155 msgid "checksum" -msgstr "checksum" +msgstr "" #: documents/models.py:159 msgid "The checksum of the original document." @@ -203,7 +188,7 @@ msgstr "documenti" #: documents/models.py:311 msgid "debug" -msgstr "debug" +msgstr "" #: documents/models.py:312 msgid "information" @@ -235,7 +220,7 @@ msgstr "livello" #: documents/models.py:332 msgid "log" -msgstr "log" +msgstr "" #: documents/models.py:333 msgid "logs" @@ -405,7 +390,7 @@ msgstr "Nome utente" #: documents/templates/registration/login.html:49 msgid "Password" -msgstr "Password" +msgstr "" #: documents/templates/registration/login.html:54 msgid "Sign in" @@ -452,39 +437,24 @@ msgid "Filter" msgstr "Filtro" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." -msgstr "" -"Paperless-ng processerà solo la posta che rientra in TUTTI i filtri " -"impostati." +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Paperless-ng processerà solo la posta che rientra in TUTTI i filtri impostati." #: paperless_mail/admin.py:37 msgid "Actions" msgstr "Azioni" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." -msgstr "" -"L'azione che viene applicata alla email. Questa azione viene eseguita solo " -"quando dei documenti vengono elaborati dalla email. Le email senza allegati " -"vengono ignorate." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "L'azione che viene applicata alla email. Questa azione viene eseguita solo quando dei documenti vengono elaborati dalla email. Le email senza allegati vengono ignorate." #: paperless_mail/admin.py:46 msgid "Metadata" msgstr "Metadati" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." -msgstr "" -"Assegna automaticamente i metadati ai documenti elaborati da questa regola. " -"Se non assegni qui dei tag, tipi di documenti o corrispondenti, Paperless " -"userà comunque le regole corrispondenti che hai configurato." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Assegna automaticamente i metadati ai documenti elaborati da questa regola. Se non assegni qui dei tag, tipi di documenti o corrispondenti, Paperless userà comunque le regole corrispondenti che hai configurato." #: paperless_mail/apps.py:9 msgid "Paperless mail" @@ -519,11 +489,8 @@ msgid "IMAP port" msgstr "Porta IMAP" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." -msgstr "" -"Di solito si usa 143 per STARTTLS o nessuna crittografia e 993 per SSL." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "Di solito si usa 143 per STARTTLS o nessuna crittografia e 993 per SSL." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -535,7 +502,7 @@ msgstr "nome utente" #: paperless_mail/models.py:50 msgid "password" -msgstr "password" +msgstr "" #: paperless_mail/models.py:60 msgid "mail rule" @@ -599,7 +566,7 @@ msgstr "priorità" #: paperless_mail/models.py:120 msgid "account" -msgstr "account" +msgstr "" #: paperless_mail/models.py:124 msgid "folder" @@ -622,12 +589,8 @@ msgid "filter attachment filename" msgstr "filtra nome allegato" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" -"Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard " -"come *.pdf o *fattura*. Non fa differenza fra maiuscole e minuscole." +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Non fa differenza fra maiuscole e minuscole." #: paperless_mail/models.py:146 msgid "maximum age" @@ -642,12 +605,8 @@ msgid "attachment type" msgstr "tipo di allegato" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." -msgstr "" -"Gli allegati in linea includono le immagini nel corpo, quindi è meglio " -"combinare questa opzione con il filtro nome." +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "Gli allegati in linea includono le immagini nel corpo, quindi è meglio combinare questa opzione con il filtro nome." #: paperless_mail/models.py:159 msgid "action" @@ -658,12 +617,8 @@ msgid "action parameter" msgstr "parametro azione" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." -msgstr "" -"Parametro aggiuntivo per l'azione selezionata, ad esempio la cartella di " -"destinazione per l'azione che sposta in una cartella." +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "Parametro aggiuntivo per l'azione selezionata, ad esempio la cartella di destinazione per l'azione che sposta in una cartella." #: paperless_mail/models.py:173 msgid "assign title from" @@ -684,3 +639,4 @@ msgstr "assegna corrispondente da" #: paperless_mail/models.py:205 msgid "assign this correspondent" msgstr "assegna questo corrispondente" + diff --git a/src/locale/la_LA/LC_MESSAGES/django.po b/src/locale/la_LA/LC_MESSAGES/django.po new file mode 100644 index 000000000..d631e4911 --- /dev/null +++ b/src/locale/la_LA/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:39\n" +"Last-Translator: \n" +"Language-Team: Latin\n" +"Language: la_LA\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: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: la-LA\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "" + +#: documents/models.py:32 +msgid "Any word" +msgstr "" + +#: documents/models.py:33 +msgid "All words" +msgstr "" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "" + +#: documents/models.py:45 +msgid "match" +msgstr "" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "" + +#: documents/models.py:81 +msgid "color" +msgstr "" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:94 +msgid "tag" +msgstr "" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "" + +#: documents/models.py:102 +msgid "document types" +msgstr "" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:124 +msgid "title" +msgstr "" + +#: documents/models.py:137 +msgid "content" +msgstr "" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:144 +msgid "mime type" +msgstr "" + +#: documents/models.py:155 +msgid "checksum" +msgstr "" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "" + +#: documents/models.py:176 +msgid "modified" +msgstr "" + +#: documents/models.py:180 +msgid "storage type" +msgstr "" + +#: documents/models.py:188 +msgid "added" +msgstr "" + +#: documents/models.py:192 +msgid "filename" +msgstr "" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:223 +msgid "document" +msgstr "" + +#: documents/models.py:224 +msgid "documents" +msgstr "" + +#: documents/models.py:311 +msgid "debug" +msgstr "" + +#: documents/models.py:312 +msgid "information" +msgstr "" + +#: documents/models.py:313 +msgid "warning" +msgstr "" + +#: documents/models.py:314 +msgid "error" +msgstr "" + +#: documents/models.py:315 +msgid "critical" +msgstr "" + +#: documents/models.py:319 +msgid "group" +msgstr "" + +#: documents/models.py:322 +msgid "message" +msgstr "" + +#: documents/models.py:325 +msgid "level" +msgstr "" + +#: documents/models.py:332 +msgid "log" +msgstr "" + +#: documents/models.py:333 +msgid "logs" +msgstr "" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "" + +#: documents/models.py:345 +msgid "saved views" +msgstr "" + +#: documents/models.py:348 +msgid "user" +msgstr "" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:361 +msgid "sort field" +msgstr "" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:370 +msgid "title contains" +msgstr "" + +#: documents/models.py:371 +msgid "content contains" +msgstr "" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:374 +msgid "document type is" +msgstr "" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:376 +msgid "has tag" +msgstr "" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "" + +#: documents/models.py:378 +msgid "created before" +msgstr "" + +#: documents/models.py:379 +msgid "created after" +msgstr "" + +#: documents/models.py:380 +msgid "created year is" +msgstr "" + +#: documents/models.py:381 +msgid "created month is" +msgstr "" + +#: documents/models.py:382 +msgid "created day is" +msgstr "" + +#: documents/models.py:383 +msgid "added before" +msgstr "" + +#: documents/models.py:384 +msgid "added after" +msgstr "" + +#: documents/models.py:385 +msgid "modified before" +msgstr "" + +#: documents/models.py:386 +msgid "modified after" +msgstr "" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:398 +msgid "rule type" +msgstr "" + +#: documents/models.py:402 +msgid "value" +msgstr "" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 +msgid "German" +msgstr "" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:301 +msgid "French" +msgstr "" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "" + diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index 7dae056cf..7aba94bba 100644 --- a/src/locale/nl_NL/LC_MESSAGES/django.po +++ b/src/locale/nl_NL/LC_MESSAGES/django.po @@ -1,27 +1,21 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Jonas Winkler, 2021 -# Jo Vandeginste , 2021 -# Ben , 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-02-16 18:37+0000\n" -"Last-Translator: Ben , 2021\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/paperless/teams/115905/nl_NL/)\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Dutch\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: nl\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" @@ -70,7 +64,7 @@ msgstr "is niet hoofdlettergevoelig" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" -msgstr "correspondent" +msgstr "" #: documents/models.py:75 msgid "correspondents" @@ -85,12 +79,8 @@ msgid "is inbox tag" msgstr "is \"Postvak in\"-etiket" #: documents/models.py:89 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." -msgstr "" -"Markeer dit etiket als een \"Postvak in\"-etiket: alle nieuw verwerkte " -"documenten krijgen de \"Postvak in\"-etiketten." +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Markeer dit etiket als een \"Postvak in\"-etiket: alle nieuw verwerkte documenten krijgen de \"Postvak in\"-etiketten." #: documents/models.py:94 msgid "tag" @@ -125,12 +115,8 @@ msgid "content" msgstr "inhoud" #: documents/models.py:139 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." -msgstr "" -"De onbewerkte gegevens van het document. Dit veld wordt voornamelijk " -"gebruikt om te zoeken." +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "De onbewerkte gegevens van het document. Dit veld wordt voornamelijk gebruikt om te zoeken." #: documents/models.py:144 msgid "mime type" @@ -138,7 +124,7 @@ msgstr "mimetype" #: documents/models.py:155 msgid "checksum" -msgstr "checksum" +msgstr "" #: documents/models.py:159 msgid "The checksum of the original document." @@ -194,7 +180,7 @@ msgstr "De positie van dit document in je fysieke documentenarchief." #: documents/models.py:223 msgid "document" -msgstr "document" +msgstr "" #: documents/models.py:224 msgid "documents" @@ -202,7 +188,7 @@ msgstr "documenten" #: documents/models.py:311 msgid "debug" -msgstr "debug" +msgstr "" #: documents/models.py:312 msgid "information" @@ -278,11 +264,11 @@ msgstr "inhoud bevat" #: documents/models.py:372 msgid "ASN is" -msgstr "ASN is" +msgstr "" #: documents/models.py:373 msgid "correspondent is" -msgstr "correspondent is" +msgstr "" #: documents/models.py:374 msgid "document type is" @@ -448,41 +434,27 @@ msgstr "Paperless-ng administratie" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "Filter" +msgstr "" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." -msgstr "" -"Paperless verwerkt alleen e-mails die voldoen aan ALLE onderstaande filters." +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Paperless verwerkt alleen e-mails die voldoen aan ALLE onderstaande filters." #: paperless_mail/admin.py:37 msgid "Actions" msgstr "Acties" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." -msgstr "" -"De actie die wordt toegepast op de mail. Deze actie wordt alleen uitgevoerd " -"wanneer documenten verwerkt werden uit de mail. Mails zonder bijlage blijven" -" onaangeroerd." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "De actie die wordt toegepast op de mail. Deze actie wordt alleen uitgevoerd wanneer documenten verwerkt werden uit de mail. Mails zonder bijlage blijven onaangeroerd." #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "Metadata" +msgstr "" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." -msgstr "" -"Automatisch metadata toewijzen aan documenten vanuit deze regel. Indien je " -"geen etiketten, documenttypes of correspondenten toewijst, zal Paperless nog" -" steeds alle regels verwerken die je hebt gedefinieerd." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Automatisch metadata toewijzen aan documenten vanuit deze regel. Indien je geen etiketten, documenttypes of correspondenten toewijst, zal Paperless nog steeds alle regels verwerken die je hebt gedefinieerd." #: paperless_mail/apps.py:9 msgid "Paperless mail" @@ -517,12 +489,8 @@ msgid "IMAP port" msgstr "IMAP-poort" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." -msgstr "" -"Dit is gewoonlijk 143 voor onversleutelde of STARTTLS verbindingen, en 993 " -"voor SSL verbindingen." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "Dit is gewoonlijk 143 voor onversleutelde of STARTTLS verbindingen, en 993 voor SSL verbindingen." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -598,7 +566,7 @@ msgstr "volgorde" #: paperless_mail/models.py:120 msgid "account" -msgstr "account" +msgstr "" #: paperless_mail/models.py:124 msgid "folder" @@ -621,13 +589,8 @@ msgid "filter attachment filename" msgstr "Filter bestandsnaam van bijlage" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" -"Alleen documenten verwerken die volledig overeenkomen, indien aangegeven. Je" -" kunt jokertekens gebruiken, zoals *.pdf of *factuur*. Dit is niet " -"hoofdlettergevoelig." +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "Alleen documenten verwerken die volledig overeenkomen, indien aangegeven. Je kunt jokertekens gebruiken, zoals *.pdf of *factuur*. Dit is niet hoofdlettergevoelig." #: paperless_mail/models.py:146 msgid "maximum age" @@ -642,12 +605,8 @@ msgid "attachment type" msgstr "Type bijlage" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." -msgstr "" -"\"Inline\" bijlagen bevatten vaak ook afbeeldingen. In dit geval valt het " -"aan te raden om ook een filter voor de bestandsnaam op te geven." +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "\"Inline\" bijlagen bevatten vaak ook afbeeldingen. In dit geval valt het aan te raden om ook een filter voor de bestandsnaam op te geven." #: paperless_mail/models.py:159 msgid "action" @@ -658,12 +617,8 @@ msgid "action parameter" msgstr "actie parameters" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." -msgstr "" -"Extra parameters voor de hierboven gekozen actie, met andere woorden: de " -"bestemmingsmap voor de verplaats-actie." +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "Extra parameters voor de hierboven gekozen actie, met andere woorden: de bestemmingsmap voor de verplaats-actie." #: paperless_mail/models.py:173 msgid "assign title from" @@ -684,3 +639,4 @@ msgstr "wijs correspondent toe van" #: paperless_mail/models.py:205 msgid "assign this correspondent" msgstr "wijs deze correspondent toe" + diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index f4e5710db..9f32ecfac 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -1,26 +1,21 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Jonas Winkler, 2021 -# Rodrigo A , 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-02-16 18:37+0000\n" -"Last-Translator: Rodrigo A , 2021\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/paperless/teams/115905/pt_BR/)\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Portuguese, Brazilian\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: pt-BR\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" @@ -84,12 +79,8 @@ msgid "is inbox tag" msgstr "é etiqueta caixa de entrada" #: documents/models.py:89 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." -msgstr "" -"Marca essa etiqueta como caixa de entrada: Todos os novos documentos " -"consumidos terão as etiquetas de caixa de entrada." +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Marca essa etiqueta como caixa de entrada: Todos os novos documentos consumidos terão as etiquetas de caixa de entrada." #: documents/models.py:94 msgid "tag" @@ -124,12 +115,8 @@ msgid "content" msgstr "conteúdo" #: documents/models.py:139 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." -msgstr "" -"O conteúdo de texto bruto do documento. Esse campo é usado principalmente " -"para busca." +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "O conteúdo de texto bruto do documento. Esse campo é usado principalmente para busca." #: documents/models.py:144 msgid "mime type" @@ -201,7 +188,7 @@ msgstr "documentos" #: documents/models.py:311 msgid "debug" -msgstr "debug" +msgstr "" #: documents/models.py:312 msgid "information" @@ -233,11 +220,11 @@ msgstr "nível" #: documents/models.py:332 msgid "log" -msgstr "log" +msgstr "" #: documents/models.py:333 msgid "logs" -msgstr "logs" +msgstr "" #: documents/models.py:344 documents/models.py:394 msgid "saved view" @@ -450,42 +437,28 @@ msgid "Filter" msgstr "Filtro" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." -msgstr "" -"Paperless processará somente e-mails que se encaixam em TODOS os filtros " -"abaixo." +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Paperless processará somente e-mails que se encaixam em TODOS os filtros abaixo." #: paperless_mail/admin.py:37 msgid "Actions" msgstr "Ações" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." -msgstr "" -"A ação se aplica ao e-mail. Essa ação só é executada quando documentos foram" -" consumidos do e-mail. E-mails sem anexos permanecerão intactos." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "A ação se aplica ao e-mail. Essa ação só é executada quando documentos foram consumidos do e-mail. E-mails sem anexos permanecerão intactos." #: paperless_mail/admin.py:46 msgid "Metadata" msgstr "Metadados" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." -msgstr "" -"Atribua metadados aos documentos consumidos por esta regra automaticamente. " -"Se você não atribuir etiquetas, tipos ou correspondentes aqui, paperless " -"ainda sim processará todas as regras de detecção que você definiu." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Atribua metadados aos documentos consumidos por esta regra automaticamente. Se você não atribuir etiquetas, tipos ou correspondentes aqui, paperless ainda sim processará todas as regras de detecção que você definiu." #: paperless_mail/apps.py:9 msgid "Paperless mail" -msgstr "Paperless mail" +msgstr "" #: paperless_mail/models.py:11 msgid "mail account" @@ -516,12 +489,8 @@ msgid "IMAP port" msgstr "Porta IMAP" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." -msgstr "" -"É geralmente 143 para não encriptado e conexões STARTTLS, e 993 para " -"conexões SSL." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "É geralmente 143 para não encriptado e conexões STARTTLS, e 993 para conexões SSL." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -620,11 +589,8 @@ msgid "filter attachment filename" msgstr "filtrar nome do arquivo anexo" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" -"Consumir somente documentos que correspondem a este nome de arquivo se especificado.\n" +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "Consumir somente documentos que correspondem a este nome de arquivo se especificado.\n" "Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsculas e minúsculas." #: paperless_mail/models.py:146 @@ -640,12 +606,8 @@ msgid "attachment type" msgstr "tipo de anexo" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." -msgstr "" -"Anexos inline incluem imagens inseridas, por isso é melhor combinar essa " -"opção com um filtro de nome de arquivo." +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "Anexos inline incluem imagens inseridas, por isso é melhor combinar essa opção com um filtro de nome de arquivo." #: paperless_mail/models.py:159 msgid "action" @@ -656,12 +618,8 @@ msgid "action parameter" msgstr "parâmetro da ação" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." -msgstr "" -"Parâmetro adicional para a ação selecionada acima, por exemplo: a pasta de " -"destino da ação de mover pasta." +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "Parâmetro adicional para a ação selecionada acima, por exemplo: a pasta de destino da ação de mover pasta." #: paperless_mail/models.py:173 msgid "assign title from" @@ -682,3 +640,4 @@ msgstr "atribuir correspondente de" #: paperless_mail/models.py:205 msgid "assign this correspondent" msgstr "atribuir este correspondente" + diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po new file mode 100644 index 000000000..df07b0ad6 --- /dev/null +++ b/src/locale/pt_PT/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Portuguese\n" +"Language: pt_PT\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: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: pt-PT\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "" + +#: documents/models.py:32 +msgid "Any word" +msgstr "" + +#: documents/models.py:33 +msgid "All words" +msgstr "" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "" + +#: documents/models.py:45 +msgid "match" +msgstr "" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "" + +#: documents/models.py:81 +msgid "color" +msgstr "" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:94 +msgid "tag" +msgstr "" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "" + +#: documents/models.py:102 +msgid "document types" +msgstr "" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:124 +msgid "title" +msgstr "" + +#: documents/models.py:137 +msgid "content" +msgstr "" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:144 +msgid "mime type" +msgstr "" + +#: documents/models.py:155 +msgid "checksum" +msgstr "" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "" + +#: documents/models.py:176 +msgid "modified" +msgstr "" + +#: documents/models.py:180 +msgid "storage type" +msgstr "" + +#: documents/models.py:188 +msgid "added" +msgstr "" + +#: documents/models.py:192 +msgid "filename" +msgstr "" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:223 +msgid "document" +msgstr "" + +#: documents/models.py:224 +msgid "documents" +msgstr "" + +#: documents/models.py:311 +msgid "debug" +msgstr "" + +#: documents/models.py:312 +msgid "information" +msgstr "" + +#: documents/models.py:313 +msgid "warning" +msgstr "" + +#: documents/models.py:314 +msgid "error" +msgstr "" + +#: documents/models.py:315 +msgid "critical" +msgstr "" + +#: documents/models.py:319 +msgid "group" +msgstr "" + +#: documents/models.py:322 +msgid "message" +msgstr "" + +#: documents/models.py:325 +msgid "level" +msgstr "" + +#: documents/models.py:332 +msgid "log" +msgstr "" + +#: documents/models.py:333 +msgid "logs" +msgstr "" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "" + +#: documents/models.py:345 +msgid "saved views" +msgstr "" + +#: documents/models.py:348 +msgid "user" +msgstr "" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:361 +msgid "sort field" +msgstr "" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:370 +msgid "title contains" +msgstr "" + +#: documents/models.py:371 +msgid "content contains" +msgstr "" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:374 +msgid "document type is" +msgstr "" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:376 +msgid "has tag" +msgstr "" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "" + +#: documents/models.py:378 +msgid "created before" +msgstr "" + +#: documents/models.py:379 +msgid "created after" +msgstr "" + +#: documents/models.py:380 +msgid "created year is" +msgstr "" + +#: documents/models.py:381 +msgid "created month is" +msgstr "" + +#: documents/models.py:382 +msgid "created day is" +msgstr "" + +#: documents/models.py:383 +msgid "added before" +msgstr "" + +#: documents/models.py:384 +msgid "added after" +msgstr "" + +#: documents/models.py:385 +msgid "modified before" +msgstr "" + +#: documents/models.py:386 +msgid "modified after" +msgstr "" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:398 +msgid "rule type" +msgstr "" + +#: documents/models.py:402 +msgid "value" +msgstr "" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 +msgid "German" +msgstr "" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:301 +msgid "French" +msgstr "" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "" + diff --git a/src/locale/ro/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po similarity index 80% rename from src/locale/ro/LC_MESSAGES/django.po rename to src/locale/ro_RO/LC_MESSAGES/django.po index ac1fb40d1..7d83eae22 100644 --- a/src/locale/ro/LC_MESSAGES/django.po +++ b/src/locale/ro_RO/LC_MESSAGES/django.po @@ -1,26 +1,21 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Horea Petrila , 2021 -# Cubic Lemon , 2021 -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-02-16 18:37+0000\n" -"Last-Translator: Cubic Lemon , 2021\n" -"Language-Team: Romanian (https://www.transifex.com/paperless/teams/115905/ro/)\n" +"PO-Revision-Date: 2021-03-06 21:39\n" +"Last-Translator: \n" +"Language-Team: Romanian\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: ro\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" #: documents/apps.py:10 msgid "Documents" @@ -84,12 +79,8 @@ msgid "is inbox tag" msgstr "este eticheta inbox" #: documents/models.py:89 -msgid "" -"Marks this tag as an inbox tag: All newly consumed documents will be tagged " -"with inbox tags." -msgstr "" -"Marcheaza aceasta eticheta ca eticheta inbox: Toate documentele nou " -"consumate primesc aceasta eticheta." +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Marcheaza aceasta eticheta ca eticheta inbox: Toate documentele nou consumate primesc aceasta eticheta." #: documents/models.py:94 msgid "tag" @@ -124,12 +115,8 @@ msgid "content" msgstr "continut" #: documents/models.py:139 -msgid "" -"The raw, text-only data of the document. This field is primarily used for " -"searching." -msgstr "" -"Textul brut al documentului. Acest camp este folosit in principal pentru " -"cautare." +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "Textul brut al documentului. Acest camp este folosit in principal pentru cautare." #: documents/models.py:144 msgid "mime type" @@ -193,7 +180,7 @@ msgstr "Pozitia acestui document in arhiva fizica." #: documents/models.py:223 msgid "document" -msgstr "document" +msgstr "" #: documents/models.py:224 msgid "documents" @@ -450,39 +437,24 @@ msgid "Filter" msgstr "Filtru" #: paperless_mail/admin.py:27 -msgid "" -"Paperless will only process mails that match ALL of the filters given below." -msgstr "" -"Paperless va procesa numai email-urile care se potrivesc cu TOATE filtrele " -"de mai jos." +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Paperless va procesa numai email-urile care se potrivesc cu TOATE filtrele de mai jos." #: paperless_mail/admin.py:37 msgid "Actions" msgstr "Acțiuni" #: paperless_mail/admin.py:39 -msgid "" -"The action applied to the mail. This action is only performed when documents" -" were consumed from the mail. Mails without attachments will remain entirely" -" untouched." -msgstr "" -"Actiunea aplicata tuturol email-urilor. Aceasta este realizata doar cand " -"sunt consumate documente din email. Cele fara atasamente nu vor fi " -"procesate." +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "Actiunea aplicata tuturol email-urilor. Aceasta este realizata doar cand sunt consumate documente din email. Cele fara atasamente nu vor fi procesate." #: paperless_mail/admin.py:46 msgid "Metadata" msgstr "Metadate" #: paperless_mail/admin.py:48 -msgid "" -"Assign metadata to documents consumed from this rule automatically. If you " -"do not assign tags, types or correspondents here, paperless will still " -"process all matching rules that you have defined." -msgstr "" -"Atribuie metadate documentelor consumate prin aceasta regula in mod automat." -" Chiar daca nu sunt atribuite etichete, tipuri sau corespondenti, Paperless " -"va procesa toate regulile definite care se potrivesc." +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Atribuie metadate documentelor consumate prin aceasta regula in mod automat. Chiar daca nu sunt atribuite etichete, tipuri sau corespondenti, Paperless va procesa toate regulile definite care se potrivesc." #: paperless_mail/apps.py:9 msgid "Paperless mail" @@ -517,12 +489,8 @@ msgid "IMAP port" msgstr "port IMAP" #: paperless_mail/models.py:36 -msgid "" -"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " -"SSL connections." -msgstr "" -"De obicei este 143 pentru conexiuni necriptate si STARTTLS, sau 993 pentru " -"conexiuni SSL." +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "De obicei este 143 pentru conexiuni necriptate si STARTTLS, sau 993 pentru conexiuni SSL." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -621,13 +589,8 @@ msgid "filter attachment filename" msgstr "filtreaza numele atasamentului" #: paperless_mail/models.py:140 -msgid "" -"Only consume documents which entirely match this filename if specified. " -"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" -"Consuma doar documentele care se potrivesc in intregime cu acest nume de " -"fisier, daca este specificat. Simbolul * tine locul oricarui sir de " -"caractere. Majusculele nu conteaza." +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "Consuma doar documentele care se potrivesc in intregime cu acest nume de fisier, daca este specificat. Simbolul * tine locul oricarui sir de caractere. Majusculele nu conteaza." #: paperless_mail/models.py:146 msgid "maximum age" @@ -642,13 +605,8 @@ msgid "attachment type" msgstr "tipul atasamentului" #: paperless_mail/models.py:154 -msgid "" -"Inline attachments include embedded images, so it's best to combine this " -"option with a filename filter." -msgstr "" -"Atasamentele \"inline\" includ si imaginile incorporate, deci aceasta " -"optiune functioneaza cel mai bine combinata cu un filtru pentru numele " -"fisierului." +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "Atasamentele \"inline\" includ si imaginile incorporate, deci aceasta optiune functioneaza cel mai bine combinata cu un filtru pentru numele fisierului." #: paperless_mail/models.py:159 msgid "action" @@ -659,12 +617,8 @@ msgid "action parameter" msgstr "parametru al actiunii" #: paperless_mail/models.py:167 -msgid "" -"Additional parameter for the action selected above, i.e., the target folder " -"of the move to folder action." -msgstr "" -"Parametru aditional pentru actiunea definita mai sus (ex. directorul in care" -" sa se realizeze o mutare)" +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "Parametru aditional pentru actiunea definita mai sus (ex. directorul in care sa se realizeze o mutare)" #: paperless_mail/models.py:173 msgid "assign title from" @@ -685,3 +639,4 @@ msgstr "atribuie corespondent din" #: paperless_mail/models.py:205 msgid "assign this correspondent" msgstr "atribuie acest corespondent" + diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po new file mode 100644 index 000000000..b6d2b89f3 --- /dev/null +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Russian\n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: ru\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "" + +#: documents/models.py:32 +msgid "Any word" +msgstr "" + +#: documents/models.py:33 +msgid "All words" +msgstr "" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "" + +#: documents/models.py:45 +msgid "match" +msgstr "" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "" + +#: documents/models.py:81 +msgid "color" +msgstr "" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:94 +msgid "tag" +msgstr "" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "" + +#: documents/models.py:102 +msgid "document types" +msgstr "" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:124 +msgid "title" +msgstr "" + +#: documents/models.py:137 +msgid "content" +msgstr "" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:144 +msgid "mime type" +msgstr "" + +#: documents/models.py:155 +msgid "checksum" +msgstr "" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "" + +#: documents/models.py:176 +msgid "modified" +msgstr "" + +#: documents/models.py:180 +msgid "storage type" +msgstr "" + +#: documents/models.py:188 +msgid "added" +msgstr "" + +#: documents/models.py:192 +msgid "filename" +msgstr "" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:223 +msgid "document" +msgstr "" + +#: documents/models.py:224 +msgid "documents" +msgstr "" + +#: documents/models.py:311 +msgid "debug" +msgstr "" + +#: documents/models.py:312 +msgid "information" +msgstr "" + +#: documents/models.py:313 +msgid "warning" +msgstr "" + +#: documents/models.py:314 +msgid "error" +msgstr "" + +#: documents/models.py:315 +msgid "critical" +msgstr "" + +#: documents/models.py:319 +msgid "group" +msgstr "" + +#: documents/models.py:322 +msgid "message" +msgstr "" + +#: documents/models.py:325 +msgid "level" +msgstr "" + +#: documents/models.py:332 +msgid "log" +msgstr "" + +#: documents/models.py:333 +msgid "logs" +msgstr "" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "" + +#: documents/models.py:345 +msgid "saved views" +msgstr "" + +#: documents/models.py:348 +msgid "user" +msgstr "" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:361 +msgid "sort field" +msgstr "" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:370 +msgid "title contains" +msgstr "" + +#: documents/models.py:371 +msgid "content contains" +msgstr "" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:374 +msgid "document type is" +msgstr "" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:376 +msgid "has tag" +msgstr "" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "" + +#: documents/models.py:378 +msgid "created before" +msgstr "" + +#: documents/models.py:379 +msgid "created after" +msgstr "" + +#: documents/models.py:380 +msgid "created year is" +msgstr "" + +#: documents/models.py:381 +msgid "created month is" +msgstr "" + +#: documents/models.py:382 +msgid "created day is" +msgstr "" + +#: documents/models.py:383 +msgid "added before" +msgstr "" + +#: documents/models.py:384 +msgid "added after" +msgstr "" + +#: documents/models.py:385 +msgid "modified before" +msgstr "" + +#: documents/models.py:386 +msgid "modified after" +msgstr "" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:398 +msgid "rule type" +msgstr "" + +#: documents/models.py:402 +msgid "value" +msgstr "" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 +msgid "German" +msgstr "" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:301 +msgid "French" +msgstr "" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "" + diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po new file mode 100644 index 000000000..20c70dd69 --- /dev/null +++ b/src/locale/th_TH/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:39\n" +"Last-Translator: \n" +"Language-Team: Thai\n" +"Language: th_TH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: th\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "" + +#: documents/models.py:32 +msgid "Any word" +msgstr "" + +#: documents/models.py:33 +msgid "All words" +msgstr "" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "" + +#: documents/models.py:45 +msgid "match" +msgstr "" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "" + +#: documents/models.py:81 +msgid "color" +msgstr "" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:94 +msgid "tag" +msgstr "" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "" + +#: documents/models.py:102 +msgid "document types" +msgstr "" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:124 +msgid "title" +msgstr "" + +#: documents/models.py:137 +msgid "content" +msgstr "" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:144 +msgid "mime type" +msgstr "" + +#: documents/models.py:155 +msgid "checksum" +msgstr "" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "" + +#: documents/models.py:176 +msgid "modified" +msgstr "" + +#: documents/models.py:180 +msgid "storage type" +msgstr "" + +#: documents/models.py:188 +msgid "added" +msgstr "" + +#: documents/models.py:192 +msgid "filename" +msgstr "" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:223 +msgid "document" +msgstr "" + +#: documents/models.py:224 +msgid "documents" +msgstr "" + +#: documents/models.py:311 +msgid "debug" +msgstr "" + +#: documents/models.py:312 +msgid "information" +msgstr "" + +#: documents/models.py:313 +msgid "warning" +msgstr "" + +#: documents/models.py:314 +msgid "error" +msgstr "" + +#: documents/models.py:315 +msgid "critical" +msgstr "" + +#: documents/models.py:319 +msgid "group" +msgstr "" + +#: documents/models.py:322 +msgid "message" +msgstr "" + +#: documents/models.py:325 +msgid "level" +msgstr "" + +#: documents/models.py:332 +msgid "log" +msgstr "" + +#: documents/models.py:333 +msgid "logs" +msgstr "" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "" + +#: documents/models.py:345 +msgid "saved views" +msgstr "" + +#: documents/models.py:348 +msgid "user" +msgstr "" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:361 +msgid "sort field" +msgstr "" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:370 +msgid "title contains" +msgstr "" + +#: documents/models.py:371 +msgid "content contains" +msgstr "" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:374 +msgid "document type is" +msgstr "" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:376 +msgid "has tag" +msgstr "" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "" + +#: documents/models.py:378 +msgid "created before" +msgstr "" + +#: documents/models.py:379 +msgid "created after" +msgstr "" + +#: documents/models.py:380 +msgid "created year is" +msgstr "" + +#: documents/models.py:381 +msgid "created month is" +msgstr "" + +#: documents/models.py:382 +msgid "created day is" +msgstr "" + +#: documents/models.py:383 +msgid "added before" +msgstr "" + +#: documents/models.py:384 +msgid "added after" +msgstr "" + +#: documents/models.py:385 +msgid "modified before" +msgstr "" + +#: documents/models.py:386 +msgid "modified after" +msgstr "" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:398 +msgid "rule type" +msgstr "" + +#: documents/models.py:402 +msgid "value" +msgstr "" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 +msgid "German" +msgstr "" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:301 +msgid "French" +msgstr "" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "" + diff --git a/src/locale/xh_ZA/LC_MESSAGES/django.po b/src/locale/xh_ZA/LC_MESSAGES/django.po new file mode 100644 index 000000000..3939f9d52 --- /dev/null +++ b/src/locale/xh_ZA/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:39\n" +"Last-Translator: \n" +"Language-Team: Xhosa\n" +"Language: xh_ZA\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: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: xh\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "crwdns2528:0crwdne2528:0" + +#: documents/models.py:32 +msgid "Any word" +msgstr "crwdns2530:0crwdne2530:0" + +#: documents/models.py:33 +msgid "All words" +msgstr "crwdns2532:0crwdne2532:0" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "crwdns2534:0crwdne2534:0" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "crwdns2536:0crwdne2536:0" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "crwdns2538:0crwdne2538:0" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "crwdns2540:0crwdne2540:0" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "crwdns2542:0crwdne2542:0" + +#: documents/models.py:45 +msgid "match" +msgstr "crwdns2544:0crwdne2544:0" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "crwdns2546:0crwdne2546:0" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "crwdns2548:0crwdne2548:0" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "crwdns2550:0crwdne2550:0" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "crwdns2552:0crwdne2552:0" + +#: documents/models.py:81 +msgid "color" +msgstr "crwdns2554:0crwdne2554:0" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "crwdns2556:0crwdne2556:0" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "crwdns2558:0crwdne2558:0" + +#: documents/models.py:94 +msgid "tag" +msgstr "crwdns2560:0crwdne2560:0" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "crwdns2562:0crwdne2562:0" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "crwdns2564:0crwdne2564:0" + +#: documents/models.py:102 +msgid "document types" +msgstr "crwdns2566:0crwdne2566:0" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "crwdns2568:0crwdne2568:0" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "crwdns2570:0crwdne2570:0" + +#: documents/models.py:124 +msgid "title" +msgstr "crwdns2572:0crwdne2572:0" + +#: documents/models.py:137 +msgid "content" +msgstr "crwdns2574:0crwdne2574:0" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "crwdns2576:0crwdne2576:0" + +#: documents/models.py:144 +msgid "mime type" +msgstr "crwdns2578:0crwdne2578:0" + +#: documents/models.py:155 +msgid "checksum" +msgstr "crwdns2580:0crwdne2580:0" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "crwdns2582:0crwdne2582:0" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "crwdns2584:0crwdne2584:0" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "crwdns2586:0crwdne2586:0" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "crwdns2588:0crwdne2588:0" + +#: documents/models.py:176 +msgid "modified" +msgstr "crwdns2590:0crwdne2590:0" + +#: documents/models.py:180 +msgid "storage type" +msgstr "crwdns2592:0crwdne2592:0" + +#: documents/models.py:188 +msgid "added" +msgstr "crwdns2594:0crwdne2594:0" + +#: documents/models.py:192 +msgid "filename" +msgstr "crwdns2596:0crwdne2596:0" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "crwdns2598:0crwdne2598:0" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "crwdns2600:0crwdne2600:0" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "crwdns2602:0crwdne2602:0" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "crwdns2604:0crwdne2604:0" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "crwdns2606:0crwdne2606:0" + +#: documents/models.py:223 +msgid "document" +msgstr "crwdns2608:0crwdne2608:0" + +#: documents/models.py:224 +msgid "documents" +msgstr "crwdns2610:0crwdne2610:0" + +#: documents/models.py:311 +msgid "debug" +msgstr "crwdns2612:0crwdne2612:0" + +#: documents/models.py:312 +msgid "information" +msgstr "crwdns2614:0crwdne2614:0" + +#: documents/models.py:313 +msgid "warning" +msgstr "crwdns2616:0crwdne2616:0" + +#: documents/models.py:314 +msgid "error" +msgstr "crwdns2618:0crwdne2618:0" + +#: documents/models.py:315 +msgid "critical" +msgstr "crwdns2620:0crwdne2620:0" + +#: documents/models.py:319 +msgid "group" +msgstr "crwdns2622:0crwdne2622:0" + +#: documents/models.py:322 +msgid "message" +msgstr "crwdns2624:0crwdne2624:0" + +#: documents/models.py:325 +msgid "level" +msgstr "crwdns2626:0crwdne2626:0" + +#: documents/models.py:332 +msgid "log" +msgstr "crwdns2628:0crwdne2628:0" + +#: documents/models.py:333 +msgid "logs" +msgstr "crwdns2630:0crwdne2630:0" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "crwdns2632:0crwdne2632:0" + +#: documents/models.py:345 +msgid "saved views" +msgstr "crwdns2634:0crwdne2634:0" + +#: documents/models.py:348 +msgid "user" +msgstr "crwdns2636:0crwdne2636:0" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "crwdns2638:0crwdne2638:0" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "crwdns2640:0crwdne2640:0" + +#: documents/models.py:361 +msgid "sort field" +msgstr "crwdns2642:0crwdne2642:0" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "crwdns2644:0crwdne2644:0" + +#: documents/models.py:370 +msgid "title contains" +msgstr "crwdns2646:0crwdne2646:0" + +#: documents/models.py:371 +msgid "content contains" +msgstr "crwdns2648:0crwdne2648:0" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "crwdns2650:0crwdne2650:0" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "crwdns2652:0crwdne2652:0" + +#: documents/models.py:374 +msgid "document type is" +msgstr "crwdns2654:0crwdne2654:0" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "crwdns2656:0crwdne2656:0" + +#: documents/models.py:376 +msgid "has tag" +msgstr "crwdns2658:0crwdne2658:0" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "crwdns2660:0crwdne2660:0" + +#: documents/models.py:378 +msgid "created before" +msgstr "crwdns2662:0crwdne2662:0" + +#: documents/models.py:379 +msgid "created after" +msgstr "crwdns2664:0crwdne2664:0" + +#: documents/models.py:380 +msgid "created year is" +msgstr "crwdns2666:0crwdne2666:0" + +#: documents/models.py:381 +msgid "created month is" +msgstr "crwdns2668:0crwdne2668:0" + +#: documents/models.py:382 +msgid "created day is" +msgstr "crwdns2670:0crwdne2670:0" + +#: documents/models.py:383 +msgid "added before" +msgstr "crwdns2672:0crwdne2672:0" + +#: documents/models.py:384 +msgid "added after" +msgstr "crwdns2674:0crwdne2674:0" + +#: documents/models.py:385 +msgid "modified before" +msgstr "crwdns2676:0crwdne2676:0" + +#: documents/models.py:386 +msgid "modified after" +msgstr "crwdns2678:0crwdne2678:0" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "crwdns2680:0crwdne2680:0" + +#: documents/models.py:398 +msgid "rule type" +msgstr "crwdns2682:0crwdne2682:0" + +#: documents/models.py:402 +msgid "value" +msgstr "crwdns2684:0crwdne2684:0" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "crwdns2686:0crwdne2686:0" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "crwdns2688:0crwdne2688:0" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "crwdns2690:0%(error)scrwdne2690:0" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "crwdns2692:0crwdne2692:0" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "crwdns2694:0%(type)scrwdne2694:0" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "crwdns2696:0crwdne2696:0" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "crwdns2698:0crwdne2698:0" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "crwdns2700:0crwdne2700:0" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "crwdns2702:0crwdne2702:0" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "crwdns2704:0crwdne2704:0" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "crwdns2706:0crwdne2706:0" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "crwdns2708:0crwdne2708:0" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "crwdns2710:0crwdne2710:0" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "crwdns2712:0crwdne2712:0" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "crwdns2714:0crwdne2714:0" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "crwdns2716:0crwdne2716:0" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "crwdns2718:0crwdne2718:0" + +#: paperless/settings.py:299 +msgid "German" +msgstr "crwdns2720:0crwdne2720:0" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "crwdns2722:0crwdne2722:0" + +#: paperless/settings.py:301 +msgid "French" +msgstr "crwdns2724:0crwdne2724:0" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "crwdns2726:0crwdne2726:0" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "crwdns2728:0crwdne2728:0" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "crwdns2730:0crwdne2730:0" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "crwdns2732:0crwdne2732:0" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "crwdns2734:0crwdne2734:0" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "crwdns2736:0crwdne2736:0" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "crwdns2738:0crwdne2738:0" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "crwdns2740:0crwdne2740:0" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "crwdns2742:0crwdne2742:0" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "crwdns2744:0crwdne2744:0" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "crwdns2746:0crwdne2746:0" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "crwdns2748:0crwdne2748:0" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "crwdns2750:0crwdne2750:0" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "crwdns2752:0crwdne2752:0" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "crwdns2754:0crwdne2754:0" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "crwdns2756:0crwdne2756:0" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "crwdns2758:0crwdne2758:0" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "crwdns2760:0crwdne2760:0" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "crwdns2762:0crwdne2762:0" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "crwdns2764:0crwdne2764:0" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "crwdns2766:0crwdne2766:0" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "crwdns2768:0crwdne2768:0" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "crwdns2770:0crwdne2770:0" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "crwdns2772:0crwdne2772:0" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "crwdns2774:0crwdne2774:0" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "crwdns2776:0crwdne2776:0" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "crwdns2778:0crwdne2778:0" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "crwdns2780:0crwdne2780:0" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "crwdns2782:0crwdne2782:0" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "crwdns2784:0crwdne2784:0" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "crwdns2786:0crwdne2786:0" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "crwdns2788:0crwdne2788:0" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "crwdns2790:0crwdne2790:0" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "crwdns2792:0crwdne2792:0" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "crwdns2794:0crwdne2794:0" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "crwdns2796:0crwdne2796:0" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "crwdns2798:0crwdne2798:0" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "crwdns2800:0crwdne2800:0" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "crwdns2802:0crwdne2802:0" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "crwdns2804:0crwdne2804:0" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "crwdns2806:0crwdne2806:0" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "crwdns2808:0crwdne2808:0" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "crwdns2810:0crwdne2810:0" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "crwdns2812:0crwdne2812:0" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "crwdns2814:0crwdne2814:0" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "crwdns2816:0crwdne2816:0" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "crwdns2818:0crwdne2818:0" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "crwdns2820:0crwdne2820:0" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "crwdns2822:0crwdne2822:0" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "crwdns2824:0crwdne2824:0" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "crwdns2826:0crwdne2826:0" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "crwdns2828:0crwdne2828:0" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "crwdns2830:0crwdne2830:0" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "crwdns2832:0crwdne2832:0" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "crwdns2834:0crwdne2834:0" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "crwdns2836:0crwdne2836:0" + diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po new file mode 100644 index 000000000..3d6513cbb --- /dev/null +++ b/src/locale/zh_CN/LC_MESSAGES/django.po @@ -0,0 +1,642 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ng\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-28 12:40+0100\n" +"PO-Revision-Date: 2021-03-06 21:40\n" +"Last-Translator: \n" +"Language-Team: Chinese Simplified\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: paperless-ng\n" +"X-Crowdin-Project-ID: 434940\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 54\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "" + +#: documents/models.py:32 +msgid "Any word" +msgstr "" + +#: documents/models.py:33 +msgid "All words" +msgstr "" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "" + +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "" + +#: documents/models.py:45 +msgid "match" +msgstr "" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:74 documents/models.py:120 +msgid "correspondent" +msgstr "" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "" + +#: documents/models.py:81 +msgid "color" +msgstr "" + +#: documents/models.py:87 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:89 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:94 +msgid "tag" +msgstr "" + +#: documents/models.py:95 documents/models.py:151 +msgid "tags" +msgstr "" + +#: documents/models.py:101 documents/models.py:133 +msgid "document type" +msgstr "" + +#: documents/models.py:102 +msgid "document types" +msgstr "" + +#: documents/models.py:110 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:111 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:124 +msgid "title" +msgstr "" + +#: documents/models.py:137 +msgid "content" +msgstr "" + +#: documents/models.py:139 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:144 +msgid "mime type" +msgstr "" + +#: documents/models.py:155 +msgid "checksum" +msgstr "" + +#: documents/models.py:159 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:163 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:168 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:172 documents/models.py:328 +msgid "created" +msgstr "" + +#: documents/models.py:176 +msgid "modified" +msgstr "" + +#: documents/models.py:180 +msgid "storage type" +msgstr "" + +#: documents/models.py:188 +msgid "added" +msgstr "" + +#: documents/models.py:192 +msgid "filename" +msgstr "" + +#: documents/models.py:198 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:202 +msgid "archive filename" +msgstr "" + +#: documents/models.py:208 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:212 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:217 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:223 +msgid "document" +msgstr "" + +#: documents/models.py:224 +msgid "documents" +msgstr "" + +#: documents/models.py:311 +msgid "debug" +msgstr "" + +#: documents/models.py:312 +msgid "information" +msgstr "" + +#: documents/models.py:313 +msgid "warning" +msgstr "" + +#: documents/models.py:314 +msgid "error" +msgstr "" + +#: documents/models.py:315 +msgid "critical" +msgstr "" + +#: documents/models.py:319 +msgid "group" +msgstr "" + +#: documents/models.py:322 +msgid "message" +msgstr "" + +#: documents/models.py:325 +msgid "level" +msgstr "" + +#: documents/models.py:332 +msgid "log" +msgstr "" + +#: documents/models.py:333 +msgid "logs" +msgstr "" + +#: documents/models.py:344 documents/models.py:394 +msgid "saved view" +msgstr "" + +#: documents/models.py:345 +msgid "saved views" +msgstr "" + +#: documents/models.py:348 +msgid "user" +msgstr "" + +#: documents/models.py:354 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:357 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:361 +msgid "sort field" +msgstr "" + +#: documents/models.py:364 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:370 +msgid "title contains" +msgstr "" + +#: documents/models.py:371 +msgid "content contains" +msgstr "" + +#: documents/models.py:372 +msgid "ASN is" +msgstr "" + +#: documents/models.py:373 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:374 +msgid "document type is" +msgstr "" + +#: documents/models.py:375 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:376 +msgid "has tag" +msgstr "" + +#: documents/models.py:377 +msgid "has any tag" +msgstr "" + +#: documents/models.py:378 +msgid "created before" +msgstr "" + +#: documents/models.py:379 +msgid "created after" +msgstr "" + +#: documents/models.py:380 +msgid "created year is" +msgstr "" + +#: documents/models.py:381 +msgid "created month is" +msgstr "" + +#: documents/models.py:382 +msgid "created day is" +msgstr "" + +#: documents/models.py:383 +msgid "added before" +msgstr "" + +#: documents/models.py:384 +msgid "added after" +msgstr "" + +#: documents/models.py:385 +msgid "modified before" +msgstr "" + +#: documents/models.py:386 +msgid "modified after" +msgstr "" + +#: documents/models.py:387 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:398 +msgid "rule type" +msgstr "" + +#: documents/models.py:402 +msgid "value" +msgstr "" + +#: documents/models.py:408 +msgid "filter rule" +msgstr "" + +#: documents/models.py:409 +msgid "filter rules" +msgstr "" + +#: documents/serialisers.py:53 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "" + +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/templates/index.html:21 +msgid "Paperless-ng is loading..." +msgstr "" + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "" + +#: paperless/settings.py:297 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:298 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:299 +msgid "German" +msgstr "" + +#: paperless/settings.py:300 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:301 +msgid "French" +msgstr "" + +#: paperless/settings.py:302 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:304 +msgid "Romanian" +msgstr "" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:27 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "The action applied to the mail. This action is only performed when documents were consumed from the mail. Mails without attachments will remain entirely untouched." +msgstr "" + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:36 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:154 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:167 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." +msgstr "" + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "" + diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 3330da19c..f57be3b6d 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -297,12 +297,12 @@ LANGUAGE_CODE = 'en-us' LANGUAGES = [ ("en-us", _("English (US)")), ("en-gb", _("English (GB)")), - ("de", _("German")), + ("de-de", _("German")), ("nl-nl", _("Dutch")), - ("fr", _("French")), + ("fr-fr", _("French")), ("pt-br", _("Portuguese (Brazil)")), - ("it", _("Italian")), - ("ro", _("Romanian")) + ("it-it", _("Italian")), + ("ro-ro", _("Romanian")) ] LOCALE_PATHS = [