Merge branch 'dev' into feature-app-branding
This commit is contained in:
commit
5fbdc62e02
3
.codespellrc
Normal file
3
.codespellrc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[codespell]
|
||||||
|
write-changes = True
|
||||||
|
ignore-words-list = criterias,afterall,valeu,ureue,equest,ure
|
1
.github/workflows/crowdin.yml
vendored
1
.github/workflows/crowdin.yml
vendored
@ -7,6 +7,7 @@ on:
|
|||||||
push:
|
push:
|
||||||
paths: [
|
paths: [
|
||||||
'src/locale/**',
|
'src/locale/**',
|
||||||
|
'src-ui/messages.xlf',
|
||||||
'src-ui/src/locale/**'
|
'src-ui/src/locale/**'
|
||||||
]
|
]
|
||||||
branches: [ dev ]
|
branches: [ dev ]
|
||||||
|
2
.github/workflows/repo-maintenance.yml
vendored
2
.github/workflows/repo-maintenance.yml
vendored
@ -81,7 +81,7 @@ jobs:
|
|||||||
console.log(`Found ${result.repository.discussions.nodes.length} open answered discussions`)
|
console.log(`Found ${result.repository.discussions.nodes.length} open answered discussions`)
|
||||||
|
|
||||||
for (const discussion of result.repository.discussions.nodes) {
|
for (const discussion of result.repository.discussions.nodes) {
|
||||||
console.log(`Closing dicussion #${discussion.number} (${discussion.id})`)
|
console.log(`Closing discussion #${discussion.number} (${discussion.id})`)
|
||||||
|
|
||||||
const addCommentMutation = `mutation($discussion:ID!, $body:String!) {
|
const addCommentMutation = `mutation($discussion:ID!, $body:String!) {
|
||||||
addDiscussionComment(input:{discussionId:$discussion, body:$body}) {
|
addDiscussionComment(input:{discussionId:$discussion, body:$body}) {
|
||||||
|
@ -29,11 +29,10 @@ repos:
|
|||||||
- id: check-case-conflict
|
- id: check-case-conflict
|
||||||
- id: detect-private-key
|
- id: detect-private-key
|
||||||
- repo: https://github.com/codespell-project/codespell
|
- repo: https://github.com/codespell-project/codespell
|
||||||
rev: v2.2.4
|
rev: v2.2.6
|
||||||
hooks:
|
hooks:
|
||||||
- id: codespell
|
- id: codespell
|
||||||
args: ["--write-changes", "--ignore-words-list", "criterias,afterall,valeu,ure"]
|
exclude: "(^src-ui/src/locale/)|(^src-ui/e2e/)|(^src/paperless_mail/tests/samples/)"
|
||||||
exclude: "^src-ui/src/locale/|^src-ui/e2e/|^src/paperless_mail/tests/samples/"
|
|
||||||
exclude_types:
|
exclude_types:
|
||||||
- pofile
|
- pofile
|
||||||
- json
|
- json
|
||||||
@ -48,11 +47,11 @@ repos:
|
|||||||
exclude: "(^Pipfile\\.lock$)"
|
exclude: "(^Pipfile\\.lock$)"
|
||||||
# Python hooks
|
# Python hooks
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
rev: 'v0.1.5'
|
rev: 'v0.1.11'
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
- repo: https://github.com/psf/black-pre-commit-mirror
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
||||||
rev: 23.11.0
|
rev: 23.12.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: black
|
- id: black
|
||||||
# Dockerfile hooks
|
# Dockerfile hooks
|
||||||
|
4
Pipfile
4
Pipfile
@ -7,7 +7,7 @@ name = "pypi"
|
|||||||
dateparser = "~=1.2"
|
dateparser = "~=1.2"
|
||||||
# WARNING: django does not use semver.
|
# WARNING: django does not use semver.
|
||||||
# Only patch versions are guaranteed to not introduce breaking changes.
|
# Only patch versions are guaranteed to not introduce breaking changes.
|
||||||
django = "~=4.2.8"
|
django = "~=4.2.9"
|
||||||
django-auditlog = "*"
|
django-auditlog = "*"
|
||||||
django-celery-results = "*"
|
django-celery-results = "*"
|
||||||
django-compression-middleware = "*"
|
django-compression-middleware = "*"
|
||||||
@ -57,7 +57,7 @@ zxing-cpp = {version = "*", platform_machine = "== 'x86_64'"}
|
|||||||
|
|
||||||
[dev-packages]
|
[dev-packages]
|
||||||
# Linting
|
# Linting
|
||||||
black = "==23.11.0"
|
black = "*"
|
||||||
pre-commit = "*"
|
pre-commit = "*"
|
||||||
ruff = "*"
|
ruff = "*"
|
||||||
# Testing
|
# Testing
|
||||||
|
1598
Pipfile.lock
generated
1598
Pipfile.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,55 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## paperless-ngx 2.3.3
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
- Enhancement: Explain behavior of unset app config boolean to user [@shamoon](https://github.com/shamoon) ([#5345](https://github.com/paperless-ngx/paperless-ngx/pull/5345))
|
||||||
|
- Enhancement: title assignment placeholder error handling, fallback [@shamoon](https://github.com/shamoon) ([#5282](https://github.com/paperless-ngx/paperless-ngx/pull/5282))
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Fix: Don't require the JSON user arguments field, interpret empty string as [@stumpylog](https://github.com/stumpylog) ([#5320](https://github.com/paperless-ngx/paperless-ngx/pull/5320))
|
||||||
|
|
||||||
|
### Maintenance
|
||||||
|
|
||||||
|
- Chore: Backend dependencies update [@stumpylog](https://github.com/stumpylog) ([#5336](https://github.com/paperless-ngx/paperless-ngx/pull/5336))
|
||||||
|
- Chore: add pre-commit hook for codespell [@shamoon](https://github.com/shamoon) ([#5324](https://github.com/paperless-ngx/paperless-ngx/pull/5324))
|
||||||
|
|
||||||
|
### All App Changes
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>5 changes</summary>
|
||||||
|
|
||||||
|
- Enhancement: Explain behavior of unset app config boolean to user [@shamoon](https://github.com/shamoon) ([#5345](https://github.com/paperless-ngx/paperless-ngx/pull/5345))
|
||||||
|
- Enhancement: title assignment placeholder error handling, fallback [@shamoon](https://github.com/shamoon) ([#5282](https://github.com/paperless-ngx/paperless-ngx/pull/5282))
|
||||||
|
- Chore: Backend dependencies update [@stumpylog](https://github.com/stumpylog) ([#5336](https://github.com/paperless-ngx/paperless-ngx/pull/5336))
|
||||||
|
- Fix: Don't require the JSON user arguments field, interpret empty string as [@stumpylog](https://github.com/stumpylog) ([#5320](https://github.com/paperless-ngx/paperless-ngx/pull/5320))
|
||||||
|
- Chore: add pre-commit hook for codespell [@shamoon](https://github.com/shamoon) ([#5324](https://github.com/paperless-ngx/paperless-ngx/pull/5324))
|
||||||
|
</details>
|
||||||
|
|
||||||
|
## paperless-ngx 2.3.2
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Fix: triggered workflow assignment of customfield fails if field exists in v2.3.1 [@shamoon](https://github.com/shamoon) ([#5302](https://github.com/paperless-ngx/paperless-ngx/pull/5302))
|
||||||
|
- Fix: Decoding of user arguments for OCR [@stumpylog](https://github.com/stumpylog) ([#5307](https://github.com/paperless-ngx/paperless-ngx/pull/5307))
|
||||||
|
- Fix: empty workflow trigger match field cannot be saved in v.2.3.1 [@shamoon](https://github.com/shamoon) ([#5301](https://github.com/paperless-ngx/paperless-ngx/pull/5301))
|
||||||
|
- Fix: Use local time for added/updated workflow triggers [@stumpylog](https://github.com/stumpylog) ([#5304](https://github.com/paperless-ngx/paperless-ngx/pull/5304))
|
||||||
|
- Fix: workflow edit form loses unsaved changes [@shamoon](https://github.com/shamoon) ([#5299](https://github.com/paperless-ngx/paperless-ngx/pull/5299))
|
||||||
|
|
||||||
|
### All App Changes
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>5 changes</summary>
|
||||||
|
|
||||||
|
- Fix: triggered workflow assignment of customfield fails if field exists in v2.3.1 [@shamoon](https://github.com/shamoon) ([#5302](https://github.com/paperless-ngx/paperless-ngx/pull/5302))
|
||||||
|
- Fix: Decoding of user arguments for OCR [@stumpylog](https://github.com/stumpylog) ([#5307](https://github.com/paperless-ngx/paperless-ngx/pull/5307))
|
||||||
|
- Fix: empty workflow trigger match field cannot be saved in v.2.3.1 [@shamoon](https://github.com/shamoon) ([#5301](https://github.com/paperless-ngx/paperless-ngx/pull/5301))
|
||||||
|
- Fix: Use local time for added/updated workflow triggers [@stumpylog](https://github.com/stumpylog) ([#5304](https://github.com/paperless-ngx/paperless-ngx/pull/5304))
|
||||||
|
- Fix: workflow edit form loses unsaved changes [@shamoon](https://github.com/shamoon) ([#5299](https://github.com/paperless-ngx/paperless-ngx/pull/5299))
|
||||||
|
</details>
|
||||||
|
|
||||||
## paperless-ngx 2.3.1
|
## paperless-ngx 2.3.1
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
@ -3277,7 +3327,7 @@ primarily.
|
|||||||
[OCRmyPDF](https://github.com/jbarlow83/OCRmyPDF) to perform OCR
|
[OCRmyPDF](https://github.com/jbarlow83/OCRmyPDF) to perform OCR
|
||||||
on documents. It still uses tesseract under the hood, but the
|
on documents. It still uses tesseract under the hood, but the
|
||||||
PDF parser of Paperless has changed considerably and will behave
|
PDF parser of Paperless has changed considerably and will behave
|
||||||
different for some douments.
|
different for some documents.
|
||||||
- OCRmyPDF creates archived PDF/A documents with embedded text
|
- OCRmyPDF creates archived PDF/A documents with embedded text
|
||||||
that can be selected in the front end.
|
that can be selected in the front end.
|
||||||
- Paperless stores archived versions of documents alongside with
|
- Paperless stores archived versions of documents alongside with
|
||||||
|
@ -388,19 +388,18 @@
|
|||||||
<context context-type="linenumber">208</context>
|
<context context-type="linenumber">208</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
@ -2286,6 +2285,17 @@
|
|||||||
<context context-type="linenumber">261</context>
|
<context context-type="linenumber">261</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3696,7 +3706,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -3817,6 +3827,13 @@
|
|||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">92</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<pngx-page-header title="Configuration" i18n-title></pngx-page-header>
|
<pngx-page-header title="Application Configuration" subTitle="Global Paperless-ngx configuration options" i18n-title i18n-subTitle></pngx-page-header>
|
||||||
|
|
||||||
<form [formGroup]="configForm" (ngSubmit)="saveConfig()" class="pb-4">
|
<form [formGroup]="configForm" (ngSubmit)="saveConfig()" class="pb-4">
|
||||||
|
|
||||||
@ -27,7 +27,7 @@
|
|||||||
@switch (option.type) {
|
@switch (option.type) {
|
||||||
@case (ConfigOptionType.Select) { <pngx-input-select [formControlName]="option.key" [error]="errors[option.key]" [items]="option.choices" [allowNull]="true"></pngx-input-select> }
|
@case (ConfigOptionType.Select) { <pngx-input-select [formControlName]="option.key" [error]="errors[option.key]" [items]="option.choices" [allowNull]="true"></pngx-input-select> }
|
||||||
@case (ConfigOptionType.Number) { <pngx-input-number [formControlName]="option.key" [error]="errors[option.key]" [showAdd]="false"></pngx-input-number> }
|
@case (ConfigOptionType.Number) { <pngx-input-number [formControlName]="option.key" [error]="errors[option.key]" [showAdd]="false"></pngx-input-number> }
|
||||||
@case (ConfigOptionType.Boolean) { <pngx-input-switch [formControlName]="option.key" [error]="errors[option.key]" [horizontal]="true" title="Enable" i18n-title></pngx-input-switch> }
|
@case (ConfigOptionType.Boolean) { <pngx-input-switch [formControlName]="option.key" [error]="errors[option.key]" [showUnsetNote]="true" [horizontal]="true" title="Enable" i18n-title></pngx-input-switch> }
|
||||||
@case (ConfigOptionType.String) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
@case (ConfigOptionType.String) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
||||||
@case (ConfigOptionType.JSON) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
@case (ConfigOptionType.JSON) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
||||||
@case (ConfigOptionType.File) { <pngx-input-file [formControlName]="option.key" (upload)="uploadFile($event, option.key)" [error]="errors[option.key]"></pngx-input-file> }
|
@case (ConfigOptionType.File) { <pngx-input-file [formControlName]="option.key" (upload)="uploadFile($event, option.key)" [error]="errors[option.key]"></pngx-input-file> }
|
||||||
|
@ -99,7 +99,7 @@
|
|||||||
<input type="hidden" formControlName="id" />
|
<input type="hidden" formControlName="id" />
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<pngx-input-text i18n-title title="Assign title" formControlName="assign_title" i18n-hint hint="Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>." [error]="error?.assign_title"></pngx-input-text>
|
<pngx-input-text i18n-title title="Assign title" formControlName="assign_title" i18n-hint hint="Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>." [error]="error?.actions?.[i]?.assign_title"></pngx-input-text>
|
||||||
<pngx-input-tags [allowCreate]="false" i18n-title title="Assign tags" formControlName="assign_tags"></pngx-input-tags>
|
<pngx-input-tags [allowCreate]="false" i18n-title title="Assign tags" formControlName="assign_tags"></pngx-input-tags>
|
||||||
<pngx-input-select i18n-title title="Assign document type" [items]="documentTypes" [allowNull]="true" formControlName="assign_document_type"></pngx-input-select>
|
<pngx-input-select i18n-title title="Assign document type" [items]="documentTypes" [allowNull]="true" formControlName="assign_document_type"></pngx-input-select>
|
||||||
<pngx-input-select i18n-title title="Assign correspondent" [items]="correspondents" [allowNull]="true" formControlName="assign_correspondent"></pngx-input-select>
|
<pngx-input-select i18n-title title="Assign correspondent" [items]="correspondents" [allowNull]="true" formControlName="assign_correspondent"></pngx-input-select>
|
||||||
|
@ -2,7 +2,14 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
@if (!horizontal) {
|
@if (!horizontal) {
|
||||||
<div class="d-flex align-items-center position-relative hidden-button-container col-md-3">
|
<div class="d-flex align-items-center position-relative hidden-button-container col-md-3">
|
||||||
<label class="form-label" [for]="inputId">{{title}}</label>
|
<label class="form-label" [for]="inputId" [ngbTooltip]="showUnsetNote && isUnset ? tipContent: null" placement="end">
|
||||||
|
{{title}}
|
||||||
|
@if (showUnsetNote && isUnset) {
|
||||||
|
<svg class="sidebaricon-sm ms-1" fill="currentColor">
|
||||||
|
<use xlink:href="assets/bootstrap-icons.svg#exclamation-triangle"/>
|
||||||
|
</svg>
|
||||||
|
}
|
||||||
|
</label>
|
||||||
@if (removable) {
|
@if (removable) {
|
||||||
<button type="button" class="btn btn-sm btn-danger position-absolute left-0" (click)="removed.emit(this)">
|
<button type="button" class="btn btn-sm btn-danger position-absolute left-0" (click)="removed.emit(this)">
|
||||||
<svg class="sidebaricon" fill="currentColor">
|
<svg class="sidebaricon" fill="currentColor">
|
||||||
@ -16,7 +23,14 @@
|
|||||||
<div class="form-check form-switch">
|
<div class="form-check form-switch">
|
||||||
<input #inputField type="checkbox" class="form-check-input" [id]="inputId" [(ngModel)]="value" (change)="onChange(value)" (blur)="onTouched()" [disabled]="disabled">
|
<input #inputField type="checkbox" class="form-check-input" [id]="inputId" [(ngModel)]="value" (change)="onChange(value)" (blur)="onTouched()" [disabled]="disabled">
|
||||||
@if (horizontal) {
|
@if (horizontal) {
|
||||||
<label class="form-check-label" [for]="inputId">{{title}}</label>
|
<label class="form-check-label" [class.text-muted]="showUnsetNote && isUnset" [for]="inputId" [ngbTooltip]="showUnsetNote && isUnset ? tipContent: null" placement="end">
|
||||||
|
{{title}}
|
||||||
|
@if (showUnsetNote && isUnset) {
|
||||||
|
<svg class="sidebaricon-sm ms-1" fill="currentColor">
|
||||||
|
<use xlink:href="assets/bootstrap-icons.svg#exclamation-triangle"/>
|
||||||
|
</svg>
|
||||||
|
}
|
||||||
|
</label>
|
||||||
}
|
}
|
||||||
@if (hint) {
|
@if (hint) {
|
||||||
<div class="form-text text-muted">{{hint}}</div>
|
<div class="form-text text-muted">{{hint}}</div>
|
||||||
@ -25,3 +39,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<ng-template #tipContent>
|
||||||
|
<span class="text-light fst-italic" i18n>Note: value has not yet been set and will not apply until explicitly changed</span>
|
||||||
|
</ng-template>
|
||||||
|
@ -5,6 +5,7 @@ import {
|
|||||||
NG_VALUE_ACCESSOR,
|
NG_VALUE_ACCESSOR,
|
||||||
ReactiveFormsModule,
|
ReactiveFormsModule,
|
||||||
} from '@angular/forms'
|
} from '@angular/forms'
|
||||||
|
import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
|
||||||
|
|
||||||
describe('SwitchComponent', () => {
|
describe('SwitchComponent', () => {
|
||||||
let component: SwitchComponent
|
let component: SwitchComponent
|
||||||
@ -15,7 +16,7 @@ describe('SwitchComponent', () => {
|
|||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [SwitchComponent],
|
declarations: [SwitchComponent],
|
||||||
providers: [],
|
providers: [],
|
||||||
imports: [FormsModule, ReactiveFormsModule],
|
imports: [FormsModule, ReactiveFormsModule, NgbTooltipModule],
|
||||||
}).compileComponents()
|
}).compileComponents()
|
||||||
|
|
||||||
fixture = TestBed.createComponent(SwitchComponent)
|
fixture = TestBed.createComponent(SwitchComponent)
|
||||||
@ -36,4 +37,9 @@ describe('SwitchComponent', () => {
|
|||||||
fixture.detectChanges()
|
fixture.detectChanges()
|
||||||
expect(component.value).toBeFalsy()
|
expect(component.value).toBeFalsy()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('should show note if unset', () => {
|
||||||
|
component.value = null
|
||||||
|
expect(component.isUnset).toBeTruthy()
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Component, forwardRef } from '@angular/core'
|
import { Component, Input, forwardRef } from '@angular/core'
|
||||||
import { NG_VALUE_ACCESSOR } from '@angular/forms'
|
import { NG_VALUE_ACCESSOR } from '@angular/forms'
|
||||||
import { AbstractInputComponent } from '../abstract-input'
|
import { AbstractInputComponent } from '../abstract-input'
|
||||||
|
|
||||||
@ -15,7 +15,14 @@ import { AbstractInputComponent } from '../abstract-input'
|
|||||||
styleUrls: ['./switch.component.scss'],
|
styleUrls: ['./switch.component.scss'],
|
||||||
})
|
})
|
||||||
export class SwitchComponent extends AbstractInputComponent<boolean> {
|
export class SwitchComponent extends AbstractInputComponent<boolean> {
|
||||||
|
@Input()
|
||||||
|
showUnsetNote: boolean = false
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super()
|
super()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get isUnset(): boolean {
|
||||||
|
return this.value === null || this.value === undefined
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -148,7 +148,7 @@ export const PaperlessConfigOptions: ConfigOption[] = [
|
|||||||
key: 'max_image_pixels',
|
key: 'max_image_pixels',
|
||||||
title: $localize`Max Image Pixels`,
|
title: $localize`Max Image Pixels`,
|
||||||
type: ConfigOptionType.Number,
|
type: ConfigOptionType.Number,
|
||||||
config_key: 'PAPERLESS_OCR_IMAGE_DPI',
|
config_key: 'PAPERLESS_OCR_MAX_IMAGE_PIXELS',
|
||||||
category: ConfigCategory.OCR,
|
category: ConfigCategory.OCR,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -5,7 +5,7 @@ export const environment = {
|
|||||||
apiBaseUrl: document.baseURI + 'api/',
|
apiBaseUrl: document.baseURI + 'api/',
|
||||||
apiVersion: '4',
|
apiVersion: '4',
|
||||||
appTitle: 'Paperless-ngx',
|
appTitle: 'Paperless-ngx',
|
||||||
version: '2.3.2-dev',
|
version: '2.3.3-dev',
|
||||||
webSocketHost: window.location.host,
|
webSocketHost: window.location.host,
|
||||||
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
|
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
|
||||||
webSocketBaseUrl: base_url.pathname + 'ws/',
|
webSocketBaseUrl: base_url.pathname + 'ws/',
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ten slotte, namens elke bydraer aan hierdie gemeenskapsondersteunde projek, dankie dat u Paperless-ngx gebruik!</target>
|
<target state="translated">Ten slotte, namens elke bydraer aan hierdie gemeenskapsondersteunde projek, dankie dat u Paperless-ngx gebruik!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">أخيرا، بالنيابة عن كل مساهم في هذا المشروع المدعوم من المجتمع، شكرا لك على استخدام Paperless-ngx!</target>
|
<target state="translated">أخيرا، بالنيابة عن كل مساهم في هذا المشروع المدعوم من المجتمع، شكرا لك على استخدام Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">الإدارة</target>
|
<target state="translated">الإدارة</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx!</target>
|
<target state="translated">Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">И накрая, от името на всеки участник в този проект, поддържан от общността, благодарим Ви, че използвате Paperless-ngx!</target>
|
<target state="translated">И накрая, от името на всеки участник в този проект, поддържан от общността, благодарим Ви, че използвате Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Администрация</target>
|
<target state="translated">Администрация</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Няма намерени елементи</target>
|
<target state="translated">Няма намерени елементи</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Finalment, en nom de tots els col·laboradors d'aquest projecte recolzat per la comunitat, gràcies per utilitzar Paperless-ngx!</target>
|
<target state="translated">Finalment, en nom de tots els col·laboradors d'aquest projecte recolzat per la comunitat, gràcies per utilitzar Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Configuració</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Administració</target>
|
<target state="translated">Administració</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Configuració</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Elements no trobats</target>
|
<target state="translated">Elements no trobats</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Wir bedanken uns im Namen aller Mitwirkenden dieses gemeinschaftlich unterstützten Projekts, dass Sie Paperless-ngx benutzen!</target>
|
<target state="final">Wir bedanken uns im Namen aller Mitwirkenden dieses gemeinschaftlich unterstützten Projekts, dass Sie Paperless-ngx benutzen!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html" approved="yes">
|
<trans-unit id="9063918187161876141" datatype="html" approved="yes">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="final">Anwendungskonfiguration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html" approved="yes">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="final">Globale Paperless-ngx-Konfigurationsoptionen</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Konfiguration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html" approved="yes">
|
<trans-unit id="187187500641108332" datatype="html" approved="yes">
|
||||||
<source>
|
<source>
|
||||||
@ -1777,7 +1777,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
||||||
<context context-type="linenumber">113</context>
|
<context context-type="linenumber">113</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">{VAR_PLURAL, plural, =1 {Eine <x id="INTERPOLATION"/> Aufgabe} other {Insgesamt <x id="INTERPOLATION_1"/> <x id="INTERPOLATION"/> Aufgaben}}</target>
|
<target state="final">{VAR_PLURAL, plural, =1 {Eine Aufgabe <x id="INTERPOLATION"/>} other {Insgesamt <x id="INTERPOLATION_1"/> Aufgaben <x id="INTERPOLATION"/>}}</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5639839509673911668" datatype="html" approved="yes">
|
<trans-unit id="5639839509673911668" datatype="html" approved="yes">
|
||||||
<source>Failed<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>Failed<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Administration</target>
|
<target state="final">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html" approved="yes">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Konfiguration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html" approved="yes">
|
<trans-unit id="6626289114556551491" datatype="html" approved="yes">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3832,13 +3844,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Pfad filtern</target>
|
<target state="final">Pfad filtern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5491897741674893121" datatype="html">
|
<trans-unit id="5491897741674893121" datatype="html" approved="yes">
|
||||||
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a></source>
|
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">185</context>
|
<context context-type="linenumber">185</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a></target>
|
<target state="final">Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung normalisiert.</a></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7468453896129193641" datatype="html" approved="yes">
|
<trans-unit id="7468453896129193641" datatype="html" approved="yes">
|
||||||
<source>Filter mail rule</source>
|
<source>Filter mail rule</source>
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Keine Elemente gefunden</target>
|
<target state="final">Keine Elemente gefunden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -6737,7 +6757,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/manage/management-list/management-list.component.html</context>
|
<context context-type="sourcefile">src/app/components/manage/management-list/management-list.component.html</context>
|
||||||
<context context-type="linenumber">122</context>
|
<context context-type="linenumber">122</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">{VAR_PLURAL, plural, =1 {Ein <x id="INTERPOLATION"/>} other {<x id="INTERPOLATION_1"/> <x id="INTERPOLATION_2"/> insgesamt}}</target>
|
<target state="final">{VAR_PLURAL, plural, =1 {Ein <x id="INTERPOLATION"/>} other {Insgesamt <x id="INTERPOLATION_1"/> <x id="INTERPOLATION_2"/>}}</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="810888510148304696" datatype="html" approved="yes">
|
<trans-unit id="810888510148304696" datatype="html" approved="yes">
|
||||||
<source>Automatic</source>
|
<source>Automatic</source>
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Τέλος, εκ μέρους κάθε συνεισφέροντος σε αυτό το έργο που υποστηρίζεται από την κοινότητα, σας ευχαριστούμε που χρησιμοποιείτε το Paperless-ngx!</target>
|
<target state="translated">Τέλος, εκ μέρους κάθε συνεισφέροντος σε αυτό το έργο που υποστηρίζεται από την κοινότητα, σας ευχαριστούμε που χρησιμοποιείτε το Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Por último, en nombre de todos los colaboradores de este proyecto apoyado por la comunidad, ¡gracias por utilizar Paperless-ngx!</target>
|
<target state="translated">Por último, en nombre de todos los colaboradores de este proyecto apoyado por la comunidad, ¡gracias por utilizar Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Administración</target>
|
<target state="translated">Administración</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">No se encontraron elementos</target>
|
<target state="translated">No se encontraron elementos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Lopuksi kiitän kaikkia osallistujia, jotka ovat käyttäneet Paperless-ngxia!</target>
|
<target state="translated">Lopuksi kiitän kaikkia osallistujia, jotka ovat käyttäneet Paperless-ngxia!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ylläpito</target>
|
<target state="translated">Ylläpito</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx !</target>
|
<target state="final">Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx !</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="translated">Configuration de l'application</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="translated">Options globales de configuration de Paperless-ngx</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Administration</target>
|
<target state="final">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3838,7 +3850,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">185</context>
|
<context context-type="linenumber">185</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a></target>
|
<target state="translated">Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Normalisation de la casse.</a></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7468453896129193641" datatype="html">
|
<trans-unit id="7468453896129193641" datatype="html">
|
||||||
<source>Filter mail rule</source>
|
<source>Filter mail rule</source>
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Aucun élément trouvé</target>
|
<target state="translated">Aucun élément trouvé</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ניהול</target>
|
<target state="translated">ניהול</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">לא נמצאו פריטים</target>
|
<target state="translated">לא נמצאו פריטים</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Végezetül, a közösség által támogatott projekt minden közreműködője nevében köszönjük, hogy használod a Paperless-ngx-et!</target>
|
<target state="translated">Végezetül, a közösség által támogatott projekt minden közreműködője nevében köszönjük, hogy használod a Paperless-ngx-et!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Adminisztráció</target>
|
<target state="translated">Adminisztráció</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nincs találat</target>
|
<target state="translated">Nincs találat</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Terakhir, atas nama setiap kontributor untuk proyek yang didukung komunitas ini, terima kasih telah menggunakan Paperless-ngx!</target>
|
<target state="translated">Terakhir, atas nama setiap kontributor untuk proyek yang didukung komunitas ini, terima kasih telah menggunakan Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Administrasi</target>
|
<target state="translated">Administrasi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx!</target>
|
<target state="translated">Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Configurazione</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Amministrazione</target>
|
<target state="translated">Amministrazione</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Configurazione</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nessun elemento trovato</target>
|
<target state="translated">Nessun elemento trovato</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">마지막으로, 이 커뮤니티 지원 프로젝트의 기여자들을 대표하여, Paperless-ngx를 이용해주셔서 감사합니다!</target>
|
<target state="translated">마지막으로, 이 커뮤니티 지원 프로젝트의 기여자들을 대표하여, Paperless-ngx를 이용해주셔서 감사합니다!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">관리</target>
|
<target state="translated">관리</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">항목 없음</target>
|
<target state="translated">항목 없음</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ten slotte, namens elke bijdrager aan dit community ondersteund project, bedankt voor het gebruik van Paperless-ngx!</target>
|
<target state="translated">Ten slotte, namens elke bijdrager aan dit community ondersteund project, bedankt voor het gebruik van Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Configuratie</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Beheer</target>
|
<target state="translated">Beheer</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Configuratie</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Geen items gevonden</target>
|
<target state="translated">Geen items gevonden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Og sist, på vegne av hver bidragsyter til dette fellesskapsstøttede prosjektet. Takk for at du bruker Paperless-ngx!</target>
|
<target state="translated">Og sist, på vegne av hver bidragsyter til dette fellesskapsstøttede prosjektet. Takk for at du bruker Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Na koniec, w imieniu każdego współtwórcy tego projektu wspieranego przez społeczność, dziękujemy za używanie Paperless-ngx!</target>
|
<target state="translated">Na koniec, w imieniu każdego współtwórcy tego projektu wspieranego przez społeczność, dziękujemy za używanie Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Konfiguracja</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Administracja</target>
|
<target state="translated">Administracja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Konfiguracja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nie znaleziono elementów</target>
|
<target state="translated">Nie znaleziono elementów</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Por fim, em nome de todos os colaboradores deste projeto apoiado pela comunidade, obrigado por usar o Paperless-ngx!</target>
|
<target state="translated">Por fim, em nome de todos os colaboradores deste projeto apoiado pela comunidade, obrigado por usar o Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4066,7 +4078,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4199,6 +4211,14 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nenhum item encontrado</target>
|
<target state="translated">Nenhum item encontrado</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Por último, e em nome de todos os contribuintes deste projeto suportado por uma comunidade, obrigado por utilizar o Paperless-ngx!</target>
|
<target state="translated">Por último, e em nome de todos os contribuintes deste projeto suportado por uma comunidade, obrigado por utilizar o Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">În cele din urmă, în numele fiecărui colaborator la acest proiect sprijinit de comunitate, vă mulţumim pentru că ați folosit Paperless-ngx!</target>
|
<target state="translated">În cele din urmă, în numele fiecărui colaborator la acest proiect sprijinit de comunitate, vă mulţumim pentru că ați folosit Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Administrare</target>
|
<target state="translated">Administrare</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Наконец, от имени каждого участника этого поддерживаемого сообществом проекта, благодарим вас за использование Paperless-ngx!</target>
|
<target state="translated">Наконец, от имени каждого участника этого поддерживаемого сообществом проекта, благодарим вас за использование Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Администрирование</target>
|
<target state="translated">Администрирование</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Объектов не найдено</target>
|
<target state="translated">Объектов не найдено</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nakoniec vám v mene všetkých prispievateľov tohto komunitou podporovaného projektu ďakujeme za využívanie Paperless-ngx!</target>
|
<target state="translated">Nakoniec vám v mene všetkých prispievateľov tohto komunitou podporovaného projektu ďakujeme za využívanie Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Za konec se vam v imenu vseh sodelujočih pri tem projektu, ki ga podpira skupnost, zahvaljujemo, da uporabljate Paperless-ngx!</target>
|
<target state="translated">Za konec se vam v imenu vseh sodelujočih pri tem projektu, ki ga podpira skupnost, zahvaljujemo, da uporabljate Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Administracija</target>
|
<target state="translated">Administracija</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ni najdenih elementov</target>
|
<target state="translated">Ni najdenih elementov</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx!</target>
|
<target state="translated">Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Administracija</target>
|
<target state="translated">Administracija</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nijedna stavka nije pronađena</target>
|
<target state="translated">Nijedna stavka nije pronađena</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Till sist, från alla oss som bidragit till detta gemenskapsstödda projekt, tack för att du använder Paperless-ngx!</target>
|
<target state="translated">Till sist, från alla oss som bidragit till detta gemenskapsstödda projekt, tack för att du använder Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
<trans-unit id="6560126119609945418" datatype="html" approved="yes">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">การจัดการระบบ</target>
|
<target state="translated">การจัดการระบบ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Son olarak, bu topluluk destekli projeye katkıda bulunan herkes adına, Paperless-ngx'i kullandığınız için teşekkür ederiz!</target>
|
<target state="translated">Son olarak, bu topluluk destekli projeye katkıda bulunan herkes adına, Paperless-ngx'i kullandığınız için teşekkür ederiz!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Yönetici</target>
|
<target state="translated">Yönetici</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Наостанок хочемо подякувати від імені кожного, хто підтримує Paperless-ngx, за використання цього проєкту!</target>
|
<target state="translated">Наостанок хочемо подякувати від імені кожного, хто підтримує Paperless-ngx, за використання цього проєкту!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Адміністрування</target>
|
<target state="translated">Адміністрування</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Cảm ơn bạn đã sử dụng hệ thống</target>
|
<target state="translated">Cảm ơn bạn đã sử dụng hệ thống</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Quản trị</target>
|
<target state="translated">Quản trị</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">最后,代表社区支持项目的每个贡献者,感谢您使用无纸版!</target>
|
<target state="translated">最后,代表社区支持项目的每个贡献者,感谢您使用无纸版!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">管理</target>
|
<target state="translated">管理</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -441,21 +441,21 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
<target state="needs-translation">Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3008420115644088420" datatype="html">
|
<trans-unit id="9063918187161876141" datatype="html">
|
||||||
<source>Configuration</source>
|
<source>Application Configuration</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<target state="needs-translation">Application Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="8833245444477474977" datatype="html">
|
||||||
|
<source>Global Paperless-ngx configuration options</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
|
||||||
<context context-type="linenumber">276</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<target state="needs-translation">Global Paperless-ngx configuration options</target>
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
|
||||||
<context context-type="linenumber">280</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Configuration</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="187187500641108332" datatype="html">
|
<trans-unit id="187187500641108332" datatype="html">
|
||||||
<source>
|
<source>
|
||||||
@ -2488,6 +2488,18 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Administration</target>
|
<target state="needs-translation">Administration</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="3008420115644088420" datatype="html">
|
||||||
|
<source>Configuration</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">276</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||||
|
<context context-type="linenumber">280</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Configuration</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6626289114556551491" datatype="html">
|
<trans-unit id="6626289114556551491" datatype="html">
|
||||||
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
<source>File Tasks<x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length > 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge bg-danger ms-2">"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -4065,7 +4077,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/text/text.component.html</context>
|
||||||
@ -4198,6 +4210,14 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">No items found</target>
|
<target state="needs-translation">No items found</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="6541407358060244620" datatype="html">
|
||||||
|
<source>Note: value has not yet been set and will not apply until explicitly changed</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/input/switch/switch.component.html</context>
|
||||||
|
<context context-type="linenumber">45</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Note: value has not yet been set and will not apply until explicitly changed</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6560126119609945418" datatype="html">
|
<trans-unit id="6560126119609945418" datatype="html">
|
||||||
<source>Add tag</source>
|
<source>Add tag</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
|
@ -726,12 +726,17 @@ class Consumer(LoggingMixin):
|
|||||||
|
|
||||||
storage_type = Document.STORAGE_TYPE_UNENCRYPTED
|
storage_type = Document.STORAGE_TYPE_UNENCRYPTED
|
||||||
|
|
||||||
|
title = file_info.title[:127]
|
||||||
|
if self.override_title is not None:
|
||||||
|
try:
|
||||||
|
title = self._parse_title_placeholders(self.override_title)
|
||||||
|
except Exception as e:
|
||||||
|
self.log.error(
|
||||||
|
f"Error occurred parsing title override '{self.override_title}', falling back to original. Exception: {e}",
|
||||||
|
)
|
||||||
|
|
||||||
document = Document.objects.create(
|
document = Document.objects.create(
|
||||||
title=(
|
title=title,
|
||||||
self._parse_title_placeholders(self.override_title)
|
|
||||||
if self.override_title is not None
|
|
||||||
else file_info.title
|
|
||||||
)[:127],
|
|
||||||
content=text,
|
content=text,
|
||||||
mime_type=mime_type,
|
mime_type=mime_type,
|
||||||
checksum=hashlib.md5(self.working_copy.read_bytes()).hexdigest(),
|
checksum=hashlib.md5(self.working_copy.read_bytes()).hexdigest(),
|
||||||
|
@ -394,11 +394,6 @@ class Log(models.Model):
|
|||||||
|
|
||||||
|
|
||||||
class SavedView(ModelWithOwner):
|
class SavedView(ModelWithOwner):
|
||||||
class Meta:
|
|
||||||
ordering = ("name",)
|
|
||||||
verbose_name = _("saved view")
|
|
||||||
verbose_name_plural = _("saved views")
|
|
||||||
|
|
||||||
name = models.CharField(_("name"), max_length=128)
|
name = models.CharField(_("name"), max_length=128)
|
||||||
|
|
||||||
show_on_dashboard = models.BooleanField(
|
show_on_dashboard = models.BooleanField(
|
||||||
@ -416,6 +411,14 @@ class SavedView(ModelWithOwner):
|
|||||||
)
|
)
|
||||||
sort_reverse = models.BooleanField(_("sort reverse"), default=False)
|
sort_reverse = models.BooleanField(_("sort reverse"), default=False)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
ordering = ("name",)
|
||||||
|
verbose_name = _("saved view")
|
||||||
|
verbose_name_plural = _("saved views")
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return f"SavedView {self.name}"
|
||||||
|
|
||||||
|
|
||||||
class SavedViewFilterRule(models.Model):
|
class SavedViewFilterRule(models.Model):
|
||||||
RULE_TYPES = [
|
RULE_TYPES = [
|
||||||
|
@ -1385,13 +1385,39 @@ class WorkflowActionSerializer(serializers.ModelSerializer):
|
|||||||
]
|
]
|
||||||
|
|
||||||
def validate(self, attrs):
|
def validate(self, attrs):
|
||||||
|
if "assign_title" in attrs and attrs["assign_title"] is not None:
|
||||||
|
if len(attrs["assign_title"]) == 0:
|
||||||
# Empty strings treated as None to avoid unexpected behavior
|
# Empty strings treated as None to avoid unexpected behavior
|
||||||
if (
|
|
||||||
"assign_title" in attrs
|
|
||||||
and attrs["assign_title"] is not None
|
|
||||||
and len(attrs["assign_title"]) == 0
|
|
||||||
):
|
|
||||||
attrs["assign_title"] = None
|
attrs["assign_title"] = None
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
# test against all placeholders, see consumer.py `parse_doc_title_w_placeholders`
|
||||||
|
attrs["assign_title"].format(
|
||||||
|
correspondent="",
|
||||||
|
document_type="",
|
||||||
|
added="",
|
||||||
|
added_year="",
|
||||||
|
added_year_short="",
|
||||||
|
added_month="",
|
||||||
|
added_month_name="",
|
||||||
|
added_month_name_short="",
|
||||||
|
added_day="",
|
||||||
|
added_time="",
|
||||||
|
owner_username="",
|
||||||
|
original_filename="",
|
||||||
|
created="",
|
||||||
|
created_year="",
|
||||||
|
created_year_short="",
|
||||||
|
created_month="",
|
||||||
|
created_month_name="",
|
||||||
|
created_month_name_short="",
|
||||||
|
created_day="",
|
||||||
|
created_time="",
|
||||||
|
)
|
||||||
|
except (ValueError, KeyError) as e:
|
||||||
|
raise serializers.ValidationError(
|
||||||
|
{"assign_title": f'Invalid f-string detected: "{e.args[0]}"'},
|
||||||
|
)
|
||||||
|
|
||||||
return attrs
|
return attrs
|
||||||
|
|
||||||
|
@ -570,6 +570,7 @@ def run_workflow(
|
|||||||
document.owner = action.assign_owner
|
document.owner = action.assign_owner
|
||||||
|
|
||||||
if action.assign_title is not None:
|
if action.assign_title is not None:
|
||||||
|
try:
|
||||||
document.title = parse_doc_title_w_placeholders(
|
document.title = parse_doc_title_w_placeholders(
|
||||||
action.assign_title,
|
action.assign_title,
|
||||||
document.correspondent.name
|
document.correspondent.name
|
||||||
@ -578,10 +579,17 @@ def run_workflow(
|
|||||||
document.document_type.name
|
document.document_type.name
|
||||||
if document.document_type is not None
|
if document.document_type is not None
|
||||||
else "",
|
else "",
|
||||||
document.owner.username if document.owner is not None else "",
|
document.owner.username
|
||||||
timezone.localtime(document.added),
|
if document.owner is not None
|
||||||
|
else "",
|
||||||
|
document.added,
|
||||||
document.original_filename,
|
document.original_filename,
|
||||||
timezone.localtime(document.created),
|
document.created,
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
logger.exception(
|
||||||
|
f"Error occurred parsing title assignment '{action.assign_title}', falling back to original",
|
||||||
|
extra={"group": logging_group},
|
||||||
)
|
)
|
||||||
|
|
||||||
if (
|
if (
|
||||||
|
@ -101,10 +101,10 @@ class TestApiAppConfig(DirectoriesMixin, APITestCase):
|
|||||||
config = ApplicationConfiguration.objects.first()
|
config = ApplicationConfiguration.objects.first()
|
||||||
self.assertEqual(config.color_conversion_strategy, ColorConvertChoices.RGB)
|
self.assertEqual(config.color_conversion_strategy, ColorConvertChoices.RGB)
|
||||||
|
|
||||||
def test_api_update_config_empty_json_field(self):
|
def test_api_update_config_empty_fields(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
- API request to update app config with empty string for user_args JSONField
|
- API request to update app config with empty string for user_args JSONField and language field
|
||||||
WHEN:
|
WHEN:
|
||||||
- API is called
|
- API is called
|
||||||
THEN:
|
THEN:
|
||||||
@ -116,6 +116,7 @@ class TestApiAppConfig(DirectoriesMixin, APITestCase):
|
|||||||
json.dumps(
|
json.dumps(
|
||||||
{
|
{
|
||||||
"user_args": "",
|
"user_args": "",
|
||||||
|
"language": "",
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
content_type="application/json",
|
content_type="application/json",
|
||||||
@ -123,6 +124,7 @@ class TestApiAppConfig(DirectoriesMixin, APITestCase):
|
|||||||
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
config = ApplicationConfiguration.objects.first()
|
config = ApplicationConfiguration.objects.first()
|
||||||
self.assertEqual(config.user_args, None)
|
self.assertEqual(config.user_args, None)
|
||||||
|
self.assertEqual(config.language, None)
|
||||||
|
|
||||||
def test_api_replace_app_logo(self):
|
def test_api_replace_app_logo(self):
|
||||||
"""
|
"""
|
||||||
|
@ -248,6 +248,45 @@ class TestApiWorkflows(DirectoriesMixin, APITestCase):
|
|||||||
|
|
||||||
self.assertEqual(WorkflowTrigger.objects.count(), 1)
|
self.assertEqual(WorkflowTrigger.objects.count(), 1)
|
||||||
|
|
||||||
|
def test_api_create_invalid_assign_title(self):
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- API request to create a workflow
|
||||||
|
- Invalid f-string for assign_title
|
||||||
|
WHEN:
|
||||||
|
- API is called
|
||||||
|
THEN:
|
||||||
|
- Correct HTTP 400 response
|
||||||
|
- No objects are created
|
||||||
|
"""
|
||||||
|
response = self.client.post(
|
||||||
|
self.ENDPOINT,
|
||||||
|
json.dumps(
|
||||||
|
{
|
||||||
|
"name": "Workflow 1",
|
||||||
|
"order": 1,
|
||||||
|
"triggers": [
|
||||||
|
{
|
||||||
|
"type": WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"actions": [
|
||||||
|
{
|
||||||
|
"assign_title": "{created_year]",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
),
|
||||||
|
content_type="application/json",
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
||||||
|
self.assertIn(
|
||||||
|
"Invalid f-string detected",
|
||||||
|
response.data["actions"][0]["assign_title"][0],
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(Workflow.objects.count(), 1)
|
||||||
|
|
||||||
def test_api_create_workflow_trigger_action_empty_fields(self):
|
def test_api_create_workflow_trigger_action_empty_fields(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
|
@ -423,6 +423,16 @@ class TestConsumer(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
|
|||||||
self.assertEqual(document.title, "Override Title")
|
self.assertEqual(document.title, "Override Title")
|
||||||
self._assert_first_last_send_progress()
|
self._assert_first_last_send_progress()
|
||||||
|
|
||||||
|
def testOverrideTitleInvalidPlaceholders(self):
|
||||||
|
with self.assertLogs("paperless.consumer", level="ERROR") as cm:
|
||||||
|
document = self.consumer.try_consume_file(
|
||||||
|
self.get_test_file(),
|
||||||
|
override_title="Override {correspondent]",
|
||||||
|
)
|
||||||
|
self.assertEqual(document.title, "sample")
|
||||||
|
expected_str = "Error occurred parsing title override 'Override {correspondent]', falling back to original"
|
||||||
|
self.assertIn(expected_str, cm.output[0])
|
||||||
|
|
||||||
def testOverrideCorrespondent(self):
|
def testOverrideCorrespondent(self):
|
||||||
c = Correspondent.objects.create(name="test")
|
c = Correspondent.objects.create(name="test")
|
||||||
|
|
||||||
|
@ -966,6 +966,50 @@ class TestWorkflows(DirectoriesMixin, FileSystemAssertsMixin, APITestCase):
|
|||||||
expected_str = f"Document correspondent {doc.correspondent} does not match {trigger.filter_has_correspondent}"
|
expected_str = f"Document correspondent {doc.correspondent} does not match {trigger.filter_has_correspondent}"
|
||||||
self.assertIn(expected_str, cm.output[1])
|
self.assertIn(expected_str, cm.output[1])
|
||||||
|
|
||||||
|
def test_document_added_invalid_title_placeholders(self):
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- Existing workflow with added trigger type
|
||||||
|
- Assign title field has an error
|
||||||
|
WHEN:
|
||||||
|
- File that matches is added
|
||||||
|
THEN:
|
||||||
|
- Title is not updated, error is output
|
||||||
|
"""
|
||||||
|
trigger = WorkflowTrigger.objects.create(
|
||||||
|
type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED,
|
||||||
|
filter_filename="*sample*",
|
||||||
|
)
|
||||||
|
action = WorkflowAction.objects.create(
|
||||||
|
assign_title="Doc {created_year]",
|
||||||
|
)
|
||||||
|
w = Workflow.objects.create(
|
||||||
|
name="Workflow 1",
|
||||||
|
order=0,
|
||||||
|
)
|
||||||
|
w.triggers.add(trigger)
|
||||||
|
w.actions.add(action)
|
||||||
|
w.save()
|
||||||
|
|
||||||
|
now = timezone.localtime(timezone.now())
|
||||||
|
created = now - timedelta(weeks=520)
|
||||||
|
doc = Document.objects.create(
|
||||||
|
original_filename="sample.pdf",
|
||||||
|
title="sample test",
|
||||||
|
content="Hello world bar",
|
||||||
|
created=created,
|
||||||
|
)
|
||||||
|
|
||||||
|
with self.assertLogs("paperless.handlers", level="ERROR") as cm:
|
||||||
|
document_consumption_finished.send(
|
||||||
|
sender=self.__class__,
|
||||||
|
document=doc,
|
||||||
|
)
|
||||||
|
expected_str = f"Error occurred parsing title assignment '{action.assign_title}', falling back to original"
|
||||||
|
self.assertIn(expected_str, cm.output[0])
|
||||||
|
|
||||||
|
self.assertEqual(doc.title, "sample test")
|
||||||
|
|
||||||
def test_document_updated_workflow(self):
|
def test_document_updated_workflow(self):
|
||||||
trigger = WorkflowTrigger.objects.create(
|
trigger = WorkflowTrigger.objects.create(
|
||||||
type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
|
type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
|
||||||
|
@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: paperless-ngx\n"
|
"Project-Id-Version: paperless-ngx\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2024-01-05 21:26-0800\n"
|
"POT-Creation-Date: 2024-01-05 21:26-0800\n"
|
||||||
"PO-Revision-Date: 2024-01-07 00:27\n"
|
"PO-Revision-Date: 2024-01-10 12:09\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
|
@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: paperless-ngx\n"
|
"Project-Id-Version: paperless-ngx\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2024-01-05 21:26-0800\n"
|
"POT-Creation-Date: 2024-01-05 21:26-0800\n"
|
||||||
"PO-Revision-Date: 2024-01-07 00:27\n"
|
"PO-Revision-Date: 2024-01-10 12:09\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Language: fr_FR\n"
|
"Language: fr_FR\n"
|
||||||
|
@ -125,8 +125,11 @@ class ApplicationConfigurationSerializer(serializers.ModelSerializer):
|
|||||||
user_args = serializers.JSONField(binary=True, allow_null=True)
|
user_args = serializers.JSONField(binary=True, allow_null=True)
|
||||||
|
|
||||||
def run_validation(self, data):
|
def run_validation(self, data):
|
||||||
|
# Empty strings treated as None to avoid unexpected behavior
|
||||||
if "user_args" in data and data["user_args"] == "":
|
if "user_args" in data and data["user_args"] == "":
|
||||||
data["user_args"] = None
|
data["user_args"] = None
|
||||||
|
if "language" in data and data["language"] == "":
|
||||||
|
data["language"] = None
|
||||||
return super().run_validation(data)
|
return super().run_validation(data)
|
||||||
|
|
||||||
def update(self, instance, validated_data):
|
def update(self, instance, validated_data):
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
from typing import Final
|
from typing import Final
|
||||||
|
|
||||||
__version__: Final[tuple[int, int, int]] = (2, 3, 2)
|
__version__: Final[tuple[int, int, int]] = (2, 3, 3)
|
||||||
# Version string like X.Y.Z
|
# Version string like X.Y.Z
|
||||||
__full_version_str__: Final[str] = ".".join(map(str, __version__))
|
__full_version_str__: Final[str] = ".".join(map(str, __version__))
|
||||||
# Version string like X.Y
|
# Version string like X.Y
|
||||||
|
Loading…
x
Reference in New Issue
Block a user