mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-08-29 22:17:14 +00:00
Compare commits
15
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da0e4217e6 | ||
|
|
535975e2fd | ||
|
|
9c475e0b27 | ||
|
|
7ddc1c9801 | ||
|
|
6f3945f11f | ||
|
|
a784a642ee | ||
|
|
8ded82ea23 | ||
|
|
3a5312ba6f | ||
|
|
00d9bf474a | ||
|
|
8079690f33 | ||
|
|
c6252a0234 | ||
|
|
4a69c47bdd | ||
|
|
d30ee1d620 | ||
|
|
e1aa9997d7 | ||
|
|
05917a04aa |
+23
-105
@@ -186,110 +186,29 @@ line-ending = "lf"
|
||||
# https://docs.astral.sh/ruff/rules/
|
||||
select = [ "E4", "E7", "E9", "F" ]
|
||||
extend-select = [
|
||||
"ASYNC", # https://docs.astral.sh/ruff/rules/#flake8-async-async
|
||||
"B002", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B003", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B004", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B005", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B006", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B008", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B009", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B010", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B012", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B013", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B014", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B015", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B016", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B017", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B018", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B019", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B020", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B021", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B022", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B023", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B025", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B026", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B029", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B030", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B031", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B032", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B033", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B035", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"B039", # https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
||||
"C4", # https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4
|
||||
"COM", # https://docs.astral.sh/ruff/rules/#flake8-commas-com
|
||||
"D419", # https://docs.astral.sh/ruff/rules/#pydocstyle-d
|
||||
"DJ", # https://docs.astral.sh/ruff/rules/#flake8-django-dj
|
||||
"DTZ", # https://docs.astral.sh/ruff/rules/#flake8-datetimez-dtz
|
||||
"EXE", # https://docs.astral.sh/ruff/rules/#flake8-executable-exe
|
||||
"FA", # https://docs.astral.sh/ruff/rules/#flake8-future-annotations-fa
|
||||
"FBT", # https://docs.astral.sh/ruff/rules/#flake8-boolean-trap-fbt
|
||||
"FLY", # https://docs.astral.sh/ruff/rules/#flynt-fly
|
||||
"FURB", # https://docs.astral.sh/ruff/rules/#refurb-furb
|
||||
"G010", # https://docs.astral.sh/ruff/rules/#flake8-logging-format-g
|
||||
"G101", # https://docs.astral.sh/ruff/rules/#flake8-logging-format-g
|
||||
"G201", # https://docs.astral.sh/ruff/rules/#flake8-logging-format-g
|
||||
"G202", # https://docs.astral.sh/ruff/rules/#flake8-logging-format-g
|
||||
"I", # https://docs.astral.sh/ruff/rules/#isort-i
|
||||
"ICN", # https://docs.astral.sh/ruff/rules/#flake8-import-conventions-icn
|
||||
"INP", # https://docs.astral.sh/ruff/rules/#flake8-no-pep420-inp
|
||||
"INT001", # https://docs.astral.sh/ruff/rules/#flake8-gettext-int
|
||||
"INT002", # https://docs.astral.sh/ruff/rules/#flake8-gettext-int
|
||||
"INT003", # https://docs.astral.sh/ruff/rules/#flake8-gettext-int
|
||||
"ISC", # https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc
|
||||
"LOG001", # https://docs.astral.sh/ruff/rules/#flake8-logging-log
|
||||
"LOG002", # https://docs.astral.sh/ruff/rules/#flake8-logging-log
|
||||
"LOG009", # https://docs.astral.sh/ruff/rules/#flake8-logging-log
|
||||
"LOG014", # https://docs.astral.sh/ruff/rules/#flake8-logging-log
|
||||
"LOG015", # https://docs.astral.sh/ruff/rules/#flake8-logging-log
|
||||
"N999", # https://docs.astral.sh/ruff/rules/#pep8-naming-n
|
||||
"PERF101", # https://docs.astral.sh/ruff/rules/#perflint-perf
|
||||
"PERF102", # https://docs.astral.sh/ruff/rules/#perflint-perf
|
||||
"PERF402", # https://docs.astral.sh/ruff/rules/#perflint-perf
|
||||
"PGH005", # https://docs.astral.sh/ruff/rules/#pygrep-hooks-pgh
|
||||
"PIE", # https://docs.astral.sh/ruff/rules/#flake8-pie-pie
|
||||
"PLC", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLE", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR0124", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR0133", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR0206", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR0402", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1704", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1708", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1711", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1716", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1722", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1730", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1733", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR1736", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLR2044", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLW", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PT010", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt
|
||||
"PT014", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt
|
||||
"PT020", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt
|
||||
"PT025", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt
|
||||
"PT026", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt
|
||||
"PT031", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt
|
||||
"PTH", # https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth
|
||||
"Q", # https://docs.astral.sh/ruff/rules/#flake8-quotes-q
|
||||
"RSE", # https://docs.astral.sh/ruff/rules/#flake8-raise-rse
|
||||
"RUF", # https://docs.astral.sh/ruff/rules/#ruff-specific-rules-ruf
|
||||
"S102", # https://docs.astral.sh/ruff/rules/#flake8-bandit-s
|
||||
"S110", # https://docs.astral.sh/ruff/rules/#flake8-bandit-s
|
||||
"S112", # https://docs.astral.sh/ruff/rules/#flake8-bandit-s
|
||||
"SIM", # https://docs.astral.sh/ruff/rules/#flake8-simplify-sim
|
||||
"T100", # https://docs.astral.sh/ruff/rules/#flake8-debugger-t10
|
||||
"T20", # https://docs.astral.sh/ruff/rules/#flake8-print-t20
|
||||
"TC", # https://docs.astral.sh/ruff/rules/#flake8-type-checking-tc
|
||||
"TID", # https://docs.astral.sh/ruff/rules/#flake8-tidy-imports-tid
|
||||
"TRY002", # https://docs.astral.sh/ruff/rules/#tryceratops-try
|
||||
"TRY004", # https://docs.astral.sh/ruff/rules/#tryceratops-try
|
||||
"TRY201", # https://docs.astral.sh/ruff/rules/#tryceratops-try
|
||||
"TRY203", # https://docs.astral.sh/ruff/rules/#tryceratops-try
|
||||
"TRY401", # https://docs.astral.sh/ruff/rules/#tryceratops-try
|
||||
"UP", # https://docs.astral.sh/ruff/rules/#pyupgrade-up
|
||||
"W", # https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
|
||||
"YTT", # https://docs.astral.sh/ruff/rules/#flake8-2020-ytt
|
||||
"COM", # https://docs.astral.sh/ruff/rules/#flake8-commas-com
|
||||
"DJ", # https://docs.astral.sh/ruff/rules/#flake8-django-dj
|
||||
"EXE", # https://docs.astral.sh/ruff/rules/#flake8-executable-exe
|
||||
"FBT", # https://docs.astral.sh/ruff/rules/#flake8-boolean-trap-fbt
|
||||
"FLY", # https://docs.astral.sh/ruff/rules/#flynt-fly
|
||||
"G201", # https://docs.astral.sh/ruff/rules/#flake8-logging-format-g
|
||||
"I", # https://docs.astral.sh/ruff/rules/#isort-i
|
||||
"ICN", # https://docs.astral.sh/ruff/rules/#flake8-import-conventions-icn
|
||||
"INP", # https://docs.astral.sh/ruff/rules/#flake8-no-pep420-inp
|
||||
"ISC", # https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc
|
||||
"PIE", # https://docs.astral.sh/ruff/rules/#flake8-pie-pie
|
||||
"PLC", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PLE", # https://docs.astral.sh/ruff/rules/#pylint-pl
|
||||
"PTH", # https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth
|
||||
"Q", # https://docs.astral.sh/ruff/rules/#flake8-quotes-q
|
||||
"RSE", # https://docs.astral.sh/ruff/rules/#flake8-raise-rse
|
||||
"RUF", # https://docs.astral.sh/ruff/rules/#ruff-specific-rules-ruf
|
||||
"SIM", # https://docs.astral.sh/ruff/rules/#flake8-simplify-sim
|
||||
"T20", # https://docs.astral.sh/ruff/rules/#flake8-print-t20
|
||||
"TC", # https://docs.astral.sh/ruff/rules/#flake8-type-checking-tc
|
||||
"TID", # https://docs.astral.sh/ruff/rules/#flake8-tidy-imports-tid
|
||||
"UP", # https://docs.astral.sh/ruff/rules/#pyupgrade-up
|
||||
"W", # https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
|
||||
]
|
||||
ignore = [
|
||||
"DJ001",
|
||||
@@ -305,7 +224,6 @@ per-file-ignores."*/migrations/*.py" = [
|
||||
]
|
||||
# Testing
|
||||
per-file-ignores."*/tests/*.py" = [
|
||||
"DTZ",
|
||||
"E501",
|
||||
"SIM117",
|
||||
]
|
||||
|
||||
+37
-41
@@ -1817,15 +1817,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6904866445262015585" datatype="html">
|
||||
@@ -2281,7 +2281,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2749,7 +2749,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3541,21 +3541,21 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3547923076537026828" datatype="html">
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2526035785704676448" datatype="html">
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4580988005648117665" datatype="html">
|
||||
@@ -3600,11 +3600,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -4766,14 +4766,14 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6533084895896956145" datatype="html">
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4086606389696938932" datatype="html">
|
||||
@@ -5350,7 +5350,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5342432350421167093" datatype="html">
|
||||
@@ -6512,10 +6512,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
<source>Open link</source>
|
||||
@@ -6528,8 +6524,8 @@
|
||||
<context context-type="linenumber">14</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
@@ -7384,7 +7380,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1070687661569746428" datatype="html">
|
||||
@@ -8216,7 +8212,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8659635229098859487" datatype="html">
|
||||
@@ -8234,7 +8230,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2696010339872056565" datatype="html">
|
||||
@@ -8508,81 +8504,81 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2218903673684131427" datatype="html">
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6357361810318120957" datatype="html">
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5154064822428631306" datatype="html">
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8462497568316256794" datatype="html">
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7967484035994732534" datatype="html">
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2907037627372942104" datatype="html">
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6435639868943916539" datatype="html">
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6142395741265832184" datatype="html">
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="651985345816518480" datatype="html">
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2885986061416655600" datatype="html">
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -8593,21 +8589,21 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1784543155727940353" datatype="html">
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7427704425579737895" datatype="html">
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3456881259945295697" datatype="html">
|
||||
@@ -9068,28 +9064,28 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1015374532025907183" datatype="html">
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1537670659786159738" datatype="html">
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2520291319362448498" datatype="html">
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1215215387232313677" datatype="html">
|
||||
|
||||
@@ -109,6 +109,16 @@ main {
|
||||
}
|
||||
|
||||
@media(min-width: 768px) {
|
||||
// hide scrollbars on browsers that take up layout width
|
||||
// :host-context since <html> is outside the component
|
||||
:host-context(.pngx-classic-scrollbars) .sidebar.slim {
|
||||
scrollbar-width: none;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar.slim {
|
||||
max-width: 55px;
|
||||
|
||||
@@ -125,6 +135,19 @@ main {
|
||||
.sidebar-heading span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-link,
|
||||
.nav-anchor {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
||||
i-bs {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar.slim:not(.animating) ~ main.col-slim {
|
||||
|
||||
@@ -543,6 +543,27 @@ describe('AppFrameComponent', () => {
|
||||
)
|
||||
})
|
||||
|
||||
it('should only flag scrollbars that take up layout width', () => {
|
||||
const offsetWidth = jest.spyOn(HTMLElement.prototype, 'offsetWidth', 'get')
|
||||
jest.spyOn(HTMLElement.prototype, 'clientWidth', 'get').mockReturnValue(100)
|
||||
|
||||
offsetWidth.mockReturnValue(115)
|
||||
component['detectClassicScrollbars']()
|
||||
expect(
|
||||
window.document.documentElement.classList.contains(
|
||||
'pngx-classic-scrollbars'
|
||||
)
|
||||
).toBeTruthy()
|
||||
|
||||
offsetWidth.mockReturnValue(100)
|
||||
component['detectClassicScrollbars']()
|
||||
expect(
|
||||
window.document.documentElement.classList.contains(
|
||||
'pngx-classic-scrollbars'
|
||||
)
|
||||
).toBeFalsy()
|
||||
})
|
||||
|
||||
it('should collapse attributes sections when enabling slim sidebar', () => {
|
||||
jest.spyOn(settingsService, 'storeSettings').mockReturnValue(of(true))
|
||||
settingsService.set(SETTINGS_KEYS.ATTRIBUTES_SECTIONS_COLLAPSED, [])
|
||||
|
||||
@@ -118,6 +118,7 @@ export class AppFrameComponent
|
||||
|
||||
ngOnInit(): void {
|
||||
this.lastScrollY = window.scrollY
|
||||
this.detectClassicScrollbars()
|
||||
|
||||
if (this.settingsService.get(SETTINGS_KEYS.UPDATE_CHECKING_ENABLED)) {
|
||||
this.checkForUpdates()
|
||||
@@ -343,6 +344,22 @@ export class AppFrameComponent
|
||||
this.lastScrollY = currentScrollY
|
||||
}
|
||||
|
||||
/**
|
||||
* Flag for browsers whose scrollbars take up layout width. Remove me
|
||||
* some day, I hope.
|
||||
*/
|
||||
private detectClassicScrollbars(): void {
|
||||
const probe = document.createElement('div')
|
||||
probe.style.cssText =
|
||||
'position:absolute;top:-9999px;width:100px;height:100px;overflow:scroll'
|
||||
document.body.appendChild(probe)
|
||||
document.documentElement.classList.toggle(
|
||||
'pngx-classic-scrollbars',
|
||||
probe.offsetWidth > probe.clientWidth
|
||||
)
|
||||
probe.remove()
|
||||
}
|
||||
|
||||
private isMobileViewport(): boolean {
|
||||
return window.innerWidth < 768
|
||||
}
|
||||
|
||||
+1
@@ -94,6 +94,7 @@ export class MailAccountEditDialogComponent extends EditDialogComponent<MailAcco
|
||||
this.testActive = false
|
||||
this.testResult.set('danger')
|
||||
this.alertTimeout = setTimeout(() => this.testResultAlert.close(), 5000)
|
||||
this.error = e.error
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
@@ -47,8 +47,8 @@
|
||||
<i-bs width="0.9em" height="0.9em" name="file-text" class="me-1"></i-bs><span>{{document.title}}</span>
|
||||
</a>
|
||||
} @else {
|
||||
<span class="badge bg-light text-muted" (click)="unselect(document)" (mousedown)="$event.stopImmediatePropagation()" type="button" title="Remove link" i18n-title>
|
||||
<i-bs width="0.9em" height="0.9em" name="exclamation-triangle-fill" class="me-1"></i-bs><span i18n>Not found</span>
|
||||
<span class="badge bg-light text-muted">
|
||||
<i-bs width="0.9em" height="0.9em" name="exclamation-triangle-fill" class="me-1"></i-bs><span i18n>Unavailable</span>
|
||||
</span>
|
||||
}
|
||||
</div>
|
||||
|
||||
@@ -151,6 +151,23 @@ describe('DocumentLinkComponent', () => {
|
||||
expect(component.selectedDocuments).toEqual([])
|
||||
})
|
||||
|
||||
it('should preserve and neutrally label unavailable document IDs', async () => {
|
||||
jest.spyOn(documentService, 'getFew').mockReturnValue(
|
||||
of({
|
||||
count: 0,
|
||||
all: [],
|
||||
results: [],
|
||||
})
|
||||
)
|
||||
|
||||
component.writeValue([99])
|
||||
await fixture.whenStable()
|
||||
|
||||
expect(component.selectedDocuments).toEqual([{ id: 99 }])
|
||||
expect(fixture.nativeElement.textContent).toContain('Unavailable')
|
||||
expect(fixture.nativeElement.textContent).not.toContain('Not found')
|
||||
})
|
||||
|
||||
it('should support unselect', () => {
|
||||
const getSpy = jest.spyOn(documentService, 'getFew')
|
||||
getSpy.mockImplementation((ids) => {
|
||||
@@ -167,6 +184,15 @@ describe('DocumentLinkComponent', () => {
|
||||
expect(component.selectedDocuments).toEqual([documents[1]])
|
||||
})
|
||||
|
||||
it('should not unselect documents when disabled', () => {
|
||||
component.disabled = true
|
||||
component.selectedDocuments = [documents[0]]
|
||||
|
||||
component.unselect(documents[0])
|
||||
|
||||
expect(component.selectedDocuments).toEqual([documents[0]])
|
||||
})
|
||||
|
||||
it('should use correct compare, trackBy functions', () => {
|
||||
expect(component.compareDocuments(documents[0], { id: 1 })).toBeTruthy()
|
||||
expect(component.compareDocuments(documents[0], { id: 2 })).toBeFalsy()
|
||||
|
||||
@@ -101,7 +101,7 @@ export class DocumentLinkComponent
|
||||
.subscribe((documentResults) => {
|
||||
this.loading.set(false)
|
||||
this.selectedDocuments = documentIDs.map(
|
||||
(id) => documentResults.results.find((d) => d.id === id) ?? {}
|
||||
(id) => documentResults.results.find((d) => d.id === id) ?? { id }
|
||||
)
|
||||
super.writeValue(documentIDs)
|
||||
})
|
||||
@@ -142,6 +142,8 @@ export class DocumentLinkComponent
|
||||
}
|
||||
|
||||
unselect(document: Document): void {
|
||||
if (this.disabled) return
|
||||
|
||||
this.selectedDocuments = this.selectedDocuments.filter(
|
||||
(d) => d && d.id !== document.id
|
||||
)
|
||||
|
||||
@@ -24,7 +24,7 @@ import {
|
||||
} from '@ng-bootstrap/ng-bootstrap'
|
||||
import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons'
|
||||
import { DeviceDetectorService } from 'ngx-device-detector'
|
||||
import { of, throwError } from 'rxjs'
|
||||
import { Subject, of, throwError } from 'rxjs'
|
||||
import { routes } from 'src/app/app-routing.module'
|
||||
import { Correspondent } from 'src/app/data/correspondent'
|
||||
import { CustomFieldDataType } from 'src/app/data/custom-field'
|
||||
@@ -1444,6 +1444,26 @@ describe('DocumentDetailComponent', () => {
|
||||
})
|
||||
})
|
||||
|
||||
it('should reset the suggestions loading state if the document changes mid-request', () => {
|
||||
const getSetting = settingsService.get.bind(settingsService)
|
||||
jest
|
||||
.spyOn(settingsService, 'get')
|
||||
.mockImplementation((key) =>
|
||||
key === SETTINGS_KEYS.AI_ENABLED ? true : getSetting(key)
|
||||
)
|
||||
const pending = new Subject<any>()
|
||||
jest
|
||||
.spyOn(documentService, 'getAiSuggestions')
|
||||
.mockReturnValue(pending.asObservable())
|
||||
initNormally()
|
||||
expect(component.suggestionsLoading()).toBeTruthy()
|
||||
|
||||
// the in-flight request is cancelled, e.g. by a websocket-driven reload
|
||||
component.docChangeNotifier.next(component.documentId())
|
||||
|
||||
expect(component.suggestionsLoading()).toBeFalsy()
|
||||
})
|
||||
|
||||
it('should show error if needed for get suggestions', () => {
|
||||
const suggestionsSpy = jest.spyOn(documentService, 'getSuggestions')
|
||||
const errorSpy = jest.spyOn(toastService, 'showError')
|
||||
|
||||
@@ -34,6 +34,7 @@ import {
|
||||
debounceTime,
|
||||
distinctUntilChanged,
|
||||
filter,
|
||||
finalize,
|
||||
first,
|
||||
map,
|
||||
switchMap,
|
||||
@@ -1016,16 +1017,15 @@ export class DocumentDetailComponent
|
||||
.pipe(
|
||||
first(),
|
||||
takeUntil(this.unsubscribeNotifier),
|
||||
takeUntil(this.docChangeNotifier)
|
||||
takeUntil(this.docChangeNotifier),
|
||||
finalize(() => this.suggestionsLoading.set(false))
|
||||
)
|
||||
.subscribe({
|
||||
next: (result) => {
|
||||
this.suggestions.set(result)
|
||||
this.suggestionsLoading.set(false)
|
||||
},
|
||||
error: (error) => {
|
||||
this.suggestions.set(null)
|
||||
this.suggestionsLoading.set(false)
|
||||
this.toastService.showError(
|
||||
$localize`Error retrieving suggestions.`,
|
||||
error
|
||||
|
||||
@@ -114,13 +114,23 @@
|
||||
</div>
|
||||
</button>
|
||||
<div ngbDropdownMenu aria-labelledby="dropdownSend" class="shadow">
|
||||
<button ngbDropdownItem (click)="createShareLinkBundle()" [disabled]="!canSendSelection">
|
||||
<i-bs name="link" class="me-1"></i-bs><ng-container i18n>Create a share link bundle</ng-container>
|
||||
</button>
|
||||
<button ngbDropdownItem (click)="manageShareLinkBundles()">
|
||||
<i-bs name="list-ul" class="me-1"></i-bs><ng-container i18n>Manage share link bundles</ng-container>
|
||||
</button>
|
||||
<div class="dropdown-divider"></div>
|
||||
@if (permissionService.currentUserCan(PermissionAction.Add, PermissionType.ShareLinkBundle)) {
|
||||
<button ngbDropdownItem (click)="createShareLinkBundle()" [disabled]="!canSendSelection">
|
||||
<i-bs name="link" class="me-1"></i-bs><ng-container i18n>Create a share link bundle</ng-container>
|
||||
</button>
|
||||
}
|
||||
@if (permissionService.currentUserCan(PermissionAction.View, PermissionType.ShareLinkBundle)) {
|
||||
<button ngbDropdownItem (click)="manageShareLinkBundles()">
|
||||
<i-bs name="list-ul" class="me-1"></i-bs><ng-container i18n>Manage share link bundles</ng-container>
|
||||
</button>
|
||||
}
|
||||
@if (
|
||||
emailEnabled &&
|
||||
(permissionService.currentUserCan(PermissionAction.Add, PermissionType.ShareLinkBundle) ||
|
||||
permissionService.currentUserCan(PermissionAction.View, PermissionType.ShareLinkBundle))
|
||||
) {
|
||||
<div class="dropdown-divider"></div>
|
||||
}
|
||||
@if (emailEnabled) {
|
||||
<button ngbDropdownItem (click)="emailSelected()" [disabled]="!canSendSelection">
|
||||
<i-bs name="envelope" class="me-1"></i-bs><ng-container i18n>Email</ng-container>
|
||||
|
||||
@@ -19,7 +19,11 @@ import { StoragePath } from 'src/app/data/storage-path'
|
||||
import { Tag } from 'src/app/data/tag'
|
||||
import { FilterPipe } from 'src/app/pipes/filter.pipe'
|
||||
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
||||
import { PermissionsService } from 'src/app/services/permissions.service'
|
||||
import {
|
||||
PermissionAction,
|
||||
PermissionsService,
|
||||
PermissionType,
|
||||
} from 'src/app/services/permissions.service'
|
||||
import { CorrespondentService } from 'src/app/services/rest/correspondent.service'
|
||||
import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service'
|
||||
import { DocumentTypeService } from 'src/app/services/rest/document-type.service'
|
||||
@@ -252,6 +256,54 @@ describe('BulkEditorComponent', () => {
|
||||
).toBe(true)
|
||||
})
|
||||
|
||||
it('should only show permitted share link bundle actions', () => {
|
||||
permissionsService.initialize(
|
||||
[
|
||||
permissionsService.getPermissionCode(
|
||||
PermissionAction.Add,
|
||||
PermissionType.ShareLinkBundle
|
||||
),
|
||||
],
|
||||
{ is_superuser: false } as any
|
||||
)
|
||||
fixture.detectChanges()
|
||||
|
||||
expect(fixture.nativeElement.textContent).toContain(
|
||||
'Create a share link bundle'
|
||||
)
|
||||
expect(fixture.nativeElement.textContent).not.toContain(
|
||||
'Manage share link bundles'
|
||||
)
|
||||
|
||||
permissionsService.initialize(
|
||||
[
|
||||
permissionsService.getPermissionCode(
|
||||
PermissionAction.View,
|
||||
PermissionType.ShareLinkBundle
|
||||
),
|
||||
],
|
||||
{ is_superuser: false } as any
|
||||
)
|
||||
fixture.detectChanges()
|
||||
|
||||
expect(fixture.nativeElement.textContent).not.toContain(
|
||||
'Create a share link bundle'
|
||||
)
|
||||
expect(fixture.nativeElement.textContent).toContain(
|
||||
'Manage share link bundles'
|
||||
)
|
||||
|
||||
permissionsService.initialize([], { is_superuser: false } as any)
|
||||
fixture.detectChanges()
|
||||
|
||||
expect(fixture.nativeElement.textContent).not.toContain(
|
||||
'Create a share link bundle'
|
||||
)
|
||||
expect(fixture.nativeElement.textContent).not.toContain(
|
||||
'Manage share link bundles'
|
||||
)
|
||||
})
|
||||
|
||||
it('should apply selection data to correspondents menu', () => {
|
||||
jest.spyOn(permissionsService, 'currentUserCan').mockReturnValue(true)
|
||||
fixture.detectChanges()
|
||||
|
||||
@@ -101,7 +101,7 @@ export class BulkEditorComponent
|
||||
private toastService = inject(ToastService)
|
||||
private storagePathService = inject(StoragePathService)
|
||||
private customFieldService = inject(CustomFieldsService)
|
||||
private permissionService = inject(PermissionsService)
|
||||
public readonly permissionService = inject(PermissionsService)
|
||||
private savedViewService = inject(SavedViewService)
|
||||
private readonly shareLinkBundleService = inject(ShareLinkBundleService)
|
||||
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Fout by die bewaar van instellings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Fout by die bewaar van instellings vir soek na bywerkings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Suksesvol aan die e-posbediener verbind</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Kan nie aan die e-posbedieenr verbind nie</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-pos</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Fout by ophaal van metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Fout by die laai van die inhoud: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Sluit in:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">حدث خطأ في أثناء حفظ الإعدادات.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">تم تحديث طرق عرض الشريط الجانبي</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">خطأ في تحديث طرق عرض الشريط الجانبي</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">حدث خطأ في أثناء حفظ إعدادات التحقق من التحديث.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">تم الاتصال بنجاح بخادم البريد</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">تعذر الاتصال بخادم البريد</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">البريد الإلكتروني</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">إزالة الرابط</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">فتح الرابط</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">غير موجود</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">استخدام اسم الملف المنسق</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">خطأ في استرجاع البيانات الوصفية</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">حدث خطأ في تحميل المحتوى<x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">المستند التالي</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">المستند السابق</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">حفظ المستند</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">يحتوي على:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">الملفات المؤرشفة</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">الملفات الأصلية</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Адбылася памылка пры захаванні налад.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Адбылася памылка падчас захавання налад праверкі абнаўленняў.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Възникна грешка при запазване на настройките.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Изгледите на страничната лента са актуализирани</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Грешка при актуализиране на изгледите на страничната лента</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Възникна грешка при запазване на настройките за проверка за актуализация.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Успешно свързване с мейл сървър</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Неуспешно свързване към мейл сървър</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Имейл</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Премахни връзка</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Отваряне на връзка</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Не е намерено</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Използвайте форматирано име на файл</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Грешка при извличане на метаданни</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Възникна грешка при зареждане на съдържание: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Следващ документ</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Предишен документ</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Запазете документ</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Запази и затвори / следващ</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Включете:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Архивирани файлове</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Оригинални файлове</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Error al guardar opcions.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Vistes laterals actualitzades</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Error a l'actualitzar vistes laterals</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">S'ha produït un error en desar la configuració de comprovació d'actualitzacions.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">S'ha connectat correctament al servidor de correu</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">No es pot connectar al servidor de correu</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Eliminar enllaç</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Obre enllaç</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">No trobat</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Administra paquets d'enllaços compartits</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Utilitza nom arxiu formatat</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Error recuperant les metadades</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Error carregant contingut: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Document Actualitzat</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Document actualitzat a <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Recarrega per descartar les edicions locals no desades i carregar la darrera versió remota.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Recarrega</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Document recarregat amb els darrers reptes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Document recarregat.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Següent document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Document Anterior</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Desar Document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Desa i tanca/següent</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Error recuperant el contingut de la versió</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Crea paquet de compartició d'enllaç</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Inclou:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arxius arxivats</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Fitxers originals</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Při ukládání nastavení došlo k chybě.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Pohledy postranního panelu aktualizovány</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Chyba při aktualizaci pohledů postranního panelu</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Došlo k chybě při ukládání nastavení kontroly aktualizací.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Úspěšně připojeno k e-mailovému serveru</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Nepodařilo se připojit k e-mailovému serveru</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Odstranit odkaz</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Otevřít odkaz</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nenalezeno</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Spravovat balíčky sdílení odkazů</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Použít formátovaný název souboru</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Chyba při načítání metadat</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Při načítání obsahu došlo k chybě: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Další dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Předchozí dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Uložit dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Uložit a zavřít/další</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Vytvořit balíček sdílení odkazů</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Zahrnout:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Archivované soubory</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Původní soubory</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Fehler beim Speichern der Einstellungen.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Seitenleisten-Ansichten aktualisiert</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Fehler beim Aktualisieren der Seitenleisten-Ansichten</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Verbindung zum Mailserver erfolgreich hergestellt</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Verbindung zum Mailserver nicht möglich</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-Mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Verknüpfung entfernen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Link öffnen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nicht gefunden</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Freigabelink-Pakete verwalten</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Formatierten Dateinamen verwenden</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Fehler beim Abrufen der Metadaten</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Fehler beim Laden des Inhalts: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument aktualisiert</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument aktualisiert am <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Neu laden</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument mit den neuesten Änderungen neu geladen.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument neu geladen.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Nächstes Dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Vorheriges Dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument speichern</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Speichern und schliessen / weiter</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Fehler beim Abrufen des Versionsinhalts</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Freigabelink-Paket erstellen</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Einschliessen:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Archivierte Dateien</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Originaldateien</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="final">Fehler beim Speichern der Einstellungen.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="final">Seitenleisten-Ansichten aktualisiert</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="final">Fehler beim Aktualisieren der Seitenleisten-Ansichten</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="final">Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="final">Verbindung zum Mailserver erfolgreich hergestellt</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="final">Verbindung zum Mailserver nicht möglich</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="final">E-Mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="final">Verknüpfung entfernen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html" approved="yes">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="final">Link öffnen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html" approved="yes">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="final">Nicht gefunden</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html" approved="yes">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Freigabelink-Pakete verwalten</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="translated">Download-Optionen</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="final">Formatierten Dateinamen verwenden</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="final">Fehler beim Abrufen der Metadaten</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="final">Fehler beim Laden des Inhalts: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="final">Dokument aktualisiert</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument aktualisiert am <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="final">Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="final">Neu laden</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument mit den neuesten Änderungen neu geladen.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="final">Dokument neu geladen.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="final">Nächstes Dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="final">Vorheriges Dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="final">Dokument speichern</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="final">Speichern und schließen / weiter</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="final">Fehler beim Abrufen des Versionsinhalts</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Freigabelink-Paket erstellen</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="final">Einschließen:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="final">Archivierte Dateien</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="final">Originaldateien</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων ελέγχου ενημερώσεων.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Επιτυχής σύνδεση με το διακομιστή αλληλογραφίας</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Αδυναμία σύνδεσης με το διακομιστή αλληλογραφίας</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Σφάλμα ανάκτησης μεταδεδομένων</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Παρουσιάστηκε σφάλμα κατά τη φόρτωση του περιεχομένου: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Συμπερίληψη:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Se produjo un error al guardar los ajustes.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Vistas de la barra lateral actualizadas</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Error al actualizar las vistas de la barra lateral</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Se produjo un error al guardar la configuración de comprobación de actualizaciones.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Conectado con éxito al servidor de correo</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">No se ha podido conectar con el servidor de correo</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Eliminar enlace</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Abrir enlace</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">No encontrado</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Usar nombre de archivo formateado</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Error al recuperar los metadatos</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Se ha producido un error al cargar el contenido: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Documento siguiente</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Documento anterior</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Guardar documento</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Guardar y cerrar / siguiente</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Incluir:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Archivos archivados</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Archivos originales</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">هنگام صرفه جویی در تنظیمات ، خطایی روی داد.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">نمای نوار کناری به روز شده است</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">خطا به روزرسانی نماهای نوار کناری</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">هنگام ذخیره تنظیمات بررسی به روزرسانی ، خطایی روی داد.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">با موفقیت به سرور پست الکترونیکی متصل شد</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">اتصال به سرور پست الکترونیکی امکان پذیر نیست</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">ایمیل</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">حذف پیوند</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">لینک باز</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">یافت نشد</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">از نام پرونده فرمت شده استفاده کنید</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">خطا در بازیابی ابرداده</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">سند بعدی</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">سند قبلی</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">سند را ذخیره کنید</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">ذخیره و بسته / بعدی</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">شامل:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">پرونده های بایگانی شده</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">پرونده های اصلی</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Virhe tallennettaessa asetuksia.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Virhe tallennettaessa päivitystarkistuksen asetuksia</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Yhteyden muodostaminen sähköpostipalvelimeen onnistui</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Yhdistäminen sähköpostipalvelimeen epäonnistui</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Sähköposti</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Poista linkki</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Avaa linkki</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Ei löytynyt</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Käytä muotoiltua tiedostonimeä</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Virhe haettaessa metatietoja</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Sisällön lataamisessa tapahtui virhe: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Seuraava asiakirja</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Edellinen asiakirja</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Tallenna asiakirja</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Tallenna ja sulje / seuraava</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Sisällytä:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arkistoidut tiedostot</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Alkuperäiset tiedostot</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="final">Une erreur est survenue lors de la sauvegarde des paramètres.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Vues sur la barre latérale mises à jour</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Erreur lors de la mise à jour des vues de la barre latérale</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="final">Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="final">Connexion réussie au serveur de messagerie électronique</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="final">Impossible de se connecter au serveur de messagerie électronique</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="final">Adresse électronique</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Supprimer le lien</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html" approved="yes">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="final">Ouvrir le lien</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Non trouvé</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Gérer les lots de liens de partage</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Utiliser le nom de fichier formaté</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="final">Erreur lors de la récupération des métadonnées</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="final">Une erreur s'est produite lors du chargement du contenu : <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Document a été mis à jour</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Document a été mis à jour à <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Recharger pour refuser vos changements locaux non sauvegardés et charger la dernière version en ligne.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Recharger</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Documents rechargés avec les derniers changements.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Document rechargé.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Document suivant</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Document précédent</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Enregistrer le document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Sauvegarder et fermer / suivant</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Erreur de récupération du contenu de la version</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Inclure :</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Fichiers archivés</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Fichiers originaux</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">התרחשה שגיאה בעת שמירת ההגדרות:</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">תצוגת סרגל צד עודכנה</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">שגיאה בעדכון תצוגת סרגל צד</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">ארעה שגיאה בתהליך השמירה. בודק הגדרות</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">החיבור לשרת הדואר בוצע בהצלחה</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">לא ניתן להתחבר לשרת הדואר</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">דוא"ל</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">הסירו קישור</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">פתח קישור</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">לא נמצא</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">השתמש בשם קובץ מפורמט</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">שגיאה באחזור נתונים</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">ארעה שגיאה בטעינת התוכן: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">המסמך הבא</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">המסמך הקודם</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">שמירת מסמך</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">שמירה וסגירה / הבא</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">צור חבילת קישורי שיתוף</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">כולל:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">קובצי ארכיון</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">קבצים מקוריים</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Došlo je do pogreške prilikom spremanja postavki.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Prikazi bočne trake ažurirani</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Pogreška pri ažuriranju prikaza bočne trake</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Došlo je do pogreške prilikom spremanja postavki ažuriranja.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Uspješno povezivanje sa poslužiteljem e-pošte</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Nije se moguće povezati s poslužiteljom e-pošte</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-pošta</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Ukloni vezu</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Otvori vezu</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nije pronađeno</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Upravljaj paketima linkova za dijeljenje</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Koristi formatirani naziv datoteke</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Greška pri dohvaćanju metapodataka</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Došlo je do pogreške prilikom učitavanja sadržaja: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je ažuriran</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je ažuriran u <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Učitajte ponovo da odbacite lokalne nespremljene izmjene i učitate najnoviju udaljenu verziju.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Učitaj ponovo</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument učitan ponovo s najnovijim izmjenama.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument učitan ponovo.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Sljedeći dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Prethodni dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Spremi dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Spremi i zatvori / sljedeći</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Greška pri dohvaćanju sadržaja verzije</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Kreiraj paket linka za dijeljenje</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Uključi:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arhivirane datoteke</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Originalne datoteke</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Hiba történt a beállítások mentése közben.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Oldalsáv nézetek frissítve</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Hiba az oldalsáv nézetek frissítésében</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Hiba történt a frissítési ellenőrzési beállítások mentése közben.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Sikeresen csatlakozott a levelező szerverhez</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Nem sikerült csatlakozni a levelező szerverhez</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Hivatkozás eltávolítása</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Link megnyitása</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nem található</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Formázott fájlnév használata</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Hiba a metaadatok lekérdezésében</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Hiba történt a tartalom betöltése során: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Következő dokumentum</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Előző dokumentum</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumentum mentése</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Mentés és bezárás / következő</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Tartalmazza:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Archivált fájlok</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Eredeti fájlok</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Sebuah kesalahan terjadi saat menyimpan setelan.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Tampilan bilah samping telah diperbarui</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Kesalahan saat memperbarui tampilan sisi</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Terjadi kesalahan saat menyimpan setelan pemeriksaan pembaruan.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Berhasil terhubung ke server surel</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Tidak dapat terhubung ke server surel</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Surel</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Hapus tautan</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Buka tautan</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Tidak ditemukan</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Gunakan nama berkas terformat</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Kesalahan saat mendapatkan metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Terjadi kesalahan saat memuat konten: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumen berikutnya</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumen sebelumnya</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Simpan dokumen</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Simpan dan tutup / lanjut</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-review-translation" state-qualifier="leveraged-tm">Sertakan:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Berkas terarsip</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Berkas asli</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Si è verificato un errore durante il salvataggio delle impostazioni.</target>
|
||||
</trans-unit>
|
||||
@@ -2115,7 +2115,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear search</target>
|
||||
<target state="translated">Pulisci ricerca</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3570013039254960445" datatype="html">
|
||||
<source>Search tasks</source>
|
||||
@@ -2439,7 +2439,7 @@
|
||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
||||
<context context-type="linenumber">211</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">View task details</target>
|
||||
<target state="translated">Visualizza dettagli attività</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1536087519743707362" datatype="html">
|
||||
<source>Dismiss</source>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3563,7 +3563,7 @@
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">User menu</target>
|
||||
<target state="translated">Menu utente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2448391510242468907" datatype="html">
|
||||
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
|
||||
@@ -3823,13 +3823,13 @@
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||
<context context-type="linenumber">375</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Configure update checking</target>
|
||||
<target state="translated">Configura controllo degli aggiornamenti</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1542489069631984294" datatype="html">
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Viste della barra laterale aggiornate</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Errore durante l'aggiornamento delle visualizzazioni della barra laterale</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Si è verificato un errore durante il salvataggio delle impostazioni di controllo degli aggiornamenti.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -4195,7 +4195,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/merge-as-versions-confirm-dialog/merge-as-versions-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Versions (oldest first):</target>
|
||||
<target state="translated">Versioni (prime più vecchie):</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6705735915615634619" datatype="html">
|
||||
<source>{VAR_PLURAL, plural, =1 {One page} other {<x id="INTERPOLATION"/> pages}}</source>
|
||||
@@ -4215,7 +4215,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/merge-as-versions-confirm-dialog/merge-as-versions-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Current version</target>
|
||||
<target state="translated">Versione attuale</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="7991662994966139727" datatype="html">
|
||||
<source>Drag to reorder.</source>
|
||||
@@ -4223,7 +4223,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/merge-as-versions-confirm-dialog/merge-as-versions-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">47,48</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Drag to reorder.</target>
|
||||
<target state="translated">Trascina per riordinare.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="994016933065248559" datatype="html">
|
||||
<source>Documents:</source>
|
||||
@@ -4347,7 +4347,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/reprocess-confirm-dialog/reprocess-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use remote OCR</target>
|
||||
<target state="translated">Utilizza OCR remoto</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6733578401091585663" datatype="html">
|
||||
<source>Sends the document to the configured remote OCR service, which may incur costs.</source>
|
||||
@@ -4363,7 +4363,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Rotate counterclockwise</target>
|
||||
<target state="translated">Ruota in senso antiorario</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="631338357809243389" datatype="html">
|
||||
<source>Rotate clockwise</source>
|
||||
@@ -4371,7 +4371,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Rotate clockwise</target>
|
||||
<target state="translated">Ruota in senso orario</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8157388568390631653" datatype="html">
|
||||
<source>Note that only PDFs will be rotated.</source>
|
||||
@@ -4587,7 +4587,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html</context>
|
||||
<context context-type="linenumber">146</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove query</target>
|
||||
<target state="translated">Rimuovi query</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3184700926171002527" datatype="html">
|
||||
<source>Any</source>
|
||||
@@ -4631,7 +4631,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove expression</target>
|
||||
<target state="translated">Rimuovi espressione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6630533861307510614" datatype="html">
|
||||
<source>Clear created relative date</source>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Connessione al server di posta riuscita</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Impossibile connettersi al server di posta</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mail</target>
|
||||
</trans-unit>
|
||||
@@ -6551,7 +6551,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">471,472</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply suggestions for</target>
|
||||
<target state="translated">Applica suggerimenti per</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6859826074028847234" datatype="html">
|
||||
<source>Suggestions for fields that are not selected are discarded.</source>
|
||||
@@ -6567,7 +6567,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">486,487</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create missing items</target>
|
||||
<target state="translated">Crea elementi mancanti</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="449779688394460071" datatype="html">
|
||||
<source>Create suggested tags, correspondents and document types that do not exist yet.</source>
|
||||
@@ -6583,7 +6583,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">496,497</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Overwrite existing values</target>
|
||||
<target state="translated">Sovrascrivi valori esistenti</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9010697250406492150" datatype="html">
|
||||
<source>Apply suggestions even if the document already has a value. Tags are always added, never replaced.</source>
|
||||
@@ -6703,7 +6703,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">58</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remote OCR</target>
|
||||
<target state="translated">OCR Remoto</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4101630920511881483" datatype="html">
|
||||
<source>Apply AI suggestions</source>
|
||||
@@ -6711,7 +6711,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply AI suggestions</target>
|
||||
<target state="translated">Applica suggerimenti IA</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5701618810648052610" datatype="html" approved="yes">
|
||||
<source>Title</source>
|
||||
@@ -6747,7 +6747,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">185</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Created date</target>
|
||||
<target state="translated">Data di creazione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4522609911791833187" datatype="html">
|
||||
<source>Has any of these tags</source>
|
||||
@@ -7096,7 +7096,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove custom field</target>
|
||||
<target state="translated">Rimuovi campo personalizzato</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="445302259125375799" datatype="html" approved="yes">
|
||||
<source>Invalid date.</source>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Rimuovi link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Apri link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Non trovato</target>
|
||||
<target state="translated">Non disponibile</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -7208,7 +7204,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/entries/entries.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove entry</target>
|
||||
<target state="translated">Rimuovi voce</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6932865105766151309" datatype="html">
|
||||
<source>Upload</source>
|
||||
@@ -7261,7 +7257,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/select/select.component.html</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove item</target>
|
||||
<target state="translated">Rimuovi elemento</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3686284950598311784" datatype="html">
|
||||
<source>Private</source>
|
||||
@@ -7537,7 +7533,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Owned by <x id="PH" equiv-text="username"/></target>
|
||||
<target state="translated">Di proprietà di <x id="PH" equiv-text="username"/></target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5339682692608120628" datatype="html">
|
||||
<source>Owned by another user</source>
|
||||
@@ -7545,7 +7541,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">107</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Owned by another user</target>
|
||||
<target state="translated">Di proprietà di un altro utente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="231920238966427751" datatype="html">
|
||||
<source>Shared with me</source>
|
||||
@@ -7593,7 +7589,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Shared by <x id="PH" equiv-text="username"/></target>
|
||||
<target state="translated">Condiviso da <x id="PH" equiv-text="username"/></target>
|
||||
</trans-unit>
|
||||
<trans-unit id="391557549689505150" datatype="html">
|
||||
<source>Shared by another user</source>
|
||||
@@ -7601,7 +7597,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Shared by another user</target>
|
||||
<target state="translated">Condiviso da un altro utente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="941924371433275463" datatype="html">
|
||||
<source>Global permissions define what areas of the app and API endpoints users can access.</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Gestisci i pacchetti di link di condivisione</target>
|
||||
</trans-unit>
|
||||
@@ -9053,9 +9049,9 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
<target state="translated">Opzioni di download</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8659635229098859487" datatype="html" approved="yes">
|
||||
<source>Download original</source>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Usa nome file formattato</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Errore durante il recupero dei metadati</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Si è verificato un errore durante il caricamento del contenuto: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Il documento è stato aggiornato</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Il documento è stato aggiornato alle <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Ricarica per eliminare le modifiche locali non salvate e caricare la versione remota più recente.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Ricarica</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Documento ricaricato con le ultime modifiche.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Documento ricaricato.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Documento successivo</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Documento precedente</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Salva documento</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Salva e chiudi / avanti</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Errore durante il recupero del contenuto della versione</target>
|
||||
</trans-unit>
|
||||
@@ -9703,7 +9699,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/add-existing-document-version-dialog/add-existing-document-version-dialog.component.html</context>
|
||||
<context context-type="linenumber">2,3</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Add existing document as version</target>
|
||||
<target state="translated">Aggiungi documento esistente come versione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6171854073064644775" datatype="html">
|
||||
<source>Select one document to add as a version.</source>
|
||||
@@ -9711,7 +9707,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/add-existing-document-version-dialog/add-existing-document-version-dialog.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Select one document to add as a version.</target>
|
||||
<target state="translated">Selezionare un documento da aggiungere come versione.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="337558081609002420" datatype="html">
|
||||
<source>Add version</source>
|
||||
@@ -9719,7 +9715,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/add-existing-document-version-dialog/add-existing-document-version-dialog.component.html</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Add version</target>
|
||||
<target state="translated">Aggiungi versione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2369423116644077158" datatype="html">
|
||||
<source>Versions</source>
|
||||
@@ -9755,7 +9751,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
<context context-type="linenumber">35,36</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Upload a new version</target>
|
||||
<target state="translated">Carica una nuova versione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="278763911843514709" datatype="html">
|
||||
<source>Use an existing document</source>
|
||||
@@ -9763,7 +9759,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use an existing document</target>
|
||||
<target state="translated">Usa un documento esistente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1906507263389090131" datatype="html">
|
||||
<source>Existing</source>
|
||||
@@ -9771,7 +9767,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
<context context-type="linenumber">47,48</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Existing</target>
|
||||
<target state="translated">Esistente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3119565892291077820" datatype="html">
|
||||
<source>Uploading version...</source>
|
||||
@@ -9891,7 +9887,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">324</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Existing document added as a version.</target>
|
||||
<target state="translated">Documento esistente aggiunto come una versione.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8552490241798412439" datatype="html">
|
||||
<source>Error adding existing document as a version</source>
|
||||
@@ -9899,7 +9895,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">329</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error adding existing document as a version</target>
|
||||
<target state="translated">Errore nell'aggiungere un documento esistente come una versione</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1603172228799869455" datatype="html">
|
||||
<source>Toggle document metadata</source>
|
||||
@@ -9907,7 +9903,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Toggle document metadata</target>
|
||||
<target state="translated">Attiva/Disattiva metadati del documento</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6299008920007331381" datatype="html" approved="yes">
|
||||
<source>Edit:</source>
|
||||
@@ -10007,13 +10003,13 @@
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||
<context context-type="linenumber">1023</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Merge as versions</target>
|
||||
<target state="translated">Unisci come versioni</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="7251533806673754434" datatype="html">
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Crea un pacchetto di link di condivisione</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Includi:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">File archiviati</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">File originali</target>
|
||||
</trans-unit>
|
||||
@@ -10325,7 +10321,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||
<context context-type="linenumber">1039</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Documents merged as versions.</target>
|
||||
<target state="translated">Documenti uniti come versioni.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="476913782630693351" datatype="html">
|
||||
<source>Custom fields updated.</source>
|
||||
@@ -12712,7 +12708,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">223</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Required when using the Azure AI engine.</target>
|
||||
<target state="translated">Richiesto quando si utilizza il motore Azure IA.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2908398258708722139" datatype="html">
|
||||
<source>Remote OCR Mode</source>
|
||||
@@ -12720,7 +12716,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">227</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remote OCR Mode</target>
|
||||
<target state="translated">Modalità OCR Remoto</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4022045371405916558" datatype="html">
|
||||
<source>Which documents are sent to the remote engine. Use 'workflow_only' to keep remote OCR off unless a workflow enables it for a document.</source>
|
||||
@@ -12728,7 +12724,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">233</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Which documents are sent to the remote engine. Use 'workflow_only' to keep remote OCR off unless a workflow enables it for a document.</target>
|
||||
<target state="translated">Quali documenti vengono inviati al motore remoto. Usare 'workflow_only' per tenere fuori OCR remoto a meno che un flusso di lavoro non lo abiliti per un documento.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="7106327322456204362" datatype="html">
|
||||
<source>Application Logo</source>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">設定の保存中にエラーが発生しました</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">サイドバービューを更新しました</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">サイドバービューの更新に失敗しました</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">アップデートの確認設定の保存中にエラーが発生しました</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">メールサーバーに正常に接続しました</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">メールサーバーに接続できません</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">メールアドレス</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">リンクを削除</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">リンクを開く</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">見つかりません</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">フォーマット済みのファイル名を使用</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">メタデータの取得に失敗しました</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">コンテンツ: <x id="PH" equiv-text="err.message ?? err.toString()"/> の読み込み中にエラーが発生しました</target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">次のドキュメント</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">前のドキュメント</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">ドキュメントを保存</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">保存して閉じる / 次へ</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">以下を含める:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">アーカイブされたファイル</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">元のファイル</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">설정을 저장하는 중 오류가 발생하였습니다.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">사이드바 업데이트 완료</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">사이드바 업데이트 중 오류가 발생했습니다</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">설정을 저장하는 중 오류가 발생하였습니다.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">메일 서버에 성공적으로 연결되었습니다.</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">서버에 연결할 수 없습니다</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">이메일</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">링크 삭제</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">링크 열기</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">찾을 수 없음</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">형식화된 파일명 사용</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">메타데이터를 가져오는데 실패하였습니다.</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">콘텐츠를 로드하는 동안 오류가 발생했습니다: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">다음 문서</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">이전 문서</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">문서 저장</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">저장 및 닫기 / 다음</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">포함:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">보관된 파일</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">원본 파일</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Beim Späichere vun den Astellungen ass ee Feeler opgetrueden.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Säiteleeschten-Usiichten aktualiséiert</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Feeler beim Aktualiséieren vun de Säiteleeschten-Usiichten</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Kitas dokumentas</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Ankstesnis dokumentas</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Išsaugoti dokumentą</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-pasts</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Atvērt saiti</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Include:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Er is een fout opgetreden bij het opslaan van de instellingen.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Zijbalkweergaven bijgewerkt</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Fout tijdens bijwerken van zijbalkweergaven</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Er is een fout opgetreden tijdens het opslaan van de instellingen voor updatecontroles.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Succesvol verbonden met de mailserver</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Kan geen verbinding maken met de mailserver</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mailadres</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Link verwijderen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Link openen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Niet gevonden</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Beheer deel-links</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Gebruik geformatteerde bestandsnaam</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Fout bij ophalen metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Er is een fout opgetreden bij het laden van de inhoud: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Het document is bijgewerkt</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Volgend document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Vorig document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Document opslaan</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Opslaan en sluiten/volgende</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Inclusief:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Gearchiveerde bestanden</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Originele bestanden</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Det oppstod en feil under lagring av innstillingene.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Sidepanel visning oppdatert</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Feil ved oppdatering av sidepanelet</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Det oppstod en feil under lagring av innstillinger for oppdatering.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Tilkobling til e-posttjeneren var vellykket</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Kunne ikke koble til e-posttjeneren</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-post</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Fjern kobling</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Åpne kobling</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Ikke funnet</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Administrer lenkepakker</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Bruk formatert filnavn</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Feil ved henting av metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Det oppstod en feil ved lasting av innhold: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumentet ble oppdatert</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumentet ble oppdatert på <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Last på nytt for å forkaste dine lokale ulagrede redigeringer og last den nyeste eksterne versjonen.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Last på nytt</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumentet lastet på nytt med siste endringer.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument lastet på nytt.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Neste dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Forrige dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Lagre dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Lagre og lukk / neste</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Feil ved henting av versjonsinnhold</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Lag en delingslenkepakke</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Inkluder:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arkiverte filer</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Originale filer</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Wystąpił błąd podczas zapisywania ustawień.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Zaktualizowano widoki bocznego panelu</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Błąd podczas aktualizacji widoków bocznego panelu</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Wystąpił błąd podczas zapisywania ustawień sprawdzania aktualizacyj.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Pomyślnie połączono z serwerem pocztowym</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Nie udało się połączyć z serwerem pocztowym</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Adres e-mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Usuń link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Otwórz link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nie znaleziono</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Zarządzaj pakietami linków udostępniających</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Użyj sformatowanej nazwy pliku</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Błąd podczas pobierania metadanych</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Wystąpił błąd podczas ładowania zawartości: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument został zaktualizowany</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument został zaktualizowany w <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Załaduj ponownie, aby odrzucić lokalne niezapisane zmiany i załadować najnowszą wersję zdalną.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Przeładuj</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument ponownie załadowany z najnowszymi zmianami.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument został przeładowany.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Następny dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Poprzedni dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Zapisz dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Zapisz i zamknij / następny</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Błąd podczas pobierania zawartości wersji</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Utwórz pakiet linków do udostępniania</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Zawrzyj:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Zarchiwizowane pliki</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Oryginalne pliki</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Ocorreu um erro ao salvar as configurações.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Visualizações da barra lateral atualizadas</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Erro ao atualizar visualizações da barra lateral</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Ocorreu um erro ao salvar as verificações de atualizações.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Conectado com sucesso ao servidor de email</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Não foi possível conectar-se ao servidor de email</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mail</target>
|
||||
</trans-unit>
|
||||
@@ -7141,10 +7141,6 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Remover link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7159,13 +7155,13 @@ Erro ao enviar documentos por e-mail</target>
|
||||
</context-group>
|
||||
<target state="translated">Abrir link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Não encontrado</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8116,7 +8112,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9054,7 +9050,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9074,7 +9070,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Usar nome do arquivo formatado</target>
|
||||
</trans-unit>
|
||||
@@ -9382,7 +9378,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Erro ao recuperar metadados</target>
|
||||
</trans-unit>
|
||||
@@ -9390,11 +9386,11 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Ocorreu um erro ao carregar o conteúdo: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9402,7 +9398,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9410,7 +9406,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9418,7 +9414,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9426,7 +9422,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9434,7 +9430,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9442,7 +9438,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9450,7 +9446,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Próximo documento</target>
|
||||
</trans-unit>
|
||||
@@ -9458,7 +9454,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Documento anterior</target>
|
||||
</trans-unit>
|
||||
@@ -9466,7 +9462,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9478,7 +9474,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Salvar documento</target>
|
||||
</trans-unit>
|
||||
@@ -9486,7 +9482,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Salvar e fechar / próximo</target>
|
||||
</trans-unit>
|
||||
@@ -9494,7 +9490,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10014,7 +10010,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10022,7 +10018,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Incluir:</target>
|
||||
</trans-unit>
|
||||
@@ -10030,7 +10026,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arquivos arquivados</target>
|
||||
</trans-unit>
|
||||
@@ -10038,7 +10034,7 @@ Erro ao enviar documentos por e-mail</target>
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Arquivos originais</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Ocorreu um erro ao gravar as configurações.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Visualizações da barra lateral atualizadas</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Erro ao atualizar visualizações da barra lateral</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Conectado com sucesso ao servidor de email</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Não foi possível conectar ao servidor de correio</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Remover link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Abrir link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Não encontrado</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Erro ao obter os metadados</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Ocurreu um erro ao carregar o conteúdo: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Incluir:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">A apărut o eroare la salvarea setărilor.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Vizualizări bară laterală actualizate</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Eroare la actualizarea vizualizărilor barei laterale</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">A apărut o eroare la salvarea setărilor de verificare a actualizărilor.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Conectat cu succes la serverul de e-mail</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Problemă la conectarea la server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Poștă electronică</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Elimină link-ul</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Deschide link-ul</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nu a fost găsit</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Folosește numele fișierului formatat</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Eroare la preluarea metadatelor</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">A apărut o eroare la încărcarea conținutului: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Următorul document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Documentul anterior</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Salvează documentul</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Salvează și închide / următorul</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Inclusiv:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Fișiere arhivate</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Fișiere originale</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Произошла ошибка при сохранении настроек.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Обновлена боковая панель</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Ошибка при обновлении боковой панели</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Произошла ошибка при сохранении настроек проверки обновлений.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Успешно подключено к почтовому серверу</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Не удаётся подключиться к почтовому серверу</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Электронная почта</target>
|
||||
</trans-unit>
|
||||
@@ -6543,7 +6543,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">468,469</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">The document will be sent to the configured AI service for suggestions. Consider costs and privacy.</target>
|
||||
<target state="translated">Документ будет передан в настроенную службу ИИ для предложений. Примите во внимание цену и конфиденциальность.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3473589590476379802" datatype="html">
|
||||
<source>Apply suggestions for</source>
|
||||
@@ -6551,7 +6551,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">471,472</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply suggestions for</target>
|
||||
<target state="translated">Применить советы для</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6859826074028847234" datatype="html">
|
||||
<source>Suggestions for fields that are not selected are discarded.</source>
|
||||
@@ -6559,7 +6559,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">476,477</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Suggestions for fields that are not selected are discarded.</target>
|
||||
<target state="translated">Предложения для невыбранных полей удаляются.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1137167921211640884" datatype="html">
|
||||
<source>Create missing items</source>
|
||||
@@ -6567,7 +6567,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">486,487</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create missing items</target>
|
||||
<target state="translated">Создать недостающие элементы</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="449779688394460071" datatype="html">
|
||||
<source>Create suggested tags, correspondents and document types that do not exist yet.</source>
|
||||
@@ -6575,7 +6575,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">488,489</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create suggested tags, correspondents and document types that do not exist yet.</target>
|
||||
<target state="translated">Создать предложенные теги, корреспондентов и типов документов, которые не существуют.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5192325026233872238" datatype="html">
|
||||
<source>Overwrite existing values</source>
|
||||
@@ -6583,7 +6583,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">496,497</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Overwrite existing values</target>
|
||||
<target state="translated">Перезаписать текущие значения</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9010697250406492150" datatype="html">
|
||||
<source>Apply suggestions even if the document already has a value. Tags are always added, never replaced.</source>
|
||||
@@ -6591,7 +6591,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">498,499</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply suggestions even if the document already has a value. Tags are always added, never replaced.</target>
|
||||
<target state="translated">Применить предложения, даже если документ уже заполнен. Теги всегда добавляются, не заменяются.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4626030417479279989" datatype="html">
|
||||
<source>Consume Folder</source>
|
||||
@@ -6711,7 +6711,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply AI suggestions</target>
|
||||
<target state="translated">Применить советы ИИ</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5701618810648052610" datatype="html" approved="yes">
|
||||
<source>Title</source>
|
||||
@@ -6747,7 +6747,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">185</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Created date</target>
|
||||
<target state="translated">Дата создания</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4522609911791833187" datatype="html">
|
||||
<source>Has any of these tags</source>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Убрать ссылку</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Открыть ссылку</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Не найден</target>
|
||||
<target state="translated">Недоступно</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -7261,7 +7257,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/select/select.component.html</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove item</target>
|
||||
<target state="translated">Удалить элемент</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3686284950598311784" datatype="html">
|
||||
<source>Private</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Управление наборами ссылок</target>
|
||||
</trans-unit>
|
||||
@@ -8365,7 +8361,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/suggestions-dropdown/suggestions-dropdown.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<target state="translated">Рекомендация</target>
|
||||
<target state="translated">Совет ИИ</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6934085657687954669" datatype="html">
|
||||
<source>Show suggestions</source>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="translated">Параметры загрузки</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Использовать форматированное имя файла</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Ошибка при получении метаданных</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Произошла ошибка при загрузке контента: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Документ обновлен</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Документ был обновлен в <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Перезагрузите, чтобы отменить локальные несохраненные изменения и загрузить последнюю удаленную версию.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Перезагрузка</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Документ перезагружен с последними изменениями.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Документ перезагружен.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Следующий документ</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Предыдущий документ</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Сохранить документ</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Сохранить и закрыть / далее</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Ошибка при получении содержимого версии</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Создать набор ссылок</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Включить:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Архивные файлы</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Исходные файлы</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Pri ukladaní nastavení sa vyskytla chyba.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Pri ukladaní nastavení vyhľadávania aktualizácií sa vyskytla chyba.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Úspešne pripojený k mailovému serveru</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Nedá sa pripojiť k mailovému serveru</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-mail</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Chyba pri získavaní metadát</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Vyskytla sa chyba počas nahrávania obsahu: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Zahrnúť:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Prišlo je do napake ob shranjevanju nastavitev.</target>
|
||||
</trans-unit>
|
||||
@@ -2115,7 +2115,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear search</target>
|
||||
<target state="translated">Počisti iskanje</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3570013039254960445" datatype="html">
|
||||
<source>Search tasks</source>
|
||||
@@ -2439,7 +2439,7 @@
|
||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
||||
<context context-type="linenumber">211</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">View task details</target>
|
||||
<target state="translated">Ogled podrobnosti opravila</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1536087519743707362" datatype="html">
|
||||
<source>Dismiss</source>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3563,7 +3563,7 @@
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">User menu</target>
|
||||
<target state="translated">Uporabniški meni</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2448391510242468907" datatype="html">
|
||||
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
|
||||
@@ -3823,13 +3823,13 @@
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
|
||||
<context context-type="linenumber">375</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Configure update checking</target>
|
||||
<target state="translated">Konfiguriraj preverjanje posodobitev</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1542489069631984294" datatype="html">
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Posodobljeni pogledi v stranski vrstici</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Napaka pri posodabljanju pogledov v stranski vrstici</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Prišlo je do napake ob shranjevanju nastavitev za pregled posodobitev.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -4347,7 +4347,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/reprocess-confirm-dialog/reprocess-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use remote OCR</target>
|
||||
<target state="translated">Uporaba oddaljenega OCR</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6733578401091585663" datatype="html">
|
||||
<source>Sends the document to the configured remote OCR service, which may incur costs.</source>
|
||||
@@ -4355,7 +4355,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/reprocess-confirm-dialog/reprocess-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sends the document to the configured remote OCR service, which may incur costs.</target>
|
||||
<target state="translated">Pošlje dokument konfigurirani oddaljeni storitvi OCR, kar lahko povzroči stroške.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3883144805282469432" datatype="html">
|
||||
<source>Rotate counterclockwise</source>
|
||||
@@ -4363,7 +4363,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Rotate counterclockwise</target>
|
||||
<target state="translated">Zavrtite v nasprotni smeri urinega kazalca</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="631338357809243389" datatype="html">
|
||||
<source>Rotate clockwise</source>
|
||||
@@ -4371,7 +4371,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Rotate clockwise</target>
|
||||
<target state="translated">Zavrtite v smeri urinega kazalca</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8157388568390631653" datatype="html">
|
||||
<source>Note that only PDFs will be rotated.</source>
|
||||
@@ -4463,7 +4463,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/date/date.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Open date picker</target>
|
||||
<target state="translated">Odpri izbirnik datuma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6048892649018070225" datatype="html">
|
||||
<source>Today</source>
|
||||
@@ -4587,7 +4587,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html</context>
|
||||
<context context-type="linenumber">146</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove query</target>
|
||||
<target state="translated">Odstrani poizvedbo</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3184700926171002527" datatype="html">
|
||||
<source>Any</source>
|
||||
@@ -4631,7 +4631,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove expression</target>
|
||||
<target state="translated">Odstrani izraz</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6630533861307510614" datatype="html">
|
||||
<source>Clear created relative date</source>
|
||||
@@ -4639,7 +4639,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear created relative date</target>
|
||||
<target state="translated">Počisti relativni datum nastanka</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6312759212949884929" datatype="html">
|
||||
<source>Relative dates</source>
|
||||
@@ -4659,7 +4659,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">36</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear created from date</target>
|
||||
<target state="translated">Počisti datum ustvarjeno od</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5203279511751768967" datatype="html">
|
||||
<source>From</source>
|
||||
@@ -4679,7 +4679,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Open created from date picker</target>
|
||||
<target state="translated">Odpri ustvarjeno iz izbirnika datuma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5714803496005897828" datatype="html">
|
||||
<source>Clear created to date</source>
|
||||
@@ -4687,7 +4687,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear created to date</target>
|
||||
<target state="translated">Počisti do danes ustvarjeno</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1640609344969975994" datatype="html">
|
||||
<source>To</source>
|
||||
@@ -4707,7 +4707,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">70</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Open created to date picker</target>
|
||||
<target state="translated">Odpri izbirnik datuma ustvarjanja</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="231679111972850796" datatype="html">
|
||||
<source>Added</source>
|
||||
@@ -4739,7 +4739,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear added relative date</target>
|
||||
<target state="translated">Počisti dodan relativni datum</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8527347906195580369" datatype="html">
|
||||
<source>Clear added from date</source>
|
||||
@@ -4747,7 +4747,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">112</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear added from date</target>
|
||||
<target state="translated">Počisti dodano od datuma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5711531903664147782" datatype="html">
|
||||
<source>Open added from date picker</source>
|
||||
@@ -4755,7 +4755,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Open added from date picker</target>
|
||||
<target state="translated">Odpri dodano iz izbirnika datuma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6559691063013749167" datatype="html">
|
||||
<source>Clear added to date</source>
|
||||
@@ -4763,7 +4763,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Clear added to date</target>
|
||||
<target state="translated">Počisti dodano do datuma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6072383085349258752" datatype="html">
|
||||
<source>Open added to date picker</source>
|
||||
@@ -4771,7 +4771,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/dates-dropdown/dates-dropdown.component.html</context>
|
||||
<context context-type="linenumber">146</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Open added to date picker</target>
|
||||
<target state="translated">Odpri dodano v izbirnik datuma</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6052766076365105714" datatype="html">
|
||||
<source>now</source>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Uspešno vzpostavljena povezava s poštnim strežnikom</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Povezava s poštnim strežnikom ni mogoča</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-pošta</target>
|
||||
</trans-unit>
|
||||
@@ -6535,7 +6535,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">461,462</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">The document will be sent to the configured remote OCR service. May incur costs.</target>
|
||||
<target state="translated">Dokument bo poslan konfigurirani oddaljeni storitvi OCR. Lahko nastanejo stroški.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4231754882471903566" datatype="html">
|
||||
<source>The document will be sent to the configured AI service for suggestions. Consider costs and privacy.</source>
|
||||
@@ -6543,7 +6543,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">468,469</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">The document will be sent to the configured AI service for suggestions. Consider costs and privacy.</target>
|
||||
<target state="translated">Dokument bo poslan konfigurirani storitvi umetne inteligence za predloge. Upoštevajte stroške in zasebnost.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3473589590476379802" datatype="html">
|
||||
<source>Apply suggestions for</source>
|
||||
@@ -6551,7 +6551,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">471,472</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply suggestions for</target>
|
||||
<target state="translated">Uporabi predloge za</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6859826074028847234" datatype="html">
|
||||
<source>Suggestions for fields that are not selected are discarded.</source>
|
||||
@@ -6559,7 +6559,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">476,477</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Suggestions for fields that are not selected are discarded.</target>
|
||||
<target state="translated">Predlogi za polja, ki niso izbrana, so zavrženi.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1137167921211640884" datatype="html">
|
||||
<source>Create missing items</source>
|
||||
@@ -6567,7 +6567,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">486,487</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create missing items</target>
|
||||
<target state="translated">Ustvari manjkajoče elemente</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="449779688394460071" datatype="html">
|
||||
<source>Create suggested tags, correspondents and document types that do not exist yet.</source>
|
||||
@@ -6575,7 +6575,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">488,489</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create suggested tags, correspondents and document types that do not exist yet.</target>
|
||||
<target state="translated">Ustvarite predlagane oznake, korespondente in vrste dokumentov, ki še ne obstajajo.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5192325026233872238" datatype="html">
|
||||
<source>Overwrite existing values</source>
|
||||
@@ -6583,7 +6583,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">496,497</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Overwrite existing values</target>
|
||||
<target state="translated">Prepiši obstoječe vrednosti</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9010697250406492150" datatype="html">
|
||||
<source>Apply suggestions even if the document already has a value. Tags are always added, never replaced.</source>
|
||||
@@ -6591,7 +6591,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">498,499</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply suggestions even if the document already has a value. Tags are always added, never replaced.</target>
|
||||
<target state="translated">Uporabite predloge, tudi če dokument že vsebuje vrednost. Oznake se vedno dodajo, nikoli ne zamenjajo.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4626030417479279989" datatype="html">
|
||||
<source>Consume Folder</source>
|
||||
@@ -6703,7 +6703,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">58</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remote OCR</target>
|
||||
<target state="translated">Oddaljen OCR</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4101630920511881483" datatype="html">
|
||||
<source>Apply AI suggestions</source>
|
||||
@@ -6711,7 +6711,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">158</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Apply AI suggestions</target>
|
||||
<target state="translated">Uporabite predloge umetne inteligence</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5701618810648052610" datatype="html">
|
||||
<source>Title</source>
|
||||
@@ -6747,7 +6747,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">185</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Created date</target>
|
||||
<target state="translated">Datum nastanka</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4522609911791833187" datatype="html">
|
||||
<source>Has any of these tags</source>
|
||||
@@ -7076,7 +7076,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/color/color.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Open color picker</target>
|
||||
<target state="translated">Odpri izbirnik barv</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5160950092313963851" datatype="html">
|
||||
<source>Choose a random color</source>
|
||||
@@ -7084,7 +7084,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/color/color.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Choose a random color</target>
|
||||
<target state="translated">Izberite naključno barvo</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2428453580333624503" datatype="html">
|
||||
<source>Remove custom field</source>
|
||||
@@ -7096,7 +7096,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove custom field</target>
|
||||
<target state="translated">Odstrani polje po meri</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="445302259125375799" datatype="html">
|
||||
<source>Invalid date.</source>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Odstrani povezavo</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Odpri povezavo</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Ni najdeno</target>
|
||||
<target state="translated">Ni na voljo</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -7208,7 +7204,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/entries/entries.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove entry</target>
|
||||
<target state="translated">Odstrani vnos</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6932865105766151309" datatype="html">
|
||||
<source>Upload</source>
|
||||
@@ -7261,7 +7257,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/select/select.component.html</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove item</target>
|
||||
<target state="translated">Odstrani element</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3686284950598311784" datatype="html">
|
||||
<source>Private</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Upravljanje paketov povezav za skupno rabo</target>
|
||||
</trans-unit>
|
||||
@@ -8417,7 +8413,7 @@
|
||||
<context context-type="sourcefile">src/app/components/common/system-status-dialog/system-status-dialog.component.html</context>
|
||||
<context context-type="linenumber">26</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">View version mismatch details</target>
|
||||
<target state="translated">Ogled podrobnosti o neujemanju različic</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6269705781013540301" datatype="html">
|
||||
<source>Install Type</source>
|
||||
@@ -9053,9 +9049,9 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
<target state="translated">Ogled podrobnosti o neujemanju različic</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8659635229098859487" datatype="html">
|
||||
<source>Download original</source>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Uporaba formatiranega imena datoteke</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Napaka pri pridobivanju metapodatkov</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Napaka pri nalaganju vsebine: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je bil posodobljen</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je bil posodobljen ob <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Ponovno naloži, da zavržeš lokalne neshranjene spremembe in naložiš najnovejšo oddaljeno različico.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Ponovno naloži</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je bil ponovno naložen z najnovejšimi spremembami.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je bil ponovno naložen.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Naslednji dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Prejšnji dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Shrani dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Shrani in zapri / naprej</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Napaka pri pridobivanju vsebine različice</target>
|
||||
</trans-unit>
|
||||
@@ -9907,7 +9903,7 @@
|
||||
<context context-type="sourcefile">src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Toggle document metadata</target>
|
||||
<target state="translated">Preklopi metapodatke dokumenta</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6299008920007331381" datatype="html">
|
||||
<source>Edit:</source>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Ustvarite paket povezav za skupno rabo</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-review-translation" state-qualifier="leveraged-tm">Vključi:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arhivirane datoteke</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Izvirne datoteke</target>
|
||||
</trans-unit>
|
||||
@@ -12680,7 +12676,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">200</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remote OCR Engine</target>
|
||||
<target state="translated">Oddaljeni OCR mehanizem</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2892372808177591734" datatype="html">
|
||||
<source>Enabling remote OCR sends documents to a third-party service for processing. Consider the privacy implications as well as potential costs before enabling.</source>
|
||||
@@ -12688,7 +12684,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Enabling remote OCR sends documents to a third-party service for processing. Consider the privacy implications as well as potential costs before enabling.</target>
|
||||
<target state="translated">Če omogočite oddaljen OCR, se dokumenti pošljejo v obdelavo zunanji storitvi. Preden omogočite, upoštevajte posledice za zasebnost in morebitne stroške.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8097606044241475700" datatype="html">
|
||||
<source>Remote OCR API Key</source>
|
||||
@@ -12696,7 +12692,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">210</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remote OCR API Key</target>
|
||||
<target state="translated">Ključ API-ja za oddaljeno prepoznavanje znakov (OCR)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8592973963881683840" datatype="html">
|
||||
<source>Remote OCR Endpoint</source>
|
||||
@@ -12704,7 +12700,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">218</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remote OCR Endpoint</target>
|
||||
<target state="translated">Oddaljena končna točka OCR</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2477780225973884032" datatype="html">
|
||||
<source>Required when using the Azure AI engine.</source>
|
||||
@@ -12712,7 +12708,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">223</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Required when using the Azure AI engine.</target>
|
||||
<target state="translated">Zahtevano pri uporabi mehanizma umetne inteligence Azure.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2908398258708722139" datatype="html">
|
||||
<source>Remote OCR Mode</source>
|
||||
@@ -12720,7 +12716,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">227</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remote OCR Mode</target>
|
||||
<target state="translated">Način oddaljenega prepoznavanja znakov (OCR)</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4022045371405916558" datatype="html">
|
||||
<source>Which documents are sent to the remote engine. Use 'workflow_only' to keep remote OCR off unless a workflow enables it for a document.</source>
|
||||
@@ -12728,7 +12724,7 @@
|
||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||
<context context-type="linenumber">233</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Which documents are sent to the remote engine. Use 'workflow_only' to keep remote OCR off unless a workflow enables it for a document.</target>
|
||||
<target state="translated">Kateri dokumenti se pošljejo oddaljenemu mehanizmu. Uporabite "workflow_only", da izklopite oddaljeno optično prepoznavanje znakov, razen če ga za dokument omogoča delovni tok.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="7106327322456204362" datatype="html">
|
||||
<source>Application Logo</source>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Ndodhi një gabim gjatë ruajtjes së cilësimeve.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Sidebar pamje updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Gabim gjatë përditësimit të sidebar pamje</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">An error occurred while saving update checking cilësime.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">U lidh me sukses me serverin e email-it</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Nuk mund të lidhet me serverin e email-it</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">[SQ] Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Hiq lidhje</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Hap lidhje</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nuk u gjet</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Manage lidhje ndarjeje bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Përdor emrin e formatuar të skedarit</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Gabim gjatë marrjes së metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Ndodhi një gabim gjatë ngarkimit të përmbajtjes: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumenti u përditësua</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumenti u përditësua më <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Ringarko për të hedhur poshtë redaktimet lokale të paruajtura dhe për të ngarkuar versionin më të fundit nga serveri.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Ringarko</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumenti u ringarkua me ndryshimet më të fundit.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumenti u ringarkua.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Next dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Previous dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Ruaj dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Ruaj dhe mbyll / tjetër</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Gabim gjatë marrjes së version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Krijo a lidhje ndarjeje bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Përfshi:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Të arkivuar skedarë</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Origjinal skedarë</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Došlo je do greške prilikom čuvanja podešavanja.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Prikazi bočne trake su ažurirani</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Greška pri ažuriranju prikaza bočne trake</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Došlo je do greške prilikom čuvanja podešavanja.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Uspešno povezan na imejl server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Nije moguće povezivanje sa imejl serverom</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Imejl</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Ukloni link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Otvori vezu</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Nije pronađen</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Upravljajte paketima linkova za deljenje</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Koristi formatirani naziv fajla</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Greška pri preuzimanju metapodataka</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Greške se pojavila prilikom učitavanja sadržaja: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je ažuriran</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je ažuriran u <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Ponovo učitajte da biste odbacili lokalne nesačuvane izmene i učitali najnoviju udaljenu verziju.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Osveži</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je ponovo učitan sa najnovijim izmenama.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument je ponovo učitan.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Sledeći dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Prethodni dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Sačuvaj dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Sačuvaj i zatvori / sledeće</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Greška pri preuzimanju sadržaja verzije</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Napravi paket linkova za deljenje</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Uključi:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arhivski fajlovi</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Originalni fajlovi</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Ett fel inträffade när inställningarna skulle sparas.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Sidopanelsvyerna har uppdaterats</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Fel vid uppdatering av sidopanelsvyer</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Ett fel uppstod när uppdateringskontrollen skulle sparas.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Anslutningen till e-postservern lyckades</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Kunde inte ansluta till e-postservern</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">E-post</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Ta bort länk</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Öppna länk</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Hittades inte</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">Hantera delningslänkpaket</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="translated">Nedladdningsalternativ</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Använd formaterat filnamn</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Fel vid hämtning av metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Ett fel uppstod när innehållet laddades: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument uppdaterades</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokumentet uppdaterades <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">Ladda om för att ta bort dina lokala osparade ändringar och läsa in den senaste versionen från servern.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">Ladda om</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument laddat om med senaste ändringarna.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">Dokument laddat om.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Nästa dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Föregående dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Spara dokument</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Spara och stäng / nästa</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">Fel vid hämtning av versionsinnehåll</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">Skapa ett delningslänkpaket</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Inkludera:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arkiverade filer</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Originalfiler</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving settings.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Sidebar views updated</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error updating sidebar views</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred while saving update checking settings.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Successfully connected to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Unable to connect to the mail server</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">อีเมล</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Remove link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="needs-translation">Open link</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Not found</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Use formatted filename</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving metadata</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Next document</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Previous document</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save document</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Save and close / next</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">รวม:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Archived files</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Original files</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Ayarlar kaydedilirken bir hata meydana geldi.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Kenar çubuğu görünümleri güncellendi</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Kenar çubuğu görünümlerini güncellerken hata oluştu</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Güncelleme denetimi ayarları kaydedilirken bir hata oluştu.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Posta sunucusuna başarıyla bağlanıldı</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Posta sunucusuna bağlanılamadı</target>
|
||||
</trans-unit>
|
||||
@@ -5839,7 +5839,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="needs-review-translation" state-qualifier="leveraged-tm">E-posta</target>
|
||||
</trans-unit>
|
||||
@@ -7142,10 +7142,6 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Linki sil</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7160,13 +7156,13 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
</context-group>
|
||||
<target state="translated">Linki aç</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Bulunamadı</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8117,7 +8113,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9055,7 +9051,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9075,7 +9071,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Formatlanmış dosya adını kullan</target>
|
||||
</trans-unit>
|
||||
@@ -9383,7 +9379,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Metaveri alınırken bir hata meydana geldi</target>
|
||||
</trans-unit>
|
||||
@@ -9391,11 +9387,11 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">İçerik yüklenirken bir hata ile karşılaşıldı: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9403,7 +9399,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9411,7 +9407,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9419,7 +9415,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9427,7 +9423,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9435,7 +9431,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9443,7 +9439,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9451,7 +9447,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Sonraki belge</target>
|
||||
</trans-unit>
|
||||
@@ -9459,7 +9455,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Önceki belge</target>
|
||||
</trans-unit>
|
||||
@@ -9467,7 +9463,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9479,7 +9475,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Belgeyi kaydet</target>
|
||||
</trans-unit>
|
||||
@@ -9487,7 +9483,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Kaydet, kapat ve bir sonrakine geç</target>
|
||||
</trans-unit>
|
||||
@@ -9495,7 +9491,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10015,7 +10011,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10023,7 +10019,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Dahil et:</target>
|
||||
</trans-unit>
|
||||
@@ -10031,7 +10027,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Arşivlenen dosyalar</target>
|
||||
</trans-unit>
|
||||
@@ -10039,7 +10035,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Orijinal dosyalar</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">Сталися помилки при збереженні налаштувань.</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">Представлення бічної панелі оновлено</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">Помилка оновлення представлень бічної панелі</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">Сталася помилка при збереженні налаштувань для перевірки оновлень.</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">Успішно під'єднано до сервера пошти</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">Не вдалося під'єднатися до поштового сервера</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Ел. пошта</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">Видалити посилання</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">Відкрити посилання</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">Не знайдено</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">Використовувати відформатовану назву файлу</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">Помилка отримання метаданих</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">Під час завантаження вмісту сталася помилка: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">Наступний документ</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">Попередній документ</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">Зберегти документ</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">Зберегти й закрити / наступний</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">Включити:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">Архівовані файли</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">Оригінальні файли</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1975,15 +1975,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="final">Đã xảy ra lỗi khi lưu các thiết lập.</target>
|
||||
</trans-unit>
|
||||
@@ -2459,7 +2459,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2975,7 +2975,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3847,7 +3847,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="final">Đã cập nhật các bộ lọc tại thanh bên</target>
|
||||
</trans-unit>
|
||||
@@ -3855,7 +3855,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="final">Lỗi cập nhật các bộ lọc tại thanh bên</target>
|
||||
</trans-unit>
|
||||
@@ -3863,7 +3863,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="final">Đã có lỗi khi lưu các thiết lập kiểm tra cập nhật.</target>
|
||||
</trans-unit>
|
||||
@@ -3911,11 +3911,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5207,7 +5207,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="final">Đã kết nối thành công tới máy chủ thư điện tử</target>
|
||||
</trans-unit>
|
||||
@@ -5215,7 +5215,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="final">máy chủ thư điện tử</target>
|
||||
</trans-unit>
|
||||
@@ -5861,7 +5861,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="final">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7172,10 +7172,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="final">Xóa liên kết</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html" approved="yes">
|
||||
@@ -7190,13 +7186,13 @@
|
||||
</context-group>
|
||||
<target state="final">Mở liên kết</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html" approved="yes">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="final">Không tìm thấy</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html" approved="yes">
|
||||
<source>Search for documents</source>
|
||||
@@ -8151,7 +8147,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9099,7 +9095,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9119,7 +9115,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="final">Sử dụng tên tệp định dạng</target>
|
||||
</trans-unit>
|
||||
@@ -9431,7 +9427,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="final">Lỗi truy xuất siêu dữ liệu</target>
|
||||
</trans-unit>
|
||||
@@ -9439,11 +9435,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="final">
|
||||
Đã xảy ra lỗi Nội dung tải:
|
||||
@@ -9453,7 +9449,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9461,7 +9457,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9469,7 +9465,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9501,7 +9497,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="final">Tài liệu sau</target>
|
||||
</trans-unit>
|
||||
@@ -9509,7 +9505,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="final">Tài liệu trước</target>
|
||||
</trans-unit>
|
||||
@@ -9517,7 +9513,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9529,7 +9525,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="final">Lưu tài liệu</target>
|
||||
</trans-unit>
|
||||
@@ -9537,7 +9533,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="final">Lưu và đóng / tiếp theo</target>
|
||||
</trans-unit>
|
||||
@@ -9545,7 +9541,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10069,7 +10065,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10077,7 +10073,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="final">Bao gồm:</target>
|
||||
</trans-unit>
|
||||
@@ -10085,7 +10081,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="final">Các tệp lưu trữ</target>
|
||||
</trans-unit>
|
||||
@@ -10093,7 +10089,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="final">Tệp gốc</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">保存设置时发生错误。</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">侧边栏视图已更新</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">更新侧边栏视图时发生错误</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">保存更新检查设置时发生错误。</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">成功连接到邮件服务器</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">无法连接到邮件服务器</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">Email</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">删除链接</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">打开链接</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">页面未找到</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="translated">管理分享链接包</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">使用格式化文件名</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">获取元数据时发生错误</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">加载内容时发生错误: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="translated">文档已更新</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="translated">文档已于 <x id="PH" equiv-text="formattedModified"/> 更新。</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="translated">重新加载以丢弃本地未保存的更改,并加载最新的远程版本。</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="translated">重新加载</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="translated">已重新加载文档,已应用最新更改。</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="translated">文档已重新加载。</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">下一个文档</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">上一个文档</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">保存文档</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">保存并关闭 / 下一个</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="translated">获取版本内容出错</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="translated">创建共享链接包</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="needs-review-translation" state-qualifier="leveraged-tm">包含:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">归档文件</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">原始文件</target>
|
||||
</trans-unit>
|
||||
|
||||
@@ -1973,15 +1973,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">276</context>
|
||||
<context context-type="linenumber">277</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">306</context>
|
||||
<context context-type="linenumber">307</context>
|
||||
</context-group>
|
||||
<target state="translated">儲存設定時發生錯誤。</target>
|
||||
</trans-unit>
|
||||
@@ -2457,7 +2457,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
<context context-type="linenumber">661</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||
@@ -2973,7 +2973,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
<context context-type="linenumber">179</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
|
||||
@@ -3829,7 +3829,7 @@
|
||||
<source>Sidebar views updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">444</context>
|
||||
</context-group>
|
||||
<target state="translated">側邊欄顯示方式已更新</target>
|
||||
</trans-unit>
|
||||
@@ -3837,7 +3837,7 @@
|
||||
<source>Error updating sidebar views</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">430</context>
|
||||
<context context-type="linenumber">447</context>
|
||||
</context-group>
|
||||
<target state="translated">更新側邊欄顯示方式時發生錯誤</target>
|
||||
</trans-unit>
|
||||
@@ -3845,7 +3845,7 @@
|
||||
<source>An error occurred while saving update checking settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
<context context-type="linenumber">468</context>
|
||||
</context-group>
|
||||
<target state="translated">儲存檢查更新設定時發生錯誤。</target>
|
||||
</trans-unit>
|
||||
@@ -3893,11 +3893,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
<context context-type="linenumber">151</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
|
||||
@@ -5185,7 +5185,7 @@
|
||||
<source>Successfully connected to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">103</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
</context-group>
|
||||
<target state="translated">成功連線至郵件伺服器</target>
|
||||
</trans-unit>
|
||||
@@ -5193,7 +5193,7 @@
|
||||
<source>Unable to connect to the mail server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts</context>
|
||||
<context context-type="linenumber">104</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
</context-group>
|
||||
<target state="translated">無法連線至郵件伺服器</target>
|
||||
</trans-unit>
|
||||
@@ -5837,7 +5837,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<target state="translated">電子郵件</target>
|
||||
</trans-unit>
|
||||
@@ -7140,10 +7140,6 @@
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<target state="translated">移除連結</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1388712764439031120" datatype="html">
|
||||
@@ -7158,13 +7154,13 @@
|
||||
</context-group>
|
||||
<target state="translated">開啟連結</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6595008830732269870" datatype="html">
|
||||
<source>Not found</source>
|
||||
<trans-unit id="5643561794785412000" datatype="html">
|
||||
<source>Unavailable</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
|
||||
<context context-type="linenumber">51,52</context>
|
||||
</context-group>
|
||||
<target state="translated">找不到</target>
|
||||
<target state="needs-translation">Unavailable</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5676637575587497817" datatype="html">
|
||||
<source>Search for documents</source>
|
||||
@@ -8115,7 +8111,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">121</context>
|
||||
<context context-type="linenumber">124</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Manage share link bundles</target>
|
||||
</trans-unit>
|
||||
@@ -9053,7 +9049,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">154</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Download options</target>
|
||||
</trans-unit>
|
||||
@@ -9073,7 +9069,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">160,161</context>
|
||||
<context context-type="linenumber">170,171</context>
|
||||
</context-group>
|
||||
<target state="translated">使用格式化檔案名稱</target>
|
||||
</trans-unit>
|
||||
@@ -9381,7 +9377,7 @@
|
||||
<source>Error retrieving metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">427</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<target state="translated">取得詮釋資料時發生錯誤</target>
|
||||
</trans-unit>
|
||||
@@ -9389,11 +9385,11 @@
|
||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">529,531</context>
|
||||
<context context-type="linenumber">530,532</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">986,988</context>
|
||||
<context context-type="linenumber">987,989</context>
|
||||
</context-group>
|
||||
<target state="translated">讀取內容時發生錯誤:<x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||
</trans-unit>
|
||||
@@ -9401,7 +9397,7 @@
|
||||
<source>Document was updated</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">655</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated</target>
|
||||
</trans-unit>
|
||||
@@ -9409,7 +9405,7 @@
|
||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">656</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||
</trans-unit>
|
||||
@@ -9417,7 +9413,7 @@
|
||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">657</context>
|
||||
<context context-type="linenumber">658</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||
</trans-unit>
|
||||
@@ -9425,7 +9421,7 @@
|
||||
<source>Reload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">659</context>
|
||||
<context context-type="linenumber">660</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Reload</target>
|
||||
</trans-unit>
|
||||
@@ -9433,7 +9429,7 @@
|
||||
<source>Document reloaded with latest changes.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">715</context>
|
||||
<context context-type="linenumber">716</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||
</trans-unit>
|
||||
@@ -9441,7 +9437,7 @@
|
||||
<source>Document reloaded.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">726</context>
|
||||
<context context-type="linenumber">727</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Document reloaded.</target>
|
||||
</trans-unit>
|
||||
@@ -9449,7 +9445,7 @@
|
||||
<source>Next document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">828</context>
|
||||
<context context-type="linenumber">829</context>
|
||||
</context-group>
|
||||
<target state="translated">下一個文件</target>
|
||||
</trans-unit>
|
||||
@@ -9457,7 +9453,7 @@
|
||||
<source>Previous document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">838</context>
|
||||
<context context-type="linenumber">839</context>
|
||||
</context-group>
|
||||
<target state="translated">上一個文件</target>
|
||||
</trans-unit>
|
||||
@@ -9465,7 +9461,7 @@
|
||||
<source>Close document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">846</context>
|
||||
<context context-type="linenumber">847</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||
@@ -9477,7 +9473,7 @@
|
||||
<source>Save document</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">853</context>
|
||||
<context context-type="linenumber">854</context>
|
||||
</context-group>
|
||||
<target state="translated">儲存文件</target>
|
||||
</trans-unit>
|
||||
@@ -9485,7 +9481,7 @@
|
||||
<source>Save and close / next</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">862</context>
|
||||
<context context-type="linenumber">863</context>
|
||||
</context-group>
|
||||
<target state="translated">儲存並關閉/下一個</target>
|
||||
</trans-unit>
|
||||
@@ -9493,7 +9489,7 @@
|
||||
<source>Error retrieving version content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||
<context context-type="linenumber">969</context>
|
||||
<context context-type="linenumber">970</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Error retrieving version content</target>
|
||||
</trans-unit>
|
||||
@@ -10013,7 +10009,7 @@
|
||||
<source>Create a share link bundle</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">118</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
<target state="needs-translation">Create a share link bundle</target>
|
||||
</trans-unit>
|
||||
@@ -10021,7 +10017,7 @@
|
||||
<source>Include:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">147,148</context>
|
||||
<context context-type="linenumber">157,158</context>
|
||||
</context-group>
|
||||
<target state="translated">包含:</target>
|
||||
</trans-unit>
|
||||
@@ -10029,7 +10025,7 @@
|
||||
<source>Archived files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">151,152</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<target state="translated">封存檔案</target>
|
||||
</trans-unit>
|
||||
@@ -10037,7 +10033,7 @@
|
||||
<source>Original files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
<context context-type="linenumber">165,166</context>
|
||||
</context-group>
|
||||
<target state="translated">原始檔案</target>
|
||||
</trans-unit>
|
||||
|
||||
+10
-10
@@ -507,8 +507,8 @@ def rotate(
|
||||
logger.info(
|
||||
f"Queued new rotated version for document {pair.root_doc.id} by {degrees} degrees",
|
||||
)
|
||||
except Exception:
|
||||
logger.exception(f"Error rotating document {pair.root_doc.id}")
|
||||
except Exception as e:
|
||||
logger.exception(f"Error rotating document {pair.root_doc.id}: {e}")
|
||||
|
||||
return "OK"
|
||||
|
||||
@@ -554,9 +554,9 @@ def merge(
|
||||
affected_docs.append(doc.id)
|
||||
if handoff_asn is None and doc.archive_serial_number is not None:
|
||||
handoff_asn = doc.archive_serial_number
|
||||
except Exception:
|
||||
except Exception as e:
|
||||
logger.exception(
|
||||
f"Error merging document {doc.id}, it will not be included in the merge",
|
||||
f"Error merging document {doc.id}, it will not be included in the merge: {e}",
|
||||
)
|
||||
if len(affected_docs) == 0:
|
||||
logger.warning("No documents were merged")
|
||||
@@ -805,8 +805,8 @@ def split(
|
||||
else:
|
||||
group(consume_tasks).delay()
|
||||
|
||||
except Exception:
|
||||
logger.exception(f"Error splitting document {doc.id}")
|
||||
except Exception as e:
|
||||
logger.exception(f"Error splitting document {doc.id}: {e}")
|
||||
|
||||
return "OK"
|
||||
|
||||
@@ -858,8 +858,8 @@ def delete_pages(
|
||||
logger.info(
|
||||
f"Queued new version for document {pair.root_doc.id} after deleting pages {pages}",
|
||||
)
|
||||
except Exception:
|
||||
logger.exception(f"Error deleting pages from document {pair.root_doc.id}")
|
||||
except Exception as e:
|
||||
logger.exception(f"Error deleting pages from document {pair.root_doc.id}: {e}")
|
||||
|
||||
return "OK"
|
||||
|
||||
@@ -986,7 +986,7 @@ def edit_pdf(
|
||||
group(consume_tasks).delay()
|
||||
|
||||
except Exception as e:
|
||||
logger.exception(f"Error editing document {pair.root_doc.id}")
|
||||
logger.exception(f"Error editing document {pair.root_doc.id}: {e}")
|
||||
raise ValueError(
|
||||
f"An error occurred while editing the document: {e}",
|
||||
) from e
|
||||
@@ -1097,7 +1097,7 @@ def remove_password(
|
||||
|
||||
except Exception as e:
|
||||
logger.exception(
|
||||
f"Error removing password from document {pair.root_doc.id}",
|
||||
f"Error removing password from document {pair.root_doc.id}: {e}",
|
||||
)
|
||||
raise ValueError(
|
||||
f"An error occurred while removing the password: {e}",
|
||||
|
||||
+56
-10
@@ -1,7 +1,9 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import hashlib
|
||||
import logging
|
||||
import pickle
|
||||
import uuid
|
||||
from binascii import hexlify
|
||||
from collections import OrderedDict
|
||||
from dataclasses import dataclass
|
||||
@@ -55,6 +57,8 @@ LLM_CACHE_CLASSIFIER_VERSION: Final[int] = 1001
|
||||
CACHE_1_MINUTE: Final[int] = 60
|
||||
CACHE_5_MINUTES: Final[int] = 5 * CACHE_1_MINUTE
|
||||
CACHE_50_MINUTES: Final[int] = 50 * CACHE_1_MINUTE
|
||||
# Deliberately longer than any entry it names
|
||||
LLM_CACHE_GENERATION_TIMEOUT: Final[int] = 2 * CACHE_50_MINUTES
|
||||
|
||||
read_cache = caches["read-cache"]
|
||||
|
||||
@@ -206,12 +210,40 @@ def refresh_suggestions_cache(
|
||||
cache.touch(doc_key, timeout)
|
||||
|
||||
|
||||
def invalidate_suggestions_cache(document_id: int) -> None:
|
||||
"""Invalidate classifier-generated suggestions for a document."""
|
||||
cache.delete(get_suggestion_cache_key(document_id))
|
||||
|
||||
|
||||
def _llm_generation_key(document_id: int) -> str:
|
||||
return f"{get_suggestion_cache_key(document_id)}_llm_generation"
|
||||
|
||||
|
||||
def _llm_variant_key(document_id: int, backend: str) -> str:
|
||||
"""Cache key for one LLM configuration and permission scope.
|
||||
|
||||
``backend`` identifies the variant - model, endpoint, output language and
|
||||
requesting user.
|
||||
|
||||
Generating the token on first use lets invalidate_llm_suggestions_cache()
|
||||
be no-op for documents that never had AI suggestions.
|
||||
"""
|
||||
generation_key = _llm_generation_key(document_id)
|
||||
generation = cache.get_or_set(
|
||||
generation_key,
|
||||
lambda: uuid.uuid4().hex,
|
||||
timeout=LLM_CACHE_GENERATION_TIMEOUT,
|
||||
)
|
||||
cache.touch(generation_key, LLM_CACHE_GENERATION_TIMEOUT)
|
||||
backend_hash = hashlib.sha256(backend.encode()).hexdigest()[:16]
|
||||
return f"{get_suggestion_cache_key(document_id)}_llm_{generation}_{backend_hash}"
|
||||
|
||||
|
||||
def get_llm_suggestion_cache(
|
||||
document_id: int,
|
||||
backend: str,
|
||||
) -> SuggestionCacheData | None:
|
||||
doc_key = get_suggestion_cache_key(document_id)
|
||||
data: SuggestionCacheData = cache.get(doc_key)
|
||||
data: SuggestionCacheData = cache.get(_llm_variant_key(document_id, backend))
|
||||
|
||||
if (
|
||||
data
|
||||
@@ -234,9 +266,8 @@ def set_llm_suggestions_cache(
|
||||
Cache LLM-generated suggestions using a backend-specific identifier
|
||||
(e.g. 'openai-like:gpt-4').
|
||||
"""
|
||||
doc_key = get_suggestion_cache_key(document_id)
|
||||
cache.set(
|
||||
doc_key,
|
||||
_llm_variant_key(document_id, backend),
|
||||
SuggestionCacheData(
|
||||
classifier_version=LLM_CACHE_CLASSIFIER_VERSION,
|
||||
classifier_hash=backend,
|
||||
@@ -246,17 +277,31 @@ def set_llm_suggestions_cache(
|
||||
)
|
||||
|
||||
|
||||
def refresh_llm_suggestions_cache(
|
||||
document_id: int,
|
||||
backend: str,
|
||||
*,
|
||||
timeout: int = CACHE_50_MINUTES,
|
||||
) -> None:
|
||||
"""
|
||||
Refreshes the expiration of one cached LLM suggestion variant.
|
||||
"""
|
||||
cache.touch(_llm_variant_key(document_id, backend), timeout)
|
||||
|
||||
|
||||
def invalidate_llm_suggestions_cache(
|
||||
document_id: int,
|
||||
) -> None:
|
||||
"""
|
||||
Invalidate the LLM suggestions cache for a specific document and backend.
|
||||
Invalidate every LLM suggestion variant for a document.
|
||||
"""
|
||||
doc_key = get_suggestion_cache_key(document_id)
|
||||
data: SuggestionCacheData = cache.get(doc_key)
|
||||
|
||||
if data:
|
||||
cache.delete(doc_key)
|
||||
generation_key = _llm_generation_key(document_id)
|
||||
if cache.get(generation_key) is not None:
|
||||
cache.set(
|
||||
generation_key,
|
||||
uuid.uuid4().hex,
|
||||
timeout=LLM_CACHE_GENERATION_TIMEOUT,
|
||||
)
|
||||
|
||||
|
||||
def get_metadata_cache_key(document_id: int) -> str:
|
||||
@@ -357,3 +402,4 @@ def clear_document_caches(document_id: int) -> None:
|
||||
get_thumbnail_modified_key(document_id),
|
||||
],
|
||||
)
|
||||
invalidate_llm_suggestions_cache(document_id)
|
||||
|
||||
@@ -69,8 +69,8 @@ def load_classifier(*, raise_exception: bool = False) -> DocumentClassifier | No
|
||||
Path(settings.MODEL_FILE).unlink()
|
||||
classifier = None
|
||||
if raise_exception:
|
||||
raise
|
||||
except ClassifierModelCorruptError:
|
||||
raise e
|
||||
except ClassifierModelCorruptError as e:
|
||||
# there's something wrong with the model file.
|
||||
logger.exception(
|
||||
"Unrecoverable error while loading document "
|
||||
@@ -79,17 +79,17 @@ def load_classifier(*, raise_exception: bool = False) -> DocumentClassifier | No
|
||||
Path(settings.MODEL_FILE).unlink()
|
||||
classifier = None
|
||||
if raise_exception:
|
||||
raise
|
||||
except OSError:
|
||||
raise e
|
||||
except OSError as e:
|
||||
logger.exception("IO error while loading document classification model")
|
||||
classifier = None
|
||||
if raise_exception:
|
||||
raise
|
||||
except Exception: # pragma: no cover
|
||||
raise e
|
||||
except Exception as e: # pragma: no cover
|
||||
logger.exception("Unknown error while loading document classification model")
|
||||
classifier = None
|
||||
if raise_exception:
|
||||
raise
|
||||
raise e
|
||||
|
||||
return classifier
|
||||
|
||||
|
||||
@@ -216,7 +216,7 @@ class ConsumerPluginMixin:
|
||||
current_progress,
|
||||
max_progress,
|
||||
document_id=document_id,
|
||||
owner_id=self.metadata.owner_id or None,
|
||||
owner_id=self.metadata.owner_id if self.metadata.owner_id else None,
|
||||
users_can_view=(self.metadata.view_users or [])
|
||||
+ (self.metadata.change_users or []),
|
||||
groups_can_view=(self.metadata.view_groups or [])
|
||||
@@ -674,7 +674,9 @@ class ConsumerPlugin(
|
||||
document=document,
|
||||
logging_group=self.logging_group,
|
||||
classifier=classifier,
|
||||
original_file=self.unmodified_original or self.working_copy,
|
||||
original_file=self.unmodified_original
|
||||
if self.unmodified_original
|
||||
else self.working_copy,
|
||||
)
|
||||
|
||||
# After everything is in the database, copy the files into
|
||||
@@ -847,7 +849,7 @@ class ConsumerPlugin(
|
||||
else:
|
||||
stats = Path(self.input_doc.original_file).stat()
|
||||
create_date = timezone.make_aware(
|
||||
datetime.datetime.fromtimestamp(stats.st_mtime), # noqa: DTZ006 - make_aware() requires a naive datetime
|
||||
datetime.datetime.fromtimestamp(stats.st_mtime),
|
||||
)
|
||||
self.log.debug(f"Creation date from st_mtime: {create_date}")
|
||||
|
||||
@@ -961,7 +963,7 @@ class ConsumerPlugin(
|
||||
try:
|
||||
copy_basic_file_stats(source, target)
|
||||
except Exception: # pragma: no cover
|
||||
self.log.debug("Unable to copy file stats from %s to %s", source, target)
|
||||
pass
|
||||
|
||||
|
||||
class ConsumerPreflightPlugin(
|
||||
|
||||
@@ -78,9 +78,7 @@ class CollatePlugin(NoCleanupPluginMixin, NoSetupPluginMixin, ConsumeTaskPlugin)
|
||||
stats = staging.stat()
|
||||
# if the file is older than the timeout, we don't consider
|
||||
# it valid
|
||||
if (
|
||||
dt.datetime.now(tz=dt.UTC).timestamp() - stats.st_mtime
|
||||
) > TIMEOUT_SECONDS:
|
||||
if (dt.datetime.now().timestamp() - stats.st_mtime) > TIMEOUT_SECONDS:
|
||||
logger.warning("Outdated double sided staging file exists, deleting it")
|
||||
staging.unlink()
|
||||
else:
|
||||
@@ -136,7 +134,7 @@ class CollatePlugin(NoCleanupPluginMixin, NoSetupPluginMixin, ConsumeTaskPlugin)
|
||||
shutil.move(pdf_file, staging)
|
||||
# update access to modification time so we know if the file
|
||||
# is outdated when another file gets uploaded
|
||||
timestamp = dt.datetime.now(tz=dt.UTC).timestamp()
|
||||
timestamp = dt.datetime.now().timestamp()
|
||||
os.utime(staging, (timestamp, timestamp))
|
||||
logger.info(
|
||||
"Got scan with odd numbered pages of double-sided scan, moved it to %s",
|
||||
|
||||
@@ -734,7 +734,7 @@ class CustomFieldQueryParser:
|
||||
)
|
||||
|
||||
# Check if any of the requested IDs are missing.
|
||||
missing_ids = set(value) - {link.document_id for link in links}
|
||||
missing_ids = set(value) - set(link.document_id for link in links)
|
||||
if missing_ids:
|
||||
# The result should be an empty set in this case.
|
||||
return Q(id__in=[])
|
||||
|
||||
@@ -631,25 +631,23 @@ class Command(BaseCommand):
|
||||
):
|
||||
# Process each change
|
||||
for change_type, path in changes:
|
||||
resolved_path = Path(path).resolve()
|
||||
path = Path(path).resolve()
|
||||
if change_type == Change.deleted:
|
||||
# Consumed (or otherwise removed); a later file
|
||||
# reusing this name must not be skipped as
|
||||
# already-queued.
|
||||
queued.discard(resolved_path)
|
||||
if not resolved_path.is_file():
|
||||
queued.discard(path)
|
||||
if not path.is_file():
|
||||
continue
|
||||
if resolved_path in queued:
|
||||
if path in queued:
|
||||
# Already queued and awaiting consumption; a stray
|
||||
# event (NAS metadata touch, AV scan, etc.) while
|
||||
# the file sits on disk mid-consumption must not
|
||||
# cause it to be queued a second time (GH #13511).
|
||||
logger.debug(
|
||||
f"Ignoring event for queued file: {resolved_path}",
|
||||
)
|
||||
logger.debug(f"Ignoring event for queued file: {path}")
|
||||
continue
|
||||
logger.debug(f"Event: {change_type.name} for {resolved_path}")
|
||||
tracker.track(resolved_path, change_type)
|
||||
logger.debug(f"Event: {change_type.name} for {path}")
|
||||
tracker.track(path, change_type)
|
||||
|
||||
# Check for stable files
|
||||
for stable_path in tracker.get_stable_files():
|
||||
|
||||
@@ -30,10 +30,6 @@ if TYPE_CHECKING:
|
||||
logger = logging.getLogger("paperless.matching")
|
||||
|
||||
|
||||
class UnsupportedWorkflowTriggerTypeError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
def log_reason(
|
||||
matching_model: MatchingModel | WorkflowTrigger,
|
||||
document: Document,
|
||||
@@ -695,9 +691,7 @@ def document_matches_workflow(
|
||||
)
|
||||
else:
|
||||
# New trigger types need to be explicitly checked above
|
||||
raise UnsupportedWorkflowTriggerTypeError(
|
||||
f"Trigger type {trigger_type} not yet supported",
|
||||
)
|
||||
raise Exception(f"Trigger type {trigger_type} not yet supported")
|
||||
|
||||
if trigger_matched:
|
||||
logger.info(f"Document matched {trigger} from {workflow}")
|
||||
|
||||
@@ -377,7 +377,7 @@ class Document(SoftDeleteModel, ModelWithOwner): # type: ignore[django-manager-
|
||||
from documents.versioning import versions_newest_first
|
||||
|
||||
if hasattr(self, "effective_content"):
|
||||
return self.effective_content
|
||||
return getattr(self, "effective_content")
|
||||
|
||||
if self.root_document_id is not None or self.pk is None:
|
||||
return self.content
|
||||
|
||||
@@ -41,7 +41,7 @@ def get_default_file_extension(mime_type: str) -> str:
|
||||
return supported[mime_type]
|
||||
|
||||
ext = mimetypes.guess_extension(mime_type)
|
||||
return ext or ""
|
||||
return ext if ext else ""
|
||||
|
||||
|
||||
def is_file_ext_supported(ext: str) -> bool:
|
||||
|
||||
@@ -43,8 +43,8 @@ def _discover_parser_class() -> type[DateParserPluginBase]:
|
||||
valid_plugins.append(ep)
|
||||
else:
|
||||
logger.warning(f"Plugin {ep.name} does not subclass DateParser.")
|
||||
except Exception:
|
||||
logger.exception(f"Unable to load date parser plugin {ep.name}")
|
||||
except Exception as e:
|
||||
logger.exception(f"Unable to load date parser plugin {ep.name}: {e}")
|
||||
|
||||
if not valid_plugins:
|
||||
return RegexDateParserPlugin
|
||||
|
||||
@@ -91,8 +91,8 @@ class DateParserPluginBase(ABC):
|
||||
},
|
||||
locales=self.config.languages,
|
||||
)
|
||||
except Exception:
|
||||
logger.exception(f"Error while parsing date string '{date_string}'")
|
||||
except Exception as e:
|
||||
logger.exception(f"Error while parsing date string '{date_string}': {e}")
|
||||
return None
|
||||
|
||||
def _filter_date(
|
||||
|
||||
@@ -59,10 +59,11 @@ def safe_regex_match(pattern: str, text: str, *, flags: int = 0):
|
||||
try:
|
||||
validate_regex_pattern(pattern)
|
||||
compiled = regex.compile(pattern, flags=flags)
|
||||
except (regex.error, ValueError):
|
||||
except (regex.error, ValueError) as exc:
|
||||
logger.exception(
|
||||
"Error while processing regular expression %s",
|
||||
"Error while processing regular expression %s: %s",
|
||||
textwrap.shorten(pattern, width=80, placeholder="…"),
|
||||
exc,
|
||||
)
|
||||
return None
|
||||
|
||||
@@ -85,10 +86,11 @@ def safe_regex_sub(pattern: str, repl: str, text: str, *, flags: int = 0) -> str
|
||||
try:
|
||||
validate_regex_pattern(pattern)
|
||||
compiled = regex.compile(pattern, flags=flags)
|
||||
except (regex.error, ValueError):
|
||||
except (regex.error, ValueError) as exc:
|
||||
logger.exception(
|
||||
"Error while processing regular expression %s",
|
||||
"Error while processing regular expression %s: %s",
|
||||
textwrap.shorten(pattern, width=80, placeholder="…"),
|
||||
exc,
|
||||
)
|
||||
return None
|
||||
|
||||
|
||||
@@ -1142,7 +1142,7 @@ def get_backend() -> TantivyBackend:
|
||||
Returns:
|
||||
Thread-safe singleton TantivyBackend instance
|
||||
"""
|
||||
global _backend, _backend_path # noqa: PLW0603 - module-level singleton, no class to hold this state
|
||||
global _backend, _backend_path
|
||||
|
||||
current_path: Path = settings.INDEX_DIR
|
||||
|
||||
@@ -1173,7 +1173,7 @@ def reset_backend() -> None:
|
||||
Forces creation of a new backend instance on the next get_backend() call.
|
||||
Used for test isolation and when switching between different index directories.
|
||||
"""
|
||||
global _backend, _backend_path # noqa: PLW0603 - module-level singleton, no class to hold this state
|
||||
global _backend, _backend_path
|
||||
|
||||
with _backend_lock:
|
||||
if _backend is not None:
|
||||
|
||||
@@ -240,7 +240,7 @@ def parse_user_query(
|
||||
DEFAULT_SEARCH_FIELDS,
|
||||
field_boosts=_FIELD_BOOSTS,
|
||||
# (prefix=True, distance=1, transposition_cost_one=True) — edit-distance fuzziness
|
||||
fuzzy_fields=dict.fromkeys(DEFAULT_SEARCH_FIELDS, (True, 1, True)),
|
||||
fuzzy_fields={f: (True, 1, True) for f in DEFAULT_SEARCH_FIELDS},
|
||||
)
|
||||
# 0.1 boost keeps fuzzy hits ranked below exact matches (intentional)
|
||||
clauses.append((tantivy.Occur.Should, tantivy.Query.boost_query(fuzzy, 0.1)))
|
||||
|
||||
@@ -433,7 +433,7 @@ class OwnedObjectSerializer(
|
||||
return set()
|
||||
|
||||
ctype = ContentType.objects.get_for_model(first_obj)
|
||||
object_pks = [obj.pk for obj in objects]
|
||||
object_pks = list(obj.pk for obj in objects)
|
||||
pk_type = type(first_obj.pk)
|
||||
|
||||
def get_pks_for_permission_type(model):
|
||||
@@ -727,7 +727,7 @@ class TagSerializer(MatchingModelSerializer, OwnedObjectSerializer):
|
||||
self.instance.clean()
|
||||
except ValidationError as e:
|
||||
logger.debug("Tag parent validation failed: %s", e)
|
||||
raise
|
||||
raise e
|
||||
finally:
|
||||
self.instance.tn_parent = original_parent
|
||||
else:
|
||||
@@ -737,7 +737,7 @@ class TagSerializer(MatchingModelSerializer, OwnedObjectSerializer):
|
||||
temp.clean()
|
||||
except ValidationError as e:
|
||||
logger.debug("Tag parent validation failed: %s", e)
|
||||
raise
|
||||
raise e
|
||||
|
||||
return super().validate(attrs)
|
||||
|
||||
@@ -1147,7 +1147,7 @@ class DocumentSerializer(
|
||||
def to_representation(self, instance):
|
||||
doc = super().to_representation(instance)
|
||||
if "content" in self.fields and hasattr(instance, "effective_content"):
|
||||
doc["content"] = instance.effective_content or ""
|
||||
doc["content"] = getattr(instance, "effective_content") or ""
|
||||
if self.truncate_content and "content" in self.fields:
|
||||
doc["content"] = doc.get("content")[0:550]
|
||||
return doc
|
||||
@@ -1857,8 +1857,8 @@ class BulkEditSerializer(
|
||||
if isinstance(custom_fields, dict):
|
||||
try:
|
||||
ids = [int(i[0]) for i in custom_fields.items()]
|
||||
except Exception:
|
||||
logger.exception("Error validating custom fields")
|
||||
except Exception as e:
|
||||
logger.exception(f"Error validating custom fields: {e}")
|
||||
raise serializers.ValidationError(
|
||||
f"{name} must be a list of integers or a dict of id:value pairs, see the log for details",
|
||||
)
|
||||
@@ -2056,12 +2056,13 @@ class BulkEditSerializer(
|
||||
for doc in docs:
|
||||
if "-" in doc:
|
||||
pages.append(
|
||||
list(
|
||||
range(
|
||||
[
|
||||
x
|
||||
for x in range(
|
||||
int(doc.split("-")[0]),
|
||||
int(doc.split("-")[1]) + 1,
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
)
|
||||
else:
|
||||
pages.append([int(doc)])
|
||||
@@ -2922,7 +2923,7 @@ class ShareLinkBundleSerializer(OwnedObjectSerializer):
|
||||
return share_link_bundle
|
||||
|
||||
def get_document_count(self, obj: ShareLinkBundle) -> int:
|
||||
return obj.document_total or obj.documents.count()
|
||||
return getattr(obj, "document_total") or obj.documents.count()
|
||||
|
||||
|
||||
class BulkEditObjectsSerializer(SerializerWithPerms, SetPermissionsMixin):
|
||||
|
||||
@@ -32,6 +32,7 @@ from rest_framework import serializers
|
||||
from documents import matching
|
||||
from documents.caching import clear_document_caches
|
||||
from documents.caching import invalidate_llm_suggestions_cache
|
||||
from documents.caching import invalidate_suggestions_cache
|
||||
from documents.data_models import ConsumableDocument
|
||||
from documents.file_handling import create_source_path_directory
|
||||
from documents.file_handling import delete_empty_directories
|
||||
@@ -636,7 +637,7 @@ def update_filename_and_move_files(
|
||||
# so this is not the end of the world.
|
||||
# B: if moving the original file failed, nothing has changed
|
||||
# anyway.
|
||||
logger.exception("Error reverting document changes")
|
||||
pass
|
||||
|
||||
# restore old values on the instance
|
||||
instance.filename = old_filename
|
||||
@@ -740,9 +741,9 @@ def cleanup_custom_field_deletion(sender, instance: CustomField, **kwargs) -> No
|
||||
@receiver(models.signals.post_save, sender=Document)
|
||||
def update_llm_suggestions_cache(sender, instance, **kwargs):
|
||||
"""
|
||||
Invalidate the LLM suggestions cache when a document is saved.
|
||||
Invalidate suggestions caches when a document is saved.
|
||||
"""
|
||||
# Invalidate the cache for the document
|
||||
invalidate_suggestions_cache(instance.pk)
|
||||
invalidate_llm_suggestions_cache(instance.pk)
|
||||
|
||||
|
||||
@@ -1101,11 +1102,10 @@ def _extract_input_data(
|
||||
if v is None or k.startswith("_"):
|
||||
continue
|
||||
if isinstance(v, datetime.date):
|
||||
override_dict[k] = v.isoformat()
|
||||
v = v.isoformat()
|
||||
elif isinstance(v, Path):
|
||||
override_dict[k] = str(v)
|
||||
else:
|
||||
override_dict[k] = v
|
||||
v = str(v)
|
||||
override_dict[k] = v
|
||||
if override_dict:
|
||||
data["overrides"] = override_dict
|
||||
return data
|
||||
|
||||
@@ -217,9 +217,9 @@ def consume_file(
|
||||
overrides.filename or input_doc.original_file.name,
|
||||
self.request.id,
|
||||
) as status_mgr,
|
||||
TemporaryDirectory(dir=settings.SCRATCH_DIR) as tmp_dir_name,
|
||||
TemporaryDirectory(dir=settings.SCRATCH_DIR) as tmp_dir,
|
||||
):
|
||||
tmp_dir = Path(tmp_dir_name)
|
||||
tmp_dir = Path(tmp_dir)
|
||||
msg = None
|
||||
for plugin_class in plugins:
|
||||
plugin_name = plugin_class.NAME
|
||||
@@ -261,7 +261,7 @@ def consume_file(
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
logger.exception(f"{plugin_name} failed")
|
||||
logger.exception(f"{plugin_name} failed: {e}")
|
||||
status_mgr.send_progress(
|
||||
ProgressStatusOptions.FAILED,
|
||||
f"{e}",
|
||||
@@ -495,8 +495,8 @@ def empty_trash(doc_ids=None) -> None:
|
||||
content_type=ContentType.objects.get_for_model(Document),
|
||||
object_id__in=deleted_document_ids,
|
||||
).delete()
|
||||
except Exception: # pragma: no cover
|
||||
logger.exception("Error while emptying trash")
|
||||
except Exception as e: # pragma: no cover
|
||||
logger.exception(f"Error while emptying trash: {e}")
|
||||
finally:
|
||||
models.signals.post_delete.disconnect(
|
||||
cleanup_document_deletion,
|
||||
@@ -832,8 +832,9 @@ def build_share_link_bundle(bundle_id: int) -> None:
|
||||
logger.info("Built share link bundle %s", bundle.pk)
|
||||
except Exception as exc:
|
||||
logger.exception(
|
||||
"Failed to build share link bundle %s",
|
||||
"Failed to build share link bundle %s: %s",
|
||||
bundle_id,
|
||||
exc,
|
||||
)
|
||||
bundle.status = ShareLinkBundle.Status.FAILED
|
||||
bundle.last_error = {
|
||||
|
||||
@@ -78,10 +78,6 @@ class PlaceholderString(str):
|
||||
def __ne__(self, other) -> bool:
|
||||
return not self.__eq__(other)
|
||||
|
||||
def __hash__(self) -> int:
|
||||
# Equal to both "-none-" and "none", so hash to a single canonical value
|
||||
return hash("-none-")
|
||||
|
||||
|
||||
NO_VALUE_PLACEHOLDER = PlaceholderString("-none-")
|
||||
|
||||
|
||||
@@ -138,9 +138,9 @@ def parse_w_workflow_placeholders(
|
||||
|
||||
# We're good!
|
||||
return rendered_template
|
||||
except UndefinedError:
|
||||
except UndefinedError as e:
|
||||
# The undefined class logs this already for us
|
||||
raise
|
||||
raise e
|
||||
except TemplateSyntaxError as e:
|
||||
logger.warning(f"Template syntax error in title generation: {e}")
|
||||
except SecurityError as e:
|
||||
@@ -150,5 +150,5 @@ def parse_w_workflow_placeholders(
|
||||
logger.warning(
|
||||
f"Invalid title format '{text}', workflow not applied: {e}",
|
||||
)
|
||||
raise
|
||||
raise e
|
||||
return None
|
||||
|
||||
@@ -296,7 +296,7 @@ class TestRegexDateParser:
|
||||
|
||||
# simulate parse failure for malformed input
|
||||
if "99/99/9999" in date_string or "bad date" in date_string:
|
||||
raise Exception("parse failed for malformed date") # noqa: TRY002 - simulates a generic parser failure
|
||||
raise Exception("parse failed for malformed date")
|
||||
|
||||
return None
|
||||
|
||||
|
||||
@@ -57,13 +57,13 @@ class MultiprocessCommand(PaperlessCommand):
|
||||
|
||||
def handle(self, *args, **options):
|
||||
items = list(range(5))
|
||||
results = list(
|
||||
self.process_parallel(
|
||||
_double_value,
|
||||
items,
|
||||
description="Processing...",
|
||||
),
|
||||
)
|
||||
results = []
|
||||
for result in self.process_parallel(
|
||||
_double_value,
|
||||
items,
|
||||
description="Processing...",
|
||||
):
|
||||
results.append(result)
|
||||
successes = sum(1 for r in results if r.success)
|
||||
self.stdout.write(f"Successes: {successes}")
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ class TestWriteBatchLockRetry:
|
||||
)
|
||||
mock_sleep = mocker.patch(
|
||||
"documents.search._backend.time.sleep",
|
||||
side_effect=sleep_values.append,
|
||||
side_effect=lambda s: sleep_values.append(s),
|
||||
)
|
||||
|
||||
# Should not raise — 4th attempt succeeds
|
||||
@@ -111,7 +111,7 @@ class TestWriteBatchLockRetry:
|
||||
sleep_values: list[float] = []
|
||||
mocker.patch(
|
||||
"documents.search._backend.time.sleep",
|
||||
side_effect=sleep_values.append,
|
||||
side_effect=lambda s: sleep_values.append(s),
|
||||
)
|
||||
for _ in range(50):
|
||||
sleep_values.clear()
|
||||
|
||||
@@ -1003,8 +1003,8 @@ class TestBulkEditAPI(DirectoriesMixin, APITestCase):
|
||||
for correspondent in response.data[field]:
|
||||
self.assertEqual(correspondent["document_count"], 0)
|
||||
self.assertCountEqual(
|
||||
(c["id"] for c in response.data[field]),
|
||||
(c["id"] for c in Entity.objects.values("id")),
|
||||
map(lambda c: c["id"], response.data[field]),
|
||||
map(lambda c: c["id"], Entity.objects.values("id")),
|
||||
)
|
||||
|
||||
def test_api_selection_data(self) -> None:
|
||||
|
||||
@@ -18,8 +18,8 @@ class MockOpenIDProvider:
|
||||
|
||||
def get_brands(self):
|
||||
default_servers = [
|
||||
{"id": "yahoo", "name": "Yahoo", "openid_url": "http://me.yahoo.com"},
|
||||
{"id": "hyves", "name": "Hyves", "openid_url": "http://hyves.nl"},
|
||||
dict(id="yahoo", name="Yahoo", openid_url="http://me.yahoo.com"),
|
||||
dict(id="hyves", name="Hyves", openid_url="http://hyves.nl"),
|
||||
]
|
||||
return default_servers
|
||||
|
||||
|
||||
@@ -93,6 +93,36 @@ class TestDocumentSearchApi(DirectoriesMixin, APITestCase):
|
||||
self.assertEqual(response.data["count"], 0)
|
||||
self.assertEqual(len(results), 0)
|
||||
|
||||
def test_search_after_restore_from_trash(self) -> None:
|
||||
"""
|
||||
GIVEN:
|
||||
- Indexed document that was moved to the trash
|
||||
WHEN:
|
||||
- The document is restored from the trash
|
||||
THEN:
|
||||
- The document is searchable again without a reindex
|
||||
"""
|
||||
doc = Document.objects.create(
|
||||
title="invoice",
|
||||
content="the thing i bought at a shop and paid with bank account",
|
||||
checksum="A",
|
||||
pk=1,
|
||||
)
|
||||
get_backend().add_or_update(doc)
|
||||
|
||||
self.assertEqual(self.client.get("/api/documents/?query=shop").data["count"], 1)
|
||||
|
||||
self.client.delete(f"/api/documents/{doc.pk}/")
|
||||
self.assertEqual(self.client.get("/api/documents/?query=shop").data["count"], 0)
|
||||
|
||||
response = self.client.post(
|
||||
"/api/trash/",
|
||||
{"action": "restore", "documents": [doc.pk]},
|
||||
)
|
||||
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||
|
||||
self.assertEqual(self.client.get("/api/documents/?query=shop").data["count"], 1)
|
||||
|
||||
def test_simple_text_search(self) -> None:
|
||||
tagged = Tag.objects.create(name="invoice")
|
||||
matching_doc = Document.objects.create(
|
||||
|
||||
@@ -205,12 +205,12 @@ class TestBarcode(
|
||||
- Barcode is detected on page 1 (zero indexed)
|
||||
"""
|
||||
|
||||
for test_filename in [
|
||||
for test_file in [
|
||||
"patch-code-t-middle-reverse.pdf",
|
||||
"patch-code-t-middle-distorted.pdf",
|
||||
"patch-code-t-middle-fuzzy.pdf",
|
||||
]:
|
||||
test_file = self.BARCODE_SAMPLE_DIR / test_filename
|
||||
test_file = self.BARCODE_SAMPLE_DIR / test_file
|
||||
|
||||
with self.get_reader(test_file) as reader:
|
||||
reader.detect()
|
||||
|
||||
@@ -777,7 +777,7 @@ class TestPDFActions(DirectoriesMixin, TestCase):
|
||||
sig.set.return_value.apply_async.side_effect = Exception("boom")
|
||||
mock_consume_file.return_value = sig
|
||||
|
||||
with self.assertRaises(Exception): # noqa: B017 - mock injects a bare Exception
|
||||
with self.assertRaises(Exception):
|
||||
bulk_edit.merge(doc_ids, delete_originals=True)
|
||||
|
||||
self.doc1.refresh_from_db()
|
||||
@@ -1318,7 +1318,7 @@ class TestPDFActions(DirectoriesMixin, TestCase):
|
||||
sig.apply_async.side_effect = Exception("boom")
|
||||
mock_chord.return_value = sig
|
||||
|
||||
with self.assertRaises(Exception): # noqa: B017 - mock injects a bare Exception
|
||||
with self.assertRaises(Exception):
|
||||
bulk_edit.edit_pdf(doc_ids, operations, delete_original=True)
|
||||
|
||||
self.doc2.refresh_from_db()
|
||||
@@ -1430,7 +1430,7 @@ class TestPDFActions(DirectoriesMixin, TestCase):
|
||||
{"page": 9999}, # invalid page, forces error during PDF load
|
||||
]
|
||||
with self.assertLogs("paperless.bulk_edit", level="ERROR"):
|
||||
with self.assertRaises(ValueError):
|
||||
with self.assertRaises(Exception):
|
||||
bulk_edit.edit_pdf(doc_ids, operations)
|
||||
mock_group.assert_not_called()
|
||||
mock_consume_file.assert_not_called()
|
||||
|
||||
@@ -783,7 +783,7 @@ class TestClassifier(DirectoriesMixin, TestCase):
|
||||
|
||||
Path(settings.MODEL_FILE).touch()
|
||||
mock_load.side_effect = Exception()
|
||||
with self.assertRaises(Exception): # noqa: B017 - mock injects a bare Exception
|
||||
with self.assertRaises(Exception):
|
||||
load_classifier(raise_exception=True)
|
||||
|
||||
|
||||
|
||||
@@ -137,7 +137,7 @@ class FaultyParser(_BaseNewStyleParser):
|
||||
|
||||
class FaultyGenericExceptionParser(_BaseNewStyleParser):
|
||||
def parse(self, document_path, mime_type, *, produce_archive: bool = True) -> None:
|
||||
raise Exception("Generic exception.") # noqa: TRY002 - deliberately not a ParseError
|
||||
raise Exception("Generic exception.")
|
||||
|
||||
|
||||
def fake_magic_from_file(file, *, mime=False): # NOSONAR
|
||||
@@ -1333,7 +1333,7 @@ class PreConsumeTestCase(DirectoriesMixin, GetConsumerMixin, TestCase):
|
||||
script_calls = [
|
||||
call
|
||||
for call in m.call_args_list
|
||||
if call.args and call.args[0] and call.args[0][0] != "pdftotext"
|
||||
if call.args and call.args[0] and call.args[0][0] not in ("pdftotext",)
|
||||
]
|
||||
self.assertEqual(script_calls, [])
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@ from django.conf import settings
|
||||
from django.contrib.auth.models import Group
|
||||
from django.contrib.auth.models import Permission
|
||||
from django.contrib.auth.models import User
|
||||
from django.core.cache import cache
|
||||
from django.db import connection
|
||||
from django.test import TestCase
|
||||
from django.test import override_settings
|
||||
@@ -18,6 +19,7 @@ from guardian.shortcuts import assign_perm
|
||||
from rest_framework import status
|
||||
|
||||
from documents.caching import get_llm_suggestion_cache
|
||||
from documents.caching import get_suggestion_cache_key
|
||||
from documents.caching import set_llm_suggestions_cache
|
||||
from documents.models import Correspondent
|
||||
from documents.models import Document
|
||||
@@ -342,7 +344,7 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
super().setUp()
|
||||
|
||||
@patch("documents.views.get_llm_suggestion_cache")
|
||||
@patch("documents.views.refresh_suggestions_cache")
|
||||
@patch("documents.views.refresh_llm_suggestions_cache")
|
||||
@override_settings(
|
||||
AI_ENABLED=True,
|
||||
LLM_BACKEND="mock_backend",
|
||||
@@ -383,12 +385,15 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
self.assertEqual(response.json()["tags"], [self.tag1.pk])
|
||||
mock_get_cache.assert_called_once_with(
|
||||
self.document.pk,
|
||||
backend="mock_backend",
|
||||
backend=f"mock_backend:user={self.user.pk}",
|
||||
)
|
||||
mock_refresh_cache.assert_called_once_with(
|
||||
self.document.pk,
|
||||
backend=f"mock_backend:user={self.user.pk}",
|
||||
)
|
||||
mock_refresh_cache.assert_called_once_with(self.document.pk)
|
||||
|
||||
@patch("documents.views.get_llm_suggestion_cache")
|
||||
@patch("documents.views.refresh_suggestions_cache")
|
||||
@patch("documents.views.refresh_llm_suggestions_cache")
|
||||
@override_settings(
|
||||
AI_ENABLED=True,
|
||||
LLM_BACKEND="mock_backend",
|
||||
@@ -524,7 +529,7 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
self.assertEqual(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
backend="mock_backend:de-de",
|
||||
backend=f"mock_backend:de-de:user={self.user.pk}",
|
||||
).suggestions["title"],
|
||||
"KI Title",
|
||||
)
|
||||
@@ -563,7 +568,7 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
self.assertEqual(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
backend="mock_backend:fr-fr",
|
||||
backend=f"mock_backend:fr-fr:user={self.user.pk}",
|
||||
).suggestions["title"],
|
||||
"Titre IA",
|
||||
)
|
||||
@@ -600,7 +605,79 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
self.assertIsNotNone(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
backend="mock_backend:model-a:http://endpoint-a",
|
||||
backend=(f"mock_backend:model-a:http://endpoint-a:user={self.user.pk}"),
|
||||
),
|
||||
)
|
||||
|
||||
@patch("documents.views.get_ai_document_classification")
|
||||
@override_settings(
|
||||
AI_ENABLED=True,
|
||||
LLM_BACKEND="mock_backend",
|
||||
)
|
||||
def test_ai_suggestions_cache_variants_coexist_per_requesting_user(
|
||||
self,
|
||||
mock_get_ai_classification,
|
||||
) -> None:
|
||||
"""
|
||||
GIVEN:
|
||||
- One user has populated the document's LLM suggestion cache
|
||||
- A second user requests suggestions for the same document and
|
||||
backend
|
||||
WHEN:
|
||||
- The second request is made
|
||||
THEN:
|
||||
- The first user's prompt-derived result is not reused
|
||||
- The classification runs with the second user's visibility
|
||||
context without evicting the first user's result
|
||||
"""
|
||||
second_user = User.objects.create_superuser(username="second_user")
|
||||
empty_choices = {
|
||||
"tags": {"existing_ids": [], "new_names": []},
|
||||
"correspondents": {"existing_ids": [], "new_names": []},
|
||||
"document_types": {"existing_ids": [], "new_names": []},
|
||||
"storage_paths": {"existing_ids": [], "new_names": []},
|
||||
"dates": [],
|
||||
}
|
||||
mock_get_ai_classification.side_effect = [
|
||||
{"title": "First user's result", **empty_choices},
|
||||
{"title": "Second user's result", **empty_choices},
|
||||
]
|
||||
|
||||
self.client.force_login(user=self.user)
|
||||
first_response = self.client.get(
|
||||
f"/api/documents/{self.document.pk}/ai_suggestions/",
|
||||
)
|
||||
self.client.force_login(user=second_user)
|
||||
second_response = self.client.get(
|
||||
f"/api/documents/{self.document.pk}/ai_suggestions/",
|
||||
)
|
||||
self.client.force_login(user=self.user)
|
||||
first_cached_response = self.client.get(
|
||||
f"/api/documents/{self.document.pk}/ai_suggestions/",
|
||||
)
|
||||
|
||||
self.assertEqual(first_response.json()["title"], "First user's result")
|
||||
self.assertEqual(second_response.json()["title"], "Second user's result")
|
||||
self.assertEqual(
|
||||
first_cached_response.json()["title"],
|
||||
"First user's result",
|
||||
)
|
||||
self.assertEqual(mock_get_ai_classification.call_count, 2)
|
||||
mock_get_ai_classification.assert_called_with(
|
||||
self.document,
|
||||
second_user,
|
||||
None,
|
||||
)
|
||||
self.assertIsNotNone(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
backend=f"mock_backend:user={second_user.pk}",
|
||||
),
|
||||
)
|
||||
self.assertIsNotNone(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
backend=f"mock_backend:user={self.user.pk}",
|
||||
),
|
||||
)
|
||||
|
||||
@@ -786,8 +863,7 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
self.assertEqual(response.json()["tags"], [])
|
||||
self.assertEqual(response.json()["suggested_tags"], [])
|
||||
|
||||
def test_invalidate_suggestions_cache(self) -> None:
|
||||
self.client.force_login(user=self.user)
|
||||
def test_document_save_invalidates_all_suggestion_caches(self) -> None:
|
||||
suggestions = {
|
||||
"title": "AI Title",
|
||||
"tags": ["tag1", "tag2"],
|
||||
@@ -796,11 +872,18 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
"storage_paths": ["path1"],
|
||||
"dates": ["2023-01-01"],
|
||||
}
|
||||
standard_cache_key = get_suggestion_cache_key(self.document.pk)
|
||||
cache.set(standard_cache_key, "classifier suggestions")
|
||||
set_llm_suggestions_cache(
|
||||
self.document.pk,
|
||||
suggestions,
|
||||
backend="mock_backend",
|
||||
)
|
||||
set_llm_suggestions_cache(
|
||||
self.document.pk,
|
||||
{**suggestions, "title": "Other Variant"},
|
||||
backend="other_backend:user=2",
|
||||
)
|
||||
self.assertEqual(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
@@ -808,17 +891,26 @@ class TestAISuggestions(DirectoriesMixin, TestCase):
|
||||
).suggestions,
|
||||
suggestions,
|
||||
)
|
||||
# post_save signal triggered
|
||||
self.assertEqual(cache.get(standard_cache_key), "classifier suggestions")
|
||||
|
||||
update_llm_suggestions_cache(
|
||||
sender=None,
|
||||
instance=self.document,
|
||||
)
|
||||
|
||||
self.assertIsNone(cache.get(standard_cache_key))
|
||||
self.assertIsNone(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
backend="mock_backend",
|
||||
),
|
||||
)
|
||||
self.assertIsNone(
|
||||
get_llm_suggestion_cache(
|
||||
self.document.pk,
|
||||
backend="other_backend:user=2",
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
class TestAIChatStreamingView(DirectoriesMixin, TestCase):
|
||||
|
||||
@@ -44,7 +44,6 @@ from documents import tasks
|
||||
from documents.data_models import ConsumableDocument
|
||||
from documents.data_models import DocumentMetadataOverrides
|
||||
from documents.data_models import DocumentSource
|
||||
from documents.matching import UnsupportedWorkflowTriggerTypeError
|
||||
from documents.matching import document_matches_workflow
|
||||
from documents.matching import existing_document_matches_workflow
|
||||
from documents.matching import prefilter_documents_by_workflowtrigger
|
||||
@@ -2852,13 +2851,7 @@ class TestWorkflows(
|
||||
doc = Document.objects.create(
|
||||
title="test",
|
||||
)
|
||||
self.assertRaises(
|
||||
UnsupportedWorkflowTriggerTypeError,
|
||||
document_matches_workflow,
|
||||
doc,
|
||||
w,
|
||||
99,
|
||||
)
|
||||
self.assertRaises(Exception, document_matches_workflow, doc, w, 99)
|
||||
|
||||
def test_removal_action_document_updated_workflow(self) -> None:
|
||||
"""
|
||||
|
||||
@@ -21,32 +21,28 @@ def uri_validator(value: str, allowed_schemes: set[str] | None = None) -> None:
|
||||
parts = urlparse(value)
|
||||
if not parts.scheme:
|
||||
raise ValidationError(
|
||||
_("Unable to parse URI %(value)s, missing scheme"),
|
||||
_(f"Unable to parse URI {value}, missing scheme"),
|
||||
params={"value": value},
|
||||
)
|
||||
elif not parts.netloc and not parts.path:
|
||||
raise ValidationError(
|
||||
_("Unable to parse URI %(value)s, missing net location or path"),
|
||||
_(f"Unable to parse URI {value}, missing net location or path"),
|
||||
params={"value": value},
|
||||
)
|
||||
|
||||
if allowed_schemes and parts.scheme not in allowed_schemes:
|
||||
raise ValidationError(
|
||||
_(
|
||||
"URI scheme '%(scheme)s' is not allowed. Allowed schemes: %(allowed_schemes)s",
|
||||
f"URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}",
|
||||
),
|
||||
params={
|
||||
"value": value,
|
||||
"scheme": parts.scheme,
|
||||
"allowed_schemes": ", ".join(allowed_schemes),
|
||||
},
|
||||
params={"value": value, "scheme": parts.scheme},
|
||||
)
|
||||
|
||||
except ValidationError:
|
||||
raise
|
||||
except Exception as e:
|
||||
raise ValidationError(
|
||||
_("Unable to parse URI %(value)s"),
|
||||
_(f"Unable to parse URI {value}"),
|
||||
params={"value": value},
|
||||
) from e
|
||||
|
||||
|
||||
+41
-25
@@ -113,6 +113,7 @@ from documents.bulk_download import OriginalsOnlyStrategy
|
||||
from documents.caching import get_llm_suggestion_cache
|
||||
from documents.caching import get_metadata_cache
|
||||
from documents.caching import get_suggestion_cache
|
||||
from documents.caching import refresh_llm_suggestions_cache
|
||||
from documents.caching import refresh_metadata_cache
|
||||
from documents.caching import refresh_suggestions_cache
|
||||
from documents.caching import set_llm_suggestions_cache
|
||||
@@ -1440,7 +1441,7 @@ class DocumentViewSet(
|
||||
try:
|
||||
lang = detect(doc.content)
|
||||
except Exception:
|
||||
logger.debug("Unable to detect language for document %s", doc.pk)
|
||||
pass
|
||||
meta["lang"] = lang
|
||||
|
||||
return Response(meta)
|
||||
@@ -1478,12 +1479,13 @@ class DocumentViewSet(
|
||||
with get_date_parser() as date_parser:
|
||||
gen = date_parser.parse(doc.filename, doc.content)
|
||||
dates = sorted(
|
||||
set(
|
||||
itertools.islice(
|
||||
{
|
||||
i
|
||||
for i in itertools.islice(
|
||||
gen,
|
||||
settings.NUMBER_OF_SUGGESTED_DATES,
|
||||
),
|
||||
),
|
||||
)
|
||||
},
|
||||
)
|
||||
|
||||
resp_data = {
|
||||
@@ -1539,6 +1541,7 @@ class DocumentViewSet(
|
||||
ai_config.llm_model,
|
||||
ai_config.llm_endpoint,
|
||||
output_language,
|
||||
f"user={request.user.pk}",
|
||||
)
|
||||
if part
|
||||
)
|
||||
@@ -1554,8 +1557,11 @@ class DocumentViewSet(
|
||||
# freshly for this requester on every request, cache hit or not,
|
||||
# so a resolved id cached for one user's visibility can never be
|
||||
# handed unfiltered to a second, less-privileged requester of
|
||||
# the same (backend-keyed, not user-keyed) cache entry.
|
||||
refresh_suggestions_cache(doc.pk)
|
||||
# the same (backend + user-keyed) cache entry.
|
||||
refresh_llm_suggestions_cache(
|
||||
doc.pk,
|
||||
backend=llm_cache_backend,
|
||||
)
|
||||
llm_suggestions = cached_llm_suggestions.suggestions
|
||||
else:
|
||||
try:
|
||||
@@ -1567,16 +1573,21 @@ class DocumentViewSet(
|
||||
except ValueError as exc:
|
||||
logger.exception(
|
||||
"Invalid AI configuration while generating suggestions for "
|
||||
"document %s",
|
||||
"document %s: %s",
|
||||
doc.pk,
|
||||
exc,
|
||||
exc_info=True,
|
||||
)
|
||||
raise ValidationError(
|
||||
{"ai": [_("Invalid AI configuration.")]},
|
||||
) from exc
|
||||
except LLMTimeoutError:
|
||||
except LLMTimeoutError as exc:
|
||||
logger.exception(
|
||||
"AI backend timed out while generating suggestions for document %s",
|
||||
"AI backend timed out while generating suggestions for "
|
||||
"document %s: %s",
|
||||
doc.pk,
|
||||
exc,
|
||||
exc_info=True,
|
||||
)
|
||||
return Response(
|
||||
{"ai": [_("AI backend request timed out.")]},
|
||||
@@ -2049,7 +2060,7 @@ class DocumentViewSet(
|
||||
doc_name, doc_data = serializer.validated_data.get("document")
|
||||
version_label = serializer.validated_data.get("version_label")
|
||||
|
||||
t = int(mktime(datetime.now().timetuple())) # noqa: DTZ005 - mktime() requires a local time tuple
|
||||
t = int(mktime(datetime.now().timetuple()))
|
||||
|
||||
settings.SCRATCH_DIR.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
@@ -3319,7 +3330,7 @@ class PostDocumentView(GenericAPIView[Any]):
|
||||
cf = serializer.validated_data.get("custom_fields")
|
||||
from_webui = serializer.validated_data.get("from_webui")
|
||||
|
||||
t = int(mktime(datetime.now().timetuple())) # noqa: DTZ005 - mktime() requires a local time tuple
|
||||
t = int(mktime(datetime.now().timetuple()))
|
||||
|
||||
settings.SCRATCH_DIR.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
@@ -4129,7 +4140,7 @@ class UiSettingsView(GenericAPIView[Any]):
|
||||
user_resp["last_name"] = user.last_name
|
||||
|
||||
# strip <app_label>.
|
||||
roles = (re.sub(r"^\w+.", "", perm) for perm in user.get_all_permissions())
|
||||
roles = map(lambda perm: re.sub(r"^\w+.", "", perm), user.get_all_permissions())
|
||||
return Response(
|
||||
{
|
||||
"user": user_resp,
|
||||
@@ -5156,11 +5167,11 @@ class SystemStatusView(PassUserMixin):
|
||||
f"{m.app}.{m.name}"
|
||||
for m in MigrationRecorder.Migration.objects.all().order_by("id")
|
||||
]
|
||||
except Exception: # pragma: no cover
|
||||
except Exception as e: # pragma: no cover
|
||||
applied_migrations = []
|
||||
db_status = "ERROR"
|
||||
logger.exception(
|
||||
"System status detected a possible problem while connecting to the database",
|
||||
f"System status detected a possible problem while connecting to the database: {e}",
|
||||
)
|
||||
db_error = "Error connecting to database, check logs for more detail."
|
||||
|
||||
@@ -5176,10 +5187,10 @@ class SystemStatusView(PassUserMixin):
|
||||
try:
|
||||
client.ping()
|
||||
redis_status = "OK"
|
||||
except Exception:
|
||||
except Exception as e:
|
||||
redis_status = "ERROR"
|
||||
logger.exception(
|
||||
"System status detected a possible problem while connecting to redis",
|
||||
f"System status detected a possible problem while connecting to redis: {e}",
|
||||
)
|
||||
redis_error = "Error connecting to redis, check logs for more detail."
|
||||
|
||||
@@ -5209,10 +5220,10 @@ class SystemStatusView(PassUserMixin):
|
||||
else:
|
||||
celery_active = "WARNING"
|
||||
celery_error = "Celery worker responded unexpectedly."
|
||||
except Exception:
|
||||
except Exception as e:
|
||||
celery_active = "ERROR"
|
||||
logger.exception(
|
||||
"System status detected a possible problem while connecting to celery",
|
||||
f"System status detected a possible problem while connecting to celery: {e}",
|
||||
)
|
||||
celery_error = "Error connecting to celery, check logs for more detail."
|
||||
|
||||
@@ -5227,15 +5238,13 @@ class SystemStatusView(PassUserMixin):
|
||||
index_dir = settings.INDEX_DIR
|
||||
mtimes = [p.stat().st_mtime for p in index_dir.iterdir() if p.is_file()]
|
||||
index_last_modified = (
|
||||
make_aware(datetime.fromtimestamp(max(mtimes))) # noqa: DTZ006 - make_aware() requires a naive datetime
|
||||
if mtimes
|
||||
else None
|
||||
make_aware(datetime.fromtimestamp(max(mtimes))) if mtimes else None
|
||||
)
|
||||
except Exception:
|
||||
except Exception as e:
|
||||
index_status = "ERROR"
|
||||
index_error = "Error opening index, check logs for more detail."
|
||||
logger.exception(
|
||||
"System status detected a possible problem while opening the index",
|
||||
f"System status detected a possible problem while opening the index: {e}",
|
||||
)
|
||||
index_last_modified = None
|
||||
|
||||
@@ -5428,8 +5437,15 @@ class TrashView(ListModelMixin, PassUserMixin):
|
||||
return HttpResponseForbidden("Insufficient permissions")
|
||||
action = serializer.validated_data.get("action")
|
||||
if action == "restore":
|
||||
for doc in Document.deleted_objects.filter(id__in=doc_ids).all():
|
||||
restored = list(Document.deleted_objects.filter(id__in=doc_ids))
|
||||
for doc in restored:
|
||||
doc.restore(strict=False)
|
||||
if restored:
|
||||
from documents.search import get_backend
|
||||
|
||||
with get_backend().batch_update() as batch:
|
||||
for doc in restored:
|
||||
batch.add_or_update(doc)
|
||||
elif action == "empty":
|
||||
if doc_ids is None:
|
||||
doc_ids = [doc.id for doc in docs]
|
||||
|
||||
@@ -66,7 +66,7 @@ def build_workflow_action_context(
|
||||
else None
|
||||
)
|
||||
|
||||
filename = document.original_file or ""
|
||||
filename = document.original_file if document.original_file else ""
|
||||
return {
|
||||
"title": overrides.title
|
||||
if overrides and overrides.title
|
||||
@@ -179,9 +179,9 @@ def execute_email_action(
|
||||
f"Sent {n_messages} notification email(s) to {action.email.to}",
|
||||
extra={"group": logging_group},
|
||||
)
|
||||
except Exception:
|
||||
except Exception as e:
|
||||
logger.exception(
|
||||
"Error occurred sending notification email",
|
||||
f"Error occurred sending notification email: {e}",
|
||||
extra={"group": logging_group},
|
||||
)
|
||||
|
||||
@@ -265,9 +265,9 @@ def execute_webhook_action(
|
||||
f"Webhook to {action.webhook.url} queued",
|
||||
extra={"group": logging_group},
|
||||
)
|
||||
except Exception:
|
||||
except Exception as e:
|
||||
logger.exception(
|
||||
"Error occurred sending webhook",
|
||||
f"Error occurred sending webhook: {e}",
|
||||
extra={"group": logging_group},
|
||||
)
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ def resolve_date(dates: list[str]) -> date | None:
|
||||
"""
|
||||
for value in dates:
|
||||
try:
|
||||
return datetime.strptime(value, "%Y-%m-%d").date() # noqa: DTZ007 - only the calendar date is used, time/tz is discarded
|
||||
return datetime.strptime(value, "%Y-%m-%d").date()
|
||||
except (TypeError, ValueError):
|
||||
logger.debug("Ignoring unparsable suggested date %s", value)
|
||||
return None
|
||||
|
||||
@@ -70,6 +70,6 @@ def send_webhook(
|
||||
logger.error(
|
||||
f"Failed attempt sending webhook to {url}: {e}",
|
||||
)
|
||||
raise
|
||||
raise e
|
||||
finally:
|
||||
transport.close()
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: paperless-ngx\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-08-26 16:49+0000\n"
|
||||
"PO-Revision-Date: 2026-08-26 17:04\n"
|
||||
"POT-Creation-Date: 2026-08-29 20:02+0000\n"
|
||||
"PO-Revision-Date: 2026-08-29 20:04\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Language: af_ZA\n"
|
||||
@@ -1611,8 +1611,8 @@ msgid "workflow runs"
|
||||
msgstr ""
|
||||
|
||||
#: documents/serialisers.py:523 documents/serialisers.py:875
|
||||
#: documents/serialisers.py:2827 documents/views.py:312 documents/views.py:2606
|
||||
#: paperless_mail/serialisers.py:155
|
||||
#: documents/serialisers.py:2827 documents/views.py:313 documents/views.py:2611
|
||||
#: paperless_mail/serialisers.py:156
|
||||
msgid "Insufficient permissions."
|
||||
msgstr ""
|
||||
|
||||
@@ -1651,7 +1651,7 @@ msgstr "Ongeldige veranderlike bespeur."
|
||||
msgid "Duplicate document identifiers are not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: documents/serialisers.py:2913 documents/views.py:4603
|
||||
#: documents/serialisers.py:2913 documents/views.py:4608
|
||||
#, python-format
|
||||
msgid "Documents not found: %(ids)s"
|
||||
msgstr ""
|
||||
@@ -1906,36 +1906,36 @@ msgstr ""
|
||||
msgid "Unable to parse URI {value}"
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:305 documents/views.py:2603
|
||||
#: documents/views.py:306 documents/views.py:2608
|
||||
msgid "Invalid more_like_id"
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:1577
|
||||
#: documents/views.py:1582
|
||||
msgid "Invalid AI configuration."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:1588
|
||||
#: documents/views.py:1593
|
||||
msgid "AI backend request timed out."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:2428 documents/views.py:2749
|
||||
#: documents/views.py:2433 documents/views.py:2754
|
||||
msgid "Specify only one of text, title_search, query, or more_like_id."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4616
|
||||
#: documents/views.py:4621
|
||||
#, python-format
|
||||
msgid "Insufficient permissions to share document %(id)s."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4662
|
||||
#: documents/views.py:4667
|
||||
msgid "Bundle is already being processed."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4723
|
||||
#: documents/views.py:4728
|
||||
msgid "The share link bundle is still being prepared. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4733
|
||||
#: documents/views.py:4738
|
||||
msgid "The share link bundle is unavailable."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: paperless-ngx\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-08-26 16:49+0000\n"
|
||||
"PO-Revision-Date: 2026-08-26 17:04\n"
|
||||
"POT-Creation-Date: 2026-08-29 20:02+0000\n"
|
||||
"PO-Revision-Date: 2026-08-29 20:04\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amharic\n"
|
||||
"Language: am_ET\n"
|
||||
@@ -1611,8 +1611,8 @@ msgid "workflow runs"
|
||||
msgstr ""
|
||||
|
||||
#: documents/serialisers.py:523 documents/serialisers.py:875
|
||||
#: documents/serialisers.py:2827 documents/views.py:312 documents/views.py:2606
|
||||
#: paperless_mail/serialisers.py:155
|
||||
#: documents/serialisers.py:2827 documents/views.py:313 documents/views.py:2611
|
||||
#: paperless_mail/serialisers.py:156
|
||||
msgid "Insufficient permissions."
|
||||
msgstr ""
|
||||
|
||||
@@ -1651,7 +1651,7 @@ msgstr ""
|
||||
msgid "Duplicate document identifiers are not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: documents/serialisers.py:2913 documents/views.py:4603
|
||||
#: documents/serialisers.py:2913 documents/views.py:4608
|
||||
#, python-format
|
||||
msgid "Documents not found: %(ids)s"
|
||||
msgstr ""
|
||||
@@ -1906,36 +1906,36 @@ msgstr ""
|
||||
msgid "Unable to parse URI {value}"
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:305 documents/views.py:2603
|
||||
#: documents/views.py:306 documents/views.py:2608
|
||||
msgid "Invalid more_like_id"
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:1577
|
||||
#: documents/views.py:1582
|
||||
msgid "Invalid AI configuration."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:1588
|
||||
#: documents/views.py:1593
|
||||
msgid "AI backend request timed out."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:2428 documents/views.py:2749
|
||||
#: documents/views.py:2433 documents/views.py:2754
|
||||
msgid "Specify only one of text, title_search, query, or more_like_id."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4616
|
||||
#: documents/views.py:4621
|
||||
#, python-format
|
||||
msgid "Insufficient permissions to share document %(id)s."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4662
|
||||
#: documents/views.py:4667
|
||||
msgid "Bundle is already being processed."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4723
|
||||
#: documents/views.py:4728
|
||||
msgid "The share link bundle is still being prepared. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: documents/views.py:4733
|
||||
#: documents/views.py:4738
|
||||
msgid "The share link bundle is unavailable."
|
||||
msgstr ""
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user